:root {
  --ink: #f9eee7;
  --muted: #b8a8a6;
  --soft: #887774;
  --paper: #151016;
  --panel: rgba(20, 12, 18, 0.72);
  --panel-solid: #170d13;
  --panel-2: rgba(34, 16, 21, 0.82);
  --void: #06070b;
  --void-2: #0b0a0f;
  --red: #ff3048;
  --red-2: #ff6a5e;
  --red-deep: #8b1120;
  --gold: #ffd39a;
  --line: rgba(255, 77, 86, 0.24);
  --line-strong: rgba(255, 77, 86, 0.48);
  --glass: rgba(255, 255, 255, 0.07);
  --shadow: 0 28px 90px rgba(0, 0, 0, 0.42);
  --neon-shadow: 0 0 18px rgba(255, 48, 72, 0.54), 0 0 56px rgba(255, 48, 72, 0.22);
  --radius-xl: 34px;
  --radius-lg: 26px;
  --radius-md: 18px;
  --max: 1200px;
  --font: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background:
    radial-gradient(circle at 16% 4%, rgba(255, 48, 72, 0.24), transparent 28rem),
    radial-gradient(circle at 90% 12%, rgba(255, 154, 88, 0.16), transparent 32rem),
    linear-gradient(140deg, #05060a 0%, #0c090e 38%, #160b11 72%, #08070c 100%);
  overflow-x: hidden;
  line-height: 1.7;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px) 0 0 / 84px 84px,
    linear-gradient(0deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px) 0 0 / 84px 84px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,0.75), transparent 78%);
}

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

a {
  color: inherit;
  text-decoration: none;
}

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

p {
  color: var(--muted);
  margin: 0 0 1.05rem;
}

strong {
  color: #fff7ef;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.05;
  letter-spacing: -0.035em;
}

h1 {
  font-size: clamp(2.65rem, 7vw, 6.6rem);
  max-width: 980px;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.8rem);
}

h3 {
  font-size: clamp(1.24rem, 2vw, 1.7rem);
}

ul,
ol {
  color: var(--muted);
}

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

.neon-noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.22;
  background-image:
    radial-gradient(circle at 10% 10%, rgba(255,255,255,.08) 0 1px, transparent 1px),
    radial-gradient(circle at 60% 40%, rgba(255,255,255,.06) 0 1px, transparent 1px);
  background-size: 17px 17px, 31px 31px;
  mix-blend-mode: overlay;
  z-index: 0;
}

.page-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 3px;
  z-index: 80;
  background: linear-gradient(90deg, var(--red), var(--gold));
  box-shadow: var(--neon-shadow);
}

.gatebar {
  position: sticky;
  top: 0;
  z-index: 70;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1rem;
  width: min(calc(100% - 28px), var(--max));
  margin: 14px auto 0;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(7, 8, 13, 0.72);
  backdrop-filter: blur(22px);
  box-shadow: 0 16px 44px rgba(0, 0, 0, 0.34);
  transition: border-color .25s ease, transform .25s ease, background .25s ease;
}

.gatebar.is-scrolled {
  border-color: var(--line-strong);
  background: rgba(6, 7, 11, 0.9);
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  min-width: 150px;
}

.brand-mark img {
  height: 45px;
  width: auto;
}

.gate-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: .35rem;
  min-width: 0;
}

.gate-nav a,
.header-cta,
.btn,
.cookie-panel button,
.carousel-btn,
.tab-btn {
  transition: transform .24s ease, border-color .24s ease, background .24s ease, color .24s ease, box-shadow .24s ease;
}

.gate-nav a {
  padding: .78rem 1rem;
  border-radius: 999px;
  color: var(--muted);
  font-size: .9rem;
  font-weight: 750;
}

.gate-nav a:hover,
.gate-nav a:focus-visible {
  color: var(--ink);
  background: rgba(255, 48, 72, 0.13);
  outline: none;
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: .72rem 1.2rem;
  border-radius: 999px;
  color: #120709;
  background: linear-gradient(135deg, var(--gold), var(--red-2));
  font-weight: 900;
  box-shadow: 0 0 32px rgba(255, 72, 84, 0.26);
}

.header-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 48px rgba(255, 72, 84, 0.44);
}

.menu-toggle {
  display: none;
  place-items: center;
  grid-auto-flow: column;
  gap: .34rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: .55rem .75rem;
  color: var(--ink);
  background: rgba(255,255,255,0.05);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 14px;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
}

.menu-toggle b {
  font-size: .78rem;
}

.floating-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 60;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: .85rem 1.15rem;
  border: 1px solid rgba(255, 211, 154, 0.5);
  border-radius: 999px;
  background: rgba(16, 9, 13, 0.78);
  backdrop-filter: blur(18px);
  color: #fff2df;
  font-weight: 900;
  box-shadow: var(--shadow), var(--neon-shadow);
}

.floating-cta:hover {
  transform: translateY(-3px) scale(1.02);
}

main {
  position: relative;
  z-index: 1;
}

.entrance-grid {
  width: min(calc(100% - 32px), 1400px);
  margin: 50px auto 0;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(360px, .82fr);
  gap: clamp(1rem, 4vw, 3.2rem);
  align-items: stretch;
}

.hero-copy {
  position: relative;
  padding: clamp(1.3rem, 4vw, 4rem);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background:
    linear-gradient(140deg, rgba(255,255,255,0.08), rgba(255,255,255,0.02)),
    radial-gradient(circle at 15% 10%, rgba(255, 48, 72, .26), transparent 25rem),
    rgba(13, 8, 13, 0.84);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.hero-copy::before,
.hero-copy::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.hero-copy::before {
  width: 280px;
  height: 280px;
  right: -90px;
  top: -90px;
  border: 1px solid rgba(255, 48, 72, 0.34);
  border-radius: 50%;
  box-shadow: inset 0 0 56px rgba(255, 48, 72, 0.14);
}

.hero-copy::after {
  left: 0;
  bottom: 0;
  width: 72%;
  height: 5px;
  background: linear-gradient(90deg, var(--red), transparent);
  box-shadow: var(--neon-shadow);
}

.country-chip,
.section-kicker,
.panel-index {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  margin: 0 0 1rem;
  color: var(--gold);
  font-size: .82rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.country-chip span {
  display: inline-grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--red);
  color: #fff;
  box-shadow: var(--neon-shadow);
}

.hero-copy p {
  max-width: 900px;
  font-size: clamp(1rem, 1.35vw, 1.12rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .8rem;
  margin-top: 1.8rem;
}

.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 50px;
  padding: .8rem 1.25rem;
  border-radius: 999px;
  font-weight: 900;
}

.btn-primary {
  background: linear-gradient(135deg, var(--red), var(--red-2));
  color: #fff;
  box-shadow: var(--neon-shadow);
}

.btn-ghost {
  border: 1px solid var(--line-strong);
  color: var(--ink);
  background: rgba(255, 255, 255, 0.06);
}

.btn:hover {
  transform: translateY(-3px);
}

.hero-stage {
  position: relative;
  min-height: 520px;
  border-radius: var(--radius-xl);
  border: 1px solid var(--line);
  overflow: hidden;
  background: #08070b;
  box-shadow: var(--shadow);
}

.hero-stage figure {
  margin: 0;
  height: 100%;
}

.hero-stage img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.08) contrast(1.06);
}

.hero-stage::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(4, 3, 7, .86), rgba(4, 3, 7, 0.08) 58%),
    linear-gradient(90deg, rgba(255, 48, 72, .18), transparent 45%);
}

.glass-ticket {
  position: absolute;
  z-index: 2;
  max-width: 230px;
  padding: 1rem;
  border: 1px solid rgba(255, 211, 154, 0.32);
  border-radius: 18px;
  background: rgba(8, 7, 11, 0.66);
  backdrop-filter: blur(18px);
  box-shadow: 0 18px 44px rgba(0,0,0,.3);
}

.glass-ticket span {
  display: block;
  color: var(--soft);
  font-size: .75rem;
  text-transform: uppercase;
  letter-spacing: .13em;
  font-weight: 900;
}

.glass-ticket strong {
  display: block;
  margin-top: .25rem;
}

.ticket-one {
  left: 22px;
  bottom: 24px;
}

.ticket-two {
  right: 22px;
  top: 24px;
}

.command-strip {
  width: min(calc(100% - 32px), var(--max));
  margin: 18px auto 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: .8rem;
}

.command-strip article {
  min-height: 148px;
  padding: 1.25rem;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.045);
  box-shadow: 0 16px 44px rgba(0,0,0,.2);
}

.command-strip .stat {
  display: block;
  font-size: 2.2rem;
  line-height: 1;
  font-weight: 950;
  color: var(--red-2);
  text-shadow: var(--neon-shadow);
}

.command-strip b {
  display: block;
  margin-top: .55rem;
  color: var(--ink);
}

.command-strip small {
  display: block;
  margin-top: .35rem;
  color: var(--soft);
}

.visual-concourse,
.faq-terminal,
.site-footer {
  width: min(calc(100% - 32px), var(--max));
  margin-inline: auto;
}

.visual-concourse {
  margin-top: clamp(4rem, 9vw, 8rem);
  padding: clamp(1.1rem, 3vw, 2rem);
  border-radius: var(--radius-xl);
  border: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(255, 48, 72, 0.1), rgba(255,255,255,0.035)),
    rgba(12, 8, 13, 0.72);
  box-shadow: var(--shadow);
}

.section-lead {
  max-width: 760px;
  margin-top: .9rem;
  font-size: 1.06rem;
}

.image-carousel {
  position: relative;
  margin-top: 2rem;
}

.carousel-track {
  display: grid;
  grid-template-columns: 1fr;
  overflow: hidden;
  border-radius: 28px;
  min-height: 390px;
}

.carousel-card {
  grid-area: 1 / 1;
  margin: 0;
  display: grid;
  grid-template-columns: minmax(0, .94fr) minmax(260px, .44fr);
  align-items: stretch;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 28px;
  overflow: hidden;
  background: #0d0a10;
  opacity: 0;
  visibility: hidden;
  transform: translateX(5%) scale(.985);
  transition: opacity .45s ease, transform .45s ease, visibility .45s ease;
}

.carousel-card.is-active {
  opacity: 1;
  visibility: visible;
  transform: none;
}

.carousel-card img {
  width: 100%;
  height: 100%;
  min-height: 390px;
  object-fit: cover;
}

.carousel-card figcaption {
  display: flex;
  align-items: end;
  min-height: 100%;
  padding: clamp(1.2rem, 3vw, 2rem);
  color: #f1ddd4;
  font-size: clamp(1rem, 1.6vw, 1.35rem);
  font-weight: 750;
  background:
    radial-gradient(circle at 20% 10%, rgba(255, 48, 72, .32), transparent 13rem),
    linear-gradient(145deg, rgba(255, 48, 72, .18), rgba(255,255,255,.03));
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  color: #fff;
  background: rgba(7, 8, 13, .76);
  backdrop-filter: blur(12px);
  cursor: pointer;
  font-size: 2.2rem;
  line-height: 1;
}

.carousel-btn:hover,
.carousel-btn:focus-visible {
  background: var(--red);
  outline: none;
  box-shadow: var(--neon-shadow);
}

.carousel-btn.prev {
  left: 14px;
}

.carousel-btn.next {
  right: 14px;
}

.layout-shell {
  width: min(calc(100% - 32px), 1360px);
  margin: clamp(4rem, 9vw, 8rem) auto 0;
  display: grid;
  grid-template-columns: 230px minmax(0, 1fr);
  gap: clamp(1rem, 3vw, 2rem);
  align-items: start;
}

.chapter-rail {
  position: sticky;
  top: 100px;
  display: grid;
  gap: .5rem;
  padding: .85rem;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: rgba(8, 7, 11, 0.7);
  backdrop-filter: blur(18px);
  box-shadow: 0 24px 70px rgba(0,0,0,.28);
}

.chapter-rail a {
  display: grid;
  grid-template-columns: 38px 1fr;
  align-items: center;
  gap: .6rem;
  padding: .72rem .65rem;
  border-radius: 18px;
  color: var(--muted);
  font-size: .9rem;
  font-weight: 800;
}

.chapter-rail a span {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 12px;
  background: rgba(255,255,255,.055);
  color: var(--gold);
  font-size: .7rem;
  letter-spacing: .08em;
}

.chapter-rail a:hover,
.chapter-rail a:focus-visible,
.chapter-rail a.is-current {
  color: var(--ink);
  background: rgba(255, 48, 72, 0.14);
  outline: none;
}

.article-stream {
  display: grid;
  gap: clamp(1rem, 3vw, 2rem);
}

.content-panel {
  position: relative;
  padding: clamp(1.25rem, 4vw, 3rem);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background:
    linear-gradient(145deg, rgba(255,255,255,0.07), rgba(255,255,255,0.02)),
    rgba(14, 9, 14, 0.77);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.content-panel::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 211, 154, .55), transparent);
  pointer-events: none;
}

.content-panel h2 + p,
.content-panel h3 + p {
  margin-top: 1rem;
}

.content-panel h3 {
  margin-top: 1.8rem;
  margin-bottom: .9rem;
}

.table-vault {
  margin-top: 1.6rem;
  overflow-x: auto;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 24px;
}

.table-vault table {
  width: 100%;
  min-width: 720px;
  border-collapse: collapse;
  overflow: hidden;
}

th,
td {
  padding: 1rem;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid rgba(255,255,255,.07);
}

th {
  color: #fff4e9;
  background: rgba(255, 48, 72, .13);
  font-size: .78rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}

td:first-child {
  width: 28%;
  color: var(--gold);
  font-weight: 850;
}

td {
  color: var(--muted);
}

.check-list,
.metric-list,
.signal-list {
  display: grid;
  gap: .75rem;
  padding: 0;
  list-style: none;
}

.check-list li,
.metric-list li,
.signal-list li {
  position: relative;
  padding: 1rem 1rem 1rem 3rem;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 18px;
  background: rgba(255,255,255,.045);
}

.check-list li::before,
.metric-list li::before,
.signal-list li::before {
  content: "";
  position: absolute;
  left: 1rem;
  top: 1.22rem;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: var(--neon-shadow);
}

.signal-list.warning li::before {
  background: var(--gold);
  box-shadow: 0 0 22px rgba(255, 211, 154, .35);
}

.split-copy-media,
.bonus-layout,
.phone-copy,
.two-deck,
.route-columns {
  display: grid;
  gap: clamp(1rem, 3vw, 2rem);
}

.split-copy-media {
  grid-template-columns: minmax(0, 1fr) 360px;
  align-items: start;
}

.media-card,
.phone-frame {
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 28px;
  background: #0c090f;
  box-shadow: 0 22px 66px rgba(0,0,0,.3);
}

.media-card img,
.phone-frame img {
  width: 100%;
  min-height: 260px;
  object-fit: cover;
}

.media-card figcaption,
.phone-frame figcaption {
  padding: 1rem;
  color: #eacbc2;
  font-size: .94rem;
  font-weight: 750;
  background: rgba(255, 48, 72, .10);
}

.step-list {
  counter-reset: item;
  display: grid;
  gap: .72rem;
  padding: 0;
  list-style: none;
}

.step-list li {
  counter-increment: item;
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: .85rem;
  align-items: start;
  padding: .85rem;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.08);
  background: rgba(255,255,255,.045);
  color: var(--muted);
}

.step-list li::before {
  content: counter(item, decimal-leading-zero);
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: rgba(255, 48, 72, .15);
  color: var(--gold);
  font-size: .75rem;
  font-weight: 950;
  box-shadow: inset 0 0 0 1px var(--line);
}

.step-list.compact li {
  grid-template-columns: 38px 1fr;
}

.step-list.compact li::before {
  width: 38px;
  height: 38px;
}

.bonus-layout {
  grid-template-columns: minmax(0, .95fr) minmax(310px, .62fr);
  align-items: stretch;
  margin: 2rem 0;
}

.bonus-steps {
  padding: 1.2rem;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 26px;
  background: rgba(255,255,255,.045);
}

.bonus-steps h3 {
  margin-top: 0;
}

.bonus-media {
  height: 100%;
}

.bonus-media img {
  height: calc(100% - 86px);
}

.question-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .8rem;
  padding: 0;
  list-style: none;
}

.question-grid li {
  position: relative;
  padding: 1rem 1rem 1rem 1.2rem;
  min-height: 82px;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 20px;
  background: rgba(255,255,255,.045);
  color: var(--muted);
  cursor: pointer;
}

.question-grid li::after {
  content: "yoxla";
  position: absolute;
  right: .8rem;
  bottom: .65rem;
  color: var(--gold);
  font-size: .68rem;
  font-weight: 950;
  letter-spacing: .12em;
  text-transform: uppercase;
  opacity: .7;
}

.question-grid li.is-lit {
  border-color: rgba(255, 211, 154, .6);
  color: #fff1e9;
  background: rgba(255, 48, 72, .16);
  box-shadow: inset 0 0 0 1px rgba(255, 48, 72, .24), 0 0 36px rgba(255, 48, 72, .14);
}

.two-deck {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.deck-copy {
  padding: 1.25rem;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 28px;
  background: rgba(255,255,255,.035);
}

.deck-copy h2 + p {
  margin-top: 1rem;
}

.live-shot {
  margin-bottom: 1.2rem;
}

.phone-copy {
  grid-template-columns: minmax(260px, .58fr) minmax(0, 1fr);
  align-items: center;
}

.phone-frame {
  position: relative;
  border-radius: 44px;
  padding: 12px;
  background: linear-gradient(145deg, #0f0b12, #211018);
}

.phone-frame img {
  border-radius: 32px;
}

.phone-frame figcaption {
  margin-top: 10px;
  border-radius: 22px;
}

.route-columns {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 1.5rem 0;
}

.route-card {
  padding: 1.2rem;
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 26px;
  background:
    radial-gradient(circle at 18% 0%, rgba(255, 48, 72, .2), transparent 15rem),
    rgba(255,255,255,.04);
}

.route-card h3 {
  margin-top: 0;
}

.security-vault {
  background:
    linear-gradient(145deg, rgba(255, 211, 154, .09), rgba(255, 48, 72, .08)),
    rgba(14, 9, 14, 0.77);
}

.tab-console {
  padding-top: 1.4rem;
}

.tab-buttons {
  display: flex;
  gap: .55rem;
  flex-wrap: wrap;
  margin-bottom: 1.3rem;
}

.tab-btn {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: .8rem 1.05rem;
  color: var(--muted);
  background: rgba(255,255,255,.045);
  font-weight: 900;
  cursor: pointer;
}

.tab-btn:hover,
.tab-btn:focus-visible,
.tab-btn.is-active {
  color: #fff;
  background: rgba(255, 48, 72, .18);
  border-color: rgba(255, 77, 86, .55);
  outline: none;
}

.tab-panel {
  padding: 1.15rem;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 26px;
  background: rgba(255,255,255,.035);
}

.tab-panel[hidden] {
  display: none;
}

.responsibility-card {
  border-color: rgba(255, 211, 154, .4);
}

.responsibility-card::after {
  content: "18+";
  position: absolute;
  right: 2rem;
  top: 1.4rem;
  color: rgba(255, 211, 154, .13);
  font-size: clamp(4rem, 11vw, 10rem);
  line-height: .8;
  font-weight: 950;
  letter-spacing: -.08em;
  pointer-events: none;
}

.final-verdict {
  background:
    radial-gradient(circle at 82% 8%, rgba(255, 48, 72, .28), transparent 22rem),
    linear-gradient(145deg, rgba(255,255,255,0.07), rgba(255,255,255,0.02)),
    rgba(14, 9, 14, 0.77);
}

.faq-terminal {
  margin-top: clamp(4rem, 9vw, 8rem);
  padding: clamp(1.25rem, 4vw, 3rem);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: rgba(8, 7, 12, .82);
  box-shadow: var(--shadow);
}

.faq-stack {
  display: grid;
  gap: .78rem;
  margin-top: 1.5rem;
}

.faq-stack details {
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 22px;
  background: rgba(255,255,255,.045);
  overflow: hidden;
}

.faq-stack summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.1rem 1.2rem;
  color: #fff2e9;
  cursor: pointer;
  font-weight: 900;
}

.faq-stack summary::-webkit-details-marker {
  display: none;
}

.faq-stack summary::after {
  content: "+";
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  color: var(--gold);
  background: rgba(255, 48, 72, .12);
  font-size: 1.3rem;
}

.faq-stack details[open] summary::after {
  content: "−";
}

.faq-stack details p {
  padding: 0 1.2rem 1.2rem;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1.5rem;
  align-items: end;
  margin-top: 2rem;
  margin-bottom: 1rem;
  padding: clamp(1.1rem, 3vw, 2rem);
  border: 1px solid var(--line);
  border-radius: 28px;
  background: rgba(6,7,11,.76);
}

.site-footer p {
  max-width: 740px;
  margin-top: 1rem;
  margin-bottom: 0;
  font-size: .95rem;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: .6rem;
}

.site-footer nav a {
  padding: .7rem .95rem;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 999px;
  color: var(--muted);
  font-weight: 850;
}

.site-footer nav a:hover {
  color: var(--ink);
  border-color: var(--line-strong);
}

.cookie-panel {
  position: fixed;
  left: 18px;
  bottom: 18px;
  z-index: 82;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: .75rem;
  align-items: center;
  width: min(520px, calc(100% - 36px));
  padding: 1rem;
  border: 1px solid var(--line-strong);
  border-radius: 22px;
  background: rgba(8, 7, 11, .86);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
  transform: translateY(130%);
  opacity: 0;
  transition: opacity .28s ease, transform .28s ease;
}

.cookie-panel.is-visible {
  transform: none;
  opacity: 1;
}

.cookie-panel p {
  margin: 0;
  font-size: .92rem;
}

.cookie-panel button {
  border: 0;
  border-radius: 999px;
  padding: .75rem 1rem;
  background: var(--red);
  color: #fff;
  font-weight: 900;
  cursor: pointer;
}

.cookie-panel button:hover {
  transform: translateY(-2px);
  box-shadow: var(--neon-shadow);
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .75s ease, transform .75s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

.hero-reveal {
  animation: heroIn .8s ease both;
}

@keyframes heroIn {
  from { opacity: 0; transform: translateY(22px); }
  to { opacity: 1; transform: none; }
}

@media (max-width: 1120px) {
  .entrance-grid,
  .layout-shell {
    grid-template-columns: 1fr;
  }

  .chapter-rail {
    position: relative;
    top: auto;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .gatebar {
    grid-template-columns: auto auto auto;
  }

  .gate-nav {
    position: fixed;
    top: 82px;
    left: 16px;
    right: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 1rem;
    border: 1px solid var(--line);
    border-radius: 26px;
    background: rgba(6,7,11,.94);
    backdrop-filter: blur(18px);
    box-shadow: var(--shadow);
  }

  .gate-nav.is-open {
    display: flex;
  }

  .gate-nav a {
    padding: .95rem 1rem;
  }

  .menu-toggle {
    display: inline-grid;
    order: 3;
  }

  .header-cta {
    justify-self: end;
  }
}

@media (max-width: 880px) {
  .command-strip,
  .two-deck,
  .split-copy-media,
  .bonus-layout,
  .phone-copy,
  .route-columns,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .carousel-card {
    grid-template-columns: 1fr;
  }

  .carousel-card img {
    min-height: 250px;
  }

  .carousel-track {
    min-height: 0;
  }

  .question-grid {
    grid-template-columns: 1fr;
  }

  .chapter-rail {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .site-footer nav {
    justify-content: flex-start;
  }

  .floating-cta {
    bottom: 12px;
    right: 12px;
    min-height: 46px;
    padding: .75rem 1rem;
  }
}

@media (max-width: 640px) {
  body {
    line-height: 1.62;
  }

  h1 {
    font-size: clamp(2.35rem, 13vw, 4.25rem);
  }

  .gatebar {
    width: calc(100% - 20px);
    margin-top: 10px;
    padding: 8px;
    gap: .5rem;
  }

  .brand-mark {
    min-width: auto;
  }

  .brand-mark img {
    height: 38px;
  }

  .header-cta {
    display: none;
  }

  .entrance-grid,
  .visual-concourse,
  .layout-shell,
  .faq-terminal,
  .site-footer,
  .command-strip {
    width: calc(100% - 20px);
  }

  .entrance-grid {
    margin-top: 28px;
  }

  .hero-copy,
  .content-panel,
  .faq-terminal {
    border-radius: 24px;
  }

  .hero-stage {
    min-height: 360px;
    border-radius: 24px;
  }

  .glass-ticket {
    max-width: calc(100% - 34px);
    padding: .82rem;
  }

  .ticket-two {
    right: 12px;
    top: 12px;
  }

  .ticket-one {
    left: 12px;
    bottom: 12px;
  }

  .command-strip {
    grid-template-columns: 1fr 1fr;
  }

  .command-strip article {
    min-height: 128px;
    padding: 1rem;
  }

  .chapter-rail {
    display: none;
  }

  .content-panel,
  .hero-copy,
  .visual-concourse,
  .faq-terminal,
  .site-footer {
    padding: 1rem;
  }

  .carousel-btn {
    width: 42px;
    height: 42px;
  }

  .carousel-btn.prev {
    left: 8px;
  }

  .carousel-btn.next {
    right: 8px;
  }

  th,
  td {
    padding: .78rem;
  }

  .cookie-panel {
    grid-template-columns: 1fr;
    bottom: 76px;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}
