@font-face {
  font-family: "Outfit";
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url("../assets/fonts/outfit-latin-ext.woff2") format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
  font-family: "Outfit";
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url("../assets/fonts/outfit-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: "Unbounded";
  font-style: normal;
  font-weight: 500 700;
  font-display: swap;
  src: url("../assets/fonts/unbounded-latin-ext.woff2") format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
  font-family: "Unbounded";
  font-style: normal;
  font-weight: 500 700;
  font-display: swap;
  src: url("../assets/fonts/unbounded-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
  --bg: #09060c;
  --bg-2: #120910;
  --ink: #f7f3ee;
  --muted: #c4b8c2;
  --faint: #8d8290;
  --line: rgba(255, 255, 255, 0.1);
  --red: #e1061b;
  --red-2: #ff4b57;
  --gold: #f0c27a;
  --card: rgba(255, 255, 255, 0.035);
  --display: "Unbounded", "Arial Black", sans-serif;
  --sans: "Outfit", "Segoe UI", sans-serif;
  --max: 1120px;
  --header: 76px;
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
}

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

html { scroll-behavior: smooth; }

body {
  margin: 0;
  min-height: 100vh;
  color: var(--ink);
  font-family: var(--sans);
  font-size: 1.0625rem;
  line-height: 1.7;
  background:
    radial-gradient(ellipse 70% 45% at 0% -10%, rgba(225, 6, 27, 0.28), transparent 55%),
    radial-gradient(ellipse 40% 30% at 100% 0%, rgba(240, 194, 122, 0.1), transparent 50%),
    var(--bg);
}

img { max-width: 100%; height: auto; }

a { color: inherit; }

button, a { -webkit-tap-highlight-color: transparent; }

p { overflow-wrap: break-word; }

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

::selection {
  background: var(--red);
  color: white;
}

.skip {
  position: absolute;
  left: 16px;
  top: -48px;
  z-index: 80;
  padding: 10px 14px;
  border-radius: 999px;
  background: white;
  color: #111;
  text-decoration: none;
}

.skip:focus { top: 12px; }

.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;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: var(--header);
  display: flex;
  align-items: center;
  transition: background 0.2s ease, border-color 0.2s ease, backdrop-filter 0.2s ease;
  border-bottom: 1px solid transparent;
}

.site-header.is-scrolled {
  background: rgba(9, 6, 12, 0.86);
  backdrop-filter: blur(18px);
  border-bottom-color: var(--line);
}

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

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-family: var(--display);
  font-weight: 700;
  letter-spacing: -0.04em;
  font-size: 1.05rem;
}

.brand img {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(225, 6, 27, 0.35);
}

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

.site-nav a {
  text-decoration: none;
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 560;
  padding: 8px 12px;
  border-radius: 999px;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: white;
  background: rgba(255, 255, 255, 0.06);
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
  padding: 0;
  place-items: center;
  gap: 5px;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: white;
  border-radius: 2px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 12px 22px;
  border-radius: 999px;
  border: 0;
  text-decoration: none;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: white;
  background: linear-gradient(180deg, #ff3d4a 0%, #d10d22 58%, #9d0816 100%);
  box-shadow: 0 12px 30px rgba(209, 13, 34, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.35);
}

.btn:hover { filter: brightness(1.06); transform: translateY(-1px); }

.btn-ghost {
  color: var(--ink);
  background: transparent;
  box-shadow: none;
  border: 1px solid var(--line);
}

.btn-sm { min-height: 40px; padding: 8px 14px; font-size: 0.92rem; }

.hero {
  position: relative;
  overflow: hidden;
  padding: 28px 0 72px;
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
}

.hero-grid::before,
.orbit {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.orbit {
  width: 540px;
  height: 540px;
  right: -40px;
  top: -30px;
  border: 1px solid rgba(225, 6, 27, 0.35);
  animation: spin 42s linear infinite;
}

.orbit::after {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  left: 40px;
  top: 18px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 18px var(--gold);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 16px;
  padding: 6px 12px 6px 8px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
  color: var(--gold);
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #3dff8a;
  box-shadow: 0 0 0 0 rgba(61, 255, 138, 0.7);
  animation: pulse 1.8s ease-out infinite;
}

.hero h1,
.page-hero h1 {
  margin: 0 0 16px;
  font-family: var(--display);
  font-weight: 700;
  letter-spacing: -0.05em;
  line-height: 0.95;
  font-size: clamp(2.7rem, 4.4vw, 4.25rem);
}

.hero h1 { white-space: nowrap; }

.lede {
  max-width: 48ch;
  margin: 0 0 26px;
  color: var(--muted);
  font-size: 1.12rem;
}

.hero-actions,
.page-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 22px;
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.chips li {
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.88rem;
}

.hero-visual {
  position: relative;
  margin: 0;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: var(--shadow), 0 0 0 1px rgba(225, 6, 27, 0.15);
  transform: rotate(-1.5deg);
}

.hero-visual img {
  display: block;
  width: 100%;
  height: auto;
}

.hero-visual::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 30%;
  background: linear-gradient(transparent, rgba(9, 6, 12, 0.2));
  pointer-events: none;
}

.section { padding: 28px 0 80px; }

section[id],
#top { scroll-margin-top: 92px; }

.kicker {
  margin: 0 0 8px;
  color: var(--red-2);
  font-family: var(--display);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.section h2,
.prose h2,
.cta-band h2 {
  margin: 0 0 12px;
  font-family: var(--display);
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 1.15;
  font-size: clamp(1.7rem, 3vw, 2.5rem);
}

.section-head { max-width: 62ch; margin-bottom: 28px; }

.section-head p { margin: 0; color: var(--muted); }

.bento {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: 16px;
}

.card {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-height: 180px;
  padding: 24px;
  border-radius: 24px;
  text-decoration: none;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.02));
  border: 1px solid var(--line);
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.card:hover {
  transform: translateY(-3px);
  border-color: rgba(225, 6, 27, 0.55);
}

.card h2, .card h3 {
  margin: 0;
  font-family: var(--display);
  font-size: 1.35rem;
  letter-spacing: -0.04em;
  line-height: 1.2;
  font-weight: 500;
}

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

.card-wide { grid-column: 1 / -1; }

.card-accent {
  background:
    radial-gradient(circle at 100% 0%, rgba(225, 6, 27, 0.35), transparent 45%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
}

.split {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 36px;
  align-items: start;
}

.prose p { margin: 0 0 16px; color: #ebe4ea; }

.prose h2 { margin-top: 8px; }

.prose ul, .prose ol { margin: 0 0 16px; padding-left: 1.2rem; color: #ebe4ea; }

.prose li + li { margin-top: 6px; }

.prose a { color: var(--gold); }

.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 18px;
}

table { width: 100%; border-collapse: collapse; min-width: 520px; }

th, td { text-align: left; padding: 14px 16px; vertical-align: top; }

th {
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(255, 255, 255, 0.03);
}

td { border-top: 1px solid var(--line); color: var(--muted); }

caption {
  caption-side: bottom;
  padding: 10px 4px 0;
  text-align: left;
  color: var(--faint);
  font-size: 0.85rem;
}

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

.steps li {
  position: relative;
  padding: 20px 20px 20px 84px;
  border-radius: 20px;
  border: 1px solid var(--line);
  background: var(--card);
}

.steps li::before {
  content: counter(step, decimal-leading-zero);
  counter-increment: step;
  position: absolute;
  left: 18px;
  top: 20px;
  font-family: var(--display);
  color: var(--red-2);
  font-size: 1rem;
}

.steps { counter-reset: step; }

.steps h3 { margin: 0 0 6px; font-size: 1.15rem; letter-spacing: -0.03em; }

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

.faq { display: grid; gap: 10px; }

.faq-item {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.025);
  overflow: hidden;
}

.faq-q {
  width: 100%;
  text-align: left;
  padding: 18px 20px;
  border: 0;
  background: transparent;
  color: white;
  font: inherit;
  font-weight: 650;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  gap: 16px;
}

.faq-q::after {
  content: "+";
  color: var(--gold);
  font-family: var(--display);
}

.faq-item.is-open .faq-q::after { content: "–"; }

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

.js .faq-a {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.28s ease;
}

.js .faq-item.is-open .faq-a { grid-template-rows: 1fr; }

.faq-a > div { overflow: hidden; }

.faq-a p { margin: 0; padding: 0 20px 18px; }

.callout {
  margin: 18px 0;
  padding: 16px 18px;
  border-radius: 0 16px 16px 0;
  border-left: 3px solid var(--gold);
  background: rgba(240, 194, 122, 0.08);
  color: #f3e7d2;
}

.cta-band {
  margin: 10px auto 80px;
  padding: 36px;
  border-radius: 28px;
  background:
    radial-gradient(circle at 0% 0%, rgba(255, 75, 87, 0.35), transparent 40%),
    linear-gradient(160deg, #2a0c14, #120910 60%);
  border: 1px solid rgba(255, 75, 87, 0.3);
}

.cta-band p { margin: 0 0 18px; color: var(--muted); max-width: 58ch; }

.page-hero { padding: 36px 0 10px; }

.page-hero h1 { font-size: clamp(2.4rem, 6vw, 4.4rem); }

.crumbs ol {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 18px;
  padding: 0;
  list-style: none;
  color: var(--faint);
  font-size: 0.92rem;
}

.crumbs li:not(:last-child)::after { content: "/"; margin-left: 8px; color: #5c5360; }

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

.grid-3, .grid-2 {
  display: grid;
  gap: 16px;
}

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

.stat {
  padding: 22px;
  border-radius: 22px;
  border: 1px solid var(--line);
  background: var(--card);
}

.stat strong {
  display: block;
  margin-bottom: 6px;
  font-family: var(--display);
  font-weight: 500;
  letter-spacing: -0.03em;
  font-size: 1.2rem;
}

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

.site-footer {
  border-top: 1px solid var(--line);
  padding: 42px 0 28px;
  color: var(--muted);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 28px;
  margin-bottom: 28px;
}

.site-footer h2 {
  margin: 0 0 12px;
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: white;
}

.site-footer ul { margin: 0; padding: 0; list-style: none; }

.site-footer li + li { margin-top: 8px; }

.site-footer a { color: var(--muted); text-decoration: none; }

.site-footer a:hover { color: white; }

.age {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  font-size: 0.92rem;
}

.age strong {
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 2px solid var(--red-2);
  color: white;
  font-size: 0.85rem;
}

.legal { margin: 12px 0 0; color: var(--faint); font-size: 0.85rem; }

.lost {
  min-height: calc(100vh - 220px);
  display: grid;
  place-items: center;
  text-align: center;
  padding: 48px 0;
}

.lost h1 { font-family: var(--display); font-size: clamp(3rem, 8vw, 6rem); letter-spacing: -0.06em; margin: 0 0 8px; }

@keyframes spin { to { transform: rotate(360deg); } }

@keyframes pulse {
  70% { box-shadow: 0 0 0 8px rgba(61, 255, 138, 0); }
  100% { box-shadow: 0 0 0 0 rgba(61, 255, 138, 0); }
}

@media (max-width: 900px) {
  .hero-grid, .split, .bento, .footer-grid, .grid-3, .grid-2 { grid-template-columns: 1fr; }
  .card-wide { grid-column: auto; }
  .orbit { display: none; }
  .hero-visual { transform: none; }
  .nav-toggle { display: block; }
  .site-nav {
    display: none;
    position: absolute;
    left: 20px;
    right: 20px;
    top: calc(var(--header) - 6px);
    flex-direction: column;
    align-items: stretch;
    padding: 12px;
    border-radius: 20px;
    border: 1px solid var(--line);
    background: rgba(16, 10, 16, 0.96);
    box-shadow: var(--shadow);
  }
  .site-nav.is-open { display: flex; }
  .site-nav .btn { width: 100%; }
}

@media (max-width: 640px) {
  .wrap { width: min(var(--max), calc(100% - 28px)); }
  .cta-band { padding: 24px; }
  .hero h1 { white-space: normal; font-size: clamp(2.5rem, 12vw, 3.4rem); }
  .steps li { padding-left: 20px; }
  .steps li::before { position: static; display: block; margin-bottom: 8px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation: none !important;
    transition: none !important;
  }
}
