
:root {
  --bg: #04100b;
  --bg-2: #081b12;
  --panel: rgba(10, 34, 22, .74);
  --panel-strong: rgba(13, 47, 30, .92);
  --paper: #f8f0d8;
  --muted: #b7c7bc;
  --green: #38e27d;
  --green-2: #099c59;
  --emerald: #0e653b;
  --gold: #f6cf77;
  --gold-2: #a36c21;
  --red: #e44a4d;
  --line: rgba(255, 244, 191, .16);
  --shadow: 0 24px 80px rgba(0, 0, 0, .48);
  --radius-xl: 34px;
  --radius-lg: 24px;
  --radius-md: 16px;
  --max: 1210px;
  --header-h: 82px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at 17% 13%, rgba(47, 232, 127, .16), transparent 32%),
    radial-gradient(circle at 83% 7%, rgba(246, 207, 119, .16), transparent 28%),
    radial-gradient(circle at 52% 66%, rgba(216, 42, 60, .09), transparent 34%),
    linear-gradient(135deg, #020604 0%, #06150d 42%, #04100b 100%);
  color: var(--paper);
  line-height: 1.65;
  min-width: 320px;
  overflow-x: hidden;
}
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button, input { font: inherit; }
.skip-link {
  position: fixed;
  z-index: 999;
  top: 8px;
  left: 8px;
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--paper);
  color: #06120c;
  transform: translateY(-150%);
  transition: transform .25s ease;
}
.skip-link:focus { transform: translateY(0); }
.ambient-orb {
  position: fixed;
  z-index: -1;
  width: 46vw;
  aspect-ratio: 1;
  border-radius: 999px;
  filter: blur(54px);
  opacity: .45;
  pointer-events: none;
}
.orb-a { top: -19vw; right: -18vw; background: rgba(45, 225, 124, .32); }
.orb-b { bottom: 15vh; left: -24vw; background: rgba(247, 204, 111, .18); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid transparent;
  transition: background .3s ease, border-color .3s ease, box-shadow .3s ease;
}
.site-header.is-stuck {
  background: rgba(3, 12, 8, .78);
  border-color: var(--line);
  backdrop-filter: blur(18px);
  box-shadow: 0 18px 56px rgba(0, 0, 0, .24);
}
.header-shell {
  width: min(var(--max), calc(100% - 36px));
  height: var(--header-h);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 22px;
}
.brand { display: inline-grid; place-items: center; }
.brand img { height: 54px; width: auto; filter: drop-shadow(0 0 14px rgba(57, 226, 126, .24)); }
.desktop-nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, .035);
  border-radius: 999px;
}
.desktop-nav a {
  color: var(--muted);
  font-size: 14px;
  padding: 9px 13px;
  border-radius: 999px;
  transition: color .22s ease, background .22s ease;
}
.desktop-nav a:hover { color: var(--paper); background: rgba(56, 226, 125, .13); }
.header-actions { display: flex; align-items: center; gap: 10px; }
.geo-chip, .soft-cta, .menu-button {
  border: 1px solid var(--line);
  color: var(--paper);
  background: rgba(255, 255, 255, .05);
  border-radius: 999px;
}
.geo-chip {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  cursor: pointer;
}
.geo-chip small { color: var(--muted); }
.soft-cta {
  padding: 11px 16px;
  background: linear-gradient(135deg, rgba(56,226,125,.18), rgba(246,207,119,.12));
  font-weight: 800;
  color: #fff7d8;
}
.menu-button {
  display: none;
  width: 46px;
  height: 46px;
  place-items: center;
  padding: 0;
  cursor: pointer;
}
.menu-button span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 3px auto;
  background: var(--paper);
  border-radius: 4px;
  transition: transform .25s ease, opacity .25s ease;
}
.menu-button.is-open span:nth-child(1) { transform: translateY(5px) rotate(45deg); }
.menu-button.is-open span:nth-child(2) { opacity: 0; }
.menu-button.is-open span:nth-child(3) { transform: translateY(-5px) rotate(-45deg); }
.mobile-panel {
  display: none;
  width: min(var(--max), calc(100% - 36px));
  margin: -4px auto 12px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(3, 14, 9, .92);
  backdrop-filter: blur(18px);
}
.mobile-panel a {
  display: block;
  padding: 13px 12px;
  color: var(--paper);
  border-radius: 14px;
}
.mobile-panel a:hover { background: rgba(56, 226, 125, .12); }
.mobile-panel.is-open { display: block; }

.hero {
  position: relative;
  width: min(var(--max), calc(100% - 36px));
  min-height: calc(100vh - var(--header-h));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, .84fr) minmax(420px, 1.16fr);
  gap: 34px;
  align-items: center;
  padding: 54px 0 44px;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 7% 16% auto auto;
  width: 420px;
  height: 420px;
  background: conic-gradient(from 90deg, transparent, rgba(56, 226, 125, .24), transparent, rgba(246, 207, 119, .20), transparent);
  border-radius: 999px;
  filter: blur(18px);
  opacity: .78;
  z-index: -1;
}
.eyebrow, .section-kicker {
  margin: 0 0 14px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: 12px;
  font-weight: 900;
  color: var(--gold);
}
.eyebrow span, .section-kicker::before {
  content: "";
  width: 28px;
  height: 2px;
  background: linear-gradient(90deg, var(--green), var(--gold));
  border-radius: 999px;
  box-shadow: 0 0 18px rgba(56,226,125,.7);
}
.hero h1 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(42px, 7vw, 90px);
  line-height: .96;
  letter-spacing: -.055em;
  max-width: 900px;
}
.hero h1 strong { color: var(--green); }
.hero-lead {
  margin: 22px 0 0;
  max-width: 660px;
  color: #d7e5d9;
  font-size: clamp(17px, 2vw, 22px);
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin: 30px 0 0; }
.primary-cta, .ghost-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 20px;
  border-radius: 999px;
  font-weight: 900;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
}
.primary-cta {
  color: #031109;
  background: linear-gradient(135deg, var(--green), #c4f6ab 42%, var(--gold));
  box-shadow: 0 18px 46px rgba(45, 229, 124, .28);
}
.ghost-cta {
  color: var(--paper);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, .05);
}
.primary-cta:hover, .ghost-cta:hover { transform: translateY(-3px); }
.primary-cta:hover { box-shadow: 0 24px 62px rgba(45, 229, 124, .38); }
.ghost-cta:hover { background: rgba(255,255,255,.09); }
.hero-note {
  max-width: 620px;
  margin-top: 26px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(8, 28, 18, .58);
  backdrop-filter: blur(12px);
  color: var(--muted);
}
.hero-note strong {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 17px;
  background: rgba(56, 226, 125, .13);
  color: var(--green);
}
.hero-stage { position: relative; }
.image-carousel {
  position: relative;
  border: 1px solid rgba(255, 244, 191, .20);
  border-radius: 38px;
  overflow: hidden;
  background: rgba(255, 255, 255, .04);
  box-shadow: var(--shadow);
  isolation: isolate;
}
.image-carousel::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(3,12,8,.48));
  pointer-events: none;
}
.slides { position: relative; aspect-ratio: 16 / 10; }
.slide {
  position: absolute;
  inset: 0;
  margin: 0;
  opacity: 0;
  transform: scale(1.04);
  transition: opacity .45s ease, transform .55s ease;
}
.slide.is-active { opacity: 1; transform: scale(1); }
.slide img { width: 100%; height: 100%; object-fit: cover; }
.slide-nav {
  position: absolute;
  z-index: 3;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 244, 191, .28);
  border-radius: 999px;
  background: rgba(0,0,0,.42);
  color: var(--paper);
  font-size: 34px;
  cursor: pointer;
  display: grid;
  place-items: center;
  backdrop-filter: blur(10px);
  transition: background .2s ease, transform .2s ease;
}
.slide-nav:hover { background: rgba(56,226,125,.22); }
.slide-nav.prev { left: 16px; }
.slide-nav.next { right: 16px; }
.slide-dots {
  position: absolute;
  z-index: 4;
  left: 50%;
  bottom: 16px;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  padding: 7px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 999px;
  background: rgba(0,0,0,.38);
  backdrop-filter: blur(10px);
}
.slide-dots button {
  width: 9px;
  height: 9px;
  border: 0;
  border-radius: 999px;
  background: rgba(255,255,255,.38);
  cursor: pointer;
  transition: width .25s ease, background .25s ease;
}
.slide-dots button.is-active { width: 28px; background: var(--green); }
.floating-score {
  position: absolute;
  right: -10px;
  bottom: -22px;
  width: 190px;
  padding: 16px;
  border: 1px solid rgba(246, 207, 119, .34);
  border-radius: 22px;
  background: linear-gradient(145deg, rgba(4, 17, 10, .92), rgba(13, 68, 39, .84));
  box-shadow: 0 18px 60px rgba(0,0,0,.46);
}
.floating-score span, .floating-score small { display: block; color: var(--muted); font-size: 12px; }
.floating-score strong { display: block; color: var(--gold); font-size: 32px; line-height: 1.1; }

.signal-strip {
  width: min(var(--max), calc(100% - 36px));
  margin: 0 auto 34px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.signal-strip article {
  padding: 22px;
  min-height: 128px;
  display: grid;
  align-content: end;
  border: 1px solid var(--line);
  border-radius: 24px;
  background:
    linear-gradient(145deg, rgba(255,255,255,.065), rgba(255,255,255,.025)),
    radial-gradient(circle at top right, rgba(56,226,125,.14), transparent 54%);
}
.signal-strip span {
  display: block;
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 50px;
  line-height: 1;
  font-weight: 800;
}
.signal-strip small { color: var(--muted); text-transform: uppercase; letter-spacing: .1em; font-weight: 800; }

.control-room,
.countdown-card,
.final-panel,
.faq-section {
  width: min(var(--max), calc(100% - 36px));
  margin: 34px auto;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: linear-gradient(145deg, rgba(255,255,255,.075), rgba(255,255,255,.025));
  box-shadow: 0 20px 70px rgba(0, 0, 0, .28);
}
.control-room { padding: clamp(24px, 4vw, 42px); }
.control-room h2,
.countdown-card h2,
.final-panel h2,
.faq-section h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(32px, 4.8vw, 58px);
  line-height: 1;
  letter-spacing: -.04em;
}
.tabs { margin-top: 28px; display: grid; grid-template-columns: 330px 1fr; gap: 18px; }
.tab-list {
  display: grid;
  gap: 10px;
}
.tab-list button {
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 16px 18px;
  color: var(--paper);
  background: rgba(255,255,255,.035);
  text-align: left;
  font-weight: 900;
  cursor: pointer;
  transition: background .25s ease, border-color .25s ease, transform .25s ease;
}
.tab-list button[aria-selected="true"] {
  background: linear-gradient(135deg, rgba(56,226,125,.22), rgba(246,207,119,.13));
  border-color: rgba(56,226,125,.42);
  transform: translateX(6px);
}
.tab-panels {
  position: relative;
  min-height: 260px;
  border: 1px solid rgba(246, 207, 119, .18);
  border-radius: 28px;
  background:
    radial-gradient(circle at 86% 20%, rgba(56, 226, 125, .18), transparent 38%),
    rgba(4, 18, 11, .66);
  overflow: hidden;
}
.tab-panel {
  display: none;
  min-height: 260px;
  padding: clamp(24px, 4vw, 42px);
}
.tab-panel.is-active { display: grid; align-content: center; }
.tab-panel h3 {
  margin: 0 0 12px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(28px, 4vw, 46px);
  line-height: 1;
}
.tab-panel p { margin: 0; color: var(--muted); font-size: 18px; max-width: 720px; }

.countdown-card {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 24px;
  padding: clamp(24px, 4vw, 42px);
  background:
    linear-gradient(110deg, rgba(9, 50, 29, .86), rgba(4, 14, 9, .78)),
    radial-gradient(circle at top right, rgba(246,207,119,.16), transparent 44%);
}
.countdown-card p { margin: 14px 0 0; color: var(--muted); max-width: 720px; }
.timer { display: flex; gap: 10px; }
.timer div {
  width: 94px;
  height: 94px;
  border: 1px solid rgba(246,207,119,.24);
  border-radius: 22px;
  background: rgba(0,0,0,.24);
  display: grid;
  place-items: center;
  align-content: center;
}
.timer strong { color: var(--gold); font-size: 30px; line-height: 1; }
.timer span { color: var(--muted); font-size: 12px; text-transform: uppercase; letter-spacing: .12em; }

.article-layout {
  width: min(var(--max), calc(100% - 36px));
  margin: 44px auto;
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 24px;
  align-items: start;
}
.article-nav {
  position: sticky;
  top: calc(var(--header-h) + 18px);
}
.nav-card {
  border: 1px solid var(--line);
  border-radius: 26px;
  padding: 18px;
  background: rgba(4, 17, 10, .72);
  backdrop-filter: blur(18px);
  box-shadow: 0 18px 60px rgba(0,0,0,.22);
}
.nav-card img { width: 150px; height: auto; margin-bottom: 14px; }
.nav-card p {
  margin: 0 0 8px;
  color: var(--gold);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: 12px;
}
.nav-card a {
  display: block;
  padding: 9px 10px;
  color: var(--muted);
  border-radius: 12px;
  font-size: 13px;
  line-height: 1.25;
  transition: background .2s ease, color .2s ease, transform .2s ease;
}
.nav-card a:hover { color: var(--paper); background: rgba(56,226,125,.12); transform: translateX(3px); }
.review-prose { min-width: 0; }
.intro-card,
.chapter {
  position: relative;
  margin-bottom: 20px;
  padding: clamp(22px, 4vw, 38px);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background:
    linear-gradient(145deg, rgba(255,255,255,.07), rgba(255,255,255,.025)),
    rgba(4, 18, 11, .66);
  box-shadow: 0 18px 68px rgba(0,0,0,.22);
  overflow: hidden;
}
.intro-card::before,
.chapter::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(56,226,125,.65), rgba(246,207,119,.5), transparent);
}
.chapter-spotlight {
  background:
    radial-gradient(circle at 16% 12%, rgba(56, 226, 125, .16), transparent 34%),
    linear-gradient(145deg, rgba(14, 68, 41, .88), rgba(4, 16, 10, .78));
}
.review-prose h2 {
  margin: 0 0 18px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(28px, 4.4vw, 52px);
  line-height: 1.03;
  letter-spacing: -.04em;
}
.review-prose h3 {
  margin: 28px 0 10px;
  color: var(--gold);
  font-size: clamp(21px, 2vw, 27px);
  line-height: 1.2;
}
.review-prose p { color: #dbe8dd; margin: 0 0 16px; }
.review-prose p:last-child { margin-bottom: 0; }
.review-prose strong { color: #fff7d8; }
.review-prose ol,
.review-prose ul {
  margin: 14px 0 18px;
  padding: 0;
  display: grid;
  gap: 9px;
}
.review-prose li {
  list-style: none;
  position: relative;
  padding: 11px 12px 11px 42px;
  border: 1px solid rgba(255, 244, 191, .11);
  border-radius: 15px;
  background: rgba(255,255,255,.035);
  color: #dce8de;
}
.review-prose ul li::before,
.review-prose ol li::before {
  position: absolute;
  left: 13px;
  top: 11px;
  width: 20px;
  height: 20px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  font-size: 12px;
  font-weight: 900;
}
.review-prose ul li::before {
  content: "✓";
  background: rgba(56,226,125,.15);
  color: var(--green);
}
.review-prose ol { counter-reset: step; }
.review-prose ol li { counter-increment: step; }
.review-prose ol li::before {
  content: counter(step);
  background: rgba(246,207,119,.16);
  color: var(--gold);
}
.review-prose figure {
  margin: 28px 0 18px;
  border: 1px solid rgba(246,207,119,.18);
  border-radius: 26px;
  overflow: hidden;
  background: rgba(0,0,0,.22);
}
.content-shot {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}
.review-prose figcaption {
  padding: 14px 16px 16px;
  color: var(--muted);
  font-size: 14px;
  border-top: 1px solid var(--line);
}
.table-shell {
  width: 100%;
  overflow-x: auto;
  border: 1px solid rgba(246,207,119,.18);
  border-radius: 22px;
  margin: 22px 0;
  background: rgba(0,0,0,.18);
}
.review-prose table {
  width: 100%;
  min-width: 680px;
  border-collapse: collapse;
  overflow: hidden;
}
.review-prose th,
.review-prose td {
  text-align: left;
  vertical-align: top;
  padding: 14px 15px;
  border-bottom: 1px solid rgba(255, 244, 191, .12);
}
.review-prose th {
  color: #06120c;
  background: linear-gradient(135deg, var(--gold), #e6ffd4);
  font-weight: 900;
}
.review-prose td { color: #dbe8dd; }
.review-prose tr:last-child td { border-bottom: 0; }

.faq-section { padding: clamp(24px, 4vw, 44px); }
.faq-list { margin-top: 24px; display: grid; gap: 12px; }
.faq-row {
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(255,255,255,.04);
  overflow: hidden;
}
.faq-question {
  width: 100%;
  min-height: 64px;
  padding: 18px 20px;
  border: 0;
  background: transparent;
  color: var(--paper);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  text-align: left;
  cursor: pointer;
  font-weight: 900;
}
.faq-icon {
  flex: 0 0 auto;
  width: 32px;
  height: 32px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: rgba(56,226,125,.15);
  color: var(--green);
  transition: transform .25s ease;
}
.faq-row.is-open .faq-icon { transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .32s ease;
}
.faq-answer p { margin: 0; padding: 0 20px 18px; color: var(--muted); }
.faq-row.is-open .faq-answer { max-height: 360px; }

.final-panel {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  padding: clamp(24px, 4vw, 44px);
  background:
    radial-gradient(circle at 100% 0%, rgba(246,207,119,.20), transparent 32%),
    linear-gradient(145deg, rgba(23, 92, 55, .86), rgba(5, 18, 11, .9));
}
.final-panel p { max-width: 760px; color: var(--muted); }
.site-footer {
  margin-top: 70px;
  border-top: 1px solid var(--line);
  background: rgba(2,8,5,.72);
}
.footer-grid {
  width: min(var(--max), calc(100% - 36px));
  margin: 0 auto;
  padding: 44px 0 30px;
  display: grid;
  grid-template-columns: 1.4fr .7fr .9fr;
  gap: 30px;
}
.footer-grid img { width: 190px; height: auto; margin-bottom: 12px; }
.footer-grid p, .footer-grid a { color: var(--muted); }
.footer-grid h3 { margin: 0 0 12px; color: var(--gold); }
.footer-grid a { display: block; margin: 7px 0; }
.footer-grid a:hover { color: var(--paper); }
.footer-bottom {
  width: min(var(--max), calc(100% - 36px));
  margin: 0 auto;
  padding: 18px 0 30px;
  color: rgba(255,255,255,.48);
  display: flex;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid var(--line);
}
.floating-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 90;
  min-width: 116px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: #031109;
  background: linear-gradient(135deg, var(--green), var(--gold));
  box-shadow: 0 18px 50px rgba(56,226,125,.28);
  font-weight: 1000;
}
.country-pop {
  position: fixed;
  top: 86px;
  right: max(18px, calc((100vw - var(--max)) / 2));
  z-index: 110;
  width: 240px;
  padding: 16px;
  border: 1px solid rgba(246,207,119,.24);
  border-radius: 22px;
  background: rgba(4, 16, 10, .92);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
  transform: translateY(-10px);
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s ease, transform .2s ease;
}
.country-pop.is-open { transform: translateY(0); opacity: 1; pointer-events: auto; }
.country-pop span, .country-pop small { display: block; color: var(--muted); }
.country-pop strong { display: block; color: var(--gold); margin-bottom: 6px; }
.country-pop small { margin-top: 8px; }
.cookie-note {
  position: fixed;
  z-index: 120;
  left: 18px;
  bottom: 18px;
  width: min(430px, calc(100% - 36px));
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 14px;
  align-items: center;
  padding: 16px;
  border: 1px solid rgba(246,207,119,.24);
  border-radius: 22px;
  background: rgba(4, 16, 10, .94);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}
.cookie-note p { margin: 2px 0 0; color: var(--muted); font-size: 14px; }
.cookie-note button {
  border: 0;
  border-radius: 999px;
  padding: 11px 17px;
  cursor: pointer;
  font-weight: 900;
  color: #031109;
  background: var(--green);
}
.cookie-note.is-hidden { display: none; }
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .65s ease, transform .65s ease;
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1100px) {
  .desktop-nav { display: none; }
  .menu-button { display: block; }
  .hero { grid-template-columns: 1fr; padding-top: 32px; }
  .hero-stage { order: -1; }
  .article-layout { grid-template-columns: 1fr; }
  .article-nav { position: static; }
  .nav-card { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 4px 10px; }
  .nav-card img, .nav-card p { grid-column: 1 / -1; }
  .tabs { grid-template-columns: 1fr; }
  .tab-list { grid-template-columns: repeat(4, 1fr); }
  .tab-list button[aria-selected="true"] { transform: translateY(-3px); }
}
@media (max-width: 760px) {
  :root { --header-h: 74px; }
  .header-shell { width: min(100% - 24px, var(--max)); gap: 10px; }
  .brand img { height: 46px; }
  .soft-cta, .geo-chip small { display: none; }
  .hero, .signal-strip, .control-room, .countdown-card, .article-layout, .faq-section, .final-panel, .footer-grid, .footer-bottom { width: min(100% - 24px, var(--max)); }
  .hero { min-height: auto; gap: 24px; }
  .slides { aspect-ratio: 4 / 3.2; }
  .slide-nav { width: 38px; height: 38px; font-size: 28px; }
  .floating-score { position: relative; right: auto; bottom: auto; width: 100%; margin-top: 12px; }
  .signal-strip { grid-template-columns: repeat(2, 1fr); }
  .signal-strip article { min-height: 110px; padding: 18px; }
  .signal-strip span { font-size: 40px; }
  .tab-list { grid-template-columns: 1fr 1fr; }
  .countdown-card, .final-panel { grid-template-columns: 1fr; }
  .timer { width: 100%; display: grid; grid-template-columns: repeat(3, 1fr); }
  .timer div { width: auto; }
  .nav-card { grid-template-columns: 1fr; max-height: 420px; overflow: auto; }
  .review-prose li { padding-left: 38px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; }
  .floating-cta { right: 12px; bottom: 12px; min-width: 104px; height: 44px; }
  .cookie-note { left: 12px; bottom: 68px; grid-template-columns: 1fr; }
}
@media (max-width: 460px) {
  .hero-actions { flex-direction: column; }
  .primary-cta, .ghost-cta { width: 100%; }
  .signal-strip { grid-template-columns: 1fr; }
  .tab-list { grid-template-columns: 1fr; }
  .timer { grid-template-columns: 1fr; }
  .hero-note { grid-template-columns: 1fr; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition: none !important; animation: none !important; }
  .reveal { opacity: 1; transform: none; }
}
