:root {
  color-scheme: dark;
  --bg: #080d18;
  --panel: #111827;
  --panel-soft: #151e2f;
  --text: #f7f5ef;
  --muted: #aab3c3;
  --rule: rgba(255, 255, 255, 0.13);
  --accent: #c8f04b;
  --accent-ink: #10150a;
  --max: 76rem;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Onest, Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; }
img { display: block; max-width: 100%; }
.shell { width: min(calc(100% - 2rem), var(--max)); margin-inline: auto; }
.site-header { border-bottom: 1px solid var(--rule); }
.header-inner { min-height: 4.75rem; display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.brand { font-weight: 800; letter-spacing: -0.04em; text-decoration: none; font-size: 1.25rem; }
.brand span { color: var(--accent); }
.header-nav { display: flex; align-items: center; gap: 1.25rem; color: var(--muted); font-size: 0.92rem; }
.header-nav a { text-decoration: none; }
.header-nav a:hover { color: var(--text); }
.header-cta { padding: 0.65rem 0.95rem; border-radius: 0.7rem; background: var(--accent); color: var(--accent-ink) !important; font-weight: 750; }
.hero { padding-block: clamp(4rem, 9vw, 8rem); border-bottom: 1px solid var(--rule); }
.eyebrow { margin: 0 0 1rem; color: var(--accent); font-size: 0.78rem; font-weight: 800; letter-spacing: 0.11em; text-transform: uppercase; }
h1, h2, h3 { margin: 0; line-height: 1.02; letter-spacing: -0.055em; text-wrap: balance; }
h1 { max-width: 14ch; font-size: clamp(3rem, 9vw, 6.8rem); }
h2 { max-width: 18ch; font-size: clamp(2rem, 5vw, 3.8rem); }
h3 { font-size: 1.2rem; letter-spacing: -0.025em; }
.lead { max-width: 48rem; margin: 1.75rem 0 0; color: var(--muted); font-size: clamp(1.05rem, 2vw, 1.35rem); }
.hero-grid { display: grid; gap: 2.5rem; }
.hero-visual { min-height: 20rem; border-radius: 1.4rem; overflow: hidden; background: var(--panel); }
.hero-visual img { width: 100%; height: 100%; object-fit: cover; }
.section { padding-block: clamp(4rem, 8vw, 7rem); border-bottom: 1px solid var(--rule); }
.section-intro { max-width: 45rem; margin: 1.25rem 0 0; color: var(--muted); font-size: 1.08rem; }
.cards { margin-top: 2.5rem; display: grid; gap: 1px; background: var(--rule); border: 1px solid var(--rule); border-radius: 1.2rem; overflow: hidden; }
.card { min-width: 0; padding: clamp(1.4rem, 4vw, 2.25rem); background: var(--panel); }
.card p { margin: 0.75rem 0 0; color: var(--muted); }
.facts { margin: 2.5rem 0 0; display: grid; border-top: 1px solid var(--rule); }
.facts div { padding-block: 1.15rem; display: grid; grid-template-columns: minmax(7rem, 0.35fr) minmax(0, 1fr); gap: 1rem; border-bottom: 1px solid var(--rule); }
.facts dt { color: var(--muted); font-size: 0.76rem; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; }
.facts dd { margin: 0; font-weight: 650; }
.steps { margin: 2.5rem 0 0; padding: 0; list-style: none; counter-reset: steps; }
.steps li { counter-increment: steps; padding: 1.4rem 0 1.4rem 4rem; position: relative; border-top: 1px solid var(--rule); }
.steps li::before { content: counter(steps, decimal-leading-zero); position: absolute; left: 0; top: 1.45rem; color: var(--accent); font-weight: 800; }
.steps strong { display: block; font-size: 1.08rem; }
.steps p { margin: 0.35rem 0 0; color: var(--muted); }
.note { margin-top: 2.5rem; padding: 1.5rem; border-left: 3px solid var(--accent); background: var(--panel-soft); color: var(--muted); }
.note strong { color: var(--text); }
.cta { padding-block: clamp(4rem, 9vw, 7rem); }
.cta-inner { display: flex; flex-direction: column; align-items: flex-start; gap: 1.5rem; }
.button { display: inline-flex; align-items: center; justify-content: center; min-height: 3.2rem; padding: 0.8rem 1.2rem; border-radius: 0.8rem; background: var(--accent); color: var(--accent-ink); font-weight: 800; text-decoration: none; }
.site-footer { padding-block: 2rem; border-top: 1px solid var(--rule); color: var(--muted); font-size: 0.9rem; }
.footer-inner { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 1rem; }
.footer-links { display: flex; flex-wrap: wrap; gap: 1rem; }
.updated { margin-top: 1.5rem; color: var(--muted); font-size: 0.85rem; }

@media (min-width: 48rem) {
  .hero-grid { grid-template-columns: minmax(0, 1.1fr) minmax(19rem, 0.9fr); align-items: center; }
  .cards { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .cta-inner { flex-direction: row; justify-content: space-between; align-items: flex-end; }
}

@media (max-width: 38rem) {
  .header-nav > a:not(.header-cta) { display: none; }
  .facts div { grid-template-columns: 1fr; gap: 0.35rem; }
}

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