@import url("https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@600;700;800&family=Manrope:wght@400;500;700;800&display=swap");

:root {
  --bg: #090a0b;
  --surface: #13171c;
  --surface-soft: #171c22;
  --line: rgba(255, 255, 255, 0.14);
  --text: #f4f6f8;
  --muted: #b7bfca;
  --accent: #c9ff49;
  --accent-blue: #43b0ff;
  --max: 1080px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
}

html {
  font-size: 15px;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 10% -4%, rgba(201, 255, 73, 0.12), transparent 40%),
    radial-gradient(circle at 86% 0%, rgba(67, 176, 255, 0.12), transparent 36%),
    var(--bg);
}

@media (max-width: 900px) {
  html {
    font-size: 16px;
  }
}

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(12px);
  background: rgba(9, 10, 11, 0.82);
  border-bottom: 1px solid var(--line);
}

.header-inner,
.content,
.site-footer {
  width: min(var(--max), calc(100% - 2rem));
  margin-inline: auto;
}

.header-inner {
  min-height: 4.4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.7rem;
  letter-spacing: 0.08em;
  font-weight: 800;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 1rem;
}

.nav a {
  color: var(--muted);
  font-size: 0.92rem;
}

.nav a:hover,
.nav a.active {
  color: var(--text);
}

.content {
  padding: 2.2rem 0 3.4rem;
}

.hero {
  border: 1px solid var(--line);
  background:
    linear-gradient(160deg, rgba(201, 255, 73, 0.08), transparent 32%),
    var(--surface);
  padding: clamp(1.35rem, 2.4vw, 2rem);
}

.eyebrow {
  margin: 0;
  color: var(--accent);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 0.74rem;
  font-weight: 800;
}

h1 {
  margin: 0.7rem 0 0;
  font-family: "Barlow Condensed", sans-serif;
  text-transform: uppercase;
  line-height: 0.98;
  font-size: clamp(2rem, 6.6vw, 4.3rem);
  max-width: 12ch;
}

.lead {
  margin: 1rem 0 0;
  max-width: 64ch;
  color: #dde4ec;
  line-height: 1.58;
}

.actions {
  margin-top: 1.35rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.75rem;
  padding: 0.5rem 1rem;
  border: 1px solid var(--line);
  font-weight: 700;
  font-size: 0.92rem;
}

.btn-primary {
  border-color: rgba(201, 255, 73, 0.6);
  background: linear-gradient(160deg, var(--accent), #dcff87);
  color: #1d240d;
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.03);
}

.section {
  margin-top: 1rem;
  border: 1px solid var(--line);
  background: var(--surface-soft);
  padding: clamp(1rem, 2vw, 1.5rem);
}

h2 {
  margin: 0;
  font-family: "Barlow Condensed", sans-serif;
  text-transform: uppercase;
  line-height: 1;
  font-size: clamp(1.5rem, 4.6vw, 2.6rem);
}

.section p {
  margin: 0.75rem 0 0;
  color: var(--muted);
  line-height: 1.55;
}

.grid {
  margin-top: 1rem;
  display: grid;
  gap: 0.75rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.card {
  border: 1px solid var(--line);
  background: rgba(11, 13, 16, 0.62);
  padding: 0.95rem;
}

.card h3 {
  margin: 0;
  font-size: 1.05rem;
}

.card p {
  margin: 0.45rem 0 0;
  color: var(--muted);
  line-height: 1.5;
}

.faq-list {
  margin-top: 0.75rem;
  display: grid;
  gap: 0.6rem;
}

.faq-list details {
  border: 1px solid var(--line);
  background: rgba(11, 13, 16, 0.62);
  padding: 0.75rem 0.9rem;
}

.faq-list summary {
  cursor: pointer;
  font-weight: 700;
}

.pill-list {
  list-style: none;
  margin: 1rem 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.pill-list li {
  border: 1px solid rgba(201, 255, 73, 0.34);
  background: rgba(201, 255, 73, 0.08);
  color: #ecffbe;
  font-size: 0.8rem;
  font-weight: 700;
  padding: 0.38rem 0.6rem;
}

.site-footer {
  border-top: 1px solid var(--line);
  padding: 1.15rem 0 1.75rem;
  color: var(--muted);
  font-size: 0.88rem;
}

.footer-links {
  margin-top: 0.55rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.footer-links a {
  color: #e8eef4;
}

.footer-links a:hover {
  color: var(--accent);
}

@media (max-width: 900px) {
  .grid {
    grid-template-columns: 1fr;
  }

  .nav {
    gap: 0.7rem;
  }
}

@media (max-width: 640px) {
  .header-inner {
    min-height: auto;
    padding: 0.75rem 0;
    flex-direction: column;
    align-items: flex-start;
  }

  .actions .btn {
    width: 100%;
  }
}
