:root {
  --bg: #08070a;
  --bg-2: #12090d;
  --panel: rgba(24, 18, 24, 0.76);
  --panel-strong: rgba(33, 22, 28, 0.94);
  --line: rgba(255, 255, 255, 0.12);
  --text: #fff5eb;
  --muted: #bdb1ad;
  --red: #ff3030;
  --red-dark: #a80d19;
  --teal: #13ded1;
  --gold: #ffba57;
  --gold-soft: #ffe1a4;
  --shadow: 0 26px 80px rgba(0, 0, 0, 0.42);
  --radius-xl: 32px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --container: min(1180px, calc(100vw - 32px));
  --font-main: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-main);
  color: var(--text);
  background:
    radial-gradient(circle at 12% 8%, rgba(255, 48, 48, .18), transparent 34%),
    radial-gradient(circle at 88% 0%, rgba(19, 222, 209, .14), transparent 26%),
    linear-gradient(140deg, #070609 0%, #12070a 38%, #081314 100%);
  min-height: 100vh;
  overflow-x: hidden;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 68px 68px;
  mask-image: radial-gradient(circle at center, black, transparent 78%);
  z-index: -2;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.ambient-orb {
  position: fixed;
  width: 460px;
  height: 460px;
  border-radius: 999px;
  filter: blur(74px);
  opacity: .32;
  z-index: -1;
  pointer-events: none;
}
.orb-red { background: var(--red); left: -170px; top: 240px; }
.orb-teal { background: var(--teal); right: -180px; top: 520px; }

.vault-header {
  position: sticky;
  top: 0;
  z-index: 20;
  width: var(--container);
  margin: 14px auto 0;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(11, 8, 12, .58);
  backdrop-filter: blur(18px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: .25s ease;
  box-shadow: 0 12px 36px rgba(0,0,0,.18);
}
.vault-header.is-scrolled {
  background: rgba(11, 8, 12, .9);
  border-color: rgba(255, 186, 87, .28);
  transform: translateY(6px);
}
.brand-mark img { height: 48px; width: auto; }
.vault-nav { display: flex; align-items: center; gap: 6px; }
.vault-nav a {
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
  padding: 12px 14px;
  border-radius: 999px;
  transition: .2s ease;
}
.vault-nav a:hover { color: #fff; background: rgba(255,255,255,.08); }
.menu-toggle {
  display: none;
  border: 1px solid var(--line);
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(255,255,255,.05);
  cursor: pointer;
}
.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: #fff;
  margin: 4px auto;
  border-radius: 6px;
}

.hero-vault { padding: 80px 0 42px; }
.hero-grid {
  width: var(--container);
  margin: auto;
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(420px, 1.1fr);
  align-items: center;
  gap: 42px;
}
.eyebrow, .card-kicker {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  align-items: center;
  color: var(--gold-soft);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-weight: 900;
}
.eyebrow span, .card-kicker {
  padding: 8px 10px;
  border: 1px solid rgba(255, 186, 87, .24);
  border-radius: 999px;
  background: rgba(255, 186, 87, .07);
}
.hero-copy h1 {
  font-size: clamp(42px, 6.5vw, 88px);
  line-height: .92;
  margin: 22px 0;
  max-width: 920px;
  letter-spacing: -0.07em;
}
.hero-text { color: var(--muted); font-size: 17px; line-height: 1.8; }
.hero-text p { margin: 0 0 16px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin: 28px 0; }
.cta-main, .cta-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 900;
  transition: .22s ease;
}
.cta-main {
  color: #fff;
  background: linear-gradient(135deg, var(--red), #ff743d 55%, var(--gold));
  box-shadow: 0 18px 40px rgba(255, 48, 48, .24);
}
.cta-main:hover { transform: translateY(-3px); box-shadow: 0 24px 52px rgba(255, 48, 48, .34); }
.cta-ghost { color: #fff; border: 1px solid rgba(255,255,255,.18); background: rgba(255,255,255,.05); }
.cta-ghost:hover { border-color: var(--teal); background: rgba(19,222,209,.1); }
.signal-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 22px;
}
.signal-row div {
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 16px;
  background: rgba(255,255,255,.04);
}
.signal-row strong { display: block; color: var(--teal); font-size: 28px; }
.signal-row span { color: var(--muted); font-size: 12px; }
.hero-media {
  margin: 0;
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid rgba(255, 186, 87, .28);
  box-shadow: var(--shadow);
  transform: rotate(1deg);
  background: #120b0d;
}
.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.64), transparent 44%);
  pointer-events: none;
}
.hero-media img { min-height: 420px; height: 100%; object-fit: cover; }
.hero-media figcaption {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 2;
  color: #fff;
  font-weight: 800;
  line-height: 1.45;
  background: rgba(0,0,0,.42);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 18px;
  padding: 14px 16px;
  backdrop-filter: blur(12px);
}
.floating-chip {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 3;
  border-radius: 999px;
  padding: 10px 14px;
  font-weight: 900;
  color: #081313;
  background: linear-gradient(135deg, var(--teal), var(--gold));
}
.quick-orbit, .screen-strip, .article-shell, .final-glow, .vault-footer {
  width: var(--container);
  margin-left: auto;
  margin-right: auto;
}
.quick-orbit {
  padding: 28px 0 58px;
  display: grid;
  grid-template-columns: 1.2fr .8fr .95fr;
  gap: 18px;
}
.orbit-card {
  background: linear-gradient(160deg, rgba(255,255,255,.075), rgba(255,255,255,.025));
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 22px;
  min-height: 230px;
  box-shadow: 0 20px 70px rgba(0,0,0,.2);
  position: relative;
  overflow: hidden;
}
.orbit-card::before {
  content: "";
  position: absolute;
  inset: -1px;
  background: radial-gradient(circle at 20% 0%, rgba(255,48,48,.18), transparent 40%), radial-gradient(circle at 100% 0%, rgba(19,222,209,.14), transparent 38%);
  pointer-events: none;
}
.orbit-card > * { position: relative; z-index: 1; }
.orbit-card h2 { margin: 14px 0 10px; font-size: 24px; letter-spacing: -.03em; }
.orbit-card p { color: var(--muted); line-height: 1.65; }
.timer { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; margin-top: 18px; }
.timer div {
  text-align: center;
  border-radius: 16px;
  padding: 12px 6px;
  background: rgba(0,0,0,.28);
  border: 1px solid rgba(255,255,255,.1);
}
.timer strong { display: block; font-size: 26px; color: var(--gold); }
.timer span { color: var(--muted); font-size: 11px; text-transform: uppercase; }
.geo-card select {
  width: 100%;
  margin: 12px 0;
  border: 1px solid rgba(255,255,255,.16);
  background: rgba(0,0,0,.28);
  color: #fff;
  border-radius: 14px;
  padding: 13px 14px;
  outline: none;
}
.geo-card label { color: var(--muted); display: block; margin-top: 16px; }
.tab-buttons { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; margin: 16px 0; }
.tab-buttons button {
  cursor: pointer;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(0,0,0,.22);
  color: var(--muted);
  border-radius: 999px;
  padding: 10px 8px;
  font-weight: 900;
}
.tab-buttons button.is-active { color: #06100f; background: var(--teal); }
.tab-panel { display: none; color: var(--muted); line-height: 1.7; }
.tab-panel.is-active { display: block; }

.screen-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  padding-bottom: 56px;
}
.screen-strip article {
  border-radius: 26px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.12);
  background: var(--panel);
  position: relative;
  min-height: 240px;
  box-shadow: 0 18px 60px rgba(0,0,0,.22);
}
.screen-strip img { width: 100%; height: 100%; min-height: 240px; object-fit: cover; transition: transform .5s ease; }
.screen-strip article:hover img { transform: scale(1.04); }
.screen-strip span {
  position: absolute;
  left: 14px;
  bottom: 14px;
  padding: 10px 12px;
  border-radius: 999px;
  color: #fff;
  background: rgba(0,0,0,.58);
  backdrop-filter: blur(12px);
  font-weight: 900;
  border: 1px solid rgba(255,255,255,.12);
}

.article-shell {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 24px;
  align-items: start;
}
.section-rail { position: sticky; top: 112px; }
.rail-card {
  border: 1px solid var(--line);
  background: rgba(10,8,12,.72);
  backdrop-filter: blur(18px);
  border-radius: 26px;
  padding: 18px;
  max-height: calc(100vh - 130px);
  overflow: auto;
}
.rail-card > span {
  display: block;
  color: var(--gold);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .13em;
  font-weight: 950;
  margin-bottom: 12px;
}
.rail-card a {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 10px;
  align-items: start;
  color: var(--muted);
  padding: 10px 0;
  border-top: 1px solid rgba(255,255,255,.08);
  font-size: 13px;
  line-height: 1.35;
  transition: .2s ease;
}
.rail-card a:hover { color: #fff; transform: translateX(3px); }
.rail-card a span { color: var(--teal); font-weight: 900; }
.article-body { min-width: 0; }
.review-pane {
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: linear-gradient(145deg, rgba(255,255,255,.067), rgba(255,255,255,.025));
  box-shadow: 0 22px 70px rgba(0,0,0,.22);
  padding: clamp(24px, 4vw, 42px);
  margin-bottom: 24px;
  overflow: hidden;
  position: relative;
}
.review-pane::before {
  content: "";
  position: absolute;
  width: 230px;
  height: 230px;
  right: -120px;
  top: -120px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(255,186,87,.16), transparent 72%);
  pointer-events: none;
}
.review-pane > * { position: relative; z-index: 1; }
.pane-title, .review-pane h2 {
  font-size: clamp(28px, 3.2vw, 46px);
  line-height: 1.04;
  letter-spacing: -.055em;
  margin: 0 0 22px;
}
.review-pane h3 {
  color: var(--gold-soft);
  font-size: clamp(20px, 2vw, 26px);
  margin-top: 30px;
  letter-spacing: -.03em;
}
.review-pane p, .review-pane li, .review-pane td, .review-pane th {
  font-size: 16px;
  line-height: 1.78;
}
.review-pane p { color: #ddd0ca; margin: 0 0 16px; }
.review-pane strong { color: #fff; }
ul, ol { padding-left: 1.2rem; }
.review-pane li { color: #ded0cb; margin-bottom: 10px; }
.review-pane ul li::marker { color: var(--teal); }
.review-pane ol li::marker { color: var(--gold); font-weight: 900; }
.table-frame {
  width: 100%;
  overflow-x: auto;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 22px;
  margin: 22px 0;
  background: rgba(0,0,0,.18);
}
table { width: 100%; border-collapse: collapse; min-width: 650px; }
th, td { text-align: left; vertical-align: top; padding: 16px 18px; border-bottom: 1px solid rgba(255,255,255,.09); }
th { color: #fff; background: rgba(255,48,48,.14); }
td { color: #d9cbc6; }
tr:last-child td { border-bottom: 0; }
.image-moment {
  margin: 28px 0;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid rgba(255,186,87,.22);
  background: #100b10;
  box-shadow: var(--shadow);
}
.image-moment img { width: 100%; max-height: 520px; object-fit: cover; }
.image-moment figcaption {
  padding: 14px 16px;
  color: var(--muted);
  font-weight: 700;
  background: rgba(0,0,0,.26);
}
/* Convert the FAQ headings into accordion cards while keeping semantic content. */
[id^="faq-"] h3 {
  margin: 12px 0 0;
  padding: 18px 54px 18px 18px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 18px;
  background: rgba(255,255,255,.05);
  cursor: pointer;
  position: relative;
}
[id^="faq-"] h3::after {
  content: "+";
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--teal);
  font-size: 24px;
}
[id^="faq-"] h3.is-open::after { content: "−"; }
[id^="faq-"] h3 + p {
  display: none;
  padding: 16px 18px 4px;
  margin: 0;
}
[id^="faq-"] h3.is-open + p { display: block; }

.final-glow {
  margin-top: 30px;
  margin-bottom: 54px;
  padding: clamp(26px, 4vw, 46px);
  border-radius: var(--radius-xl);
  border: 1px solid rgba(19,222,209,.25);
  background:
    linear-gradient(120deg, rgba(255,48,48,.15), rgba(19,222,209,.12)),
    rgba(255,255,255,.04);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  box-shadow: var(--shadow);
}
.final-glow h2 { font-size: clamp(30px, 4vw, 52px); margin: 12px 0; letter-spacing: -.055em; }
.final-glow p { color: var(--muted); max-width: 760px; line-height: 1.7; }
.floating-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 15;
  padding: 14px 18px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--red), var(--gold));
  color: white;
  font-weight: 950;
  box-shadow: 0 16px 40px rgba(255,48,48,.32);
  transition: transform .22s ease, opacity .22s ease;
}
.floating-cta:hover { transform: translateY(-3px); }
.cookie-note {
  position: fixed;
  left: 18px;
  bottom: 18px;
  z-index: 30;
  max-width: 360px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(14,10,16,.92);
  backdrop-filter: blur(18px);
  border-radius: 22px;
  padding: 16px;
  display: flex;
  gap: 14px;
  align-items: center;
  box-shadow: var(--shadow);
}
.cookie-note p { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.5; }
.cookie-note button {
  border: 0;
  background: var(--teal);
  color: #06100f;
  border-radius: 999px;
  font-weight: 900;
  padding: 10px 14px;
  cursor: pointer;
}
.cookie-note.is-hidden { display: none; }
.vault-footer {
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 34px 0 48px;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  color: var(--muted);
}
.vault-footer img { height: 54px; width: auto; margin-bottom: 12px; }
.vault-footer p { max-width: 560px; line-height: 1.6; }
.footer-links { display: flex; flex-wrap: wrap; gap: 10px; align-items: center; }
.footer-links a { padding: 10px 12px; border: 1px solid var(--line); border-radius: 999px; }

.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s ease, transform .7s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1040px) {
  .hero-grid, .quick-orbit, .article-shell { grid-template-columns: 1fr; }
  .section-rail { position: static; }
  .rail-card { max-height: none; display: grid; grid-template-columns: repeat(2, 1fr); gap: 0 18px; }
  .rail-card > span { grid-column: 1 / -1; }
  .screen-strip { grid-template-columns: 1fr; }
  .hero-media { transform: none; }
}
@media (max-width: 760px) {
  :root { --container: min(100vw - 20px, 1180px); }
  .vault-header { margin-top: 8px; border-radius: 24px; }
  .brand-mark img { height: 42px; }
  .menu-toggle { display: block; }
  .vault-nav {
    position: absolute;
    left: 0;
    right: 0;
    top: calc(100% + 10px);
    border: 1px solid var(--line);
    border-radius: 22px;
    background: rgba(11,8,12,.96);
    backdrop-filter: blur(18px);
    display: none;
    flex-direction: column;
    padding: 10px;
    align-items: stretch;
  }
  .vault-nav.is-open { display: flex; }
  .hero-vault { padding-top: 48px; }
  .hero-copy h1 { font-size: clamp(40px, 14vw, 62px); }
  .hero-media img { min-height: 300px; }
  .signal-row, .timer, .tab-buttons, .rail-card { grid-template-columns: 1fr; }
  .quick-orbit { padding-bottom: 32px; }
  .final-glow { flex-direction: column; align-items: flex-start; }
  .floating-cta { left: 12px; right: 12px; text-align: center; justify-content: center; display: flex; }
  .cookie-note { left: 10px; right: 10px; bottom: 78px; max-width: none; }
  .vault-footer { flex-direction: column; }
  th, td { padding: 14px; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
}
