:root {
  color-scheme: dark;
  --background: #080b12;
  --surface: #111620;
  --surface-raised: #181e2a;
  --line: #293141;
  --text: #f8fafc;
  --muted: #a5adba;
  --lime: #b7ff2a;
  --lime-dark: #7cac20;
  --max-width: 1120px;
  font-family: Inter, ui-rounded, "SF Pro Rounded", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-synthesis: none;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--background);
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  background:
    radial-gradient(circle at 78% 8%, rgba(183, 255, 42, 0.08), transparent 25rem),
    var(--background);
  color: var(--text);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.2em;
}

a:focus-visible {
  outline: 3px solid var(--lime);
  outline-offset: 4px;
  border-radius: 4px;
}

.site-header,
main,
footer {
  width: min(calc(100% - 40px), var(--max-width));
  margin-inline: auto;
}

.site-header {
  min-height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--text);
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  text-decoration: none;
}

.brand-mark {
  position: relative;
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 2px;
  border: 4px solid var(--lime);
  border-right-color: transparent;
  border-radius: 50%;
  transform: rotate(-15deg);
}

.brand-mark span {
  width: 3px;
  border-radius: 3px;
  background: var(--lime);
  transform: rotate(15deg);
}

.brand-mark span:nth-child(1),
.brand-mark span:nth-child(3) {
  height: 9px;
}

.brand-mark span:nth-child(2) {
  height: 15px;
}

nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 0.92rem;
  font-weight: 700;
}

nav a {
  color: var(--muted);
  text-decoration: none;
}

nav a:hover,
nav a[aria-current="page"] {
  color: var(--text);
}

nav .nav-action {
  padding: 9px 15px;
  border: 1px solid rgba(183, 255, 42, 0.5);
  border-radius: 999px;
  color: var(--lime);
}

.hero {
  min-height: 610px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding-block: 80px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--lime);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  line-height: 1.08;
}

.hero h1 {
  max-width: 840px;
  margin-bottom: 24px;
  font-size: clamp(3.5rem, 9vw, 7.75rem);
  letter-spacing: -0.065em;
}

.hero h1 span {
  color: var(--lime);
}

.hero-copy {
  max-width: 650px;
  margin-bottom: 36px;
  color: var(--muted);
  font-size: clamp(1.05rem, 2.2vw, 1.35rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border: 1px solid transparent;
  border-radius: 14px;
  font-weight: 800;
  text-decoration: none;
}

.button.primary {
  background: var(--lime);
  color: #111704;
}

.button.primary:hover {
  background: #c5ff53;
}

.button.secondary {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
}

.button.secondary:hover {
  border-color: #465166;
  background: rgba(255, 255, 255, 0.06);
}

.section {
  padding-block: 100px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.section-heading {
  margin-bottom: 36px;
}

.section-heading h2,
.privacy-callout h2,
.policy-header h1 {
  margin-bottom: 16px;
  font-size: clamp(2.25rem, 5vw, 4.5rem);
  letter-spacing: -0.05em;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.card {
  min-height: 280px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: linear-gradient(145deg, var(--surface-raised), var(--surface));
}

.card-number {
  display: block;
  margin-bottom: 60px;
  color: var(--lime);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.14em;
}

.card h3 {
  margin-bottom: 12px;
  font-size: 1.35rem;
}

.card p,
.privacy-callout p,
.policy-intro,
.policy p {
  color: var(--muted);
}

.privacy-callout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 48px;
  margin-bottom: 100px;
  padding: clamp(28px, 6vw, 64px);
  border: 1px solid rgba(183, 255, 42, 0.25);
  border-radius: 30px;
  background: linear-gradient(135deg, rgba(183, 255, 42, 0.1), rgba(183, 255, 42, 0.025));
}

.privacy-callout p:not(.eyebrow) {
  max-width: 700px;
  margin-bottom: 0;
  font-size: 1.08rem;
}

.text-link,
.policy a {
  color: var(--lime);
  font-weight: 800;
}

.text-link {
  white-space: nowrap;
}

footer {
  min-height: 110px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--muted);
  font-size: 0.88rem;
}

footer p {
  margin: 0;
}

footer div {
  display: flex;
  gap: 24px;
}

.policy-layout {
  max-width: 840px;
  padding-block: 90px 120px;
}

.policy-header {
  margin-bottom: 70px;
  padding-bottom: 54px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.policy-header h1 {
  margin-bottom: 12px;
}

.policy-date {
  margin-bottom: 30px;
  color: var(--lime);
  font-size: 0.9rem;
  font-weight: 800;
}

.policy-intro {
  max-width: 680px;
  margin-bottom: 0;
  font-size: 1.35rem;
}

.policy {
  display: grid;
  gap: 52px;
}

.policy section {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  column-gap: 42px;
}

.policy h2 {
  margin: 0;
  font-size: 1.2rem;
  letter-spacing: -0.02em;
}

.policy p {
  grid-column: 2;
  margin-bottom: 14px;
}

.policy p:last-child {
  margin-bottom: 0;
}

strong {
  color: var(--text);
}

@media (max-width: 760px) {
  .site-header {
    min-height: 76px;
  }

  nav {
    gap: 16px;
  }

  nav > a:first-child {
    display: none;
  }

  .hero {
    min-height: 560px;
  }

  .hero h1 {
    font-size: clamp(2.65rem, 11vw, 3.4rem);
    letter-spacing: -0.055em;
  }

  .card-grid {
    grid-template-columns: 1fr;
  }

  .card {
    min-height: 230px;
  }

  .privacy-callout {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .policy-layout {
    padding-block: 64px 90px;
  }

  .policy section {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .policy p {
    grid-column: 1;
  }

  footer {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    padding-block: 28px;
  }
}

@media (max-width: 480px) {
  .site-header,
  main,
  footer {
    width: min(calc(100% - 28px), var(--max-width));
  }

  .brand {
    font-size: 0.96rem;
  }

  .brand-mark {
    width: 34px;
    height: 34px;
  }

  nav .nav-action {
    padding: 8px 12px;
    font-size: 0.82rem;
  }

  .hero-actions {
    width: 100%;
  }

  .button {
    width: 100%;
  }

  footer div {
    flex-wrap: wrap;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}
