:root {
  --void: #070b14;
  --void-2: #0b1220;
  --panel: rgba(16, 24, 40, 0.72);
  --panel-solid: #101828;
  --ink: #eef3ff;
  --ink-2: rgba(226, 232, 248, 0.7);
  --ink-3: rgba(226, 232, 248, 0.42);
  --line: rgba(255, 255, 255, 0.1);
  --pulse: #ff8a4a;
  --pulse-2: #f0a03a;
  --pulse-deep: #d85a28;
  --pulse-soft: rgba(255, 138, 74, 0.14);
  --signal: #8ea2ff;
  --wrap: min(1080px, calc(100% - 40px));
  --wrap-wide: min(1180px, calc(100% - 40px));
  --display: "Syne", "Sora", ui-sans-serif, system-ui, sans-serif;
  --sans: "Outfit", ui-sans-serif, system-ui, sans-serif;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { color-scheme: dark; scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  background: var(--void);
  color: var(--ink);
  line-height: 1.6;
  min-height: 100vh;
}

body::before {
  content: "";
  pointer-events: none;
  position: fixed;
  inset: 0;
  background:
    radial-gradient(900px 520px at 80% -10%, rgba(255, 138, 74, 0.16), transparent 58%),
    radial-gradient(700px 480px at -8% 20%, rgba(142, 162, 255, 0.1), transparent 55%),
    linear-gradient(180deg, var(--void-2), var(--void) 42%);
  z-index: -2;
}

body::after {
  content: "";
  pointer-events: none;
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.028) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(ellipse at 50% 0%, #000 20%, transparent 75%);
  z-index: -1;
}

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

.wrap { width: var(--wrap); margin: 0 auto; }
.wrap-wide { width: var(--wrap-wide); margin: 0 auto; }

.skip {
  position: absolute;
  left: 12px;
  top: -44px;
  background: var(--pulse);
  color: #1a0c06;
  padding: 8px 12px;
  border-radius: 8px;
  z-index: 20;
  text-decoration: none;
  font-weight: 600;
}
.skip:focus { top: 12px; }

/* ── Nav ─────────────────────────────────────────────── */
.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 0;
  gap: 16px;
}
.mark {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-family: var(--display);
  font-weight: 700;
  letter-spacing: -0.04em;
  font-size: 1.12rem;
}
.mark svg { display: block; }
.nav nav { display: flex; gap: 4px; }
.nav nav a {
  text-decoration: none;
  color: var(--ink-2);
  font-size: 0.92rem;
  font-weight: 500;
  padding: 10px 14px;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
}
.nav nav a:hover { color: var(--ink); background: rgba(255,255,255,0.05); }
.nav nav a[aria-current="page"] {
  color: var(--pulse);
  background: var(--pulse-soft);
}

/* ── Hero ────────────────────────────────────────────── */
.hero {
  padding: 12px 0 80px;
}
.stage {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  border: 1px solid var(--line);
  min-height: min(72vh, 640px);
  background: #08101c;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
}
.stage img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 70% 45%;
}
.stage::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7, 11, 20, 0.88) 0%, rgba(7, 11, 20, 0.55) 46%, rgba(7, 11, 20, 0.18) 100%),
    linear-gradient(180deg, rgba(7, 11, 20, 0.15), rgba(7, 11, 20, 0.55));
}
.hero-copy {
  position: relative;
  z-index: 1;
  max-width: 46rem;
  padding: clamp(32px, 6vw, 64px);
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 16px;
  color: var(--pulse);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.kicker .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--pulse);
  box-shadow: 0 0 12px var(--pulse);
  animation: blink 2.4s ease-in-out infinite;
}
h1 {
  font-family: var(--display);
  font-size: clamp(2.05rem, 4vw, 2.9rem);
  font-weight: 750;
  line-height: 1.02;
  letter-spacing: -0.045em;
  margin: 0 0 16px;
}
h1 span { display: block; }
@media (min-width: 800px) {
  h1 span { white-space: nowrap; }
}
.lede {
  margin: 0;
  font-size: 1.12rem;
  color: var(--ink-2);
  max-width: 32rem;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  border: 1px solid transparent;
}
.btn-primary {
  background: var(--pulse);
  color: #1a0c06;
  border-color: var(--pulse);
  box-shadow: 0 0 24px rgba(255, 138, 74, 0.28);
}
.btn-primary:hover { background: #ff9b62; }
.btn-ghost {
  background: rgba(255,255,255,0.04);
  color: var(--ink);
  border-color: var(--line);
  backdrop-filter: blur(10px);
}
.btn-ghost:hover { background: rgba(255,255,255,0.08); }

/* ── Sections ────────────────────────────────────────── */
.section { padding: 8px 0 76px; }
.section h2 {
  font-family: var(--display);
  font-size: clamp(1.7rem, 3vw, 2.35rem);
  font-weight: 720;
  letter-spacing: -0.035em;
  margin: 0 0 10px;
}
.intro {
  margin: 0 0 28px;
  color: var(--ink-2);
  max-width: 36rem;
  font-size: 1.04rem;
}

.moments {
  display: grid;
  gap: 14px;
}
@media (min-width: 760px) {
  .moments { grid-template-columns: repeat(3, 1fr); }
}
.moment,
.benefit {
  background: var(--panel);
  border: 1px solid var(--line);
  backdrop-filter: blur(16px);
}
.moment {
  border-radius: 20px;
  padding: 22px 20px 20px;
}
.moment .when {
  display: inline-block;
  color: var(--signal);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.moment h3,
.benefit h3 {
  margin: 0 0 8px;
  font-size: 1.16rem;
  letter-spacing: -0.025em;
  font-weight: 600;
}
.moment p,
.benefit p { margin: 0; color: var(--ink-2); }

.benefits {
  display: grid;
  gap: 0;
  border: 1px solid var(--line);
  border-radius: 22px;
  overflow: hidden;
  background: var(--panel);
  backdrop-filter: blur(16px);
}
.benefit { padding: 26px 24px; background: transparent; }
.benefit + .benefit { border-top: 1px solid var(--line); }
@media (min-width: 800px) {
  .benefits { grid-template-columns: repeat(3, 1fr); }
  .benefit + .benefit {
    border-top: 0;
    border-left: 1px solid var(--line);
  }
}

.close {
  margin: 8px 0 72px;
  padding: 36px 32px;
  border-radius: 26px;
  background:
    radial-gradient(500px 180px at 90% 0%, rgba(255, 138, 74, 0.18), transparent 60%),
    var(--panel-solid);
  border: 1px solid var(--line);
}
.close h2 { margin-bottom: 10px; }
.close p {
  margin: 0 0 22px;
  color: var(--ink-2);
  max-width: 34rem;
}

/* ── Privacy ─────────────────────────────────────────── */
.prose { padding: 20px 0 88px; max-width: 40rem; }
.prose .kicker { margin-bottom: 12px; }
.prose h1 { font-size: clamp(2.2rem, 5vw, 3.3rem); }
.prose h2 {
  font-family: var(--display);
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  margin: 2.1rem 0 0.5rem;
}
.prose p, .prose li { color: var(--ink-2); }
.prose a { color: var(--pulse); text-decoration: none; }
.prose a:hover { text-decoration: underline; }
.prose ul { padding-left: 1.15rem; }
.prose li { margin: 0.4rem 0; }
.prose strong { color: var(--ink); font-weight: 600; }
code {
  font-family: ui-monospace, "SFMono-Regular", Menlo, monospace;
  font-size: 0.88em;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--line);
  padding: 0.08em 0.4em;
  border-radius: 6px;
  color: var(--ink);
}

/* ── Footer ──────────────────────────────────────────── */
.foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 0 0 36px;
  color: var(--ink-3);
  font-size: 0.88rem;
}
.foot a { text-decoration: none; color: var(--ink-2); }
.foot a:hover { color: var(--pulse); }

:focus-visible {
  outline: 2px solid var(--pulse);
  outline-offset: 3px;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.35; }
}

@media (max-width: 640px) {
  .hero { padding-top: 4px; }
  .stage { min-height: 520px; }
  .hero-copy { padding: 28px 22px 32px; }
  h1 span { display: inline; }
  .close { padding: 28px 20px; }
  .foot { flex-direction: column; align-items: flex-start; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .kicker .dot { animation: none; }
}
