:root {
  --bg: #080b12;
  --panel: #111722;
  --panel-2: #171d28;
  --panel-glass: rgba(17, 23, 34, 0.76);
  --text: #f6f7fb;
  --muted: #a6adbd;
  --line: rgba(255, 255, 255, 0.12);
  --accent: #ffdf3f;
  --pink: #ef35d0;
  --violet: #7b42ff;
  --green: #3ee27a;
  --cyan: #47e7ff;
  --max: 1180px;
}

* {
  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;
  letter-spacing: 0;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background:
    linear-gradient(115deg, rgba(255, 223, 63, 0.12) 0%, transparent 28%),
    linear-gradient(248deg, rgba(239, 53, 208, 0.16) 0%, transparent 34%),
    linear-gradient(35deg, transparent 0%, transparent 58%, rgba(71, 231, 255, 0.07) 100%),
    linear-gradient(180deg, #080b12 0%, #0b1019 48%, #080b12 100%);
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.25;
  background-image:
    linear-gradient(rgba(255,255,255,0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.045) 1px, transparent 1px);
  background-size: 64px 64px;
}

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

a {
  color: inherit;
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 40;
  width: 100%;
  height: 3px;
  background: rgba(255, 255, 255, 0.06);
}

.scroll-progress span {
  display: block;
  width: 0%;
  height: 100%;
  background: linear-gradient(90deg, var(--accent), var(--pink));
  box-shadow: 0 0 18px rgba(239, 53, 208, 0.55);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px clamp(18px, 4vw, 48px);
  background: rgba(8, 11, 18, 0.78);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-weight: 800;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #000;
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: var(--accent);
  font-size: 12px;
  letter-spacing: 0;
  box-shadow: 0 0 28px rgba(255, 223, 63, 0.12);
  animation: brandPulse 3.6s ease-in-out infinite;
}

nav {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  justify-content: flex-end;
}

nav a {
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  padding: 0 10px;
  color: var(--muted);
  font-size: 14px;
  text-decoration: none;
  border-radius: 8px;
  transition: color 180ms ease, background 180ms ease;
}

nav a:hover,
nav a.active {
  color: var(--text);
  background: rgba(255, 255, 255, 0.07);
}

section {
  position: relative;
  padding: clamp(64px, 8vw, 112px) clamp(18px, 4vw, 48px);
  border-bottom: 1px solid var(--line);
  scroll-margin-top: 88px;
}

main {
  counter-reset: showcase-step;
}

main > section:not(.hero-section) {
  counter-increment: showcase-step;
}

main > section:not(.hero-section)::before {
  content: counter(showcase-step, decimal-leading-zero);
  position: absolute;
  top: clamp(18px, 3vw, 34px);
  left: clamp(18px, 4vw, 48px);
  color: rgba(255, 255, 255, 0.14);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
}

.hero-section,
.split-section,
.proof-layout,
.comparison-grid,
.feedback-section {
  width: min(var(--max), 100%);
  margin: 0 auto;
}

.hero-section {
  min-height: calc(100vh - 68px);
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.7fr);
  align-items: center;
  gap: clamp(28px, 6vw, 74px);
}

.hero-copy {
  position: relative;
}

.hero-copy::before {
  content: "";
  position: absolute;
  top: -28px;
  left: 0;
  width: 86px;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent), var(--pink));
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 940px;
  margin-bottom: 22px;
  font-size: clamp(48px, 6.4vw, 88px);
  line-height: 0.95;
  text-wrap: balance;
  background: linear-gradient(100deg, #fff 0%, #fff 55%, #ffdf3f 74%, #ef35d0 100%);
  -webkit-background-clip: text;
  color: transparent;
}

h2 {
  max-width: 900px;
  margin-bottom: 18px;
  font-size: clamp(34px, 4vw, 58px);
  line-height: 1;
  text-wrap: balance;
}

h3 {
  margin-bottom: 14px;
  font-size: 22px;
}

p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.55;
}

.hero-sub {
  max-width: 760px;
  font-size: 21px;
}

.metric-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  width: min(100%, 760px);
  max-width: 760px;
  margin-top: 34px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
}

.metric-strip div {
  min-width: 0;
  padding: clamp(14px, 1.8vw, 20px);
  background: linear-gradient(180deg, rgba(255,255,255,0.04), transparent), var(--panel);
}

.metric-strip strong {
  display: block;
  color: var(--text);
  font-size: clamp(25px, 2.25vw, 34px);
  line-height: 1;
  white-space: nowrap;
}

.metric-strip span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 14px;
}

figure {
  margin: 0;
}

figcaption {
  margin-top: 12px;
  color: var(--muted);
  font-size: 14px;
}

.hero-phone img,
.screenshot img,
.compare-panel img {
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.35);
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.hero-phone img:hover,
.screenshot img:hover,
.compare-panel img:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 223, 63, 0.28);
  box-shadow: 0 34px 100px rgba(0, 0, 0, 0.48);
}

.hero-phone img {
  max-height: 78vh;
  margin: 0 auto;
  object-fit: contain;
  animation: floatPhone 6s ease-in-out infinite;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.8fr);
  gap: clamp(28px, 6vw, 72px);
  align-items: center;
}

.run-sheet {
  width: min(var(--max), calc(100% - 36px));
  margin: 0 auto;
  padding-top: 42px;
  padding-bottom: 42px;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
}

.timeline div {
  min-height: 122px;
  padding: 18px;
  background: linear-gradient(180deg, rgba(255,255,255,0.035), transparent), var(--panel);
  transition: transform 180ms ease, background 180ms ease;
}

.timeline div:first-child,
.timeline div:last-child {
  background:
    linear-gradient(180deg, rgba(255, 223, 63, 0.08), transparent),
    var(--panel);
}

.timeline div:hover {
  transform: translateY(-2px);
  background: var(--panel-2);
}

.timeline strong {
  display: block;
  color: var(--accent);
  font-size: 26px;
  line-height: 1;
}

.timeline span {
  display: block;
  margin-top: 12px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.25;
}

.evidence-grid {
  display: grid;
  gap: 14px;
}

.evidence-grid.compact {
  grid-template-columns: 1fr;
}

.evidence-tile {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(255,255,255,0.035), transparent), var(--panel);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.evidence-tile:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 223, 63, 0.26);
  background: var(--panel-2);
}

.evidence-tile span {
  display: block;
  margin-bottom: 10px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.evidence-tile strong {
  display: block;
  font-size: 24px;
  line-height: 1.2;
}

.live-section,
.case-section,
.process-section {
  width: min(var(--max), calc(100% - 36px));
  margin: 0 auto;
}

.section-heading {
  max-width: 900px;
  margin-bottom: 38px;
}

.domain-embed-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 24px;
}

.domain-embed-card {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.05), transparent),
    var(--panel);
  transition: transform 180ms ease, border-color 180ms ease;
}

.domain-embed-card:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 223, 63, 0.3);
}

.embed-shell {
  position: relative;
  min-height: 520px;
  background:
    linear-gradient(135deg, rgba(255, 223, 63, 0.10), transparent 35%),
    linear-gradient(315deg, rgba(239, 53, 208, 0.16), transparent 48%),
    #05070c;
}

.embed-shell::before {
  content: "Live reel";
  position: absolute;
  inset: 18px auto auto 18px;
  z-index: 0;
  color: rgba(255, 255, 255, 0.24);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.embed-shell iframe {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 520px;
  border: 0;
  background: transparent;
}

.domain-embed-card > div:last-child {
  padding: 16px;
}

.domain-embed-card span {
  display: block;
  color: var(--accent);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.domain-embed-card strong {
  display: block;
  margin-top: 8px;
  font-size: 18px;
  line-height: 1.15;
}

.reel-showcase {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  gap: 18px;
  align-items: stretch;
}

.reel-card {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 223, 63, 0.08), transparent 32%),
    linear-gradient(315deg, rgba(239, 53, 208, 0.12), transparent 42%),
    var(--panel);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.reel-card:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 223, 63, 0.32);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.35);
}

.hero-reel {
  display: grid;
  grid-template-columns: minmax(260px, 0.62fr) minmax(260px, 0.38fr);
}

.hero-reel > h3 {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

.reel-card img {
  width: 100%;
  height: auto;
  max-height: 680px;
  object-fit: contain;
  background: #05070c;
}

.reel-card-copy {
  display: grid;
  align-content: center;
  padding: clamp(24px, 4vw, 42px);
}

.reel-card-copy span,
.small-reel h3 {
  color: var(--accent);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.reel-card-copy strong,
.small-reel strong {
  margin: 10px 0;
  font-size: clamp(36px, 5vw, 68px);
  line-height: 0.95;
}

.reel-card-copy p {
  font-size: 17px;
}

.button-link.secondary,
.small-reel a {
  width: auto;
  color: #111;
}

.mini-reel-grid {
  display: grid;
  gap: 18px;
}

.small-reel {
  display: grid;
  grid-template-columns: 0.9fr 1fr;
  gap: 16px;
  align-items: center;
  padding: 16px;
}

.small-reel img {
  max-height: 260px;
  border-radius: 8px;
}

.small-reel strong {
  display: block;
  color: var(--text);
  font-size: clamp(28px, 3vw, 40px);
}

.small-reel a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  margin-top: 8px;
  padding: 0 12px;
  border-radius: 8px;
  background: var(--accent);
  font-size: 13px;
  font-weight: 900;
  text-decoration: none;
}

.proof-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.62fr) minmax(0, 1fr);
  gap: clamp(24px, 5vw, 58px);
  align-items: center;
}

.arkaba-proof {
  grid-template-columns: minmax(260px, 0.46fr) minmax(0, 1fr);
  align-items: start;
}

.arkaba-proof .screenshot.tall img {
  max-height: 650px;
}

.proof-layout.reverse {
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.65fr);
}

.proof-copy {
  display: grid;
  gap: 22px;
}

.stat-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.stat-list div {
  position: relative;
  overflow: hidden;
  padding: 22px;
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(255,255,255,0.04), transparent), var(--panel-2);
  border: 1px solid var(--line);
}

.stat-list div::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--pink));
  opacity: 0.75;
}

.stat-list strong {
  display: block;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1;
}

.stat-list span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 14px;
}

.screenshot.tall img {
  max-height: 760px;
  margin: 0 auto;
}

.screenshot.wide img {
  width: 100%;
}

.crop-top {
  overflow: hidden;
  border-radius: 8px;
}

.crop-top img {
  transform: translateY(-7%) scale(1.08);
  transform-origin: center top;
}

.crop-top img:hover {
  transform: translateY(-7%) scale(1.08);
}

.insight {
  margin: 0;
  padding: 22px 0 0;
  border-top: 1px solid var(--line);
  color: var(--text);
  font-size: 22px;
  line-height: 1.35;
}

.alt {
  background: linear-gradient(180deg, rgba(239, 53, 208, 0.08), rgba(123, 66, 255, 0.02));
}

.growth-section {
  background:
    linear-gradient(180deg, rgba(71, 231, 255, 0.06), rgba(239, 53, 208, 0.04)),
    transparent;
}

.spotlight-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 18px;
}

.spotlight-card {
  display: grid;
  align-content: center;
  min-height: 260px;
  padding: clamp(24px, 4vw, 42px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255,255,255,0.06), transparent),
    var(--panel);
}

.spotlight-card.loud {
  background:
    linear-gradient(135deg, rgba(255, 223, 63, 0.20), transparent 38%),
    linear-gradient(315deg, rgba(239, 53, 208, 0.22), transparent 44%),
    var(--panel-2);
}

.spotlight-card span {
  color: var(--muted);
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
}

.spotlight-card strong {
  margin: 10px 0;
  font-size: clamp(44px, 7vw, 86px);
  line-height: 0.9;
}

.spotlight-card small {
  max-width: 420px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.45;
}

.evidence-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  width: min(var(--max), 100%);
  margin: 36px auto 0;
}

.evidence-row .screenshot img {
  max-height: 420px;
  object-fit: contain;
  background: #05070c;
}

.comment-story {
  display: grid;
  gap: 22px;
}

.comment-summary {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.comment-summary article {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 223, 63, 0.08), transparent 36%),
    var(--panel);
}

.comment-summary span {
  display: block;
  color: var(--accent);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.comment-summary strong {
  display: block;
  margin-top: 10px;
  font-size: clamp(22px, 2.6vw, 34px);
  line-height: 1.08;
}

.comment-proof-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.comment-shot {
  overflow: hidden;
  min-height: 420px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #05070c;
}

.comment-shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.comparison-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.comparison-grid.quad-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.comparison-grid.tri-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.compare-panel {
  position: relative;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(255,255,255,0.035), transparent), var(--panel);
  transition: transform 180ms ease, border-color 180ms ease;
}

.compare-panel:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 223, 63, 0.25);
}

.compare-panel h3 {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
  font-size: 16px;
  text-transform: uppercase;
}

.compare-panel img {
  width: 100%;
  max-height: 600px;
  object-fit: contain;
  background: #05070c;
}

.archive-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 10px;
}

.archive-grid figure {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #05070c;
}

.archive-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 54%;
  transition: transform 180ms ease;
}

.archive-grid figure:hover img {
  transform: scale(1.08);
}

ul,
ol {
  margin: 18px 0 0;
  padding-left: 20px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.55;
}

li + li {
  margin-top: 8px;
}

.mentor-section {
  align-items: start;
}

.message-shot img {
  max-height: 700px;
  margin: 0 auto;
}

.before-after {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.before-after > div {
  min-height: 320px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(255,255,255,0.035), transparent), var(--panel);
}

.before-after h3 {
  font-size: 34px;
}

.feedback-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: clamp(28px, 6vw, 70px);
  align-items: center;
  min-height: 70vh;
}

.question-list {
  max-width: 760px;
}

.qr-panel {
  display: grid;
  gap: 16px;
  justify-items: center;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(255,255,255,0.035), transparent), var(--panel);
}

.qr-placeholder {
  display: grid;
  place-items: center;
  width: 280px;
  height: 280px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.08), rgba(255,255,255,0.02)),
    var(--panel);
  color: var(--muted);
  font-size: 48px;
  font-weight: 900;
}

.qr-placeholder img {
  width: 100%;
  height: 100%;
  padding: 0;
  object-fit: contain;
  border-radius: 8px;
}

.button-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  width: 100%;
  padding: 0 18px;
  border-radius: 8px;
  background: var(--accent);
  color: #111;
  font-weight: 800;
  text-decoration: none;
  text-align: center;
}

.button-link[aria-disabled="true"] {
  cursor: default;
}

.presentation-controls {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 30;
  display: grid;
  gap: 8px;
}

.presentation-controls button {
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(17, 23, 34, 0.82);
  color: var(--text);
  font: inherit;
  font-size: 20px;
  font-weight: 900;
  cursor: pointer;
  backdrop-filter: blur(14px);
}

.presentation-controls button:hover {
  color: #111;
  background: var(--accent);
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 520ms ease, transform 520ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes brandPulse {
  0%,
  100% {
    box-shadow: 0 0 20px rgba(255, 223, 63, 0.12);
  }
  50% {
    box-shadow: 0 0 38px rgba(239, 53, 208, 0.22);
  }
}

@keyframes floatPhone {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

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

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

@media (max-width: 1040px) {
  .reel-grid,
  .domain-embed-grid,
  .reel-showcase,
  .hero-reel,
  .comparison-grid.quad-grid,
  .comparison-grid.tri-grid,
  .evidence-row,
  .comment-proof-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .archive-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 820px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero-section,
  .split-section,
  .proof-layout,
  .arkaba-proof,
  .proof-layout.reverse,
  .comparison-grid,
  .comparison-grid.quad-grid,
  .comparison-grid.tri-grid,
  .spotlight-grid,
  .evidence-row,
  .domain-embed-grid,
  .comment-summary,
  .comment-proof-grid,
  .before-after,
  .feedback-section {
    grid-template-columns: 1fr;
  }

  .metric-strip,
  .stat-list,
  .timeline {
    grid-template-columns: 1fr;
  }

  .presentation-controls {
    display: none;
  }

  .reel-grid,
  .reel-showcase,
  .hero-reel,
  .small-reel {
    grid-template-columns: 1fr;
  }

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