:root {
  --bg: #09070d;
  --bg-soft: #0f0b15;
  --panel: #15111d;
  --panel-2: #1d1727;
  --line: #2c2438;
  --text: #f5f1f7;
  --muted: #ada4b8;
  --purple: #8b5cf6;
  --pink: #ec4899;
  --green: #35d69f;
  --amber: #f5b942;
  --red: #ff6b7c;
  --max: 1180px;
  --radius: 24px;
  color-scheme: dark;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 15px;
  line-height: 1.58;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a { color: inherit; }
p { margin: 0 0 1rem; }
h1, h2, h3 { margin: 0; line-height: 1.08; letter-spacing: -.035em; }
h1 { font-size: clamp(2.35rem, 6vw, 4.65rem); max-width: 880px; }
h2 { font-size: clamp(1.8rem, 4vw, 3.15rem); max-width: 860px; }
h3 { font-size: 1.05rem; letter-spacing: -.015em; }

.skip-link {
  position: fixed;
  left: 1rem;
  top: -5rem;
  z-index: 1000;
  padding: .8rem 1rem;
  background: var(--text);
  color: var(--bg);
  border-radius: 8px;
}
.skip-link:focus { top: 1rem; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(9, 7, 13, .92);
  border-bottom: 1px solid rgba(255,255,255,.07);
  backdrop-filter: blur(14px);
}
.header-inner {
  width: min(var(--max), calc(100% - 32px));
  min-height: 68px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 16px;
}
.wordmark { display: flex; align-items: center; gap: 10px; font-weight: 850; letter-spacing: -.035em; }
.wordmark > span { font-size: 1.15rem; }
.wordmark > span > span { color: var(--pink); }
.header-rating {
  color: var(--amber);
  font-size: .84rem;
  font-weight: 800;
  border: 1px solid var(--line);
  padding: .4rem .7rem;
  border-radius: 999px;
  background: var(--panel);
}
.header-rating small { color: var(--muted); font-weight: 600; margin-left: .3rem; }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  min-height: 50px;
  padding: .78rem 1.15rem;
  color: white;
  background: var(--purple);
  border: 1px solid var(--purple);
  border-radius: 14px;
  text-decoration: none;
  font-weight: 850;
  box-shadow: 0 10px 28px rgba(139,92,246,.18);
  transition: transform .2s ease, background-color .2s ease, box-shadow .2s ease;
}
.button:hover { transform: translateY(-2px); background: #9b72f8; box-shadow: 0 14px 34px rgba(139,92,246,.3); }
.button-small { min-height: 42px; padding: .6rem .9rem; border-radius: 10px; font-size: .88rem; }
.button-secondary { background: transparent; border-color: var(--purple); box-shadow: none; }
.button-centered { margin: 2rem auto 0; width: fit-content; display: flex; }
.header-cta { opacity: 0; transform: translateY(-8px); pointer-events: none; }
.site-header.show-cta .header-cta { opacity: 1; transform: translateY(0); pointer-events: auto; }

.section { width: min(var(--max), calc(100% - 32px)); margin: 0 auto; padding: 52px 0; }
.hero {
  min-height: 640px;
  display: grid;
  grid-template-columns: 1.05fr .78fr;
  align-items: center;
  gap: clamp(34px, 6vw, 82px);
  padding-top: 38px;
  padding-bottom: 44px;
}
.hero-copy { position: relative; z-index: 2; }
.eyebrow {
  margin-bottom: 1.1rem;
  color: var(--green);
  font-size: .76rem;
  font-weight: 900;
  letter-spacing: .16em;
}
.hero h1 { margin-bottom: 1.15rem; }
.hero-lede, .lead { color: #d8d1df; font-size: clamp(.98rem, 1.5vw, 1.12rem); max-width: 780px; }
.hero-lede { max-width: 690px; }
.hero-actions { display: flex; align-items: center; gap: 1rem; margin: 1.55rem 0; flex-wrap: wrap; }
.microcopy { color: var(--muted); font-size: .85rem; }
.trust-row { display: flex; flex-wrap: wrap; gap: .7rem; }
.trust-row > div {
  display: grid;
  grid-template-columns: auto auto;
  align-items: center;
  gap: .2rem .55rem;
  padding: .65rem .85rem;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 13px;
}
.trust-row small { grid-column: 1 / -1; color: var(--muted); font-size: .72rem; }
.stars { color: var(--amber); letter-spacing: .03em; }
.stars i, .rating-float i, .big-rating i { color: #4f4659; font-style: normal; }
.rating-note { color: #81788d; font-size: .74rem; max-width: 720px; margin-top: 1rem; }

.media-panel {
  position: relative;
  display: block;
  text-decoration: none;
  background: transparent;
  transition: opacity .2s ease;
}
.media-panel:hover { opacity: .94; }
.media-panel img { width: 100%; height: auto; object-fit: contain; border-radius: 18px; }
.hero-media { width: min(100%, 385px); height: auto; justify-self: end; }
.status-badge {
  position: absolute;
  top: 18px;
  left: 18px;
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .52rem .72rem;
  border-radius: 999px;
  background: #111018;
  border: 1px solid #373043;
  color: white;
  font-size: .76rem;
  font-weight: 800;
}
.status-badge i, .pulse { width: 8px; height: 8px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 4px rgba(53,214,159,.14); }
.rating-float {
  position: absolute;
  right: 18px;
  bottom: 18px;
  display: grid;
  padding: .72rem .82rem;
  border-radius: 13px;
  background: #111018;
  border: 1px solid #373043;
  font-size: .72rem;
  color: var(--muted);
}
.rating-float > span { color: var(--amber); letter-spacing: .08em; }
.rating-float b { color: white; font-size: 1rem; }

.proof-bar {
  width: 100%;
  min-height: 60px;
  padding: 1rem max(16px, calc((100vw - var(--max)) / 2));
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: center;
  gap: 1rem;
  background: var(--purple);
  color: white;
}
.proof-bar > div { display: flex; align-items: center; justify-content: center; gap: .7rem; font-size: .86rem; text-align: center; }
.proof-bar .pulse { background: white; box-shadow: 0 0 0 4px rgba(255,255,255,.18); }

.section-heading { display: grid; gap: .7rem; margin-bottom: 2.15rem; }
.definition { border-bottom: 1px solid var(--line); }
.definition-grid { display: grid; grid-template-columns: 1.5fr .72fr; gap: 2rem; align-items: start; }
.definition-main { font-size: .98rem; color: #cfc7d6; max-width: 760px; }
.fact-ticket, .source-stack {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: .75rem 1rem;
  padding: 1.4rem;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--panel);
}
.fact-ticket span, .source-stack span { color: var(--muted); }
.fact-ticket b, .source-stack b { text-align: right; }

.verdict {
  display: grid;
  grid-template-columns: .5fr 1.5fr;
  gap: clamp(30px, 7vw, 90px);
  align-items: center;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 30px;
  padding: clamp(24px, 4vw, 48px);
}
.verdict-score { display: grid; justify-items: start; }
.verdict-score span { color: var(--muted); font-size: .8rem; }
.verdict-score b { font-size: clamp(4.4rem, 10vw, 7rem); letter-spacing: -.09em; line-height: .9; color: var(--pink); }
.verdict-score small { font-size: 1rem; color: var(--muted); }
.verdict-copy h2 { margin-bottom: 1rem; }
.verdict-tags { display: flex; flex-wrap: wrap; gap: .55rem; margin: 1.2rem 0; }
.verdict-tags span, .trust-chips span, .footer-trust span { border: 1px solid var(--line); border-radius: 999px; padding: .45rem .7rem; color: var(--muted); font-size: .76rem; }
.text-cta { color: var(--green); font-weight: 850; text-decoration: none; }

.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; align-items: start; counter-reset: steps; }
.step-card, .feature-card, .audience-card, .cost-card, .price-card {
  text-decoration: none;
  background: var(--panel);
  border: 1px solid var(--line);
  transition: transform .25s ease, border-color .25s ease, background-color .25s ease;
}
.step-card:hover, .feature-card:hover, .audience-card:hover, .cost-card:hover, .price-card:hover { transform: translateY(-4px); border-color: var(--purple); background: var(--panel-2); }
.step-card { padding: 1.15rem; border-radius: 18px; }
.step-card > span { display: block; color: var(--pink); font-size: 2.1rem; font-weight: 900; letter-spacing: -.06em; margin-bottom: 1rem; }
.step-card p, .feature-card p, .audience-card p, .cost-card p { color: var(--muted); font-size: .84rem; margin-top: .65rem; }

.split { display: grid; grid-template-columns: .82fr 1.18fr; gap: clamp(36px, 8vw, 100px); align-items: center; }
.split.reverse { grid-template-columns: 1.18fr .82fr; }
.split .tall { width: min(100%, 280px); height: auto; justify-self: center; }
.split-copy h2 { margin-bottom: 1.1rem; }
.check-list { list-style: none; padding: 0; margin: 1.4rem 0; display: grid; gap: .65rem; }
.check-list li { position: relative; padding-left: 1.7rem; color: #d4cddd; }
.check-list li::before { content: "✓"; position: absolute; left: 0; color: var(--green); font-weight: 900; }
.pro-tip {
  margin: 1.3rem 0;
  padding: 1.1rem;
  border-left: 4px solid var(--pink);
  background: #17101b;
}
.pro-tip b { color: var(--pink); text-transform: uppercase; letter-spacing: .12em; font-size: .72rem; }
.pro-tip p { margin: .35rem 0 0; color: var(--muted); font-size: .88rem; }
.chat-float {
  position: absolute;
  left: -28px;
  bottom: 60px;
  max-width: 240px;
  padding: 1rem;
  border-radius: 16px 16px 16px 4px;
  background: var(--purple);
  font-weight: 750;
  box-shadow: 0 16px 40px rgba(0,0,0,.4);
}

.feature-groups { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; align-items: start; }
.feature-group { padding: 1.1rem; border: 1px solid var(--line); border-radius: 24px; background: var(--bg-soft); }
.group-label { color: var(--green); font-size: .74rem; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.feature-card { display: flex; gap: 1rem; padding: 1rem; margin-top: .75rem; border-radius: 14px; }
.feature-card > span { display: grid; place-items: center; flex: 0 0 34px; height: 34px; border-radius: 10px; background: var(--purple); color: white; font-weight: 900; }
.feature-card p { margin-bottom: 0; }

.meter { margin: 1.25rem 0; }
.meter > div { display: flex; justify-content: space-between; gap: 1rem; font-size: .85rem; }
.meter > div span { color: var(--muted); }
.meter > i { display: block; height: 8px; margin-top: .55rem; border-radius: 99px; background: var(--line); overflow: hidden; }
.meter > i::before { content: ""; display: block; width: var(--score); height: 100%; background: var(--green); border-radius: inherit; }

.audience-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; align-items: start; }
.audience-card { padding: 1.15rem; border-radius: 20px; display: grid; align-content: start; }
.audience-card > span { color: var(--pink); font-size: .78rem; font-weight: 900; }
.audience-card h3 { margin-top: .85rem; font-size: 1.18rem; }
.audience-card b { margin-top: .65rem; color: var(--green); font-size: .8rem; }

.gallery-grid { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 1rem; height: auto; align-items: start; }
.gallery-grid .media-panel { width: 100%; height: auto; justify-self: center; }
.gallery-label { position: absolute; left: 14px; bottom: 14px; padding: .5rem .7rem; border-radius: 10px; background: #111018; border: 1px solid #373043; font-size: .75rem; font-weight: 800; }
.fun-fact { margin-top: 1.2rem; display: flex; gap: 1rem; align-items: center; padding: 1rem 1.2rem; border: 1px dashed #514260; border-radius: 14px; background: #100c16; }
.fun-fact span { color: var(--pink); font-size: .68rem; font-weight: 900; letter-spacing: .13em; white-space: nowrap; }
.fun-fact p { margin: 0; color: #d4cddd; }

.cost-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; align-items: start; }
.cost-card { display: block; padding: 1.25rem; border-radius: 22px; }
.cost-card > span { color: var(--muted); font-weight: 750; }
.cost-card > b { display: block; margin: 1.3rem 0 .35rem; font-size: 3rem; letter-spacing: -.07em; }
.cost-card.featured { border-color: var(--pink); }
.cost-card.featured > i { display: inline-block; margin-top: .8rem; color: var(--pink); font-style: normal; font-size: .78rem; font-weight: 850; }

.safety { background: #0e1513; border: 1px solid #213b33; border-radius: 30px; padding: clamp(24px, 4vw, 48px); }
.safety-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; align-items: start; }
.safety-rule { display: flex; gap: 1rem; padding: 1.15rem; background: #111c18; border: 1px solid #284b40; border-radius: 16px; }
.safety-rule > span { color: var(--green); font-weight: 900; }
.safety-rule p { color: #a8beb5; font-size: .88rem; margin: .45rem 0 0; }
.warning { margin-top: 1rem; padding: 1.2rem; background: #211014; border: 1px solid #612633; border-radius: 16px; }
.warning b { color: #ff9aaa; }
.warning p { margin: .35rem 0 0; color: #c8aeb3; }

.table-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: 20px; background: var(--panel); }
table { width: 100%; min-width: 880px; border-collapse: collapse; font-size: .86rem; }
th, td { padding: 1rem; border-bottom: 1px solid var(--line); text-align: left; vertical-align: top; }
thead th { color: white; background: #100c16; position: sticky; top: 0; }
tbody th { color: #d8d1df; width: 175px; }
td { color: var(--muted); }
.highlight { background: rgba(139,92,246,.1); color: white; }
.table-note, .review-note, .review-note { margin-top: .8rem; color: #81788d; font-size: .75rem; }

.pricing-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; align-items: start; }
.price-card { position: relative; display: flex; flex-direction: column; padding: 1.15rem; border-radius: 22px; }
.price-card > span { color: var(--muted); font-weight: 800; }
.price-card > b { margin-top: 1.1rem; font-size: 2.45rem; letter-spacing: -.06em; }
.price-card > small { color: var(--muted); }
.price-card ul { padding-left: 1.2rem; color: #d5cedc; font-size: .86rem; }
.price-card > strong { margin-top: .85rem; color: var(--green); }
.price-card.popular { border-color: var(--purple); }
.price-card > i { position: absolute; right: 12px; top: 12px; padding: .35rem .55rem; background: var(--pink); color: white; border-radius: 999px; font-style: normal; font-size: .66rem; font-weight: 900; }
.pc-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; align-items: start; }
.pc-card { padding: 1.6rem; border-radius: 22px; background: var(--panel); border: 1px solid var(--line); }
.pc-card { display: block; text-decoration: none; transition: transform .25s ease, border-color .25s ease; }
.pc-card:hover { transform: translateY(-4px); border-color: var(--purple); }
.pc-card h3 { font-size: 1.25rem; }
.pc-card ul { list-style: none; padding: 0; display: grid; gap: .8rem; }
.pc-card li { position: relative; padding-left: 1.7rem; color: #cdc5d4; }
.pc-card li::before { position: absolute; left: 0; font-weight: 900; }
.pc-card.pros li::before { content: "+"; color: var(--green); }
.pc-card.cons li::before { content: "−"; color: var(--red); }

.review-heading { display: flex; align-items: end; justify-content: space-between; gap: 2rem; margin-bottom: 2.5rem; }
.big-rating { display: flex; align-items: center; gap: 1rem; flex: 0 0 auto; }
.big-rating > span { font-size: 3.6rem; font-weight: 900; letter-spacing: -.08em; }
.big-rating > div { display: grid; }
.big-rating b { color: var(--amber); letter-spacing: .08em; }
.big-rating small { color: var(--muted); }
.review-viewport { overflow: hidden; }
.review-track { display: flex; gap: 1rem; align-items: flex-start; will-change: transform; }
.review-card {
  flex: 0 0 min(390px, 86vw);
  display: flex;
  flex-direction: column;
  padding: 1.2rem;
  border-radius: 20px;
  background: var(--panel);
  border: 1px solid var(--line);
  text-decoration: none;
}
.review-card .review-stars { color: var(--amber); letter-spacing: .1em; }
.review-card blockquote { margin: 1.1rem 0; color: #d8d1df; font-size: .9rem; }
.review-card footer { margin-top: .75rem; padding: 0; background: none; border: 0; color: white; font-weight: 850; }

.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; align-items: start; }
.stat { padding: 1.2rem; border: 1px solid var(--line); border-radius: 20px; background: var(--panel); display: flex; flex-direction: column; }
.stat b { font-size: clamp(2.5rem, 5vw, 4rem); line-height: .9; letter-spacing: -.08em; color: var(--pink); }
.stat span { margin-top: .8rem; color: var(--muted); }

.decision { background: var(--purple); border-radius: 30px; padding: clamp(24px, 4vw, 48px); }
.decision .eyebrow, .decision .lead { color: white; }
.decision-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; align-items: start; }
.decision-column { padding: 1.4rem; border: 1px solid rgba(255,255,255,.28); border-radius: 18px; background: rgba(9,7,13,.18); }
.decision-column p { color: #eee7ff; margin: .7rem 0 0; }
.decision .button { background: var(--bg); border-color: var(--bg); }

.methodology { display: grid; grid-template-columns: 1.5fr .65fr; gap: clamp(36px, 8vw, 90px); align-items: start; }
.method-copy h2 { margin-bottom: 1rem; }
.method-copy > p:not(.eyebrow):not(.lead) { color: var(--muted); }

.faq-list { display: grid; gap: .7rem; width: 100%; max-width: none; }
details { width: 100%; border: 1px solid var(--line); border-radius: 15px; background: var(--panel); overflow: hidden; }
summary { cursor: pointer; list-style: none; padding: 1.1rem 3rem 1.1rem 1.15rem; font-weight: 850; position: relative; }
summary::-webkit-details-marker { display: none; }
summary::after { content: "+"; position: absolute; right: 1.15rem; top: .8rem; color: var(--pink); font-size: 1.45rem; }
details[open] summary::after { content: "−"; }
details p { padding: 0 1.15rem 1.1rem; color: var(--muted); margin: 0; }

.final-cta { display: grid; grid-template-columns: 1.08fr .72fr; gap: clamp(28px, 6vw, 64px); align-items: center; background: var(--panel); border: 1px solid var(--line); border-radius: 30px; padding: clamp(24px, 4vw, 48px); }
.final-copy h2 { margin-bottom: 1rem; }
.trust-chips { display: flex; flex-wrap: wrap; gap: .55rem; margin-top: 1rem; }
.final-media { width: min(100%, 300px); height: auto; justify-self: end; }

.mobile-cta { display: none; }
footer { padding: 62px 16px 26px; border-top: 1px solid var(--line); background: #070509; }
.footer-inner { width: min(var(--max), 100%); margin: 0 auto; }
.footer-mark { margin-bottom: 1rem; }
.footer-inner > p { color: var(--muted); }
.footer-trust { display: flex; flex-wrap: wrap; gap: .55rem; margin: 1.3rem 0 2rem; }
.footer-bottom { display: flex; flex-wrap: wrap; gap: .8rem 1.4rem; padding-top: 1.2rem; border-top: 1px solid var(--line); color: #776f80; font-size: .75rem; }
.legal-plain { color: #c7becf; }

.reveal { opacity: 1; transform: none; }
.js .reveal { opacity: 0; transform: translateY(24px); transition: opacity .65s ease, transform .65s ease; }
.js .reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (max-width: 980px) {
  .hero, .split, .split.reverse, .final-cta { grid-template-columns: 1fr 1fr; }
  .steps, .audience-grid, .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .feature-groups { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { height: auto; }
}

@media (max-width: 760px) {
  body { padding-bottom: 78px; }
  .header-inner { grid-template-columns: 1fr auto; }
  .header-rating { display: none; }
  .header-cta { display: none; }
  .section { padding: 42px 0; }
  .hero { min-height: auto; grid-template-columns: 1fr; padding-top: 32px; padding-bottom: 38px; }
  .hero-media { width: min(100%, 330px); height: auto; justify-self: center; }
  .proof-bar { grid-template-columns: repeat(2, 1fr); }
  .proof-bar > div { justify-content: flex-start; }
  .definition-grid, .verdict, .split, .split.reverse, .safety-grid, .pc-grid, .methodology, .final-cta { grid-template-columns: 1fr; }
  .verdict { width: min(var(--max), calc(100% - 32px)); }
  .verdict-score { grid-template-columns: auto auto; align-items: end; gap: .4rem; }
  .verdict-score span { grid-column: 1 / -1; }
  .steps, .audience-grid, .pricing-grid, .cost-grid { grid-template-columns: 1fr 1fr; }
  .split .tall { width: min(100%, 280px); height: auto; }
  .split.reverse .split-copy { order: 2; }
  .split.reverse .media-panel { order: 1; }
  .chat-float { left: 14px; }
  .gallery-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: .8rem; height: auto; overflow: visible; padding-bottom: 0; }
  .gallery-grid .media-panel, .gallery-grid .media-panel:first-child { grid-column: auto; width: 100%; height: auto; }
  .safety { width: min(var(--max), calc(100% - 32px)); padding: 26px 20px; border-radius: 22px; }
  .safety .section-heading { gap: .6rem; margin-bottom: 1.5rem; }
  .safety .eyebrow { margin-bottom: .55rem; }
  .safety-grid { gap: .8rem; }
  .safety-rule { gap: .8rem; padding: 1rem; }
  .safety-rule > span { flex: 0 0 20px; }
  .warning { margin-top: .8rem; padding: 1rem; }
  .review-heading { align-items: start; flex-direction: column; }
  .decision-grid { grid-template-columns: 1fr; }
  .mobile-cta {
    position: fixed;
    z-index: 90;
    left: 12px;
    right: 12px;
    bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: .75rem .9rem;
    border-radius: 15px;
    background: var(--purple);
    color: white;
    text-decoration: none;
    box-shadow: 0 14px 50px rgba(0,0,0,.5);
  }
  .mobile-cta span { display: grid; line-height: 1.2; }
  .mobile-cta small { font-size: .7rem; opacity: .76; }
  .mobile-cta i { font-style: normal; font-size: 1.4rem; }
}

@media (max-width: 520px) {
  h1 { font-size: clamp(2.2rem, 10vw, 3.35rem); }
  h2 { font-size: clamp(1.7rem, 8vw, 2.5rem); }
  .section { width: min(var(--max), calc(100% - 24px)); }
  .hero-actions { align-items: stretch; flex-direction: column; }
  .hero-actions .button { width: 100%; }
  .trust-row > div { flex: 1 1 135px; }
  .hero-media { width: min(100%, 310px); height: auto; }
  .proof-bar { padding-left: 14px; padding-right: 14px; gap: .7rem; }
  .proof-bar > div { font-size: .75rem; }
  .steps, .audience-grid, .pricing-grid, .cost-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: .7rem; }
  .stat { min-width: 0; padding: 1rem .85rem; border-radius: 16px; }
  .stat b { font-size: clamp(1.9rem, 9vw, 2.5rem); }
  .stat span { margin-top: .65rem; font-size: .75rem; line-height: 1.35; }
  .split .tall { width: min(100%, 260px); height: auto; }
  .gallery-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: .65rem; }
  .gallery-grid .media-panel, .gallery-grid .media-panel:first-child { grid-column: auto; width: 100%; height: auto; }
  .gallery-label { left: 8px; bottom: 8px; max-width: calc(100% - 16px); padding: .38rem .48rem; font-size: .64rem; line-height: 1.2; }
  .safety { width: min(var(--max), calc(100% - 24px)); padding: 22px 16px; }
  .safety-rule { padding: .9rem; }
  .fun-fact { align-items: flex-start; flex-direction: column; gap: .35rem; }
  .big-rating > span { font-size: 3rem; }
  .final-media { width: min(100%, 270px); height: auto; justify-self: center; }
}

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