/* =========================================================
   GINGA MÍDIA — neon-noir / performance para eventos
   ========================================================= */

:root {
  /* base */
  --bg: #060608;
  --bg-2: #0b0b0f;
  --ink: #f4f4f0;
  --muted: #8b8b93;
  --line: rgba(255, 255, 255, 0.09);
  --glass: rgba(255, 255, 255, 0.035);
  --glass-hi: rgba(255, 255, 255, 0.06);

  /* acento principal — verde ácido (pop contra o preto, foge do roxo-slop) */
  --accent: #ccff3d;
  --accent-ink: #0a0d02;

  /* neons ambientes */
  --magenta: #ff2e93;
  --violet: #7a2bff;
  --cyan: #2be1ff;

  --maxw: 1200px;
  --pad: clamp(20px, 5vw, 64px);
  --radius: 16px;

  --font-display: "Space Grotesk", system-ui, sans-serif;
  --font-body: "Sora", system-ui, -apple-system, sans-serif;

  --ease: cubic-bezier(.2, .7, .2, 1);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

::selection { background: var(--accent); color: var(--accent-ink); }

/* ===================== ATMOSFERA ===================== */
.atmosphere { position: fixed; inset: 0; z-index: -2; overflow: hidden; pointer-events: none; }

.blob {
  position: absolute;
  width: 46vmax; height: 46vmax;
  border-radius: 50%;
  filter: blur(90px);
  opacity: .5;
  mix-blend-mode: screen;
  will-change: transform;
}
.blob--magenta { background: radial-gradient(circle, var(--magenta), transparent 62%); top: -14vmax; left: -8vmax; animation: drift1 26s var(--ease) infinite alternate; }
.blob--violet  { background: radial-gradient(circle, var(--violet), transparent 62%);  bottom: -18vmax; right: -10vmax; animation: drift2 32s var(--ease) infinite alternate; }
.blob--cyan    { background: radial-gradient(circle, var(--cyan), transparent 60%);    top: 38%; left: 44%; width: 34vmax; height: 34vmax; opacity: .35; animation: drift3 24s var(--ease) infinite alternate; }

@keyframes drift1 { to { transform: translate3d(12vw, 8vh, 0) scale(1.15); } }
@keyframes drift2 { to { transform: translate3d(-10vw, -6vh, 0) scale(1.1); } }
@keyframes drift3 { to { transform: translate3d(-8vw, 10vh, 0) scale(.85); } }

/* grão / noise */
.grain {
  position: absolute; inset: -50%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.5'/%3E%3C/svg%3E");
  opacity: .045;
  animation: grainShift 8s steps(6) infinite;
}
@keyframes grainShift {
  0%,100% { transform: translate(0,0); }
  20% { transform: translate(-4%, 3%); }
  40% { transform: translate(3%, -5%); }
  60% { transform: translate(-3%, 2%); }
  80% { transform: translate(5%, 4%); }
}

/* spotlight do cursor */
.spotlight {
  position: fixed; z-index: -1; inset: 0; pointer-events: none;
  background: radial-gradient(320px circle at var(--mx, 50%) var(--my, 0%), rgba(204,255,61,.06), transparent 70%);
  opacity: 0; transition: opacity .4s;
}
@media (hover: hover) and (pointer: fine) { .spotlight { opacity: 1; } }

/* ===================== LAYOUT HELPERS ===================== */
.section {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: clamp(72px, 12vh, 140px) var(--pad);
}
.section__head { margin-bottom: clamp(36px, 6vw, 64px); max-width: 720px; }

.kicker {
  display: inline-block;
  font-family: var(--font-display);
  font-size: .78rem; letter-spacing: .22em; text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 18px;
}
.section__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2rem, 5.5vw, 3.6rem);
  line-height: 1.02;
  letter-spacing: -.02em;
  margin: 0;
}
.stroke {
  color: transparent;
  -webkit-text-stroke: 1.4px var(--accent);
  text-stroke: 1.4px var(--accent);
}
.accent-word { color: var(--accent); }

/* ===================== BOTÕES ===================== */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-display); font-weight: 500;
  font-size: .95rem; letter-spacing: .01em;
  padding: 13px 22px; border-radius: 100px;
  border: 1px solid transparent;
  cursor: pointer; position: relative;
  transition: transform .25s var(--ease), background .25s, color .25s, box-shadow .35s, border-color .25s;
  will-change: transform;
}
.btn--lg { padding: 16px 28px; font-size: 1rem; }
.btn--accent {
  background: var(--accent); color: var(--accent-ink);
  box-shadow: 0 0 0 rgba(204,255,61,0);
}
.btn--accent:hover { box-shadow: 0 8px 40px -6px rgba(204,255,61,.55); transform: translateY(-2px); }
.btn--accent:active { transform: translateY(0); }
.btn--ghost {
  background: var(--glass); color: var(--ink);
  border-color: var(--line);
  backdrop-filter: blur(8px);
}
.btn--ghost:hover { border-color: rgba(255,255,255,.28); background: var(--glass-hi); transform: translateY(-2px); }
.btn svg { transition: transform .25s var(--ease); }
.btn:hover svg { transform: translateX(3px); }

/* ===================== NAV ===================== */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  display: flex; align-items: center; gap: 24px;
  padding: 18px var(--pad);
  transition: padding .3s var(--ease), background .3s, border-color .3s, backdrop-filter .3s;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  padding: 12px var(--pad);
  background: rgba(6,6,8,.6);
  backdrop-filter: blur(14px) saturate(140%);
  border-bottom-color: var(--line);
}
.nav__brand { display: flex; align-items: center; gap: 10px; margin-right: auto; }
.brand-logo { height: 40px; width: auto; display: block; transition: height .3s var(--ease); }
.nav.scrolled .brand-logo { height: 34px; }
.footer__brand .brand-logo { height: 34px; }
.nav__mark {
  width: 22px; height: 22px; border-radius: 6px;
  background: conic-gradient(from 210deg, var(--accent), var(--cyan), var(--magenta), var(--accent));
  box-shadow: 0 0 18px -2px var(--accent);
  animation: spinmark 9s linear infinite;
}
@keyframes spinmark { to { filter: hue-rotate(360deg); } }
.nav__word { font-family: var(--font-display); font-weight: 700; letter-spacing: .04em; font-size: 1.05rem; }
.nav__word-dim { color: var(--muted); font-weight: 400; margin-left: 4px; }
.nav__links { display: flex; gap: 26px; }
.nav__links a {
  font-size: .92rem; color: var(--muted); position: relative; padding: 4px 0;
  transition: color .2s;
}
.nav__links a::after {
  content: ""; position: absolute; left: 0; bottom: -2px; height: 1px; width: 0;
  background: var(--accent); transition: width .3s var(--ease);
}
.nav__links a:hover, .nav__links a.active { color: var(--ink); }
.nav__links a:hover::after, .nav__links a.active::after { width: 100%; }
.nav__burger { display: none; }

/* ===================== HERO ===================== */
.hero {
  min-height: 100svh;
  display: flex; flex-direction: column; justify-content: center;
  max-width: var(--maxw); margin: 0 auto;
  padding: 120px var(--pad) 80px;
  position: relative;
}
.hero__inner { max-width: 960px; }
.hero__eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-display); font-size: .82rem; letter-spacing: .14em; text-transform: uppercase;
  color: var(--muted); margin: 0 0 26px;
}
.pulse-dot {
  width: 8px; height: 8px; border-radius: 50%; background: var(--accent);
  box-shadow: 0 0 0 0 rgba(204,255,61,.6); animation: pulse 2.2s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(204,255,61,.55); }
  70% { box-shadow: 0 0 0 12px rgba(204,255,61,0); }
  100% { box-shadow: 0 0 0 0 rgba(204,255,61,0); }
}

.hero__title {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(2.6rem, 8vw, 6rem);
  line-height: .98; letter-spacing: -.03em;
  margin: 0 0 30px;
}
.hero__title .line { display: block; overflow: hidden; }

.rotator {
  display: inline-grid; vertical-align: bottom;
}
.rotator > span {
  grid-area: 1 / 1;
  color: var(--accent);
  opacity: 0;
  transform: translateY(60%);
  animation: rotate-word 7.5s infinite;
}
.rotator > span:nth-child(1) { animation-delay: 0s; }
.rotator > span:nth-child(2) { animation-delay: 2.5s; }
.rotator > span:nth-child(3) { animation-delay: 5s; }
@keyframes rotate-word {
  0%, 3% { opacity: 0; transform: translateY(60%); }
  6%, 30% { opacity: 1; transform: translateY(0); }
  33%, 100% { opacity: 0; transform: translateY(-60%); }
}

.hero__sub {
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  color: #cfcfce; max-width: 620px; margin: 0 0 40px; font-weight: 300;
}
.hero__sub strong { color: var(--ink); font-weight: 500; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 64px; }

.hero__ticker {
  display: flex; flex-wrap: wrap; gap: clamp(24px, 5vw, 60px);
  list-style: none; padding: 26px 0 0; margin: 0;
  border-top: 1px solid var(--line);
}
.hero__ticker li { display: flex; flex-direction: column; }
.hero__ticker b {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(1.6rem, 3.5vw, 2.4rem); letter-spacing: -.02em; line-height: 1;
}
.hero__ticker span { color: var(--muted); font-size: .86rem; margin-top: 6px; }

.hero__scroll {
  position: absolute; bottom: 30px; left: var(--pad);
  display: flex; align-items: center; gap: 12px;
  font-size: .72rem; letter-spacing: .28em; text-transform: uppercase; color: var(--muted);
}
.hero__scroll-line { width: 52px; height: 1px; background: var(--muted); position: relative; overflow: hidden; }
.hero__scroll-line::after { content: ""; position: absolute; inset: 0; width: 40%; background: var(--accent); animation: scrolldash 2.4s var(--ease) infinite; }
@keyframes scrolldash { 0% { transform: translateX(-120%); } 100% { transform: translateX(320%); } }

/* ===================== CLIENTES / MARQUEE ===================== */
.clients { padding: clamp(40px, 7vw, 72px) 0; border-block: 1px solid var(--line); position: relative; }
.clients__label, .clients__note {
  text-align: center; color: var(--muted);
  font-family: var(--font-display); letter-spacing: .12em; text-transform: uppercase;
}
.clients__label { font-size: .8rem; margin: 0 var(--pad) 34px; }
.clients__note { font-size: .68rem; opacity: .5; margin: 30px var(--pad) 0; text-transform: none; letter-spacing: .04em; }

.marquee { overflow: hidden; padding-block: 16px; -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); }
.marquee__track { display: flex; width: max-content; gap: clamp(14px, 2vw, 24px); animation: marquee 42s linear infinite; }
.marquee:hover .marquee__track { animation-play-state: paused; }
@keyframes marquee { to { transform: translateX(-50%); } }

.logo-tile {
  flex: 0 0 auto;
  width: 98px; height: 98px;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--glass);
  opacity: .78;
  filter: saturate(.92);
  transition: transform .3s var(--ease), opacity .3s, border-color .3s, box-shadow .3s, filter .3s;
}
.logo-tile img { width: 100%; height: 100%; object-fit: cover; display: block; }
.logo-tile:hover {
  opacity: 1; filter: none;
  transform: translateY(-3px) scale(1.05);
  border-color: rgba(204, 255, 61, .4);
  box-shadow: 0 12px 30px -10px rgba(0, 0, 0, .6), 0 0 0 1px rgba(204, 255, 61, .18);
}
@media (max-width: 560px) { .logo-tile { width: 80px; height: 80px; } }

/* ===================== CARDS (glass + spotlight) ===================== */
.card--spot {
  position: relative;
  background: var(--glass);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  backdrop-filter: blur(10px);
  overflow: hidden;
  transition: transform .4s var(--ease), border-color .4s, background .4s;
}
.card--spot::before {
  content: ""; position: absolute; inset: 0; opacity: 0;
  background: radial-gradient(360px circle at var(--cx, 50%) var(--cy, 50%), rgba(204,255,61,.14), transparent 60%);
  transition: opacity .4s; pointer-events: none;
}
.card--spot:hover { transform: translateY(-4px); border-color: rgba(204,255,61,.35); background: var(--glass-hi); }
.card--spot:hover::before { opacity: 1; }

/* Entregas */
.entregas__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.card { padding: clamp(28px, 3.5vw, 44px); }
.card__num { font-family: var(--font-display); font-size: 1.6rem; color: var(--accent); margin-bottom: 20px; }
.card h3 { font-family: var(--font-display); font-size: clamp(1.3rem, 2.5vw, 1.7rem); margin: 0 0 12px; font-weight: 500; }
.card p { color: var(--muted); margin: 0 0 22px; }
.card__tags { display: flex; flex-wrap: wrap; gap: 8px; list-style: none; padding: 0; margin: 0; }
.card__tags li {
  font-family: var(--font-display); font-size: .74rem; letter-spacing: .04em;
  padding: 5px 12px; border: 1px solid var(--line); border-radius: 100px; color: #cfcfce;
}

/* Modalidades */
.modal__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.mcard { padding: clamp(26px, 3vw, 38px); display: flex; flex-direction: column; min-height: 220px; }
.mcard__index {
  font-family: var(--font-display); font-size: .76rem; letter-spacing: .14em; text-transform: uppercase;
  color: var(--accent); margin-bottom: auto; padding-bottom: 30px;
}
.mcard h3 { font-family: var(--font-display); font-size: 1.35rem; margin: 0 0 10px; font-weight: 500; }
.mcard p { color: var(--muted); margin: 0; }

/* Planos */
.planos__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; align-items: stretch; }
.plan { padding: clamp(28px, 3vw, 40px); display: flex; flex-direction: column; }
.plan--featured {
  border-color: rgba(204,255,61,.4);
  background: linear-gradient(180deg, rgba(204,255,61,.06), var(--glass));
  box-shadow: 0 0 60px -20px rgba(204,255,61,.4);
}
.plan__badge {
  align-self: flex-start;
  font-family: var(--font-display); font-size: .72rem; letter-spacing: .1em; text-transform: uppercase;
  background: var(--accent); color: var(--accent-ink);
  padding: 5px 12px; border-radius: 100px; margin-bottom: 20px; font-weight: 500;
}
.plan__head h3 { font-family: var(--font-display); font-size: 1.3rem; margin: 0 0 6px; font-weight: 500; }
.plan__desc { color: var(--muted); font-size: .92rem; margin: 0 0 24px; }
.plan__list { list-style: none; padding: 0; margin: 0 0 28px; flex: 1; }
.plan__list li {
  padding: 12px 0 12px 26px; border-top: 1px solid var(--line); position: relative; color: #dcdcda; font-size: .95rem;
}
.plan__list li::before {
  content: ""; position: absolute; left: 0; top: 18px;
  width: 12px; height: 7px; border-left: 2px solid var(--accent); border-bottom: 2px solid var(--accent);
  transform: rotate(-45deg);
}
.plan__cta { justify-content: center; width: 100%; }

/* Resultados */
.resultados__inner { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 6vw, 80px); align-items: center; }
.resultados__copy p { color: var(--muted); margin-top: 20px; max-width: 46ch; }
.resultados .section__title { margin-top: 0; }
.stats { display: flex; flex-direction: column; gap: 18px; }
.stat {
  border-left: 2px solid var(--accent); padding: 6px 0 6px 22px;
  position: relative;
}
.stat b {
  display: block; font-family: var(--font-display); font-weight: 700;
  font-size: clamp(2.6rem, 6vw, 4rem); line-height: 1; letter-spacing: -.03em;
  background: linear-gradient(100deg, var(--ink), var(--accent));
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.stat span { color: var(--muted); font-size: .95rem; }

/* Time */
.time__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.founder { padding: clamp(26px, 3vw, 40px); display: flex; gap: 22px; align-items: center; }
.founder__avatar {
  flex: 0 0 auto; width: 112px; height: 112px; border-radius: 22px;
  object-fit: cover; object-position: center 22%;
  border: 1px solid var(--line);
  box-shadow: 0 8px 30px -12px rgba(0,0,0,.6);
}
.founder__body h3 { font-family: var(--font-display); font-size: 1.3rem; margin: 0 0 4px; font-weight: 500; }
.founder__role { color: var(--accent); font-size: .82rem; letter-spacing: .05em; text-transform: uppercase; margin: 0 0 10px; font-family: var(--font-display); }
.founder__bio { color: var(--muted); margin: 0; font-size: .95rem; }
.founder__bio strong { color: var(--ink); font-weight: 500; }

/* ===================== CTA ===================== */
.cta { padding: clamp(80px, 12vw, 160px) var(--pad); position: relative; }
.cta__inner {
  max-width: 760px; margin: 0 auto; text-align: center;
  background: var(--glass); border: 1px solid var(--line); border-radius: 28px;
  padding: clamp(40px, 6vw, 72px); backdrop-filter: blur(12px);
  position: relative; overflow: hidden;
}
.cta__inner::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: radial-gradient(600px circle at 50% -10%, rgba(204,255,61,.12), transparent 60%);
}
.cta__title { font-family: var(--font-display); font-weight: 700; font-size: clamp(2rem, 5vw, 3.2rem); line-height: 1.02; letter-spacing: -.02em; margin: 0 0 16px; }
.cta__sub { color: var(--muted); margin: 0 auto 40px; max-width: 46ch; }

.cta__form { display: grid; gap: 26px; max-width: 460px; margin: 0 auto; text-align: left; }
.field { position: relative; }
.field input {
  width: 100%; background: transparent; border: none; border-bottom: 1px solid var(--line);
  color: var(--ink); font-family: var(--font-body); font-size: 1rem; padding: 12px 2px;
  transition: border-color .3s;
}
.field input:focus { outline: none; border-bottom-color: var(--accent); }
.field label {
  position: absolute; left: 2px; top: 12px; color: var(--muted); pointer-events: none;
  transition: transform .25s var(--ease), color .25s, font-size .25s;
}
.field input:focus + label,
.field input:not(:placeholder-shown) + label {
  transform: translateY(-22px); font-size: .74rem; color: var(--accent); letter-spacing: .06em;
}
.cta__form .btn { justify-content: center; margin-top: 8px; }

/* status do formulário */
.form-status {
  margin: 4px 0 0; font-size: .9rem; text-align: center;
  min-height: 1.2em; opacity: 0; transform: translateY(-4px);
  transition: opacity .3s var(--ease), transform .3s var(--ease);
}
.form-status.show { opacity: 1; transform: none; }
.form-status.ok { color: var(--accent); }
.form-status.error { color: #ff6b6b; }

/* ===================== WHATSAPP FLUTUANTE ===================== */
.wa-float {
  position: fixed; right: clamp(16px, 3vw, 28px); bottom: clamp(16px, 3vw, 28px);
  z-index: 60;
  width: 58px; height: 58px; border-radius: 50%;
  display: grid; place-items: center;
  color: #fff; background: #25d366;
  box-shadow: 0 10px 30px -6px rgba(37,211,102,.55), 0 4px 12px rgba(0,0,0,.4);
  transition: transform .25s var(--ease), box-shadow .3s;
}
.wa-float:hover { transform: translateY(-3px) scale(1.06); box-shadow: 0 16px 40px -6px rgba(37,211,102,.7); }
.wa-float:active { transform: scale(.96); }
.wa-float svg { position: relative; z-index: 1; }
.wa-float__pulse {
  position: absolute; inset: 0; border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(37,211,102,.6);
  animation: wa-pulse 2.4s var(--ease) infinite;
}
@keyframes wa-pulse {
  0% { box-shadow: 0 0 0 0 rgba(37,211,102,.55); }
  70% { box-shadow: 0 0 0 16px rgba(37,211,102,0); }
  100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}
@media (max-width: 560px) { .wa-float { width: 52px; height: 52px; } }

/* ===================== FOOTER ===================== */
.footer {
  max-width: var(--maxw); margin: 0 auto;
  padding: 48px var(--pad); border-top: 1px solid var(--line);
  display: flex; flex-wrap: wrap; align-items: center; gap: 22px;
}
.footer__brand { display: flex; align-items: center; gap: 10px; margin-right: auto; }
.footer__links { display: flex; gap: 22px; }
.footer__links a, .footer__social a { color: var(--muted); font-size: .9rem; transition: color .2s; }
.footer__links a:hover, .footer__social a:hover { color: var(--accent); }
.footer__social { display: flex; gap: 18px; }
.footer__copy { flex-basis: 100%; color: var(--muted); font-size: .8rem; opacity: .7; margin: 8px 0 0; }

/* ===================== REVEAL (scroll) ===================== */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in-view { opacity: 1; transform: none; }
.hero__title .line { transform: translateY(105%); transition: transform .9s var(--ease); }
.hero__title.in-view .line { transform: translateY(0); }
.hero__title.in-view .line:nth-child(2) { transition-delay: .1s; }
.hero__title.in-view .line:nth-child(3) { transition-delay: .2s; }
.hero__title.in-view .line:nth-child(4) { transition-delay: .3s; }

/* ===================== RESPONSIVO ===================== */
@media (max-width: 900px) {
  .entregas__grid, .modal__grid, .planos__grid, .time__grid, .resultados__inner { grid-template-columns: 1fr; }
  .nav__links { display: none; }
  .nav__burger {
    display: flex; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 8px;
  }
  .nav__burger span { width: 24px; height: 2px; background: var(--ink); transition: transform .3s, opacity .3s; }
  .nav__cta { display: none; }
  .nav__links.open {
    display: flex; flex-direction: column; position: absolute; top: 100%; right: var(--pad);
    background: rgba(10,10,14,.92); backdrop-filter: blur(16px); border: 1px solid var(--line);
    border-radius: 14px; padding: 18px 26px; gap: 16px;
  }
}

/* quebra de linha só no mobile */
.br-mobile { display: none; }

@media (max-width: 560px) {
  .hero__ticker { gap: 20px; }
  .founder { flex-direction: column; text-align: center; align-items: center; }
  .footer { justify-content: center; text-align: center; }
  .footer__brand { margin-right: 0; width: 100%; justify-content: center; }
  .br-mobile { display: inline; }
}

/* ===================== REDUCED MOTION ===================== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
  .reveal, .hero__title .line { opacity: 1 !important; transform: none !important; }
  .marquee__track { animation: none; }
  .rotator > span:nth-child(1) { opacity: 1; transform: none; }
  .rotator > span:nth-child(2), .rotator > span:nth-child(3) { display: none; }
}
