:root {
  --bg: #06131b;
  --bg-elevated: rgba(11, 28, 39, 0.82);
  --bg-soft: rgba(12, 35, 48, 0.58);
  --panel: rgba(10, 25, 36, 0.88);
  --panel-strong: rgba(10, 31, 43, 0.96);
  --line: rgba(146, 201, 224, 0.2);
  --line-strong: rgba(146, 201, 224, 0.36);
  --text: #eff8fc;
  --muted: #a6c5d3;
  --accent: #6ce4ff;
  --accent-strong: #2bb6ff;
  --accent-warm: #ffd166;
  --shadow: 0 32px 80px rgba(0, 0, 0, 0.34);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --container: 1180px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--text);
  background:
    radial-gradient(
      circle at top left,
      rgba(64, 183, 255, 0.18),
      transparent 30%
    ),
    radial-gradient(
      circle at top right,
      rgba(255, 209, 102, 0.16),
      transparent 24%
    ),
    linear-gradient(180deg, #071019 0%, #081722 35%, #06131b 100%);
  font-family: "Manrope", "Helvetica Neue", Helvetica, sans-serif;
  line-height: 1.6;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 120px 120px;
  mask-image: radial-gradient(circle at center, black 45%, transparent 85%);
  opacity: 0.45;
}

img {
  display: block;
  max-width: 100%;
}

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

button {
  font: inherit;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -48px;
  padding: 10px 16px;
  border-radius: 999px;
  background: var(--accent);
  color: #031017;
  z-index: 100;
}

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

.site-shell {
  position: relative;
  overflow: clip;
}

.container {
  width: min(var(--container), calc(100% - 32px));
  margin: 0 auto;
}

.section {
  padding: 40px 0;
}

.section-spacious {
  padding: 88px 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 20px;
  color: var(--accent);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 42px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent));
}

.display {
  margin: 0;
  font-family: "Teko", "Arial Narrow", sans-serif;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 0.92;
  text-transform: uppercase;
}

.lede,
.section-copy,
.card-copy,
.list-copy {
  color: var(--muted);
}

.section-heading {
  max-width: 720px;
  margin-bottom: 32px;
}

.section-heading h2,
.section-heading h1 {
  margin: 0 0 14px;
  font-size: clamp(2.6rem, 5vw, 4.5rem);
}

.section-heading p {
  margin: 0;
  max-width: 60ch;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(18px);
  background: rgba(5, 14, 20, 0.72);
  border-bottom: 1px solid rgba(146, 201, 224, 0.12);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 84px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.brand-mark {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  box-shadow: 0 12px 32px rgba(41, 165, 255, 0.24);
}

.brand-text {
  min-width: 0;
}

.brand-text strong {
  display: block;
  font-size: 0.98rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.brand-text span {
  display: block;
  color: var(--muted);
  font-size: 0.82rem;
}

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(11, 28, 39, 0.68);
  color: var(--text);
}

.nav-toggle-bars {
  display: grid;
  gap: 5px;
  width: 18px;
}

.nav-toggle-bar {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition:
    transform 180ms ease,
    opacity 180ms ease;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 10px;
}

.site-nav a {
  padding: 12px 16px;
  border-radius: 999px;
  color: var(--muted);
  font-weight: 700;
  transition:
    color 180ms ease,
    background 180ms ease,
    transform 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a.is-active {
  color: var(--text);
  background: rgba(108, 228, 255, 0.1);
  transform: translateY(-1px);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 800;
  letter-spacing: 0.03em;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-strong));
  color: #041018;
  box-shadow: 0 16px 36px rgba(24, 163, 255, 0.28);
}

.button-secondary {
  border-color: var(--line-strong);
  background: rgba(11, 28, 39, 0.72);
}

.hero {
  padding: 52px 0 72px;
}

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

.hero-copy {
  position: relative;
}

.hero-copy h1 {
  font-size: clamp(4rem, 11vw, 8.2rem);
  margin-bottom: 18px;
}

.hero-copy p {
  max-width: 52ch;
  margin: 0 0 28px;
  font-size: 1.04rem;
}

.hero-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 28px;
}

.fact-chip {
  padding: 16px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(10, 25, 36, 0.7);
}

.fact-chip strong {
  display: block;
  margin-bottom: 4px;
  font-size: 0.86rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent-warm);
}

.fact-chip span {
  color: var(--muted);
  font-size: 0.92rem;
}

.hero-panel,
.glass-panel {
  position: relative;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: linear-gradient(
    180deg,
    rgba(16, 38, 51, 0.92),
    rgba(8, 20, 30, 0.9)
  );
  box-shadow: var(--shadow);
  overflow: hidden;
}

.hero-panel::before,
.glass-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      circle at 18% 18%,
      rgba(108, 228, 255, 0.22),
      transparent 24%
    ),
    radial-gradient(
      circle at 82% 12%,
      rgba(255, 209, 102, 0.18),
      transparent 22%
    );
  pointer-events: none;
}

.hero-panel-content {
  position: relative;
  padding: 24px;
}

.hero-shot-frame {
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 26px;
  background: rgba(3, 10, 15, 0.6);
}

.hero-shot-frame img {
  border-radius: 18px;
  width: 100%;
  height: auto;
}

.panel-meta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 16px;
}

.meta-card {
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  background: rgba(8, 20, 30, 0.8);
}

.meta-card strong {
  display: block;
  margin-bottom: 6px;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--accent);
}

.meta-card span {
  color: var(--muted);
  font-size: 0.92rem;
}

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

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

.feature-card,
.support-card,
.faq-card,
.timeline-card,
.policy-card {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: linear-gradient(
    180deg,
    rgba(10, 25, 36, 0.88),
    rgba(8, 20, 30, 0.96)
  );
  box-shadow: var(--shadow);
}

.feature-card h3,
.support-card h3,
.faq-card h3,
.timeline-card h3,
.policy-card h3 {
  margin: 0 0 12px;
  font-size: 1.16rem;
}

.feature-kicker,
.timeline-step {
  display: inline-flex;
  align-items: center;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(108, 228, 255, 0.1);
  color: var(--accent);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.split-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 24px;
  align-items: stretch;
}

.sticky-panel {
  position: sticky;
  top: 112px;
}

.visual-stack {
  display: grid;
  gap: 16px;
}

.mini-panel {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(9, 24, 34, 0.82);
}

.mini-panel strong {
  display: block;
  margin-bottom: 6px;
  color: var(--accent-warm);
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.mini-panel p {
  margin: 0;
  color: var(--muted);
}

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

.metric {
  padding: 18px;
  border-radius: 20px;
  background: rgba(8, 20, 30, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.07);
}

.metric strong {
  display: block;
  margin-bottom: 6px;
  font-size: 2rem;
  font-family: "Teko", "Arial Narrow", sans-serif;
  line-height: 0.92;
  letter-spacing: 0.03em;
}

.metric span {
  color: var(--muted);
  font-size: 0.92rem;
}

.list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.list li {
  position: relative;
  padding-left: 20px;
  color: var(--muted);
}

.list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.7em;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), var(--accent-warm));
}

.page-hero {
  padding: 44px 0 20px;
}

.page-hero .display {
  font-size: clamp(3.6rem, 9vw, 6.4rem);
}

.faq-list {
  display: grid;
  gap: 16px;
}

.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: linear-gradient(
    180deg,
    rgba(10, 25, 36, 0.9),
    rgba(8, 20, 30, 0.96)
  );
  box-shadow: var(--shadow);
}

.shortcut-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 640px;
}

.shortcut-table th,
.shortcut-table td {
  padding: 14px 16px;
  text-align: left;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  vertical-align: top;
}

.shortcut-table th {
  color: var(--accent);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 800;
  background: rgba(108, 228, 255, 0.06);
}

.shortcut-table tbody tr:hover {
  background: rgba(108, 228, 255, 0.06);
}

.shortcut-table code {
  font-family: "Menlo", "Monaco", "Courier New", monospace;
  font-size: 0.86rem;
  color: #f8fcff;
  padding: 2px 8px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(6, 18, 26, 0.9);
}

.shortcut-note {
  margin-top: 12px;
  color: var(--muted);
  font-size: 0.93rem;
}

.faq-card p,
.support-card p,
.policy-card p {
  margin: 0;
  color: var(--muted);
}

.faq-card a {
  color: var(--accent);
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}

.faq-card a:hover,
.faq-card a:focus-visible {
  color: #9eeeff;
}

.cta-band {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background:
    linear-gradient(135deg, rgba(28, 79, 103, 0.96), rgba(7, 20, 29, 0.96)),
    rgba(10, 25, 36, 0.94);
  box-shadow: var(--shadow);
}

.cta-band h2 {
  margin: 0 0 12px;
  font-size: clamp(2.1rem, 5vw, 3.8rem);
}

.cta-band p {
  max-width: 56ch;
  margin: 0 0 24px;
  color: #d4edf7;
}

.site-footer {
  padding: 32px 0 46px;
  border-top: 1px solid rgba(146, 201, 224, 0.12);
}

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

.footer-copy {
  color: var(--muted);
  font-size: 0.92rem;
}

.footer-links {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

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

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--text);
}

.caption {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.note {
  margin-top: 18px;
  padding: 14px 16px;
  border-left: 3px solid var(--accent-warm);
  background: rgba(255, 209, 102, 0.08);
  color: #fce8b8;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (max-width: 1024px) {
  .hero-grid,
  .split-grid,
  .card-grid,
  .card-grid-3,
  .metrics,
  .hero-facts,
  .panel-meta {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .sticky-panel {
    position: static;
  }
}

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

  .nav-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: absolute;
    left: 16px;
    right: 16px;
    top: calc(100% + 10px);
    flex-direction: column;
    align-items: stretch;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 24px;
    background: rgba(7, 17, 25, 0.96);
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition:
      opacity 180ms ease,
      transform 180ms ease;
  }

  .site-nav[data-open="true"] {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-nav a {
    padding: 14px 16px;
    border-radius: 16px;
  }

  .hero-grid,
  .card-grid,
  .card-grid-3,
  .metrics,
  .hero-facts,
  .panel-meta {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 34px;
  }

  .hero-copy h1 {
    font-size: clamp(3.2rem, 18vw, 5.8rem);
  }

  .section-spacious {
    padding: 72px 0;
  }

  .cta-band,
  .feature-card,
  .support-card,
  .faq-card,
  .timeline-card,
  .policy-card {
    padding: 22px;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
