/* ============ fontes (self-host) ============ */
@font-face {
  font-family: "Syncopate";
  src: url("../assets/fonts/Syncopate-700.woff2") format("woff2");
  font-weight: 700;
  font-display: swap;
}

@font-face {
  font-family: "Syncopate";
  src: url("../assets/fonts/Syncopate-400.woff2") format("woff2");
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Space Mono";
  src: url("../assets/fonts/SpaceMono-400.woff2") format("woff2");
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Space Mono";
  src: url("../assets/fonts/SpaceMono-700.woff2") format("woff2");
  font-weight: 700;
  font-display: swap;
}

/* ============ base ============ */
*,
*::before,
*::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg: #05070c;
  --ink: #eef2f8;
  --ink-dim: #a8b2c2;
  --accent: #8B5CF6;
  --display: "Syncopate", "Arial Black", sans-serif;
  --mono: "Space Mono", ui-monospace, monospace;
  --body: "Inter", "Segoe UI", system-ui, sans-serif;
}

html {
  scroll-behavior: auto;
  /* Firefox — --sb acompanha a cor da seção ativa (JS) */
  scrollbar-width: thin;
  scrollbar-color: var(--sb, #8B5CF6) #070a11;
}

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--body);
  line-height: 1.6;
  overflow-x: hidden;
}

/* ============ barrinha de scroll no clima do site ============ */
::-webkit-scrollbar { width: 9px; }

::-webkit-scrollbar-track {
  background: #070a11;
  border-left: 1px solid rgba(238, 242, 248, 0.05);
}

::-webkit-scrollbar-thumb {
  /* --sb muda por seção; escurece no pé do degradê */
  background: linear-gradient(
    180deg,
    var(--sb, #8B5CF6),
    color-mix(in srgb, var(--sb, #8B5CF6) 55%, #000)
  );
  border-radius: 999px;
  border: 2px solid #070a11; /* afina o miolo e cria respiro */
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(
    180deg,
    color-mix(in srgb, var(--sb, #8B5CF6) 80%, #fff),
    var(--sb, #8B5CF6)
  );
}

/* progresso da cena (setado via JS em --p) alimenta o "desmontar" */
.scene,
.flat {
  --dev: calc(var(--p, 0.5) - 0.5);
  --adev: max(var(--dev), calc(-1 * var(--dev)));
  --scatter: min(1, max(0, calc((var(--adev) - 0.24) * 3.8)));
}

/* ============ palco fixo ============ */
.stage {
  position: fixed;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  background: var(--bg);
}

.stage-poster,
.stage-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* dolly-in da abertura: o scroll aproxima a imagem antes do vídeo animar */
  transform: scale(var(--zoom, 1));
  transform-origin: 50% 40%;
  will-change: transform;
}

.stage-poster { z-index: 0; opacity: 0; transition: opacity 0.5s ease; }
.stage-poster.is-front { opacity: 1; }
.stage-video {
  z-index: 1;
  opacity: 0;
  transition: opacity 0.5s ease, filter 0.3s ease;
}
.stage-video.is-ready { opacity: 1; }

/* seções estáticas: vídeo oculto, keyframes com crossfade assumem o palco */
.stage.is-static .stage-video { opacity: 0; }

/* escuridão inicial que abre conforme o scroll — profundidade na entrada */
.stage-dim {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background: radial-gradient(circle at 50% 42%, rgba(3, 4, 8, 0.35) 20%, rgba(3, 4, 8, 0.95) 100%);
  opacity: var(--dim, 0);
}

/* scroll rápido: congela o frame com blur, zero decode até soltar */
.stage.is-rushing .stage-video {
  filter: blur(16px) brightness(0.8) saturate(1.1);
}

.stage-vignette {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  background: linear-gradient(to bottom, rgba(3, 4, 8, 0.4), transparent 16%, transparent 78%, rgba(3, 4, 8, 0.55));
}

/* ============ topo ============ */
.topbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem clamp(1.2rem, 4vw, 3rem);
}

.topbar-logo {
  font-family: var(--display);
  font-weight: 400;
  letter-spacing: 0.2em;
  font-size: 0.85rem;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.8);
}

.topbar-logo b { font-weight: 700; color: var(--accent); }

.topbar-cta {
  font-family: var(--mono);
  color: var(--ink);
  text-decoration: none;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  border: 1px solid rgba(238, 242, 248, 0.35);
  border-radius: 999px;
  padding: 0.5rem 1.2rem;
  background: rgba(5, 8, 14, 0.5);
  transition: border-color 0.25s ease, background 0.25s ease;
}

.topbar-cta:hover,
.topbar-cta:focus-visible {
  border-color: var(--accent);
  background: rgba(139, 92, 246, 0.2);
}

/* ============ trilha ============ */
.track { position: relative; z-index: 10; }

.scene {
  position: relative;
  min-height: 130vh;
  display: flex;
  align-items: center;
}

.scene-fast { min-height: 65vh; }
.scene-hero { min-height: 230vh; align-items: center; }
.scene-finale { min-height: 135vh; align-items: flex-end; }
.scene-outro { min-height: 100vh; align-items: flex-end; }

/* ============ hero: Zord e Zods em cena, texto no terço inferior ============ */
.hero-copy {
  position: sticky;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  padding: 0 clamp(1.2rem, 6vw, 6rem);
  text-align: center;
  opacity: calc(1 - max(0, (var(--p, 0.2) - 0.52) * 3.5));
  pointer-events: none;
}

.hero-copy .eyebrow {
  opacity: 0;
  translate: 0 14px;
  transition: opacity 0.9s ease 0.25s, translate 0.9s ease 0.25s;
}

body.is-loaded .hero-copy .eyebrow { opacity: 1; translate: 0 0; }

h1 {
  font-family: var(--display);
  text-transform: uppercase;
  font-size: clamp(1.7rem, 4.6vw, 3.6rem);
  line-height: 1.14;
  font-weight: 700;
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.85), 0 1px 6px rgba(0, 0, 0, 0.7);
}

h1 em { font-style: normal; color: var(--accent); }

/* letras chegando de posições diferentes, como peças se encaixando */
h1 .ch {
  display: inline-block;
  opacity: 0;
  transform: translate(var(--dx, 0), var(--dy, 0.6em)) rotate(var(--dr, 0deg)) scale(1.2);
  filter: blur(10px);
  transition:
    opacity 0.85s ease,
    transform 0.85s cubic-bezier(0.2, 0.75, 0.2, 1),
    filter 0.85s ease;
  transition-delay: calc(var(--i) * 42ms + 0.5s);
}

body.is-loaded h1 .ch {
  opacity: 1;
  transform: none;
  filter: blur(0);
}

.hero-sub {
  margin-top: 1.2rem;
  font-family: var(--mono);
  font-size: clamp(0.85rem, 1.6vw, 1.05rem);
  color: var(--ink-dim);
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.85);
  opacity: 0;
  translate: 0 16px;
  transition: opacity 0.9s ease 1.9s, translate 0.9s ease 1.9s;
}

body.is-loaded .hero-sub { opacity: 1; translate: 0 0; }

/* ============ hint de scroll ============ */
.scroll-hint {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  margin-top: 2.6rem;
  opacity: 0;
  translate: 0 18px;
  transition: opacity 0.8s ease 2.5s, translate 0.8s ease 2.5s;
}

body.is-loaded .scroll-hint { opacity: 1; translate: 0 0; }

.hint-text {
  font-family: var(--mono);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ink);
  padding: 0.65rem 1.7rem;
  border: 1px solid rgba(139, 92, 246, 0.65);
  border-radius: 999px;
  background: rgba(139, 92, 246, 0.14);
  animation: hint-glow 2s ease-in-out infinite;
}

@keyframes hint-glow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(139, 92, 246, 0.55), 0 0 24px rgba(139, 92, 246, 0.25); }
  50%      { box-shadow: 0 0 0 12px rgba(139, 92, 246, 0), 0 0 44px rgba(139, 92, 246, 0.5); }
}

.chevrons { display: grid; gap: 0.15rem; justify-items: center; }

.chevrons i {
  width: 0.85rem;
  height: 0.85rem;
  border-right: 2px solid var(--accent);
  border-bottom: 2px solid var(--accent);
  rotate: 45deg;
  animation: chev-drop 1.6s ease-in-out infinite;
}

.chevrons i:nth-child(2) { animation-delay: 0.22s; margin-top: -0.45rem; }

@keyframes chev-drop {
  0%, 100% { opacity: 0.15; translate: 0 -4px; }
  50%      { opacity: 1; translate: 0 4px; }
}

/* ============ seções sólidas (quebras de HTML) ============ */
.flat {
  position: relative;
  background:
    radial-gradient(ellipse 80% 60% at 20% 0%, rgba(139, 92, 246, 0.06), transparent),
    var(--bg);
  padding: clamp(5rem, 11vh, 8rem) 0;
  box-shadow: 0 -1px 0 rgba(238, 242, 248, 0.06), 0 1px 0 rgba(238, 242, 248, 0.06);
}

.wrap {
  max-width: 72rem;
  margin-inline: auto;
  padding-inline: clamp(1.2rem, 5vw, 3rem);
}

.prose {
  max-width: 42rem;
  margin-top: 1rem;
  color: var(--ink-dim);
  font-size: clamp(0.98rem, 1.6vw, 1.08rem);
}

/* números da operação */
.stats {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.4rem;
  margin-top: 3rem;
}

.stats li { border-left: 2px solid var(--accent); padding-left: 1rem; }

.stats b {
  display: block;
  font-family: var(--display);
  font-size: clamp(1.5rem, 3vw, 2.3rem);
  line-height: 1.1;
}

.stats span {
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-dim);
}

.product-copy .kinetic { font-size: clamp(1.4rem, 2.9vw, 2.4rem); }

/* produto: texto + short lado a lado */
.product-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}

.product-copy { position: relative; }

.product-flip .product-copy { order: 2; }

/* short: clipe em loop com moldura na cor do produto */
.short {
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid color-mix(in srgb, var(--accent, #8B5CF6) 40%, transparent);
  box-shadow:
    0 24px 60px rgba(0, 0, 0, 0.55),
    0 0 48px color-mix(in srgb, var(--accent, #8B5CF6) 18%, transparent);
}

.short video { display: block; width: 100%; height: auto; }


/* ============ seletor de zods ============ */
.zodsel-stage {
  display: grid;
  grid-template-columns: minmax(240px, 1fr) 1.3fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
  margin-top: 2.4rem;
  min-height: 22rem;
}

/* o zod grande flutua com o anel — padrão das seções de produto antigas */
.zodsel-figure { margin: 0; width: clamp(200px, 24vw, 320px); justify-self: center; }

.zodsel-img {
  display: block;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 22px 34px rgba(0, 0, 0, 0.55));
  animation: zod-bob 3.4s ease-in-out infinite;
  transition: opacity 0.28s ease, transform 0.32s cubic-bezier(0.2, 0.75, 0.2, 1);
}

.zodsel-ring { display: block; width: 100%; height: auto; margin-top: -14%; animation: ring-pulse 2.6s ease-in-out infinite; }

/* o anel herda a cor da seleção e transiciona junto */
.zodsel-ring .r1 { fill: var(--accent); transition: fill 0.4s ease; }
.zodsel-ring .r2,
.zodsel-ring .r3 { stroke: var(--accent); transition: stroke 0.4s ease; }

.zodsel-setor {
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  transition: color 0.4s ease;
}

.zodsel-nome {
  font-family: var(--display);
  text-transform: uppercase;
  font-size: clamp(1.5rem, 3.4vw, 2.4rem);
  margin: 0.35rem 0 0.6rem;
}

.zodsel-desc { max-width: 34rem; color: var(--ink-dim); font-size: clamp(0.95rem, 1.6vw, 1.05rem); }

.zodsel-log { margin-top: 0.9rem; }

/* troca animada: sai para baixo com blur, volta subindo */
.zodsel-info > * { transition: opacity 0.26s ease, translate 0.26s ease; }

.zodsel.is-swapping .zodsel-img { opacity: 0; transform: translateY(18px) scale(0.93); }
.zodsel.is-swapping .zodsel-info > * { opacity: 0; translate: 16px 0; }

/* seletor */
.zodsel-picker { display: flex; flex-wrap: wrap; gap: 0.7rem; margin-top: 2.4rem; }

.zodsel-picker button {
  width: clamp(52px, 5vw, 64px);
  padding: 0.45rem 0.45rem 0.25rem;
  border-radius: 14px;
  border: 1px solid rgba(238, 242, 248, 0.14);
  background: rgba(5, 8, 14, 0.55);
  cursor: pointer;
  transition: border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.zodsel-picker img { display: block; width: 100%; height: auto; }

.zodsel-picker button:hover,
.zodsel-picker button:focus-visible {
  border-color: var(--zc);
  transform: translateY(-3px);
}

.zodsel-picker button[aria-selected="true"] {
  border-color: var(--zc);
  box-shadow: 0 0 20px color-mix(in srgb, var(--zc) 40%, transparent);
  transform: translateY(-3px);
}

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

@keyframes ring-pulse {
  0%, 100% { opacity: 0.9; transform: scaleX(1); }
  50%      { opacity: 0.5; transform: scaleX(0.9); }
}

/* entradas das seções sólidas */
.wrap .prose,
.wrap .chips li,
.wrap .zod-log,
.wrap .stats li,
.wrap .zodsel-stage,
.wrap .zodsel-picker,
.wrap .short {
  opacity: 0;
  translate: 0 18px;
  transition: opacity 0.6s ease, translate 0.6s ease;
}

.wrap.is-visible .prose,
.wrap.is-visible .chips li,
.wrap.is-visible .zod-log,
.wrap.is-visible .stats li,
.wrap.is-visible .zodsel-stage,
.wrap.is-visible .zodsel-picker,
.wrap.is-visible .short { opacity: 1; translate: 0 0; }

.wrap.is-visible .chips li:nth-child(2),
.wrap.is-visible .stats li:nth-child(2),
:nth-child(2) { transition-delay: 0.12s; }
.wrap.is-visible .chips li:nth-child(3),
.wrap.is-visible .stats li:nth-child(3),
:nth-child(3) { transition-delay: 0.24s; }
.wrap.is-visible .stats li:nth-child(4),
:nth-child(4) { transition-delay: 0.36s; }
:nth-child(5) { transition-delay: 0.48s; }
:nth-child(6) { transition-delay: 0.6s; }

.wrap.is-visible .zod-log { transition-delay: 0.5s; opacity: 0.95; }

/* número-fantasma atrás do título, com parallax próprio */
.ghost-num {
  position: absolute;
  top: -0.62em;
  left: -0.08em;
  z-index: -1;
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(6rem, 15vw, 12rem);
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1.5px var(--accent);
  opacity: 0.28;
  transform: translateY(calc((0.5 - var(--p, 0.5)) * -70px));
  pointer-events: none;
}



/* palavras indivisíveis: as letras inline-block não quebram no meio */
.word { display: inline-block; white-space: nowrap; }

/* ============ título cinético: monta e desmonta com o scroll ============ */
.kinetic {
  font-family: var(--display);
  text-transform: uppercase;
  font-size: clamp(1.7rem, 4.4vw, 3.4rem);
  line-height: 1.16;
  font-weight: 700;
  margin-bottom: 0.7rem;
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.9), 0 1px 6px rgba(0, 0, 0, 0.75);
}

.kinetic .ch {
  display: inline-block;
  transform:
    translate(calc(var(--sx, 0px) * var(--scatter, 0)), calc(var(--sy, 0px) * var(--scatter, 0)))
    rotate(calc(var(--sr, 0deg) * var(--scatter, 0)));
  opacity: calc(1 - var(--scatter, 0) * 0.95);
}

/* linha de progresso da cena sob o título */
.kinetic::after {
  content: "";
  display: block;
  height: 2px;
  margin-top: 0.55rem;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--accent), transparent);
  transform-origin: left;
  transform: scaleX(clamp(0, calc((var(--p, 0) - 0.15) * 2), 1));
}


/* chips mono no lugar de listas */
.chips {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.1rem;
}


.chips li {
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.05em;
  padding: 0.38rem 0.9rem;
  border: 1px solid var(--accent);
  border-radius: 999px;
  background: rgba(5, 8, 14, 0.55);
  opacity: 0;
  translate: -12px 0;
  transition: opacity 0.5s ease, translate 0.5s ease;
}



/* ============ log dos zods (terminal) ============ */
.zod-log {
  margin-top: 1.05rem;
  font-family: var(--mono);
  font-size: 0.74rem;
  letter-spacing: 0.04em;
  color: var(--accent, #8B5CF6);
  opacity: 0;
  transition: opacity 0.5s ease 0.75s;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.9);
}


.zod-log::before { content: "▸ "; }

.zod-log::after {
  content: "▌";
  margin-left: 3px;
  animation: caret-blink 1.1s steps(1) infinite;
}

@keyframes caret-blink { 50% { opacity: 0; } }

/* ============ statements (interlúdios) — karaoke ============ */
.statement {
  position: sticky;
  top: 50%;
  transform: translateY(calc(-50% + (0.5 - var(--p, 0.5)) * 60px));
  width: 100%;
  padding: 0 clamp(1.2rem, 6vw, 6rem);
  text-align: center;
}

.statement h2 {
  font-family: var(--display);
  text-transform: uppercase;
  font-size: clamp(1.4rem, 3.4vw, 2.6rem);
  line-height: 1.2;
  font-weight: 700;
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.9), 0 1px 6px rgba(0, 0, 0, 0.75);
}

.statement p {
  margin-top: 1rem;
  font-family: var(--mono);
  font-size: clamp(0.9rem, 1.7vw, 1.1rem);
  color: var(--accent);
  font-weight: 700;
  letter-spacing: 0.02em;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.9);
}

.statement .w { opacity: 0.14; transition: opacity 0.3s ease; }
.statement .w.lit { opacity: 1; }

.statement-right {
  text-align: right;
  padding-right: clamp(1.2rem, 8vw, 9rem);
}

/* ============ finale ============ */
.finale-copy {
  position: sticky;
  bottom: 0;
  width: 100%;
  padding: 0 clamp(1.2rem, 6vw, 6rem) 6vh;
  text-align: center;
  opacity: 0;
  translate: 0 26px;
  transition: opacity 0.7s ease, translate 0.7s ease;
}

.finale-copy.is-visible { opacity: 1; translate: 0 0; }

.finale-copy h2 {
  font-family: var(--display);
  text-transform: uppercase;
  font-size: clamp(1.6rem, 3.8vw, 3rem);
  line-height: 1.16;
  font-weight: 700;
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.9), 0 1px 6px rgba(0, 0, 0, 0.75);
}

.finale-copy .lead {
  color: var(--ink);
  font-family: var(--mono);
  font-size: clamp(0.85rem, 1.6vw, 1.05rem);
  margin-top: 0.9rem;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.8);
}

/* ============ tipografia comum ============ */
.eyebrow {
  font-family: var(--mono);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--accent, #8B5CF6);
  margin-bottom: 0.7rem;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.8);
}

/* ============ CTA ============ */
.cta {
  display: inline-block;
  margin-top: 1.6rem;
  padding: 0.95rem 2.4rem;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-weight: 700;
  font-family: var(--mono);
  font-size: 0.9rem;
  text-decoration: none;
  letter-spacing: 0.03em;
  box-shadow: 0 12px 34px rgba(139, 92, 246, 0.45);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.cta:hover,
.cta:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 18px 44px rgba(139, 92, 246, 0.6);
}

/* ============ rodapé ============ */
.footer {
  width: 100%;
  display: grid;
  gap: 1.1rem;
  justify-items: center;
  padding: 0 1.2rem 3rem;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.6rem;
  justify-content: center;
  font-family: var(--mono);
  font-size: 0.78rem;
}

.footer-nav a {
  color: var(--ink-dim);
  text-decoration: none;
  transition: color 0.25s ease;
}

.footer-nav a:hover,
.footer-nav a:focus-visible { color: var(--ink); }

.footer small { color: var(--ink-dim); font-size: 0.72rem; font-family: var(--mono); }

/* ============ mobile ============ */
@media (max-width: 767px) {
  .scene { min-height: 120vh; }
  .scene-fast { min-height: 65vh; }
  .scene-hero { min-height: 175vh; }
  .scene-finale { min-height: 125vh; }

  h1 { font-size: clamp(1.35rem, 6.8vw, 1.9rem); }
  .kinetic { font-size: clamp(1.2rem, 5.6vw, 1.7rem); }
  .statement h2 { font-size: clamp(1.1rem, 5vw, 1.55rem); }
  .finale-copy h2 { font-size: clamp(1.25rem, 5.8vw, 1.8rem); }

  .ghost-num { font-size: clamp(4rem, 24vw, 6rem); -webkit-text-stroke-width: 1px; }
  .statement-right { text-align: center; padding-right: clamp(1.2rem, 6vw, 6rem); }

  .topbar { padding: 0.85rem 1rem; }
  .topbar-cta { font-size: 0.7rem; padding: 0.45rem 0.9rem; }
  .hero-copy { padding-bottom: 9vh; }
  .scroll-hint { margin-top: 1.6rem; }
  .chips li { font-size: 0.66rem; padding: 0.32rem 0.7rem; }
  .zod-log { font-size: 0.68rem; }
  .product-grid { grid-template-columns: 1fr; }
  .zodsel-stage { grid-template-columns: 1fr; min-height: 0; text-align: center; }
  .zodsel-desc { margin-inline: auto; }
  .zodsel-picker { justify-content: center; }
  .product-flip .product-copy { order: 0; }
  .stats { grid-template-columns: repeat(2, 1fr); }
}

/* iOS: barra de endereço muda o vh — svh mede a viewport estável */
@supports (min-height: 100svh) {
  @media (max-width: 767px) {
    .scene { min-height: 115svh; }
    .scene-fast { min-height: 62svh; }
    .scene-hero { min-height: 200svh; }
    .scene-finale { min-height: 120svh; }
    .scene-outro { min-height: 95svh; }
  }
}

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

  .hint-text,
  .chevrons i,
  .zod-log::after,
  .zodsel-img,
  .zodsel-ring { animation: none; }

  h1 .ch,
  .kinetic .ch {
    opacity: 1;
    transform: none;
    filter: none;
    transition: none;
  }

  .hero-copy { opacity: 1; }
  .hero-copy .eyebrow,
  .hero-sub,
  .scroll-hint { opacity: 1; translate: 0 0; transition: none; }

  .statement,
  .finale-copy { opacity: 1; translate: 0 0; transform: none; transition: none; }

  .wrap .prose,
  .wrap .chips li,
  .wrap .zod-log,
  .wrap .stats li,
  .wrap .zgrid li,
  .wrap .short { opacity: 1; translate: 0 0; transition: none; }

  .statement .w { opacity: 1; }
  .kinetic::after { transform: none; }
  .ghost-num { transform: none; }
}
