/* ============================================================
   SATORI COMPANY — site oficial da marca
   Paleta mística moderna. Hero = diorama parallax do personagem.
   ============================================================ */

:root {
  --black: #07060c;
  --black-2: #0c0a16;
  --indigo-deep: #160b2b;
  --indigo: #3B1D6E;
  --amethyst: #8a4ec6;
  --gold: #e8c87a;
  --gold-bright: #f6e0a8;
  --ember: #e0843c;
  --ink: #f4f0e9;
  --ink-dim: #c9c1d4;
  --ink-faint: #9b90ad;        /* clareado: passa WCAG AA em fundo escuro (era #79708a, ~4:1) */
  --amethyst-lt: #bd9be8;      /* eyebrow legível (o --amethyst puro reprova AA p/ texto pequeno) */

  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'Inter', system-ui, sans-serif;
  --font-geo: 'Bounded', 'Inter', sans-serif;   /* display geométrica (ref: parallel universe) */

  --maxw: 1160px;
  --pad: clamp(1.2rem, 5vw, 4.5rem);
  --header-h: 76px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 12px); }

/* scrollbar customizada */
* { scrollbar-color: var(--amethyst) #0c0a16; scrollbar-width: thin; }
::-webkit-scrollbar { width: 11px; height: 11px; }
::-webkit-scrollbar-track { background: #0c0a16; }
::-webkit-scrollbar-thumb { background: linear-gradient(180deg, var(--amethyst), var(--indigo)); border-radius: 10px; border: 3px solid #0c0a16; }
::-webkit-scrollbar-thumb:hover { background: linear-gradient(180deg, var(--gold), var(--ember)); }

/* INTRO — a semente abrindo (vídeo) */
.intro {
  position: fixed; inset: 0; z-index: 10000; background: #000; overflow: hidden;
  transition: opacity 1s ease;
}
.intro.is-hidden { opacity: 0; pointer-events: none; }
.intro__video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; }
.intro__skip {
  position: fixed; bottom: 1.4rem; right: 1.4rem; z-index: 2;
  background: rgba(0,0,0,.3); border: 1px solid rgba(244,240,233,.25); color: var(--ink-dim);
  font-family: var(--font-body); font-size: .75rem; letter-spacing: .12em; text-transform: uppercase;
  padding: .5rem .9rem; border-radius: 999px; cursor: pointer; transition: color .25s, border-color .25s; opacity: .7;
}
.intro__skip:hover { color: var(--ink); border-color: rgba(232,200,122,.5); opacity: 1; }

/* enquanto a intro toca, o conteúdo do hero fica latente; materializa ao revelar */
.intro-playing .hero__copy, .intro-playing .hero__stage, .intro-playing .site-header, .intro-playing .scroll-hint { opacity: 0; }
.hero__copy, .hero__stage, .site-header, .scroll-hint {
  transition: opacity 1.4s ease, transform 1.4s cubic-bezier(.2,.7,.2,1);
}
.intro-playing .hero__copy { transform: translateY(14px) scale(.98); }
.intro-revealing .hero__copy, .intro-revealing .hero__stage, .intro-revealing .site-header, .intro-revealing .scroll-hint,
.intro-done .hero__copy, .intro-done .hero__stage, .intro-done .site-header, .intro-done .scroll-hint {
  opacity: 1; transform: none;
}
body {
  background: var(--black);
  color: var(--ink);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
::selection { background: var(--amethyst); color: #fff; }
.accent { color: var(--gold-bright); font-style: italic; }

/* grão + campo de partículas (fundo contínuo) -------------- */
.grain {
  position: fixed; inset: 0; z-index: 9999; pointer-events: none;
  opacity: .05; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
.fx-field { position: fixed; inset: 0; width: 100%; height: 100%; z-index: 0; pointer-events: none; }
.site-header, .hero, section, .foot, .sound-toggle, .mobile-menu, .seed-progress { position: relative; z-index: 1; }

/* MUNDO — céu cósmico em camadas (parallax) + cipós (floresta viva) */
.bg { position: fixed; inset: 0; z-index: -1; overflow: hidden; background: var(--black); }
.bg__cosmic {
  position: absolute; inset: -6%; background: url("../assets/bg-cosmic.webp") center/cover no-repeat;
  will-change: transform;
}
.bg__stars {
  position: absolute; inset: -10%; background: url("../assets/bg-stars.webp") center/cover no-repeat;
  mix-blend-mode: screen; opacity: .85; will-change: transform;
}
/* véu + vinheta: tira o brilho da nebulosa de trás do texto e dá profundidade
   (o personagem do hero fica acima disto, então não escurece) */
.bg::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(125% 85% at 50% 32%, transparent 42%, rgba(7,6,12,.58) 100%),
    linear-gradient(180deg, rgba(7,6,12,.28), rgba(7,6,12,.46));
}

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: var(--header-h);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 var(--pad);
  transition: background .4s ease, backdrop-filter .4s, border-color .4s;
  border-bottom: 1px solid transparent;
}
.site-header.is-solid {
  background: rgba(7,6,12,.72); backdrop-filter: blur(14px);
  border-bottom-color: rgba(138,78,198,.18);
}
.brand { display: flex; align-items: center; gap: .5rem; text-decoration: none; color: var(--ink); }
.brand__name { font-family: var(--font-geo); font-weight: 600; letter-spacing: .22em; font-size: 1.02rem; }
.brand__mark { flex-shrink: 0; transition: transform .45s cubic-bezier(.2,.7,.2,1); animation: markPulse 5s ease-in-out infinite; }
.brand:hover .brand__mark { transform: rotate(45deg) scale(1.1); }
@keyframes markPulse { 0%,100% { filter: drop-shadow(0 0 4px rgba(232,200,122,.25)); } 50% { filter: drop-shadow(0 0 11px rgba(232,200,122,.55)); } }
.brand__dot { width: 6px; height: 6px; border-radius: 50%; background: var(--gold); box-shadow: 0 0 10px var(--gold); }
.nav { display: flex; align-items: center; gap: 2rem; }
.nav a { position: relative; color: var(--ink-dim); text-decoration: none; font-size: .94rem; letter-spacing: .02em; transition: color .25s; }
.nav a:not(.nav__cta)::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -6px; height: 1px; background: var(--gold); transition: right .3s ease; }
.nav a:hover { color: var(--ink); }
.nav a.is-active { color: var(--ink); }
.nav a.is-active:not(.nav__cta)::after { right: 0; }
.nav__cta { border: 1px solid rgba(232,200,122,.4); color: var(--gold) !important; padding: .5rem 1.1rem; border-radius: 999px; transition: all .3s; }
.nav__cta:hover { background: var(--gold); color: var(--black) !important; }

.menu-toggle { display: none; flex-direction: column; gap: 5px; width: 30px; height: 22px; background: none; border: 0; cursor: pointer; padding: 0; z-index: 110; }
.menu-toggle span { display: block; height: 2px; width: 100%; background: var(--ink); border-radius: 2px; transition: transform .35s, opacity .25s; }
.menu-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.is-open span:nth-child(2) { opacity: 0; }
.menu-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu { position: fixed; inset: 0; z-index: 105; display: grid; place-items: center; background: rgba(7,6,12,.97); backdrop-filter: blur(8px); opacity: 0; pointer-events: none; transition: opacity .4s ease; }
.mobile-menu.is-open { opacity: 1; pointer-events: auto; }
.mobile-menu nav { display: flex; flex-direction: column; gap: 1.6rem; text-align: center; }
.mobile-menu a { font-family: var(--font-display); font-weight: 400; font-size: 2rem; color: var(--ink-dim); text-decoration: none; transition: color .25s; }
.mobile-menu a:hover { color: var(--gold-bright); }
body.menu-open { overflow: hidden; }

/* ============================================================
   HERO — diorama parallax do personagem Satori (empilhado)
   personagem em cima (rosto visível), texto embaixo
   ============================================================ */
.hero {
  position: relative; min-height: 100vh; min-height: 100dvh;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: clamp(.2rem, 1vh, 1rem);
  padding: calc(var(--header-h) + 0.5vh) var(--pad) 6vh;
  overflow: hidden; perspective: 1100px;
}

/* fundo ambiente */
.hero__bg { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.hero__nebula {
  position: absolute; left: 50%; top: 42%; transform: translate(-50%,-50%);
  width: 130vw; height: 120vh;
  background:
    radial-gradient(38% 46% at 50% 42%, rgba(59,29,110,.6), transparent 70%),
    radial-gradient(28% 38% at 64% 56%, rgba(138,78,198,.32), transparent 70%),
    radial-gradient(34% 42% at 36% 52%, rgba(224,138,60,.16), transparent 70%);
  filter: blur(12px);
}
.hero__sparks {
  position: absolute; left: 50%; top: 44%; transform: translate(-50%,-50%);
  width: 82vw; height: 78vh;
  background-image:
    radial-gradient(2px 2px at 20% 30%, rgba(232,200,122,.9), transparent),
    radial-gradient(2px 2px at 80% 25%, rgba(246,224,168,.8), transparent),
    radial-gradient(1.5px 1.5px at 65% 70%, rgba(232,200,122,.7), transparent),
    radial-gradient(1.5px 1.5px at 35% 78%, rgba(246,224,168,.6), transparent),
    radial-gradient(2px 2px at 50% 12%, rgba(232,200,122,.5), transparent);
}

/* palco do personagem (3D tilt) — portal circular nítido + chão */
.hero__stage {
  position: relative; z-index: 2; display: grid; place-items: center;
  transform-style: preserve-3d; will-change: transform;
}
/* centro ÓPTICO: a pose puxa o peso ~3,2% pra direita; compensamos no wrapper
   (não no .hero__char, que tem a animação de flutuar no transform) */
.hero__stage picture { display: block; transform: translateX(-3.2%); }
@keyframes haloPulse { 0%,100% { opacity: .9; } 50% { opacity: 1; } }
.hero__char {
  position: relative; z-index: 1; display: block;
  width: auto; height: min(50vh, 500px); max-width: 84vw; object-fit: contain;
  filter: drop-shadow(0 24px 40px rgba(0,0,0,.6)) drop-shadow(0 0 30px rgba(232,200,122,.18));
  animation: floatChar 6s ease-in-out infinite;
}
@keyframes floatChar { 0%,100% { transform: translateY(-5px); } 50% { transform: translateY(5px); } }
/* sombra de chão (ancora o personagem) */
.hero__char::after { content: none; }
.hero__stage::after {
  content: ""; position: absolute; left: 50%; bottom: -2%; transform: translateX(-50%);
  width: min(34vh, 280px); height: 26px; border-radius: 50%;
  background: radial-gradient(ellipse, rgba(0,0,0,.55), transparent 70%);
  filter: blur(6px);
}

.hero__copy { position: relative; z-index: 3; text-align: center; max-width: 760px; }
.kicker { font-weight: 500; letter-spacing: .38em; text-transform: uppercase; font-size: .72rem; color: var(--gold); margin-bottom: 1rem; }
.hero-title {
  font-family: var(--font-display); font-weight: 300;
  font-size: clamp(2.1rem, 5.2vw, 4rem); line-height: 1.05; letter-spacing: -.025em;
  text-shadow: 0 4px 40px rgba(7,6,12,.9);
}
.hero-sub { margin-top: 1rem; color: var(--ink-dim); font-size: clamp(.98rem, 2.2vw, 1.18rem); }
.hero__actions { display: flex; align-items: center; justify-content: center; gap: 1rem 1.8rem; flex-wrap: wrap; margin-top: 2.1rem; }
.hero-btn {
  display: inline-block; padding: .95rem 2.2rem; border-radius: 999px;
  background: linear-gradient(135deg, var(--gold), var(--ember)); color: var(--black);
  font-weight: 600; letter-spacing: .01em; text-decoration: none;
  box-shadow: 0 14px 42px -14px rgba(224,138,60,.6); transition: transform .3s, box-shadow .3s;
}
.hero-btn:hover { transform: translateY(-2px); box-shadow: 0 22px 54px -14px rgba(232,200,122,.7); }
.hero-btn:active { transform: scale(.97); }
.hero-cta {
  display: inline-block; color: var(--gold); text-decoration: none;
  font-size: .9rem; letter-spacing: .18em; text-transform: uppercase; padding-bottom: 4px;
  transition: color .3s;
}
.hero-cta:hover { color: var(--gold-bright); }

/* centralização por margin auto (NÃO por transform: a regra .intro-done .scroll-hint
   reseta transform e quebraria o translateX) — text-indent compensa o trailing da letter-spacing */
.scroll-hint { position: absolute; bottom: 1.6rem; left: 0; right: 0; margin-inline: auto; width: max-content; z-index: 10; display: flex; flex-direction: column; align-items: center; gap: .55rem; color: rgba(200,190,220,.8); font-size: .72rem; letter-spacing: .25em; text-indent: .25em; text-transform: uppercase; text-shadow: 0 1px 10px rgba(12,10,22,.95); }
.hero__copy { padding-bottom: clamp(2.5rem, 5vh, 4rem); }
.scroll-hint__arrow { animation: bob 1.8s ease-in-out infinite; font-size: 1rem; }
@keyframes bob { 0%,100%{transform:translateY(0)} 50%{transform:translateY(6px)} }

/* ============================================================
   Seções
   ============================================================ */
section { padding: clamp(4.5rem, 8.5vh, 7rem) var(--pad); }
/* delimitação: cada seção é uma "sala" — hairline no topo com brilho central + alternância de fundo */
.pillars, .method, .about, .portfolio, .listen, .cta { position: relative; border-top: 1px solid rgba(138,78,198,.16); }
.pillars::before, .method::before, .about::before, .portfolio::before, .listen::before, .cta::before {
  content: ""; position: absolute; top: -1px; left: 50%; transform: translateX(-50%);
  width: min(420px, 60%); height: 1px;
  background: linear-gradient(90deg, transparent, rgba(232,200,122,.6), transparent);
}
.pillars, .manifesto { background: linear-gradient(180deg, rgba(22,11,43,.45), transparent 55%); }
.listen { background: linear-gradient(180deg, rgba(59,29,110,.22), transparent 55%); }
.section-head { max-width: var(--maxw); margin: 0 auto 3.2rem; }
.section-head__eyebrow, .manifesto__eyebrow, .case__tag, .cta__eyebrow {
  font-weight: 600; letter-spacing: .26em; text-transform: uppercase; font-size: .8rem; color: var(--amethyst-lt);
}
.section-head__title { font-family: var(--font-display); font-weight: 300; font-size: clamp(2rem, 5vw, 3.4rem); letter-spacing: -.015em; margin-top: .7rem; max-width: 16ch; }


.pillars__grid { max-width: var(--maxw); margin: 0 auto; display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem; }
.pillar { position: relative; padding: 2.6rem 2rem; border: 1px solid rgba(138,78,198,.2); border-radius: 16px; background: linear-gradient(165deg, rgba(59,29,110,.22), rgba(12,10,22,.3)); transition: transform .45s cubic-bezier(.2,.7,.2,1), border-color .45s, box-shadow .45s; }
.pillar:hover { transform: translateY(-6px); border-color: rgba(232,200,122,.35); box-shadow: 0 30px 70px -28px rgba(138,78,198,.55); }
.pillar__num { font-family: var(--font-display); font-size: 1rem; color: var(--gold); opacity: .65; }
.pillar__title { font-family: var(--font-display); font-weight: 500; font-size: 1.9rem; margin: .7rem 0 .9rem; }
.pillar__desc { color: var(--ink-dim); font-size: 1rem; }
.pillar__list { list-style: none; margin-top: 1.4rem; padding-top: 1.4rem; border-top: 1px solid rgba(138,78,198,.16); }
.pillar__list li { color: var(--ink-dim); font-size: .95rem; padding: .3rem 0; letter-spacing: .01em; }
.pillar__list li::before { content: "✦ "; color: var(--gold); opacity: .6; }

.marquee { overflow: hidden; padding: 2.9rem 0; border-block: 1px solid rgba(232,200,122,.16);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 9%, #000 91%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 9%, #000 91%, transparent); }
.marquee__track { display: flex; white-space: nowrap; animation: scrollx 30s linear infinite; }
.marquee:hover .marquee__track { animation-play-state: paused; }
.marquee__set { display: inline-flex; align-items: center; flex-shrink: 0; }
.mq-w { font-family: var(--font-display); font-weight: 500; font-style: italic; font-size: clamp(1.9rem, 4.6vw, 3.4rem); letter-spacing: .015em; padding: 0 .55rem;
  color: rgba(244,240,233,.05); -webkit-text-stroke: 1px rgba(232,200,122,.52); }
.mq-s { font-style: normal; font-size: clamp(1rem, 2.4vw, 1.7rem); padding: 0 .55rem; color: var(--gold);
  filter: drop-shadow(0 0 8px rgba(232,200,122,.5)); transform: translateY(-.06em); }
@supports not ((-webkit-text-stroke: 1px #000)) {
  .mq-w { color: var(--ink-dim); -webkit-text-stroke: 0; }
}
@keyframes scrollx { to { transform: translateX(-50%); } }

/* SELO DE PRÊMIO (band entre hero e intro) */
.award {
  position: relative; z-index: 1;
  display: flex; align-items: center; justify-content: center; gap: .6rem 1.1rem; flex-wrap: wrap;
  width: fit-content; max-width: 92%; margin: clamp(2.4rem, 6vh, 4rem) auto;
  padding: .85rem 1.8rem; text-decoration: none; color: var(--ink);
  border: 1px solid rgba(232,200,122,.4); border-radius: 999px;
  background: linear-gradient(160deg, rgba(232,200,122,.14), rgba(59,29,110,.22));
  box-shadow: 0 0 45px -10px rgba(232,200,122,.4);
  transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
}
.award:hover { transform: translateY(-2px); border-color: rgba(232,200,122,.7); box-shadow: 0 10px 55px -10px rgba(232,200,122,.55); }
.award__badge { font-weight: 700; color: var(--gold-bright); letter-spacing: .03em; white-space: nowrap; font-size: .98rem; }
.award__text { font-size: .96rem; letter-spacing: .02em; color: var(--ink-dim); }
.award__text strong { color: var(--ink); font-weight: 600; }
.award__cta { color: var(--gold); font-size: .88rem; letter-spacing: .06em; white-space: nowrap; }

/* COMO FAZEMOS — método */
.method { max-width: var(--maxw); margin: 0 auto; }
.method__lead {
  max-width: 64ch; margin: -1.4rem auto 3rem; text-align: center;
  font-size: clamp(1.05rem, 2.2vw, 1.35rem); color: var(--ink-dim); line-height: 1.6;
}
.method__lead strong { color: var(--gold-bright); font-weight: 500; }
.method__steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 2rem 2.4rem; max-width: 980px; margin: .6rem auto 0; }
.method__step { position: relative; padding-top: 1.6rem; border-top: 1px solid rgba(138,78,198,.28); }
/* accent dourado no início da linha do topo — costura os passos à marca */
.method__step::before { content: ""; position: absolute; top: -1px; left: 0; width: 46px; height: 2px; background: linear-gradient(90deg, var(--gold), transparent); }
.method__num {
  display: block; font-family: var(--font-display); font-weight: 500; font-size: 2.7rem; line-height: 1; margin-bottom: .45rem;
  background: linear-gradient(135deg, var(--gold-bright), var(--ember)); -webkit-background-clip: text; background-clip: text; color: transparent;
}
.method__title { font-family: var(--font-display); font-weight: 500; font-size: 1.5rem; margin: .2rem 0 .6rem; }
.method__step p { color: var(--ink-dim); font-size: 1.02rem; line-height: 1.6; }
.method__proof {
  display: flex; align-items: center; justify-content: center; gap: .8rem 1.4rem; flex-wrap: wrap;
  max-width: 760px; margin: 3rem auto 0; padding: 1.3rem 1.8rem;
  text-decoration: none; border: 1px solid rgba(232,200,122,.3); border-radius: 14px;
  background: linear-gradient(160deg, rgba(232,200,122,.08), rgba(59,29,110,.12));
  transition: transform .35s ease, border-color .35s, box-shadow .35s;
}
.method__proof:hover { transform: translateY(-3px); border-color: rgba(232,200,122,.55); box-shadow: 0 20px 50px -22px rgba(232,200,122,.4); }
.method__proof-tag { color: var(--gold-bright); font-size: .86rem; font-weight: 600; letter-spacing: .04em; white-space: nowrap; }
.method__proof-title { color: var(--ink); font-family: var(--font-display); font-size: 1.25rem; }
.method__proof-cta { color: var(--gold); font-size: .9rem; letter-spacing: .06em; margin-left: auto; white-space: nowrap; }

/* OBRA PREMIADA — Vento Sul */
.featured__inner {
  max-width: var(--maxw); margin: 0 auto; display: grid; grid-template-columns: 1fr 1.2fr; gap: 2.4rem; align-items: center;
}
.featured__visual {
  position: relative; aspect-ratio: 16/10; border-radius: 18px; overflow: hidden; text-decoration: none;
  display: grid; place-items: center;
  background: radial-gradient(120% 130% at 30% 20%, rgba(59,29,110,.6), var(--indigo-deep) 70%), var(--black-2);
  border: 1px solid rgba(232,200,122,.25); transition: transform .4s ease, box-shadow .4s, border-color .4s;
}
.featured__visual:hover { transform: translateY(-4px); border-color: rgba(232,200,122,.5); box-shadow: 0 30px 70px -28px rgba(232,200,122,.35); }
.featured__play {
  position: relative; z-index: 2; width: 78px; height: 78px; border-radius: 50%;
  display: grid; place-items: center; color: var(--black); font-size: 1.5rem; padding-left: 5px;
  background: linear-gradient(135deg, var(--gold), var(--ember)); box-shadow: 0 0 50px rgba(232,200,122,.5);
  transition: transform .35s ease;
}
.featured__visual:hover .featured__play { transform: scale(1.08); }
.featured__img {
  position: absolute; inset: 0; z-index: 0; width: 100%; height: 100%; object-fit: cover;
  transition: transform .6s ease;
}
.featured__visual:hover .featured__img { transform: scale(1.05); }
/* escurece levemente pro botão de play se destacar */
.featured__visual::after {
  content: ""; position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: radial-gradient(circle at 50% 50%, rgba(7,6,12,.45), rgba(7,6,12,.15));
}
/* VENTO SUL — linguagem de cinema: Ken Burns lento + perfuração de filme */
.featured__visual--film .featured__img { transform-origin: 50% 42%; animation: kenburns 22s ease-in-out infinite alternate; }
@keyframes kenburns { 0% { transform: scale(1.05); } 100% { transform: scale(1.14) translate(-1.6%, -1.4%); } }
.featured__perf { position: absolute; left: 0; right: 0; height: 16px; z-index: 2; pointer-events: none; background: rgba(7,6,12,.82); }
.featured__perf::before {
  content: ""; position: absolute; inset: 5px 10px; border-radius: 2px;
  background: repeating-linear-gradient(90deg, rgba(244,240,233,.24) 0 9px, transparent 9px 21px);
}
.featured__perf--top { top: 0; }
.featured__perf--bot { bottom: 0; }
.featured__eyebrow { color: var(--gold-bright); font-weight: 600; font-size: .78rem; letter-spacing: .04em; }
.featured__title { font-family: var(--font-display); font-weight: 500; font-size: clamp(2rem, 4.5vw, 3.2rem); margin: .5rem 0 .9rem; }
.featured__desc { color: var(--ink-dim); font-size: 1.05rem; max-width: 52ch; margin-bottom: 1.6rem; }
.featured__btn {
  display: inline-block; padding: .9rem 1.8rem; border-radius: 999px; text-decoration: none;
  border: 1px solid rgba(232,200,122,.5); color: var(--gold); font-weight: 500; letter-spacing: .02em;
  transition: background .3s, color .3s;
}
.featured__btn:hover { background: var(--gold); color: var(--black); }

/* micro-interações — feedback tátil nos botões/links */
.cta__btn, .featured__btn, .hero-cta, .nav__cta, .award, .case, .pillar { transition: transform .25s cubic-bezier(.2,.7,.2,1), background .3s, box-shadow .35s, border-color .35s, color .25s; }
.cta__btn:active, .featured__btn:active, .hero-cta:active, .nav__cta:active { transform: scale(.97); }
.award:active { transform: scale(.995); }
.hero-cta { position: relative; }
/* sublinhado proporcional: right:.18em apara o espaço da letter-spacing final
   (assim a linha bate com a largura real do texto, sem sobrar à direita) */
.hero-cta::after { content: ""; position: absolute; left: 0; right: .18em; bottom: -1px; height: 1px; background: rgba(232,200,122,.55); transition: background .3s ease; }
.hero-cta:hover::after { background: var(--gold-bright); }

/* O SATORI — sobre */
.about__inner {
  max-width: var(--maxw); margin: 0 auto; display: grid; grid-template-columns: .9fr 1.1fr; gap: 3rem; align-items: center;
}
.about__visual { position: relative; display: grid; place-items: center; min-height: 360px; }
.about__halo {
  position: absolute; left: 50%; top: 50%; transform: translate(-50%,-50%);
  width: 360px; height: 360px; border-radius: 50%;
  background: radial-gradient(circle, rgba(59,29,110,.55), rgba(232,200,122,.12) 45%, transparent 68%);
  filter: blur(8px); animation: haloPulse 7s ease-in-out infinite;
}
.about__char {
  position: relative; z-index: 1; width: min(100%, 430px); height: auto; max-width: 100%;
  filter: drop-shadow(0 18px 36px rgba(0,0,0,.55)) drop-shadow(0 0 28px rgba(232,200,122,.16));
  animation: floatChar 7s ease-in-out infinite;
}
.about__title { font-family: var(--font-display); font-weight: 300; font-size: clamp(2rem, 4.5vw, 3.2rem); letter-spacing: -.01em; margin: .6rem 0 1.4rem; }
.about__text { color: var(--ink-dim); font-size: clamp(1rem, 1.8vw, 1.15rem); line-height: 1.7; margin-bottom: 1rem; max-width: 54ch; }
.about__text strong { color: var(--gold-bright); font-weight: 500; }

/* obra premiada dentro do método */
.method__featured { margin-top: 3.5rem; padding-top: 3rem; border-top: 1px solid rgba(138,78,198,.16); }

/* linha condensada de processo (no contato) */
.cta__steps { color: var(--ink-dim); font-size: 1rem; letter-spacing: .02em; margin-top: 1rem; }
.cta__steps span { color: var(--gold); margin: 0 .35rem; }

/* COMO FUNCIONA — processo */
.process__steps {
  list-style: none; max-width: var(--maxw); margin: 0 auto; display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1.2rem 2rem; counter-reset: none;
}
.process__step { position: relative; padding-top: 1.2rem; border-top: 1px solid rgba(138,78,198,.22); }
.process__num {
  display: inline-grid; place-items: center; width: 38px; height: 38px; border-radius: 50%;
  border: 1px solid rgba(232,200,122,.4); color: var(--gold); font-family: var(--font-display); font-size: 1.1rem; margin-bottom: .7rem;
}
.process__title { font-family: var(--font-display); font-weight: 500; font-size: 1.3rem; margin-bottom: .5rem; }
.process__step p { color: var(--ink-dim); font-size: 1.02rem; line-height: 1.6; }

/* FORMULÁRIO DE CONTATO */
.contact-form { max-width: 560px; margin: 2.2rem auto 0; text-align: left; }
.contact-form__hp { position: absolute; left: -9999px; }
.contact-form__row { display: grid; grid-template-columns: 1fr 1fr; gap: .9rem; }
.contact-form input, .contact-form select, .contact-form textarea {
  width: 100%; margin-bottom: .9rem; padding: .9rem 1rem; border-radius: 12px;
  background: rgba(12,10,22,.6); border: 1px solid rgba(138,78,198,.3); color: var(--ink);
  font-family: var(--font-body); font-size: .95rem; transition: border-color .25s, background .25s;
}
.contact-form input::placeholder, .contact-form textarea::placeholder { color: var(--ink-faint); }
.contact-form select { color: var(--ink-dim); appearance: none; cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' fill='none' stroke='%23e8c87a' stroke-width='1.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 1rem center; padding-right: 2.4rem;
}
.contact-form textarea { resize: vertical; min-height: 110px; }
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus {
  outline: none; border-color: rgba(232,200,122,.6); background: rgba(12,10,22,.85);
}
.contact-form .cta__btn { width: 100%; margin-top: .4rem; border: 0; cursor: pointer; font-size: 1rem; }
.cta__alt { margin-top: 1.4rem; color: var(--ink-dim); font-size: .96rem; }
.form-success { max-width: 560px; margin: 2.2rem auto 0; text-align: center; padding: 2.8rem 2rem; border-radius: 20px; border: 1px solid rgba(232,200,122,.25); background: rgba(12,10,22,.5); }
.form-success__icon { display: block; font-size: 2rem; color: var(--gold); margin-bottom: 1rem; }
.form-success__title { font-family: var(--font-display); font-size: 1.5rem; color: var(--ink); margin-bottom: .6rem; }
.form-success__sub { color: var(--ink-dim); font-size: .97rem; line-height: 1.6; }
.cta__alt a { color: var(--gold); text-decoration: none; border-bottom: 1px solid rgba(232,200,122,.4); }
.cta__alt a:hover { color: var(--gold-bright); }

/* PORTFÓLIO — scroll horizontal (pin no desktop, swipe no mobile) */
.portfolio__h { position: relative; }
/* mobile/base: o título é normal; o swipe horizontal nativo fica no viewport */
.portfolio__viewport {
  overflow-x: auto; overflow-y: hidden; -webkit-overflow-scrolling: touch;
  scroll-snap-type: x mandatory; scrollbar-width: none;
}
.portfolio__viewport::-webkit-scrollbar { display: none; }
.portfolio__track {
  display: flex; align-items: stretch; gap: 1.6rem;
  padding: .5rem max(var(--pad), calc((100vw - var(--maxw)) / 2)) 1.5rem;
  width: max-content;
}
/* desktop com JS: o PIN prende título + cards juntos; o título fica VISÍVEL
   o tempo todo enquanto os cards deslizam de lado (horizontal só engata
   depois que o título já apareceu) */
.portfolio.is-hscroll .portfolio__pin {
  position: sticky; top: 0; height: 100vh; overflow: hidden;
  display: flex; flex-direction: column; justify-content: center;
  gap: clamp(1.4rem, 4vh, 3rem);
}
.portfolio.is-hscroll .portfolio__viewport { overflow: visible; scroll-snap-type: none; }
.portfolio.is-hscroll .portfolio__track { will-change: transform; padding-block: 0; }
.portfolio.is-hscroll .section-head { margin: 0 auto; }

.portfolio__hint {
  text-align: center; margin-top: .4rem; color: var(--ink-dim);
  font-size: .8rem; letter-spacing: .14em; text-transform: uppercase; opacity: .6;
}
.portfolio.is-hscroll .portfolio__hint { display: none; }

.case { position: relative; display: block; text-decoration: none; color: inherit; border-radius: 18px; overflow: hidden; border: 1px solid rgba(138,78,198,.18); background: rgba(22,11,43,.4); transition: transform .45s cubic-bezier(.2,.7,.2,1), border-color .45s, box-shadow .45s; flex: 0 0 clamp(300px, 80vw, 440px); scroll-snap-align: center; }
.case:hover { transform: translateY(-7px); border-color: rgba(232,200,122,.4); box-shadow: 0 34px 80px -26px rgba(138,78,198,.6); }
.case--feature { flex-basis: clamp(340px, 88vw, 560px); }
@media (min-width: 861px) {
  .case { flex-basis: clamp(360px, 33vw, 470px); }
  .case--feature { flex-basis: clamp(560px, 56vw, 820px); }
}
.case__media {
  aspect-ratio: 16 / 9; position: relative; overflow: hidden; display: grid; place-items: center;
  background:
    radial-gradient(120% 130% at 30% 15%, rgba(59,29,110,.55), var(--indigo-deep) 70%),
    var(--black-2);
}
/* onda sonora sutil de fundo (placeholder com cara de áudio) */
.case__media::before {
  content: ""; position: absolute; inset: 0; z-index: 0; opacity: .5;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='240' height='80' viewBox='0 0 240 80'%3E%3Cg fill='none' stroke='%238a4ec6' stroke-width='2' stroke-linecap='round' opacity='0.5'%3E%3Cpath d='M10 40 Q20 10 30 40 T50 40 T70 40 T90 40 T110 40 T130 40 T150 40 T170 40 T190 40 T210 40 T230 40'/%3E%3C/g%3E%3C/svg%3E");
  background-repeat: repeat-x; background-position: center; background-size: 320px auto;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 20%, #000 80%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 20%, #000 80%, transparent);
}
.case--feature .case__media { aspect-ratio: 21 / 8; }
.case__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease, opacity .4s ease, filter .4s ease; z-index: 2; filter: saturate(.62) contrast(1.04) brightness(.9); }
.case__img.is-missing { opacity: 0; }
.case:hover .case__img { transform: scale(1.04); filter: saturate(.85) contrast(1.04) brightness(.98); }
/* tinta duotone: unifica as capas no tom da marca (índigo → âmbar) */
.case__media::after {
  content: ""; position: absolute; inset: 0; z-index: 3; pointer-events: none;
  background: linear-gradient(155deg, rgba(59,29,110,.5), rgba(12,10,22,.12) 55%, rgba(224,138,60,.24));
  mix-blend-mode: overlay; transition: opacity .4s ease; opacity: .9;
}
.case:hover .case__media::after { opacity: .65; }
.case__ph { position: relative; z-index: 1; color: rgba(232,200,122,.55); font-size: 2rem; line-height: 1; }
.case__body { padding: 1.6rem 1.7rem 1.9rem; }
.case__tag { display: block; margin-bottom: .55rem; }
.case__title { font-family: var(--font-display); font-weight: 500; font-size: 1.65rem; margin-bottom: .5rem; }
.case--feature .case__title { font-size: 2.2rem; }
.case__desc { color: var(--ink-dim); font-size: 1.02rem; line-height: 1.55; max-width: 56ch; }
.case__cta { display: inline-block; margin-top: 1.2rem; color: var(--gold); font-weight: 500; font-size: .9rem; }

/* DEMO REEL */
.reel { position: relative; border-top: 1px solid rgba(138,78,198,.16); }
.reel::before { content: ""; position: absolute; top: -1px; left: 50%; transform: translateX(-50%); width: min(420px,60%); height: 1px; background: linear-gradient(90deg,transparent,rgba(232,200,122,.6),transparent); }
.reel .section-head { max-width: var(--maxw); margin: 0 auto 2.8rem; }

.reel__video-wrap {
  max-width: min(1080px, 92vw); margin: 0 auto 3rem;
  border-radius: 18px; overflow: hidden;
  box-shadow: 0 40px 100px -30px rgba(12,10,22,.9), 0 0 0 1px rgba(138,78,198,.18);
}
.reel__video { display: block; width: 100%; aspect-ratio: 16/9; background: #0a0810; }

.reel__tools {
  list-style: none; max-width: var(--maxw); margin: 0 auto;
  display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center;
}
.reel__tool {
  display: flex; flex-direction: column; align-items: center; gap: .3rem;
  padding: 1rem 1.6rem; border-radius: 12px;
  border: 1px solid rgba(138,78,198,.22);
  background: rgba(22,11,43,.35);
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  min-width: 130px; text-align: center;
}
.reel__tool-name { font-family: var(--font-geo); font-size: .85rem; letter-spacing: .12em; color: var(--gold); text-transform: uppercase; }
.reel__tool-desc { font-size: .82rem; color: var(--ink-faint); }

@media (max-width: 600px) {
  .reel__tools { gap: .7rem; }
  .reel__tool  { min-width: calc(50% - .35rem); padding: .9rem 1rem; }
}

/* OUÇA / Spotify */
.listen { max-width: var(--maxw); margin: 0 auto; }
.listen__embed { max-width: 760px; margin: 0 auto; }
.listen__embed iframe { width: 100%; border: 0; border-radius: 16px; display: block; }
.listen__ph {
  display: flex; flex-direction: column; align-items: center; gap: 1rem; text-align: center;
  padding: 3.5rem 2rem; border: 1px dashed rgba(138,78,198,.3); border-radius: 16px;
  background: linear-gradient(165deg, rgba(59,29,110,.18), rgba(12,10,22,.2)); color: var(--ink-faint);
}
.listen__phicon { font-size: 2rem; color: var(--gold); }
.listen__link { color: var(--gold); text-decoration: none; font-size: .9rem; letter-spacing: .04em; border-bottom: 1px solid rgba(232,200,122,.4); padding-bottom: 2px; }
.listen__link:hover { color: var(--gold-bright); }

/* subtítulo de seção */
.section-head__sub { margin-top: .85rem; color: var(--ink-dim); font-size: 1.05rem; line-height: 1.55; max-width: 54ch; }

/* OUÇA — grade de álbuns (players tocam no site) */
.listen__grid { display: grid; grid-template-columns: 1fr; gap: 1.4rem; max-width: 860px; margin: 0 auto; }
@media (min-width: 720px) { .listen__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1040px) { .listen__grid { grid-template-columns: repeat(3, 1fr); } }
.listen__album { border-radius: 14px; overflow: hidden; box-shadow: 0 24px 60px -30px rgba(138,78,198,.55); background: rgba(12,10,22,.4); }
.listen__album iframe { display: block; width: 100%; border: 0; }
.listen__artist { display: block; width: max-content; margin: 2.4rem auto 0; color: var(--gold); text-decoration: none; font-size: .95rem; letter-spacing: .04em; border-bottom: 1px solid rgba(232,200,122,.4); padding-bottom: 3px; transition: color .3s; }
.listen__artist:hover { color: var(--gold-bright); }

/* card "Em breve" — placeholder honesto, não finge ser um case real */
.case--soon { border-style: dashed; border-color: rgba(138,78,198,.28); background: rgba(22,11,43,.22); cursor: default; }
.case--soon:hover { transform: none; box-shadow: none; border-color: rgba(138,78,198,.28); }
.case--soon .case__media { aspect-ratio: 16 / 9; opacity: .85; }
.case--soon .case__ph { font-size: 2.4rem; color: rgba(232,200,122,.42); }
.case--soon .case__title { color: var(--ink-dim); }

/* MANIFESTO */
.manifesto { max-width: 880px; margin: 0 auto; text-align: center; }
.manifesto__eyebrow { display: block; margin-bottom: 1.6rem; }
.manifesto__quote { font-family: var(--font-display); font-weight: 300; font-size: clamp(1.9rem, 5vw, 3.6rem); line-height: 1.22; letter-spacing: -.01em; }
.manifesto__quote em { color: var(--gold-bright); font-style: italic; }
.manifesto__attr { color: var(--ink-faint); margin-top: 1.6rem; letter-spacing: .14em; font-size: .9rem; text-transform: uppercase; }

/* CTA */
.cta { text-align: center; }
.cta__inner { max-width: 800px; margin: 0 auto; padding: clamp(3rem,7vw,5rem) var(--pad); border: 1px solid rgba(138,78,198,.22); border-radius: 24px; background: radial-gradient(120% 140% at 50% 0%, rgba(59,29,110,.35), rgba(12,10,22,.2)); }
.cta__eyebrow { display: block; margin-bottom: 1.2rem; }
.cta__title { font-family: var(--font-display); font-weight: 300; font-size: clamp(2.2rem, 6vw, 4rem); letter-spacing: -.02em; line-height: 1.05; }

/* títulos grandes na display geométrica Bounded (ref: parallel universe) */
.hero-title, .section-head__title, .featured__title, .about__title, .cta__title, .manifesto__quote {
  font-family: var(--font-geo);
  font-weight: 400;
}
.cta__actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; margin-top: 2.2rem; }
.cta__btn { display: inline-block; padding: 1.05rem 2.6rem; border-radius: 999px; background: linear-gradient(135deg, var(--gold), var(--ember)); color: var(--black); font-weight: 600; text-decoration: none; letter-spacing: .02em; transition: transform .3s, box-shadow .3s; box-shadow: 0 14px 50px -14px rgba(224,138,60,.6); }
.cta__btn:hover { transform: translateY(-3px); box-shadow: 0 22px 60px -14px rgba(232,200,122,.7); }
.cta__btn--ghost { background: transparent; color: var(--gold); border: 1px solid rgba(232,200,122,.45); box-shadow: none; }
.cta__btn--ghost:hover { background: rgba(232,200,122,.1); box-shadow: none; }

/* FOOTER */
.foot { text-align: center; padding: 5rem var(--pad) 4rem; border-top: 1px solid rgba(138,78,198,.15); }
.foot__mark { font-family: var(--font-geo); letter-spacing: .22em; font-size: 1.05rem; color: var(--ink-dim); display: inline-flex; align-items: center; gap: .5rem; }
.foot__sym { flex-shrink: 0; opacity: .92; filter: drop-shadow(0 0 5px rgba(232,200,122,.3)); }
.foot__dot { width: 5px; height: 5px; border-radius: 50%; background: var(--gold); box-shadow: 0 0 8px var(--gold); }
.foot__social { display: flex; gap: 1.6rem; justify-content: center; margin: 1.6rem 0 .4rem; flex-wrap: wrap; }
.foot__social a { color: var(--ink-dim); text-decoration: none; font-size: .9rem; letter-spacing: .06em; transition: color .25s; }
.foot__social a:hover { color: var(--gold); }
.foot__line { color: var(--ink-faint); font-size: .86rem; margin-top: .7rem; letter-spacing: .06em; }

/* ---- BOLHAS INTERATIVAS (dentro do hero, não seguem scroll) ---- */
.bubble {
  position: absolute; z-index: 4; border-radius: 50%;
  cursor: pointer; pointer-events: auto;
  background:
    radial-gradient(circle at 33% 30%, rgba(255,255,255,.45) 0%, rgba(255,255,255,.06) 45%, transparent 65%),
    radial-gradient(circle at 68% 72%, rgba(138,78,198,.18) 0%, transparent 55%);
  border: 1px solid rgba(255,255,255,.22);
  box-shadow: inset 0 0 14px rgba(255,255,255,.08), 0 4px 24px rgba(138,78,198,.12);
  animation: bubbleDrift var(--bdur, 5s) ease-in-out var(--boff, 0s) infinite;
  transition: transform .12s ease;
  -webkit-backdrop-filter: blur(2px); backdrop-filter: blur(2px);
}
.bubble::before {
  content: ''; position: absolute; top: 15%; left: 18%; width: 32%; height: 20%;
  background: radial-gradient(ellipse, rgba(255,255,255,.6), transparent);
  border-radius: 50%; transform: rotate(-35deg);
}
.bubble:hover { transform: scale(1.08); }
.bubble.is-popping { animation: bubblePop .22s ease-out forwards; pointer-events: none; }

@keyframes bubbleDrift {
  0%,100% { transform: translate(0,0) rotate(0deg); }
  25%      { transform: translate(7px,-14px) rotate(1.5deg); }
  50%      { transform: translate(-6px,-7px) rotate(-1deg); }
  75%      { transform: translate(5px,-18px) rotate(1deg); }
}
@keyframes bubblePop {
  0%   { transform: scale(1);   opacity: 1; }
  45%  { transform: scale(1.35); opacity: .6; }
  100% { transform: scale(1.7);  opacity: 0; }
}

/* Reveal — gentil e rápido (não deixa a sensação de vazio no scroll) */
.reveal-on-scroll { opacity: 0; transform: translateY(16px); transition: opacity .5s ease, transform .55s cubic-bezier(.2,.7,.2,1); transition-delay: var(--delay, 0s); }
.reveal-on-scroll.is-visible { opacity: 1; transform: none; }

/* Acessibilidade */
.skip-link { position: fixed; top: -60px; left: 1rem; z-index: 200; background: var(--gold); color: var(--black); padding: .6rem 1rem; border-radius: 8px; text-decoration: none; font-size: .85rem; font-weight: 600; transition: top .25s; }
.skip-link:focus { top: 1rem; }
:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; border-radius: 4px; }
.pillar::after, .case::after { content: ""; position: absolute; inset: 0; border-radius: inherit; pointer-events: none; box-shadow: inset 0 1px 0 rgba(255,255,255,.06); opacity: 0; transition: opacity .45s ease; }
.pillar:hover::after, .case:hover::after { opacity: 1; }

/* Satori espiando (4ª parede) */
.peek {
  position: fixed; bottom: 0; left: 13%; z-index: 90; width: min(260px, 46vw);
  transform: translate(-50%, 108%); transition: transform 1.1s cubic-bezier(.2,.85,.25,1);
  pointer-events: none; will-change: transform;
}
.peek img { width: 100%; display: block; }
.peek.is-active { transform: translate(-50%, 14%); }
.peek--right { left: auto; right: 13%; transform: translate(50%, 108%); }
.peek--right.is-active { transform: translate(50%, 14%); }

/* toggle de som — pílula com onda senoidal que flui quando ligado */
.sound-toggle { position: fixed; bottom: 1.4rem; right: 1.4rem; z-index: 120; height: 38px; padding: 0 15px; border-radius: 999px; cursor: pointer; background: rgba(12,10,22,.7); backdrop-filter: blur(8px); border: 1px solid rgba(232,200,122,.35); color: var(--gold); display: grid; place-items: center; transition: transform .3s, border-color .3s, color .3s, box-shadow .3s; }
.sound-toggle:hover { transform: scale(1.06); border-color: var(--gold); }
.sound-toggle.is-on { box-shadow: 0 0 18px -6px rgba(232,200,122,.55); }
.sound-toggle__wave { width: 32px; height: 14px; display: block; overflow: hidden; }
.sound-toggle__g { animation: stwave 1.15s linear infinite; }
@keyframes stwave { to { transform: translateX(-16px); } }
.sound-toggle:not(.is-on) { color: var(--ink-faint); border-color: rgba(155,144,173,.4); box-shadow: none; }
.sound-toggle:not(.is-on) .sound-toggle__g { animation: none; transform: scaleY(.08); transform-origin: 50% 50%; transform-box: fill-box; }

@media (max-width: 760px) {
  .nav { display: none; }
  .menu-toggle { display: flex; }
  .case--feature .case__media { aspect-ratio: 16 / 10; }
  .sound-toggle { bottom: 1rem; right: 1rem; }
  .hero__char { height: 52vh; }
  .featured__inner { grid-template-columns: 1fr; gap: 1.6rem; }
  .featured__visual { aspect-ratio: 16/9; }
  .contact-form__row { grid-template-columns: 1fr; }
  .award { gap: .4rem .9rem; padding: .9rem var(--pad); }
  .award__text { font-size: .82rem; }
  .about__inner { grid-template-columns: 1fr; gap: 1.5rem; text-align: center; }
  .about__text { margin-left: auto; margin-right: auto; }
  .about__visual { min-height: 300px; }
  .about__halo { width: 280px; height: 280px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .scroll-hint__arrow, .marquee__track, .hero__char, .brand__mark, .featured__visual--film .featured__img, .sound-toggle__g { animation: none; }
  .reveal-on-scroll { transition: none; opacity: 1; transform: none; }
  .cursor-glow { display: none; }
  .preloader__mark { animation: none; }
}
