:root {
  color-scheme: dark;
  --bg: #080d12;
  --bg-soft: #0f1720;
  --panel: rgba(17, 27, 38, 0.88);
  --panel-strong: #111c28;
  --line: rgba(148, 163, 184, 0.18);
  --text: #f7fafc;
  --muted: #a8b3c2;
  --soft: #d5dde8;
  --green: #7cffb0;
  --green-strong: #34f58c;
  --blue: #8cc8ff;
  --purple: #bda4ff;
  --warning: #ffd36b;
  --shadow: 0 22px 60px rgba(0, 0, 0, 0.35);
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background: var(--bg);
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100%;
  color: var(--text);
  background:
    radial-gradient(circle at 15% 8%, rgba(124, 255, 176, 0.12), transparent 28rem),
    radial-gradient(circle at 82% 0%, rgba(141, 200, 255, 0.12), transparent 26rem),
    linear-gradient(180deg, #081018 0%, #080d12 46%, #070a0f 100%);
  line-height: 1.6;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image: linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,.6), transparent 62%);
}

.site-shell {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 12px;
  z-index: 20;
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--green);
  color: #06100c;
  font-weight: 800;
}

.skip-link:focus {
  left: 16px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(18px);
  background: rgba(8, 13, 18, 0.72);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 16px 0;
}

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

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(124, 255, 176, 0.92), rgba(140, 200, 255, 0.92));
  color: #07120e;
  box-shadow: 0 12px 30px rgba(52, 245, 140, 0.18);
}

.brand-text {
  display: grid;
  line-height: 1.05;
}

.brand-text small {
  color: var(--muted);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.68rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.nav-links a,
.button {
  color: var(--soft);
  text-decoration: none;
  border: 1px solid transparent;
  padding: 9px 12px;
  border-radius: 999px;
  font-weight: 750;
  font-size: 0.94rem;
}

.nav-links a:hover,
.nav-links a:focus {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
}

.button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(124, 255, 176, 0.12);
  border-color: rgba(124, 255, 176, 0.3);
  color: var(--green);
}

.button.primary {
  background: linear-gradient(135deg, var(--green), #98d8ff);
  color: #06100c;
  border-color: transparent;
  box-shadow: 0 16px 34px rgba(52, 245, 140, 0.16);
}

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

.hero {
  padding: 70px 0 42px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(280px, 0.82fr);
  gap: 32px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--green);
  background: rgba(124, 255, 176, 0.1);
  border: 1px solid rgba(124, 255, 176, 0.22);
  border-radius: 999px;
  padding: 8px 12px;
  font-size: 0.86rem;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

h1,
h2,
h3 {
  letter-spacing: -0.04em;
  line-height: 1.08;
  margin: 0 0 14px;
}

h1 {
  font-size: clamp(2.45rem, 6.4vw, 5.25rem);
  max-width: 820px;
}

h2 {
  font-size: clamp(1.85rem, 4.2vw, 2.9rem);
}

h3 {
  font-size: 1.35rem;
}

p {
  margin: 0 0 16px;
  color: var(--muted);
}

.lede {
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  color: var(--soft);
  max-width: 740px;
}

.hero-actions,
.inline-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.hero-card,
.card,
.callout,
.legal-body {
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(17, 27, 38, 0.92), rgba(12, 20, 29, 0.9));
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.hero-card {
  padding: 26px;
  position: relative;
  overflow: hidden;
}

.hero-card::after {
  content: "";
  position: absolute;
  inset: auto -28% -40% 18%;
  height: 180px;
  background: radial-gradient(circle, rgba(124, 255, 176, 0.18), transparent 68%);
  transform: rotate(-8deg);
}

.status-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 15px 0;
  border-bottom: 1px solid var(--line);
  position: relative;
  z-index: 1;
}

.status-row:last-child {
  border-bottom: 0;
}

.status-label {
  color: var(--muted);
  font-size: 0.9rem;
}

.status-value {
  color: var(--text);
  font-weight: 850;
  text-align: right;
}

.pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  border-radius: 999px;
  padding: 6px 10px;
  font-weight: 850;
  font-size: 0.82rem;
  border: 1px solid rgba(124, 255, 176, 0.28);
  color: var(--green);
  background: rgba(124, 255, 176, 0.1);
}

.section {
  padding: 46px 0;
}

.section-header {
  max-width: 780px;
  margin-bottom: 24px;
}

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

.card {
  padding: 24px;
  border-radius: var(--radius-md);
}

.card-icon {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 15px;
  margin-bottom: 18px;
  background: rgba(140, 200, 255, 0.12);
  color: var(--blue);
  border: 1px solid rgba(140, 200, 255, 0.18);
}

.callout {
  padding: 24px;
  display: flex;
  gap: 18px;
  align-items: flex-start;
  border-radius: var(--radius-md);
}

.callout.warning {
  background: linear-gradient(180deg, rgba(255, 211, 107, 0.11), rgba(17, 27, 38, 0.86));
  border-color: rgba(255, 211, 107, 0.24);
}

.page-hero {
  padding: 62px 0 30px;
}

.page-hero .lede {
  max-width: 820px;
}

.legal-body {
  padding: clamp(22px, 4vw, 44px);
  margin: 24px 0 54px;
}

.legal-body h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin-top: 34px;
}

.legal-body h2:first-child {
  margin-top: 0;
}

.legal-body h3 {
  margin-top: 26px;
}

.legal-body ul,
.legal-body ol {
  color: var(--muted);
  padding-left: 22px;
}

.legal-body li {
  margin: 8px 0;
}

.legal-body a,
.footer a,
.text-link {
  color: var(--green);
  text-decoration-color: rgba(124, 255, 176, 0.45);
  text-underline-offset: 4px;
}

.faq-list {
  display: grid;
  gap: 14px;
  margin-top: 24px;
}

.faq-item {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.035);
}

.faq-item h3 {
  margin-bottom: 8px;
}


.final-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: clamp(22px, 4vw, 34px);
  border: 1px solid rgba(124, 255, 176, 0.22);
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(124, 255, 176, 0.10), rgba(17, 27, 38, 0.86));
  box-shadow: var(--shadow);
}

.final-cta h2 {
  font-size: clamp(1.65rem, 3.4vw, 2.45rem);
}

.final-cta p {
  max-width: 720px;
  margin-bottom: 0;
}

.compact-section {
  padding-top: 18px;
}

.eyebrow.subtle {
  margin-bottom: 14px;
  font-size: 0.78rem;
}

.footer {
  border-top: 1px solid var(--line);
  background: rgba(5, 8, 12, 0.62);
  padding: 28px 0 42px;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: flex-start;
  flex-wrap: wrap;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: flex-end;
}

.disclaimer {
  font-size: 0.92rem;
  color: var(--muted);
  max-width: 720px;
}

.muted {
  color: var(--muted);
}

@media (max-width: 840px) {
  .header-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .nav-links {
    justify-content: flex-start;
  }

  .hero {
    padding-top: 48px;
  }

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

  .callout,
  .final-cta {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 520px) {
  h1 {
    font-size: clamp(2.35rem, 14vw, 3.7rem);
  }

  .site-shell {
    width: min(100% - 22px, 1120px);
  }

  .nav-links a,
  .button {
    width: 100%;
    justify-content: center;
  }

  .hero-actions,
  .inline-actions {
    flex-direction: column;
  }

  .status-row {
    align-items: flex-start;
    flex-direction: column;
  }

  .status-value {
    text-align: left;
  }
}
