:root {
  --black: #000;
  --ink: #111;
  --charcoal: #222326;
  --steel: #616161;
  --fog: #f2f2f2;
  --white: #fff;
  --sand: #f3d79b;
  --sand-soft: #fff8e8;
  --green: #107c10;
  --green-dark: #054b16;
  --lime: #9bf00b;
  --yellow: #ffd800;
  --danger: #b54536;
  --line: rgba(0, 0, 0, .16);
  --line-inverse: rgba(255, 255, 255, .22);
  --shadow-hard: 10px 10px 0 rgba(0, 0, 0, .14);
  --shadow-soft: 0 26px 70px rgba(0, 0, 0, .20);
  --shadow-glow: 0 0 0 1px rgba(255, 216, 0, .22), 0 24px 70px rgba(16, 124, 16, .20);
  --max: 1200px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(180deg, #fff 0%, #fffaf0 46%, #fff 100%);
  font: 16px/1.5 "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(circle at 12% 18%, rgba(155, 240, 11, .08), transparent 24vw),
    radial-gradient(circle at 82% 14%, rgba(255, 216, 0, .08), transparent 22vw),
    linear-gradient(90deg, rgba(0,0,0,.035) 1px, transparent 1px),
    linear-gradient(rgba(0,0,0,.028) 1px, transparent 1px);
  background-size: auto, auto, 42px 42px, 42px 42px;
}
img, video { display: block; max-width: 100%; }
a { color: var(--green); text-underline-offset: .22em; }
button, input, select, textarea { font: inherit; }
:focus-visible { outline: 3px solid var(--yellow); outline-offset: 3px; }
.shell { width: min(calc(100% - 32px), var(--max)); margin-inline: auto; }
.skip-link { position: fixed; z-index: 1000; top: 8px; left: 8px; transform: translateY(-160%); padding: 10px 12px; color: var(--white); background: var(--black); }
.skip-link:focus { transform: none; }
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.site-header {
  position: sticky;
  z-index: 60;
  top: 0;
  color: var(--white);
  background: rgba(0, 0, 0, .92);
  border-bottom: 1px solid var(--line-inverse);
  backdrop-filter: blur(12px);
}
.site-header::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--lime), var(--yellow), transparent);
  opacity: .9;
}
.header-inner { min-height: 64px; display: flex; align-items: center; gap: 18px; }
.brand-mark, .home-logo {
  display: block;
  width: 104px;
  height: 48px;
  background: url("/images/interface/wheel-out-logo.png") center / contain no-repeat;
}
.brand {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 54px;
  transition: transform .2s ease;
}
.brand:hover { transform: translateY(-2px) rotate(-1deg); }
.home-logo {
  width: clamp(140px, 16vw, 220px);
  height: clamp(92px, 12vw, 150px);
  margin-bottom: 10px;
}
.nav { margin-left: auto; display: flex; align-items: center; gap: 2px; }
.nav a {
  padding: 16px 10px;
  color: var(--white);
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
}
.nav a:hover, .nav a[aria-current="page"] { color: var(--lime); text-decoration: underline; }
.menu-toggle, .mobile-menu-btn, .hamburger { display: none; width: 44px; height: 44px; padding: 9px; border: 1px solid var(--line-inverse); background: transparent; }
.menu-toggle span, .mobile-menu-btn span, .hamburger span { display: block; height: 2px; margin: 5px 0; background: var(--white); }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 18px;
  border: 2px solid transparent;
  border-radius: 0;
  text-decoration: none;
  font-weight: 900;
  line-height: 1.1;
  text-align: center;
  text-transform: uppercase;
  transform: translateZ(0);
  transition: transform .18s ease, box-shadow .18s ease, background-color .18s ease, border-color .18s ease;
}
.button:hover { transform: translate(-2px, -2px); box-shadow: 6px 6px 0 rgba(0,0,0,.32); }
.button:active { transform: translate(0, 0); box-shadow: 2px 2px 0 rgba(0,0,0,.26); }
.button--primary {
  position: relative;
  overflow: hidden;
  color: var(--green-dark);
  background: var(--lime);
  box-shadow: 4px 4px 0 rgba(0,0,0,.22);
}
.button--primary::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 0 42%, rgba(255,255,255,.55) 50%, transparent 58% 100%);
  transform: translateX(-130%);
  transition: transform .5s ease;
}
.button--primary:hover::after { transform: translateX(130%); }
.button--primary:hover { background: var(--yellow); }
.button--secondary { color: var(--white); background: var(--green); }
.button--ghost { color: var(--white); background: rgba(0, 0, 0, .38); border-color: rgba(255, 255, 255, .7); }
.site-header .play-now { position: sticky; top: 10px; }
.text-link { display: inline-flex; align-items: center; min-height: 44px; color: inherit; font-weight: 800; text-decoration: none; border-bottom: 2px solid currentColor; }

h1, h2, h3 { margin: 0 0 12px; line-height: 1.12; letter-spacing: 0; }
h1 { font-size: clamp(42px, 6vw, 72px); font-weight: 900; text-transform: uppercase; }
h2 { font-size: clamp(28px, 4vw, 46px); font-weight: 800; }
h3 { font-size: 20px; font-weight: 800; }
p { margin: 0 0 16px; }
.lead { max-width: 650px; font-size: clamp(18px, 2vw, 22px); font-weight: 650; }
.eyebrow, .kicker {
  margin: 0 0 10px;
  color: var(--yellow);
  font: 800 11px/1.4 ui-monospace, SFMono-Regular, Menlo, monospace;
  letter-spacing: .075em;
  text-transform: uppercase;
}
.kicker { color: var(--green); }
.band-dark .kicker, .hero .eyebrow, .article-hero .eyebrow { color: var(--yellow); }
.actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 24px; }

.hero {
  position: relative;
  display: grid;
  min-height: clamp(500px, calc(100svh - 170px), 620px);
  overflow: hidden;
  color: var(--white);
  background: var(--black);
}
.hero::before,
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.hero::before {
  z-index: 1;
  background:
    radial-gradient(circle at 22% 82%, rgba(155, 240, 11, .18), transparent 19rem),
    repeating-linear-gradient(0deg, rgba(255,255,255,.035) 0 1px, transparent 1px 7px);
  mix-blend-mode: screen;
  opacity: .65;
}
.hero::after {
  z-index: 0;
  background: radial-gradient(circle at 74% 34%, rgba(255, 216, 0, .18), transparent 24rem);
  animation: glow-drift 8s ease-in-out infinite alternate;
}
.hero__media, .hero__shade { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero__media { object-fit: cover; animation: hero-media-breathe 14s ease-in-out infinite alternate; }
.hero__shade {
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(0,0,0,.96) 0%, rgba(0,0,0,.72) 45%, rgba(0,0,0,.20) 100%),
    linear-gradient(0deg, rgba(0,0,0,.82) 0%, transparent 42%);
}
.hero__content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(330px, 460px);
  align-items: center;
  gap: clamp(22px, 4vw, 48px);
  align-content: center;
  padding-block: 34px 24px;
}
.hero__content::before {
  content: "";
  position: absolute;
  top: 26px;
  left: 0;
  width: min(260px, 38vw);
  height: 4px;
  background: linear-gradient(90deg, var(--lime), var(--yellow), transparent);
}
.hero-copy { grid-column: 1; max-width: 760px; padding-top: 18px; }
.hero h1 { max-width: 760px; margin-bottom: 10px; color: var(--white); font-size: clamp(52px, 7.8vw, 88px); line-height: .92; }
.hero h1, .hero .lead, .hero .actions, .hero-facts, .home-logo, .hero-stage { animation: hero-rise .72s ease both; }
.hero .lead { animation-delay: .08s; }
.hero .actions { animation-delay: .16s; }
.hero-facts { animation-delay: .24s; }
.hero-stage { animation-delay: .2s; }
.hero-facts {
  display: grid;
  grid-template-columns: repeat(4, minmax(110px, 1fr));
  gap: 8px;
  max-width: 720px;
  margin-top: 16px;
}
.hero-facts span {
  position: relative;
  overflow: hidden;
  padding: 8px 10px;
  color: var(--white);
  background: rgba(0, 0, 0, .68);
  border: 1px solid var(--line-inverse);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.08);
  transition: transform .2s ease, border-color .2s ease, background-color .2s ease;
}
.hero-facts span:hover { transform: translateY(-3px); border-color: rgba(155,240,11,.7); background: rgba(5,75,22,.72); }
.hero-facts strong { display: block; color: var(--yellow); font-size: 18px; }
.hero-stage {
  position: relative;
  grid-column: 2;
  display: grid;
  gap: 8px;
  padding: 10px;
  background:
    linear-gradient(135deg, rgba(255,255,255,.09), rgba(255,255,255,.03)),
    rgba(0,0,0,.58);
  border: 1px solid rgba(255,255,255,.26);
  box-shadow: 18px 18px 0 rgba(0,0,0,.28), 0 36px 90px rgba(0,0,0,.34);
  backdrop-filter: blur(8px);
}
.hero-stage::before {
  content: "";
  position: absolute;
  inset: -1px;
  pointer-events: none;
  border: 1px solid rgba(155,240,11,.26);
  transform: translate(8px, 8px);
}
.stage-frame,
.stage-mini figure {
  position: relative;
  overflow: hidden;
  margin: 0;
  background: #050505;
  border: 1px solid rgba(255,255,255,.22);
}
.stage-mini figure {
  animation: stage-card-float 4.8s ease-in-out infinite alternate;
}
.stage-mini figure:nth-child(2) {
  animation-delay: .7s;
}
.stage-frame img {
  width: 100%;
  height: clamp(190px, 21vw, 250px);
  object-fit: cover;
  filter: saturate(1.08) contrast(1.04);
}
.stage-frame figcaption,
.stage-mini figcaption {
  position: absolute;
  right: 10px;
  bottom: 10px;
  left: 10px;
  z-index: 1;
  display: grid;
  gap: 2px;
  color: var(--white);
  text-transform: uppercase;
}
.stage-frame figcaption span,
.stage-rail strong {
  width: max-content;
  padding: 4px 7px;
  color: var(--black);
  background: var(--lime);
  font: 900 11px/1 ui-monospace, monospace;
}
.stage-frame figcaption strong { font-size: clamp(26px, 3vw, 38px); line-height: 1; }
.stage-rail {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}
.stage-rail span {
  display: grid;
  gap: 6px;
  min-height: 56px;
  padding: 8px;
  color: rgba(255,255,255,.84);
  background: rgba(0,0,0,.58);
  border: 1px solid rgba(255,255,255,.18);
  font-size: 12px;
  font-weight: 800;
}
.stage-mini {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.stage-mini img {
  width: 100%;
  height: 112px;
  object-fit: contain;
  padding: 10px;
  background:
    radial-gradient(circle at 50% 34%, rgba(255,216,0,.16), transparent 54%),
    linear-gradient(135deg, #1c1d22, #060606);
}
.stage-mini figcaption {
  display: inline-flex;
  top: auto;
  right: auto;
  bottom: 8px;
  left: 8px;
  width: max-content;
  max-width: calc(100% - 16px);
  padding: 5px 7px;
  color: var(--black);
  background: var(--yellow);
  font: 900 10px/1 ui-monospace, monospace;
}

.toc-band {
  position: sticky;
  z-index: 50;
  top: 65px;
  color: var(--white);
  background: linear-gradient(90deg, var(--green-dark), #031f0a);
  border-bottom: 1px solid rgba(255,255,255,.12);
}
#overview, #play-route, #how-it-works, #scene-board, #gallery, #testimonials, #calculator, #comparisons, #comparison-list, #verdict, #faq { scroll-margin-top: 88px; }
.overview, .casino, .gallery, .testimonial, .calculator, .verdict, .faq { scroll-margin-top: 88px; }
.toc-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(118px, 1fr)); }
.toc-grid a {
  position: relative;
  min-height: 44px;
  padding: 14px 8px;
  color: var(--white);
  border-right: 1px solid rgba(255,255,255,.16);
  text-align: center;
  text-decoration: none;
  font: 800 12px/1.2 ui-monospace, monospace;
  text-transform: uppercase;
  transition: color .18s ease, background-color .18s ease;
}
.toc-grid a::after {
  content: "";
  position: absolute;
  right: 16px;
  bottom: 8px;
  left: 16px;
  height: 2px;
  background: var(--lime);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .22s ease;
}
.toc-grid a:hover { color: var(--lime); background: rgba(255,255,255,.06); }
.toc-grid a:hover::after { transform: scaleX(1); }

.section {
  position: relative;
  padding-block: clamp(46px, 6vw, 72px);
}
.band-white { background: var(--white); }
.band-sand { background: var(--sand); }
.band-dark { color: var(--white); background: var(--black); }
.section-heading { max-width: 760px; margin-bottom: 24px; }
.split { display: grid; grid-template-columns: minmax(0, 1fr) minmax(320px, .9fr); gap: clamp(24px, 5vw, 56px); align-items: center; }
.feature-copy {
  position: relative;
  padding-left: 18px;
}
.feature-copy::before {
  content: "";
  position: absolute;
  top: 5px;
  bottom: 8px;
  left: 0;
  width: 4px;
  background: linear-gradient(var(--lime), var(--yellow));
}
.feature-image, .feature-video {
  width: 100%;
  border: 1px solid var(--line);
  object-fit: cover;
  box-shadow: var(--shadow-hard);
  transition: transform .24s ease, box-shadow .24s ease;
}
.feature-image:hover, .feature-video:hover { transform: translateY(-4px); box-shadow: 14px 14px 0 rgba(0,0,0,.16), var(--shadow-glow); }
.feature-video { aspect-ratio: 16 / 10; background: var(--black); }
.lazy-video {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  overflow: hidden;
  color: var(--white);
  background: var(--black);
  border: 0;
  cursor: pointer;
  text-align: left;
}
.lazy-video img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .45s ease, filter .45s ease;
}
.lazy-video::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 58px;
  height: 58px;
  border: 2px solid rgba(255,255,255,.88);
  background:
    linear-gradient(90deg, transparent 0 37%, var(--black) 37% 45%, transparent 45%),
    var(--lime);
  clip-path: polygon(0 0, 100% 50%, 0 100%);
  transform: translate(-42%, -50%);
  filter: drop-shadow(0 12px 28px rgba(0,0,0,.38));
  transition: transform .2s ease, background-color .2s ease;
}
.lazy-video__play {
  position: absolute;
  right: 12px;
  bottom: 12px;
  z-index: 3;
  padding: 7px 9px;
  color: var(--black);
  background: var(--yellow);
  font: 900 11px/1 ui-monospace, monospace;
  text-transform: uppercase;
}
.lazy-video:hover img {
  transform: scale(1.04);
  filter: saturate(1.08) contrast(1.04);
}
.lazy-video:hover::after {
  background-color: var(--yellow);
  transform: translate(-42%, -50%) scale(1.08);
}
.feature-video.lazy-video img { display: block; }

.surface-section::before,
.arcade-section::before,
.control-section::before,
.evidence-section::before,
.verdict-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.surface-section::before {
  background:
    radial-gradient(circle at 90% 8%, rgba(155,240,11,.10), transparent 18rem),
    linear-gradient(90deg, rgba(0,0,0,.035) 1px, transparent 1px);
  background-size: auto, 52px 52px;
}
.arcade-section::before,
.evidence-section::before,
.verdict-section::before {
  background:
    linear-gradient(135deg, rgba(255,255,255,.30), transparent 36%),
    radial-gradient(circle at 12% 22%, rgba(155,240,11,.16), transparent 17rem);
}
.control-section::before {
  background:
    radial-gradient(circle at 85% 16%, rgba(155,240,11,.16), transparent 18rem),
    repeating-linear-gradient(135deg, rgba(255,255,255,.04) 0 1px, transparent 1px 12px);
}
.surface-section > .shell,
.arcade-section > .shell,
.control-section > .shell,
.evidence-section > .shell,
.verdict-section > .shell { position: relative; z-index: 1; }

.casino-panel, .calculator-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 420px);
  gap: clamp(24px, 5vw, 56px);
  align-items: start;
}
.operator-card, .notice, .calc {
  position: relative;
  overflow: hidden;
  padding: 20px;
  background: var(--charcoal);
  border: 1px solid var(--line-inverse);
  box-shadow: 0 18px 52px rgba(0,0,0,.28);
}
.operator-card::before, .notice::before, .calc::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--lime), var(--yellow));
}
.band-white .operator-card, .band-white .notice, .band-white .calc { color: var(--ink); background: var(--fog); border-color: var(--line); }
.badge {
  display: inline-block;
  margin-bottom: 14px;
  padding: 3px 8px;
  color: var(--black);
  background: var(--yellow);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.tile-grid { display: grid; gap: 12px; }
.tile-grid.three { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.tile-grid article, .testimonial {
  position: relative;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: 0 14px 34px rgba(0,0,0,.10);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.tile-grid article::before,
.testimonial::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, var(--green), var(--lime), var(--yellow));
  transform: scaleX(.34);
  transform-origin: left;
  transition: transform .24s ease;
}
.tile-grid article:hover, .testimonial:hover, .operator-card:hover, .notice:hover {
  transform: translateY(-4px);
  border-color: rgba(16,124,16,.42);
  box-shadow: var(--shadow-hard), 0 22px 52px rgba(0,0,0,.14);
}
.tile-grid article:hover::before,
.testimonial:hover::before { transform: scaleX(1); }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 12px; }
.testimonial { padding: 16px; }
.band-sand .tile-grid article { background: rgba(255,255,255,.72); }
.band-sand .testimonial { background: rgba(255,255,255,.72); }
.tile-grid img { width: 100%; height: 210px; object-fit: cover; background: var(--fog); }
.tile-grid article:first-child img,
.tile-grid article:nth-child(3) img {
  object-fit: contain;
  padding: 14px;
  background: linear-gradient(135deg, #1c1d22, #070707);
}
.tile-grid h2, .tile-grid h3, .tile-grid p { padding-inline: 12px; }
.tile-grid h2, .tile-grid h3 { padding-top: 12px; }
.tile-grid p { padding-bottom: 12px; }

.scene-section {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 18% 12%, rgba(155,240,11,.18), transparent 20rem),
    radial-gradient(circle at 92% 78%, rgba(255,216,0,.16), transparent 22rem),
    linear-gradient(135deg, #050505 0%, #151617 52%, #071f0c 100%);
}
.scene-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    repeating-linear-gradient(90deg, rgba(255,255,255,.045) 0 1px, transparent 1px 44px),
    linear-gradient(0deg, rgba(0,0,0,.34), transparent 46%);
}
.scene-section > .shell {
  position: relative;
  z-index: 1;
}
.scene-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(14px, 1.7vw, 20px);
  align-items: start;
}
.scene-card {
  position: relative;
  display: grid;
  grid-template-rows: auto auto;
  min-height: 0;
  overflow: hidden;
  color: var(--white);
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.22);
  box-shadow: 12px 12px 0 rgba(0,0,0,.24), 0 30px 80px rgba(0,0,0,.22);
  transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
}
.scene-card--large {
  grid-row: auto;
}
.scene-card:hover {
  transform: translateY(-5px);
  border-color: rgba(155,240,11,.68);
  box-shadow: 16px 16px 0 rgba(0,0,0,.32), 0 30px 90px rgba(16,124,16,.18);
}
.scene-card video,
.scene-card .lazy-video {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  background: var(--black);
}
.scene-card--large video,
.scene-card--large .lazy-video {
  min-height: 0;
}
.scene-card > div {
  position: relative;
  padding: 16px;
}
.scene-card > div::before {
  content: "";
  display: block;
  width: 66px;
  height: 4px;
  margin-bottom: 14px;
  background: linear-gradient(90deg, var(--lime), var(--yellow));
}
.scene-card span {
  display: inline-flex;
  margin-bottom: 10px;
  padding: 5px 8px;
  color: var(--black);
  background: var(--yellow);
  font: 900 11px/1 ui-monospace, monospace;
  text-transform: uppercase;
}
.scene-card h3 {
  color: var(--white);
  font-size: clamp(22px, 2.4vw, 34px);
  text-transform: uppercase;
}
.scene-card p {
  color: rgba(255,255,255,.78);
}
.scene-fact {
  align-content: start;
  background:
    radial-gradient(circle at 100% 0%, rgba(255,216,0,.20), transparent 11rem),
    linear-gradient(135deg, rgba(16,124,16,.42), rgba(255,255,255,.07));
}
.scene-fact > div {
  display: grid;
  align-content: start;
}

.media-section {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(255, 248, 232, .96), rgba(255,255,255,.98) 44%, rgba(243, 215, 155, .58)),
    var(--white);
}
.media-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(16, 124, 16, .14), transparent 22%),
    radial-gradient(circle at 88% 18%, rgba(155, 240, 11, .26), transparent 18rem),
    repeating-linear-gradient(90deg, rgba(0,0,0,.04) 0 1px, transparent 1px 44px);
}
.media-section > .shell { position: relative; z-index: 1; }
.media-showcase {
  display: grid;
  grid-template-columns: minmax(0, 1.38fr) minmax(320px, .82fr);
  grid-template-areas:
    "feature stack"
    "strip strip";
  gap: clamp(14px, 1.6vw, 20px);
  align-items: stretch;
}
.media-showcase figure { margin: 0; }
.media-feature,
.media-card,
.media-strip figure {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #1d1e22, #050505);
  border: 2px solid var(--black);
  box-shadow: var(--shadow-hard), 0 24px 54px rgba(0,0,0,.12);
  isolation: isolate;
}
.media-card,
.media-strip figure {
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
}
.media-feature {
  grid-area: feature;
  width: 100%;
  height: clamp(420px, 36vw, 540px);
  min-height: 0;
  aspect-ratio: auto;
}
.media-feature::before,
.media-card::before,
.media-strip figure::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(120deg, transparent 0 36%, rgba(255,255,255,.13) 45%, transparent 54% 100%);
  transform: translateX(-120%);
  transition: transform .65s ease;
}
.media-feature:hover::before,
.media-card:hover::before,
.media-strip figure:hover::before { transform: translateX(120%); }
.media-feature::after,
.media-card::after,
.media-strip figure::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(180deg, transparent 42%, rgba(0,0,0,.78));
}
.media-card::after,
.media-strip figure::after { display: none; }
.media-feature__video,
.media-card img,
.media-strip img {
  width: 100%;
  height: 100%;
  min-width: 0;
  min-height: 0;
  object-fit: cover;
  transition: transform .5s ease, filter .5s ease;
}
.media-feature__video img { display: block; }
.media-feature:hover .media-feature__video,
.media-feature:hover .media-feature__video img,
.media-card:hover img,
.media-strip figure:hover img {
  transform: scale(1.04);
  filter: saturate(1.08) contrast(1.04);
}
.media-feature figcaption,
.media-card figcaption,
.media-strip figcaption {
  z-index: 2;
  color: var(--white);
}
.media-feature figcaption {
  position: absolute;
  right: 14px;
  bottom: 14px;
  left: 14px;
}
.media-card figcaption,
.media-strip figcaption {
  position: relative;
  z-index: 3;
  padding: 12px 14px;
  background: linear-gradient(180deg, rgba(0,0,0,.90), #050505);
}
.media-feature figcaption,
.media-card figcaption {
  display: grid;
  gap: 5px;
}
.media-feature figcaption span,
.media-card figcaption span {
  width: max-content;
  padding: 4px 8px;
  color: var(--black);
  background: var(--lime);
  font: 900 12px/1 ui-monospace, monospace;
}
.media-feature figcaption strong,
.media-card figcaption strong {
  font-size: clamp(24px, 3vw, 42px);
  line-height: 1;
  text-transform: uppercase;
}
.media-card figcaption strong { font-size: 22px; }
.media-feature figcaption small,
.media-card figcaption small {
  max-width: 54ch;
  color: rgba(255,255,255,.82);
  font-size: 14px;
}
.media-stack {
  grid-area: stack;
  display: grid;
  grid-template-rows: repeat(2, minmax(0, 1fr));
  gap: clamp(14px, 1.6vw, 20px);
  height: clamp(420px, 36vw, 540px);
  min-width: 0;
}
.media-card { min-height: 0; }
.media-card--accent { border-color: var(--green); }
.media-fact-card {
  display: grid;
  align-content: start;
  gap: 14px;
  padding: 20px 22px;
  color: var(--white);
  background:
    radial-gradient(circle at 90% 12%, rgba(155, 240, 11, .18), transparent 9rem),
    linear-gradient(135deg, #202126, #050505);
}
.media-fact-card h3 {
  margin-bottom: 6px;
  color: var(--white);
  font-size: clamp(28px, 3vw, 34px);
  line-height: .95;
  text-transform: uppercase;
}
.media-fact-card p {
  max-width: 34ch;
  color: rgba(255,255,255,.78);
  font-size: 14px;
  line-height: 1.34;
}
.fact-label {
  display: inline-flex;
  width: max-content;
  margin-bottom: 10px;
  padding: 5px 8px;
  color: var(--black);
  background: var(--lime);
  font: 900 12px/1 ui-monospace, monospace;
  text-transform: uppercase;
}
.fact-list {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.fact-list li {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding: 8px 12px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.16);
}
.fact-list span {
  color: rgba(255,255,255,.72);
  font-weight: 800;
}
.fact-list strong {
  color: var(--yellow);
  font-weight: 900;
}
.media-card--contain img {
  object-fit: contain;
  padding: 16px;
  background:
    linear-gradient(135deg, rgba(255,255,255,.06), transparent),
    #17181d;
}
.media-strip {
  grid-area: strip;
  display: grid;
  grid-template-columns: 1.1fr .9fr .72fr;
  gap: clamp(14px, 1.6vw, 20px);
}
.media-strip figure {
  height: clamp(180px, 18vw, 236px);
}
.media-strip figure:nth-child(3) img {
  object-fit: contain;
  padding: 24px;
  background:
    radial-gradient(circle, rgba(255,216,0,.14), transparent 58%),
    linear-gradient(135deg, #1d1e22, #050505);
}
.media-strip figcaption {
  display: inline-flex;
  width: auto;
  max-width: none;
  min-height: 36px;
  align-items: center;
  padding: 7px 10px;
  color: var(--black);
  background: var(--yellow);
  font-weight: 900;
  text-transform: uppercase;
}
.source-note, .configuration-note { color: var(--steel); font-size: 13px; }
.source-note {
  margin-top: 18px;
  padding-left: 14px;
  border-left: 4px solid var(--green);
}
.configuration-note { padding-block: 0 28px; }

.comparison-section {
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 14%, rgba(155,240,11,.16), transparent 18rem),
    radial-gradient(circle at 92% 32%, rgba(255,216,0,.16), transparent 20rem),
    linear-gradient(180deg, #fff, var(--sand-soft));
}
.comparison-grid,
.metric-grid,
.compare-visual-grid {
  display: grid;
  gap: clamp(14px, 1.7vw, 20px);
}
.comparison-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.comparison-grid--compact {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.comparison-card,
.metric-grid article,
.compare-visual-grid figure {
  position: relative;
  overflow: hidden;
  margin: 0;
  background: rgba(255,255,255,.86);
  border: 1px solid rgba(0,0,0,.16);
  box-shadow: var(--shadow-hard), 0 20px 46px rgba(0,0,0,.10);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.comparison-card::before,
.metric-grid article::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  z-index: 2;
  background: linear-gradient(90deg, var(--green), var(--lime), var(--yellow));
  transform: scaleX(.28);
  transform-origin: left;
  transition: transform .25s ease;
}
.comparison-card::after,
.compare-visual-grid figure::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(120deg, transparent 0 38%, rgba(255,255,255,.28) 48%, transparent 58% 100%);
  transform: translateX(-130%);
  transition: transform .7s ease;
}
.comparison-card:hover,
.metric-grid article:hover,
.compare-visual-grid figure:hover {
  transform: translateY(-5px);
  border-color: rgba(16,124,16,.42);
  box-shadow: 14px 14px 0 rgba(0,0,0,.15), 0 26px 58px rgba(16,124,16,.13);
}
.comparison-card:hover::before,
.metric-grid article:hover::before { transform: scaleX(1); }
.comparison-card:hover::after,
.compare-visual-grid figure:hover::after { transform: translateX(130%); }
.comparison-shot-link {
  display: block;
  color: inherit;
}
.comparison-shot {
  width: 100%;
  aspect-ratio: 1200 / 650;
  object-fit: cover;
  background:
    radial-gradient(circle at 50% 40%, rgba(155,240,11,.14), transparent 52%),
    linear-gradient(135deg, #1c1d22, #060606);
  transition: transform .45s ease, filter .45s ease;
}
.comparison-card:hover .comparison-shot,
.compare-visual-grid figure:hover .comparison-shot {
  transform: scale(1.035);
  filter: saturate(1.08) contrast(1.04);
}
.comparison-card__body,
.metric-grid article {
  padding: 16px;
}
.comparison-card h3,
.metric-grid h3 {
  margin-top: 8px;
  color: var(--green-dark);
  font-size: clamp(20px, 2vw, 26px);
  line-height: 1.05;
  text-transform: uppercase;
}
.comparison-meta {
  display: inline-flex;
  width: max-content;
  max-width: 100%;
  margin: 0 0 4px;
  padding: 5px 8px;
  color: var(--black);
  background: var(--lime);
  font: 900 11px/1 ui-monospace, monospace;
  text-transform: uppercase;
}
.metric-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-block: 18px;
}
.compare-visual-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-block: 18px;
}
.compare-visual-grid figure:nth-child(3) {
  grid-column: 1 / -1;
}
.compare-visual-grid figcaption {
  position: relative;
  z-index: 2;
  padding: 12px 14px;
  color: var(--white);
  background: linear-gradient(180deg, rgba(0,0,0,.92), #050505);
  font-weight: 800;
}

.calc { display: grid; gap: 12px; }
.calc label { display: grid; gap: 6px; font-weight: 700; }
input, select, textarea {
  width: 100%;
  padding: 11px 12px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 0;
}
textarea { min-height: 150px; }
output { padding: 14px; color: var(--green-dark); background: var(--lime); font-size: 24px; font-weight: 900; }

.verdict {
  max-width: 940px;
  padding: clamp(20px, 3vw, 32px);
  background: rgba(255,255,255,.58);
  border: 1px solid rgba(0,0,0,.16);
  box-shadow: var(--shadow-hard);
}
.verdict-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; margin-top: 20px; }
.verdict-row span {
  position: relative;
  overflow: hidden;
  padding: 12px;
  background: rgba(255,255,255,.78);
  border: 1px solid rgba(0,0,0,.18);
  font-weight: 800;
}
.verdict-row span::before {
  content: "";
  display: block;
  width: 34px;
  height: 3px;
  margin-bottom: 8px;
  background: var(--lime);
}

.qa-grid { display: grid; grid-template-columns: minmax(260px, .55fr) minmax(0, 1fr); gap: clamp(24px, 5vw, 56px); align-items: start; }
.qa-wide { max-width: 920px; }
.qa-list { display: grid; gap: 8px; }
.qa-list details {
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: 0 10px 24px rgba(0,0,0,.07);
  transition: border-color .2s ease, transform .2s ease, box-shadow .2s ease;
}
.qa-list details:hover,
.qa-list details[open] {
  border-color: rgba(16,124,16,.42);
  box-shadow: 0 16px 36px rgba(0,0,0,.10);
}
.qa-list summary {
  cursor: pointer;
  padding: 14px 16px;
  font-weight: 900;
}
.qa-list details p { padding: 0 16px 16px; }

.article-hero {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 88% 12%, rgba(155, 240, 11, .18), transparent 18rem),
    linear-gradient(135deg, #050505, #151617 58%, #061b09);
  padding-block: clamp(42px, 6vw, 72px);
}
.article-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    repeating-linear-gradient(90deg, rgba(255,255,255,.045) 0 1px, transparent 1px 44px),
    linear-gradient(0deg, rgba(0,0,0,.35), transparent 56%);
}
.article-hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 420px);
  gap: 28px;
  align-items: center;
}
.article-hero__copy {
  position: relative;
  padding-left: 18px;
}
.article-hero__copy::before {
  content: "";
  position: absolute;
  top: 6px;
  bottom: 8px;
  left: 0;
  width: 4px;
  background: linear-gradient(var(--lime), var(--yellow));
}
.article-hero__image,
.article-hero img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border: 1px solid var(--line-inverse);
  background: linear-gradient(135deg, #1c1d22, #070707);
  box-shadow: var(--shadow-hard), 0 28px 70px rgba(0,0,0,.28);
  transition: transform .3s ease, filter .3s ease, box-shadow .3s ease;
}
.article-hero__image:hover {
  transform: translateY(-4px);
  filter: saturate(1.08) contrast(1.04);
  box-shadow: 14px 14px 0 rgba(0,0,0,.18), var(--shadow-glow);
}
.article-hero img[src*="single-tire"],
.article-hero img[src*="crow-carrying-tnt"],
.article-hero img[src*="man-carrying-ladder"],
.tile-grid img[src*="single-tire"],
.tile-grid img[src*="crow-carrying-tnt"],
.tile-grid img[src*="man-carrying-ladder"],
.media-strip img[src*="single-tire"],
.media-strip img[src*="crow-carrying-tnt"],
.media-strip img[src*="man-carrying-ladder"] {
  object-fit: contain;
  padding: 18px;
  background:
    radial-gradient(circle at 50% 42%, rgba(255,216,0,.10), transparent 55%),
    linear-gradient(135deg, #1c1d22, #070707);
}
.breadcrumbs { margin-bottom: 10px; color: rgba(255,255,255,.74); font-size: 13px; }
.breadcrumbs a { color: var(--lime); }
.updated { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 16px; }
.updated span {
  padding: 5px 8px;
  color: rgba(255,255,255,.88);
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.28);
  font: 700 12px/1 ui-monospace, monospace;
}
.article-layout { display: grid; grid-template-columns: minmax(0, 1fr) 260px; gap: 40px; align-items: start; }
.article-layout > .prose,
.qa-wide,
.section > .shell.prose {
  position: relative;
  padding: clamp(20px, 3vw, 32px);
  background:
    linear-gradient(135deg, rgba(255,255,255,.92), rgba(255,248,232,.72)),
    var(--white);
  border: 1px solid rgba(0,0,0,.14);
  box-shadow: 0 18px 44px rgba(0,0,0,.09);
}
.prose { max-width: 780px; }
.prose h2 {
  position: relative;
  margin-top: 34px;
  padding-top: 10px;
}
.prose h2::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 64px;
  height: 4px;
  background: linear-gradient(90deg, var(--lime), var(--yellow));
}
.prose h2:first-child { margin-top: 0; }
.prose p, .prose li { max-width: 72ch; }
.toc {
  position: sticky;
  top: 86px;
  padding: 16px;
  background:
    linear-gradient(135deg, rgba(255,255,255,.92), rgba(255,248,232,.86)),
    var(--fog);
  border: 1px solid var(--line);
  box-shadow: 0 16px 38px rgba(0,0,0,.08);
}
.toc strong, .toc a { display: block; }
.toc strong { margin-bottom: 8px; }
.toc a {
  position: relative;
  padding: 8px 0 8px 13px;
  color: var(--ink);
  text-decoration: none;
  font-weight: 800;
}
.toc a::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 5px;
  height: 5px;
  background: var(--green);
  transform: translateY(-50%);
  transition: transform .18s ease, background-color .18s ease;
}
.toc a:hover { color: var(--green-dark); }
.toc a:hover::before { background: var(--lime); transform: translateY(-50%) scale(1.5); }
table { width: 100%; border-collapse: collapse; margin-block: 20px; }
th, td { padding: 12px; border: 1px solid var(--line); text-align: left; vertical-align: top; }
th { color: var(--white); background: var(--green-dark); }
.prose table {
  overflow: hidden;
  background: var(--white);
  box-shadow: 0 12px 28px rgba(0,0,0,.08);
}
tbody tr { transition: background-color .18s ease; }
tbody tr:hover { background: rgba(155,240,11,.09); }
.warning {
  position: relative;
  padding: 16px 18px;
  color: var(--white);
  background:
    linear-gradient(135deg, var(--danger), #7f281d);
  border: 1px solid rgba(255,255,255,.22);
  box-shadow: 0 18px 36px rgba(181,69,54,.22);
}
.related { display: flex; flex-wrap: wrap; gap: 8px; }
.related a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 9px 12px;
  color: var(--green-dark);
  background: rgba(255,255,255,.72);
  border: 1px solid rgba(0,0,0,.18);
  text-decoration: none;
  font-weight: 800;
  box-shadow: 4px 4px 0 rgba(0,0,0,.10);
  transition: transform .18s ease, box-shadow .18s ease, background-color .18s ease;
}
.related a:hover {
  transform: translate(-2px, -2px);
  background: var(--lime);
  box-shadow: 7px 7px 0 rgba(0,0,0,.16);
}
.form-grid { display: grid; gap: 12px; }
.form-grid label { display: grid; gap: 6px; font-weight: 700; }
.deep-content { border-top: 1px solid var(--line); }
.deep-content .source-box {
  padding: 18px;
  background: var(--sand-soft);
  border: 1px solid var(--line);
}
.deep-content h3 { margin-top: 22px; }

.site-footer {
  padding-block: 50px 24px;
  color: var(--white);
  background:
    radial-gradient(circle at 8% 0%, rgba(139, 255, 0, .10), transparent 24rem),
    var(--black);
  border-top: 4px solid var(--green);
}
.footer-main { display: grid; grid-template-columns: minmax(240px, .9fr) minmax(0, 1.6fr); gap: clamp(44px, 7vw, 96px); }
.footer-about { max-width: 390px; }
.footer-about p { color: rgba(255,255,255,.76); }
.footer-brand { width: 150px; height: 70px; margin-bottom: 14px; }
.footer-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 16px; margin-top: 22px; }
.footer-play { margin: 0; }
.footer-email { min-height: 44px; display: inline-flex; align-items: center; color: var(--white); font-weight: 800; text-underline-offset: 4px; }
.footer-email:hover { color: var(--lime); }
.footer-navigation { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: clamp(22px, 4vw, 54px); }
.site-footer h2 { margin-bottom: 14px; color: var(--lime); font: 800 12px/1.3 ui-monospace, SFMono-Regular, Menlo, monospace; letter-spacing: .08em; text-transform: uppercase; }
.footer-links { display: grid; gap: 2px; }
.footer-links a { display: flex; align-items: center; width: fit-content; min-height: 40px; color: rgba(255,255,255,.82); text-decoration: none; }
.footer-links a:hover { color: var(--lime); text-decoration: underline; text-underline-offset: 4px; }
.trust-badges {
  display: grid;
  grid-template-columns: .72fr 1.25fr 1.25fr 1fr;
  gap: 12px;
  margin-top: 38px;
  padding-top: 22px;
  border-top: 1px solid var(--line-inverse);
}
.trust-card {
  min-width: 0;
  min-height: 90px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  padding: 14px 16px;
  color: var(--white);
  text-decoration: none;
  background: rgba(255,255,255,.055);
  border: 1px solid rgba(255,255,255,.16);
  transition: border-color .18s ease, background-color .18s ease, transform .18s ease;
}
a.trust-card:hover { transform: translateY(-2px); border-color: var(--lime); background: rgba(255,255,255,.09); }
.trust-card strong { font-size: 16px; line-height: 1.2; }
.trust-card span, .trust-text { color: rgba(255,255,255,.68); font-size: 12px; font-weight: 700; line-height: 1.35; }
.trust-card--age { flex-direction: row; align-items: center; justify-content: flex-start; gap: 12px; }
.age-mark { flex: 0 0 auto; display: grid; place-items: center; width: 48px; height: 48px; color: var(--black); background: var(--lime); border-radius: 50%; font-size: 18px !important; }
.trust-card--age > span { color: var(--white); font-size: 13px; }
.footer-disclaimer {
  margin-top: 14px;
  padding: 14px 18px;
  color: var(--white);
  background: rgba(181, 69, 54, .24);
  border-left: 4px solid #d96955;
}
.footer-disclaimer p { margin: 0; }
.footer-base { display: flex; justify-content: space-between; gap: 16px; margin-top: 18px; padding-top: 18px; border-top: 1px solid var(--line-inverse); font-size: 13px; color: rgba(255,255,255,.74); }
.mobile-play-bar, .mobile-sticky-cta, .cta-bar, .fixed-bottom { display: none; }
.cookie-consent {
  position: fixed;
  z-index: 90;
  right: 16px;
  bottom: 16px;
  width: min(420px, calc(100% - 32px));
  padding: 16px;
  color: var(--ink);
  background: var(--white);
  border: 2px solid var(--black);
  box-shadow: 0 12px 30px rgba(0,0,0,.22);
  animation: cookie-in .32s ease both;
}
.cookie-consent.is-hidden { display: none; }
.cookie-title { display: block; margin-bottom: 8px; font-size: 18px; font-weight: 900; }
.cookie-actions { display: flex; gap: 8px; flex-wrap: wrap; }

.redirect-page { min-height: 100vh; color: var(--white); background: var(--black); }
.redirect-card { width: min(100% - 32px, 560px); display: grid; justify-items: center; gap: 14px; padding: 40px; text-align: center; background: var(--charcoal); border: 1px solid var(--line-inverse); }
.redirect-card { margin: 52px auto; }
.redirect-logo { margin-inline: auto; }
.redirect-reference { width: 100%; max-height: 220px; object-fit: cover; border: 1px solid var(--line-inverse); }
.redirect-card .text-link { color: var(--white); }

@media (max-width: 980px) {
  .header-inner { min-height: 60px; }
  .brand-mark { width: 98px; height: 44px; }
  .footer-main { grid-template-columns: 1fr; gap: 34px; }
  .footer-about { max-width: 620px; }
  .footer-brand { width: 140px; height: 64px; }
  .trust-badges { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .menu-toggle, .mobile-menu-btn, .hamburger { display: block; order: 4; }
  .nav {
    position: absolute;
    top: 60px;
    right: 16px;
    left: 16px;
    display: none;
    margin-left: 0;
    padding: 8px;
    background: var(--black);
    border: 1px solid var(--line-inverse);
  }
  .nav[data-open="true"], .nav.nav--open { display: grid; }
  .nav a { padding: 12px; }
  .header-inner > .button { margin-left: auto; min-height: 44px; padding-inline: 12px; font-size: 12px; }
  .site-header .play-now { position: fixed; top: 10px; right: 70px; z-index: 80; }
  .hero__content { grid-template-columns: 1fr; gap: 22px; }
  .hero-copy, .hero-stage { grid-column: auto; }
  .hero-stage { width: min(100%, 560px); }
  .stage-frame img { height: 240px; }
  .toc-grid { grid-template-columns: repeat(auto-fit, minmax(112px, 1fr)); }
  .split, .casino-panel, .calculator-grid, .article-hero__grid, .article-layout, .qa-grid { grid-template-columns: 1fr; }
  .toc { position: static; order: -1; }
  .tile-grid.three, .testimonials-grid, .comparison-grid, .metric-grid, .compare-visual-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .scene-grid { grid-template-columns: 1fr; }
  .scene-card--large { grid-row: auto; }
  .scene-card--large video,
  .scene-card--large .lazy-video { min-height: 0; }
  .media-showcase {
    grid-template-columns: 1fr;
    grid-template-areas:
      "feature"
      "stack"
      "strip";
  }
  .media-feature { min-height: 430px; aspect-ratio: auto; }
  .media-stack, .media-strip { grid-template-columns: 1fr 1fr; }
  .media-stack { grid-template-rows: none; height: auto; }
  .media-card { min-height: 250px; }
  .media-strip figure { height: 230px; }
}

@media (max-width: 680px) {
  body { font-size: 15px; padding-bottom: 74px; }
  .shell { width: min(calc(100% - 20px), var(--max)); }
  .hero { min-height: auto; }
  .hero__shade { background: linear-gradient(0deg, rgba(0,0,0,.96) 0%, rgba(0,0,0,.74) 54%, rgba(0,0,0,.24) 100%); }
  .hero__content { padding-block: 22px 16px; }
  .hero__content::before { display: none; }
  .home-logo { width: 112px; height: 84px; }
  .hero h1 { font-size: clamp(42px, 14vw, 58px); line-height: .9; }
  .hero .lead { max-width: 22rem; font-size: 16px; line-height: 1.35; }
  .hero .actions { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-top: 16px; }
  .hero .button { min-height: 44px; padding: 8px 10px; font-size: 12px; }
  .hero-stage { padding: 8px; box-shadow: 8px 8px 0 rgba(0,0,0,.26); }
  .hero-stage::before { transform: translate(4px, 4px); }
  .stage-frame img { height: 190px; }
  .stage-rail { grid-template-columns: 1fr; }
  .stage-rail span { min-height: auto; }
  .stage-mini img { height: 118px; }
  .hero-facts, .toc-grid, .tile-grid.three, .testimonials-grid, .comparison-grid, .metric-grid, .compare-visual-grid, .verdict-row { grid-template-columns: 1fr 1fr; }
  .hero-facts { gap: 6px; margin-top: 12px; }
  .hero-facts span { padding: 7px 8px; font-size: 10px; }
  .hero-facts strong { font-size: 15px; }
  .toc-grid a { font-size: 11px; }
  .section { padding-block: 48px; }
  .toc-band { position: static; }
  .scene-card > div { padding: 14px; }
  .scene-card h3 { font-size: 22px; }
  .media-feature {
    display: grid;
    grid-template-rows: minmax(0, 1fr) auto;
    height: auto;
    min-height: 0;
  }
  .media-feature::after { display: none; }
  .media-feature__video {
    height: auto;
    aspect-ratio: 16 / 10;
  }
  .media-feature figcaption {
    position: relative;
    right: auto;
    bottom: auto;
    left: auto;
    padding: 12px 14px;
    background: linear-gradient(180deg, rgba(0,0,0,.90), #050505);
  }
  .media-card, .media-strip figure { min-height: 220px; height: 220px; }
  .tile-grid article, .qa-list details, .operator-card, .notice, .calc, .toc { border-radius: 0; }
  .article-hero img { height: 210px; }
  .site-footer { padding-block: 38px 18px; }
  .footer-brand { width: 124px; height: 58px; }
  .footer-navigation { grid-template-columns: 1fr 1fr; gap: 24px 20px; }
  .footer-column:last-child { grid-column: 1 / -1; }
  .footer-column:last-child .footer-links { grid-template-columns: 1fr 1fr; column-gap: 20px; }
  .footer-base { display: grid; }
  .mobile-play-bar, .mobile-sticky-cta, .cta-bar, .fixed-bottom {
    position: fixed;
    z-index: 70;
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    padding: 10px;
    color: var(--white);
    background: var(--black);
    border-top: 2px solid var(--green);
    transform: translateY(110%);
    transition: transform .18s ease;
  }
  .mobile-play-bar.is-visible { transform: translateY(0); }
  .mobile-play-bar span { font-weight: 900; }
  .mobile-play-bar .button { min-height: 44px; padding: 8px 12px; font-size: 12px; }
}

@media (max-width: 430px) {
  .media-stack, .media-strip, .tile-grid.three, .testimonials-grid, .comparison-grid, .metric-grid, .compare-visual-grid, .verdict-row { grid-template-columns: 1fr; }
  .toc-grid { grid-template-columns: 1fr 1fr; }
  .hero-facts { grid-template-columns: 1fr 1fr; }
  .trust-badges { gap: 8px; }
  .trust-card { min-height: 104px; padding: 12px; }
  .trust-card--age { flex-direction: column; align-items: flex-start; gap: 8px; }
}

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

.reveal {
  opacity: 1;
  transform: none;
  transition: opacity .55s ease, transform .55s ease;
  transition-delay: var(--reveal-delay, 0ms);
}
.motion-ready .reveal {
  opacity: 0;
  transform: translateY(26px);
}
.motion-ready .reveal.is-visible,
.reveal.is-visible {
  opacity: 1;
  transform: none;
}
.tile-grid .reveal:nth-child(2),
.testimonials-grid .reveal:nth-child(2),
.media-stack .reveal:nth-child(2) { --reveal-delay: 90ms; }
.tile-grid .reveal:nth-child(3),
.testimonials-grid .reveal:nth-child(3) { --reveal-delay: 180ms; }
.media-strip.reveal { --reveal-delay: 150ms; }

@keyframes hero-rise {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: none; }
}

@keyframes hero-media-breathe {
  from { transform: scale(1); }
  to { transform: scale(1.045); }
}

@keyframes glow-drift {
  from { transform: translate3d(-2%, 1%, 0); opacity: .72; }
  to { transform: translate3d(2%, -1%, 0); opacity: .95; }
}

@keyframes stage-card-float {
  from { transform: translateY(0); }
  to { transform: translateY(-7px); }
}

@keyframes cookie-in {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: none; }
}
