/* =========================================================
   MIDIAOOHRIOPRETO.COM.BR — Mídia OOH para Agências
   Multicolor Painéis · Identidade: dossiê técnico de mídia
   Distinta do site 1: claro, técnico, orientado a dados
   ========================================================= */

:root {
  /* Paleta distinta do site 1: base clara técnica + roxo Multicolor + acento ciano-elétrico */
  --ink:          #1A1230;
  --ink-soft:     #4A3D63;
  --ink-faint:    #8479A0;
  --purple:       #5B2D8E;
  --purple-bright:#7B3FB8;
  --electric:     #00C2B8;   /* acento ciano-petróleo: distinto do dourado do site 1 */
  --electric-deep:#009B93;
  --paper:        #FFFFFF;
  --paper-warm:   #F6F4F9;
  --paper-line:   #E6E1EF;
  --grid-line:    #EDEAF3;
  --signal:       #FF5C39;   /* laranja-sinal só para destaques de dado */

  --font-display: 'Space Grotesk', sans-serif;
  --font-body:    'Inter', sans-serif;
  --font-mono:    'IBM Plex Mono', monospace;

  --max-w: 1280px;
  --pad-x: clamp(20px, 5vw, 56px);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--paper);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
::selection { background: var(--electric); color: var(--ink); }

/* ============ UTILITY ============ */

.container { max-width: var(--max-w); margin: 0 auto; padding: 0 var(--pad-x); }
section { padding: clamp(72px, 10vh, 120px) 0; position: relative; }

.mono-label {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--electric-deep);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.mono-label::before {
  content: "▸";
  color: var(--electric);
}

.section-head {
  margin-bottom: 56px;
  max-width: 640px;
}
.section-head h2 {
  font-family: var(--font-display);
  font-size: clamp(30px, 4.5vw, 52px);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-top: 18px;
  color: var(--ink);
}
.section-head p {
  margin-top: 18px;
  font-size: 17px;
  color: var(--ink-soft);
  line-height: 1.6;
}

/* ============ NAV ============ */

.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 16px var(--pad-x);
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255,255,255,0);
  transition: background .3s, border-color .3s, padding .3s;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(255,255,255,0.94);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--paper-line);
  padding: 11px var(--pad-x);
}
.nav-logo {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-display);
  font-weight: 600; font-size: 17px;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.nav-logo img { width: 30px; height: 30px; }
.nav-logo .tag {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--electric-deep);
  border: 1px solid var(--electric);
  border-radius: 4px;
  padding: 2px 6px;
  letter-spacing: 0.05em;
}
.nav-links { display: flex; gap: 32px; align-items: center; }
.nav-links a {
  font-size: 14px; font-weight: 500;
  color: var(--ink-soft);
  transition: color .2s;
}
.nav-links a:hover { color: var(--purple); }
.nav-cta {
  background: var(--ink);
  color: white !important;
  padding: 10px 18px;
  border-radius: 6px;
  font-weight: 600; font-size: 13px;
  font-family: var(--font-mono);
  letter-spacing: 0.02em;
  transition: background .2s, transform .2s;
}
.nav-cta:hover { background: var(--purple); transform: translateY(-1px); }

.nav-toggle { display: none; width: 44px; height: 44px; align-items: center; justify-content: center; color: var(--ink); }

@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .nav-links.open {
    display: flex; flex-direction: column;
    position: absolute; top: 100%; left: 0; right: 0;
    background: var(--paper); padding: 22px var(--pad-x); gap: 18px;
    border-bottom: 1px solid var(--paper-line);
  }
}

/* ============ HERO — bloco de dados ============ */

.hero {
  padding: 140px 0 80px;
  background:
    linear-gradient(var(--grid-line) 1px, transparent 1px),
    linear-gradient(90deg, var(--grid-line) 1px, transparent 1px);
  background-size: 44px 44px;
  background-color: var(--paper-warm);
  position: relative;
  overflow: hidden;
}
.hero::after {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 60% at 70% 0%, transparent 40%, var(--paper) 100%);
  pointer-events: none;
}
.hero-inner { position: relative; z-index: 1; }

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
  align-items: center;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(40px, 6vw, 76px);
  font-weight: 600;
  line-height: 1.0;
  letter-spacing: -0.03em;
  margin: 24px 0 24px;
  color: var(--ink);
}
.hero-title .hl {
  color: var(--purple);
  position: relative;
  white-space: nowrap;
}
.hero-title .hl::after {
  content: "";
  position: absolute; left: 0; right: 0; bottom: 4px;
  height: 10px;
  background: var(--electric);
  opacity: 0.3;
  z-index: -1;
}
.hero-sub {
  font-size: 18px;
  line-height: 1.6;
  color: var(--ink-soft);
  max-width: 46ch;
  margin-bottom: 32px;
}
.hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; }

.btn {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 14px 24px;
  border-radius: 7px;
  font-weight: 600; font-size: 14px;
  transition: transform .2s, box-shadow .2s, background .2s;
}
.btn-primary {
  background: var(--electric);
  color: var(--ink);
  box-shadow: 0 8px 24px -8px rgba(0,194,184,0.5);
}
.btn-primary:hover { transform: translateY(-2px); background: var(--electric-deep); color: white; }
.btn-outline {
  border: 1px solid var(--paper-line);
  background: white;
  color: var(--ink);
}
.btn-outline:hover { border-color: var(--purple); color: var(--purple); }

/* Painel de dados do hero */
.data-panel {
  background: var(--ink);
  border-radius: 12px;
  padding: 28px;
  color: white;
  box-shadow: 0 24px 60px -24px rgba(26,18,48,0.5);
  position: relative;
  overflow: hidden;
}
.data-panel::before {
  content: "";
  position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--electric), transparent);
}
.data-panel-head {
  display: flex; align-items: center; justify-content: space-between;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--ink-faint);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 20px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.data-panel-live { display: flex; align-items: center; gap: 6px; color: var(--electric); }
.data-panel-live span {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--electric);
  animation: blink 1.6s infinite;
}
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0.3} }

.data-rows { display: grid; gap: 2px; }
.data-row {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: baseline;
  padding: 13px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.data-row:last-child { border-bottom: none; }
.data-row-label {
  font-size: 13px;
  color: rgba(255,255,255,0.7);
}
.data-row-value {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: white;
}
.data-row-value em {
  font-style: normal;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--electric);
  margin-left: 4px;
}

@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
}

/* ============ FAIXA DE MÉTRICAS ============ */

.metrics {
  border-top: 1px solid var(--paper-line);
  border-bottom: 1px solid var(--paper-line);
  background: var(--paper);
  padding: 0;
}
.metrics-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.metric {
  padding: 40px var(--pad-x);
  border-right: 1px solid var(--paper-line);
  text-align: left;
}
.metric:last-child { border-right: none; }
.metric-value {
  font-family: var(--font-display);
  font-size: clamp(34px, 4vw, 52px);
  font-weight: 600;
  letter-spacing: -0.03em;
  color: var(--ink);
  line-height: 1;
}
.metric-value em {
  font-style: normal;
  color: var(--electric-deep);
  font-family: var(--font-mono);
  font-size: 0.4em;
  vertical-align: super;
}
.metric-label {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--ink-faint);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-top: 10px;
}
@media (max-width: 760px) {
  .metrics-grid { grid-template-columns: 1fr 1fr; }
  .metric:nth-child(2) { border-right: none; }
  .metric { border-bottom: 1px solid var(--paper-line); }
}

/* ============ POR QUE OOH (argumentos pra agência) ============ */

.why { background: var(--paper); }
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 8px;
}
.why-card {
  padding: 32px;
  border: 1px solid var(--paper-line);
  border-radius: 10px;
  background: var(--paper);
  transition: border-color .25s, transform .25s;
}
.why-card:hover { border-color: var(--electric); transform: translateY(-3px); }
.why-card-num {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--electric-deep);
  margin-bottom: 18px;
}
.why-card h3 {
  font-family: var(--font-display);
  font-size: 21px;
  font-weight: 600;
  letter-spacing: -0.01em;
  margin-bottom: 12px;
  color: var(--ink);
}
.why-card p {
  font-size: 15px;
  color: var(--ink-soft);
  line-height: 1.6;
}
@media (max-width: 900px) { .why-grid { grid-template-columns: 1fr; } }

/* ============ INVENTÁRIO (tabela técnica) ============ */

.inventory { background: var(--paper-warm); }

.inv-table-wrap {
  border: 1px solid var(--paper-line);
  border-radius: 12px;
  overflow: hidden;
  background: var(--paper);
  box-shadow: 0 16px 50px -30px rgba(26,18,48,0.3);
}

.inv-row {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr 0.8fr;
  align-items: center;
  border-bottom: 1px solid var(--paper-line);
  transition: background .2s;
}
.inv-row:last-child { border-bottom: none; }
.inv-row:not(.inv-head):hover { background: var(--paper-warm); }

.inv-head {
  background: var(--ink);
  color: white;
}
.inv-head .inv-cell {
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: rgba(255,255,255,0.7);
  padding: 16px 20px;
}

.inv-cell { padding: 22px 20px; font-size: 14px; }

.inv-cell-name {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.inv-cell-name strong {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.inv-cell-name span {
  font-size: 12px;
  color: var(--ink-faint);
  font-family: var(--font-mono);
}
.inv-type {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 4px 9px;
  border-radius: 4px;
  width: fit-content;
}
.inv-type.mega { background: rgba(91,45,142,0.1); color: var(--purple); }
.inv-type.super { background: rgba(0,194,184,0.12); color: var(--electric-deep); }
.inv-type.estatica { background: rgba(26,18,48,0.08); color: var(--ink-soft); }

.inv-metric-big {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.inv-metric-big em {
  font-style: normal;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--ink-faint);
  display: block;
  margin-top: 2px;
}

.inv-mobile-card { display: none; }

@media (max-width: 920px) {
  .inv-table-wrap { border: none; box-shadow: none; background: transparent; }
  .inv-row { display: none; }
  .inv-mobile-card {
    display: block;
    background: var(--paper);
    border: 1px solid var(--paper-line);
    border-radius: 10px;
    padding: 22px;
    margin-bottom: 12px;
  }
  .inv-mobile-head {
    display: flex; justify-content: space-between; align-items: flex-start;
    margin-bottom: 16px; padding-bottom: 16px;
    border-bottom: 1px solid var(--paper-line);
  }
  .inv-mobile-head strong {
    font-family: var(--font-display); font-size: 18px; font-weight: 600;
    color: var(--ink); display: block;
  }
  .inv-mobile-head span { font-size: 12px; color: var(--ink-faint); font-family: var(--font-mono); }
  .inv-mobile-specs { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
  .inv-mobile-spec-label { font-family: var(--font-mono); font-size: 10px; text-transform: uppercase; color: var(--ink-faint); letter-spacing: 0.04em; }
  .inv-mobile-spec-value { font-family: var(--font-display); font-size: 17px; font-weight: 600; color: var(--ink); margin-top: 2px; }
}

.inv-note {
  margin-top: 20px;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--ink-faint);
  display: flex;
  align-items: center;
  gap: 8px;
}

/* ============ GALERIA VISUAL ============ */

.gallery { background: var(--paper); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 12px;
  grid-auto-rows: 200px;
}
.gallery-item {
  overflow: hidden;
  border-radius: 8px;
  position: relative;
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1s cubic-bezier(.2,.7,.2,1);
}
.gallery-item:hover img { transform: scale(1.05); }
.gallery-item.wide { grid-column: span 6; }
.gallery-item.tall { grid-column: span 3; grid-row: span 2; }
.gallery-item.med  { grid-column: span 3; }
.gallery-item.big  { grid-column: span 6; grid-row: span 2; }
.gallery-cap {
  position: absolute; bottom: 12px; left: 12px;
  font-family: var(--font-mono);
  font-size: 11px;
  color: white;
  background: rgba(26,18,48,0.7);
  backdrop-filter: blur(6px);
  padding: 5px 10px;
  border-radius: 5px;
  letter-spacing: 0.03em;
}
@media (max-width: 900px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 160px; }
  .gallery-item.wide, .gallery-item.tall, .gallery-item.med, .gallery-item.big {
    grid-column: span 1; grid-row: span 1;
  }
  .gallery-item.tall { grid-row: span 2; }
}

/* ============ SOBRE ============ */

.about { background: var(--paper-warm); }
.about-grid {
  display: grid;
  grid-template-columns: 0.85fr 1fr;
  gap: 64px;
  align-items: center;
}
.about-img { border-radius: 12px; overflow: hidden; aspect-ratio: 4/5; box-shadow: 0 24px 60px -30px rgba(26,18,48,0.4); }
.about-img img { width: 100%; height: 100%; object-fit: cover; }
.about-body h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 46px);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.05;
  margin: 18px 0 22px;
  color: var(--ink);
}
.about-body p { font-size: 16px; color: var(--ink-soft); line-height: 1.65; margin-bottom: 16px; }
.about-body strong { color: var(--purple); font-weight: 600; }
.about-facts {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1px;
  margin-top: 28px;
  background: var(--paper-line);
  border: 1px solid var(--paper-line);
  border-radius: 10px;
  overflow: hidden;
}
.about-fact { background: var(--paper); padding: 20px; }
.about-fact-val { font-family: var(--font-display); font-size: 24px; font-weight: 600; color: var(--electric-deep); letter-spacing: -0.01em; }
.about-fact-lbl { font-size: 13px; color: var(--ink-soft); margin-top: 4px; }
@media (max-width: 900px) { .about-grid { grid-template-columns: 1fr; gap: 40px; } }

/* ============ CLIENTES ============ */

.clients { background: var(--paper); text-align: center; }
.clients h2 {
  font-family: var(--font-display);
  font-size: clamp(26px, 3.5vw, 40px);
  font-weight: 600; letter-spacing: -0.02em;
  color: var(--ink); margin-bottom: 12px;
}
.clients p { color: var(--ink-soft); margin-bottom: 48px; }
.logos-grid {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px;
  max-width: 1080px; margin: 0 auto;
}
.logo-item {
  aspect-ratio: 3/2;
  display: flex; align-items: center; justify-content: center;
  padding: 14px;
  border: 1px solid var(--paper-line);
  border-radius: 10px; background: white;
  overflow: hidden;
  transition: border-color .25s, transform .25s;
}
.logo-item:hover { border-color: var(--electric); transform: translateY(-2px); }
.logo-item img { max-width: 92%; max-height: 78%; width: auto; height: auto; object-fit: contain; }
@media (max-width: 880px) { .logos-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; } .logo-item { padding: 12px; } }

/* ============ CTA + FORM ============ */

.cta { background: var(--ink); color: white; position: relative; overflow: hidden; }
.cta::before {
  content: "";
  position: absolute; inset: 0;
  background:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 44px 44px;
}
.cta-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px;
  position: relative; z-index: 1;
}
.cta-body .mono-label { color: var(--electric); }
.cta-body h2 {
  font-family: var(--font-display);
  font-size: clamp(30px, 4.5vw, 54px);
  font-weight: 600; letter-spacing: -0.02em; line-height: 1.05;
  margin: 18px 0 22px; color: white; max-width: 13ch;
}
.cta-body > p { color: rgba(255,255,255,0.7); font-size: 17px; line-height: 1.6; max-width: 42ch; margin-bottom: 32px; }
.cta-contacts { display: grid; gap: 16px; margin-top: 28px; }
.cta-contact { display: flex; align-items: center; gap: 13px; }
.cta-contact-ic {
  width: 38px; height: 38px; border-radius: 8px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  display: flex; align-items: center; justify-content: center;
  color: var(--electric);
}
.cta-contact strong { display: block; color: white; font-weight: 600; font-size: 15px; }
.cta-contact span { font-size: 12px; color: rgba(255,255,255,0.5); font-family: var(--font-mono); }

.form-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  padding: clamp(26px, 3vw, 40px);
  backdrop-filter: blur(16px);
}
.form-card h3 { font-family: var(--font-display); font-size: 22px; font-weight: 600; margin-bottom: 6px; }
.form-card > p { color: rgba(255,255,255,0.6); font-size: 14px; margin-bottom: 26px; font-family: var(--font-mono); }
.field { margin-bottom: 16px; }
.field label {
  display: block; font-family: var(--font-mono);
  font-size: 11px; text-transform: uppercase; letter-spacing: 0.06em;
  color: var(--electric); margin-bottom: 7px;
}
.field input, .field textarea {
  width: 100%; padding: 13px 15px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 7px; color: white;
  font-family: inherit; font-size: 15px;
  transition: border-color .2s, background .2s;
}
.field input::placeholder, .field textarea::placeholder { color: rgba(255,255,255,0.3); }
.field input:focus, .field textarea:focus {
  outline: 2px solid var(--electric); outline-offset: 1px;
  border-color: transparent; background: rgba(255,255,255,0.08);
}
.field textarea { resize: vertical; min-height: 90px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.form-submit {
  width: 100%; padding: 15px;
  background: var(--electric); color: var(--ink);
  border-radius: 7px; font-weight: 700; font-size: 15px;
  font-family: var(--font-display);
  transition: background .2s, transform .2s; margin-top: 6px;
}
.form-submit:hover { background: white; transform: translateY(-1px); }
.form-submit:disabled { opacity: 0.6; cursor: not-allowed; }
.form-status { margin-top: 14px; padding: 12px; border-radius: 6px; font-size: 14px; display: none; font-family: var(--font-mono); }
.form-status.ok { display: block; background: rgba(0,194,184,0.12); color: var(--electric); border: 1px solid rgba(0,194,184,0.3); }
.form-status.err { display: block; background: rgba(255,92,57,0.12); color: var(--signal); border: 1px solid rgba(255,92,57,0.3); }

@media (max-width: 900px) {
  .cta-grid { grid-template-columns: 1fr; gap: 44px; }
  .field-row { grid-template-columns: 1fr; }
}

/* ============ FOOTER ============ */

.footer { background: #120C24; color: rgba(255,255,255,0.5); padding: 52px 0 26px; font-size: 14px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 56px; margin-bottom: 44px; }
.footer-brand img { width: 132px; margin-bottom: 16px; }
.footer-brand p { max-width: 34ch; line-height: 1.55; }
.footer-col h4 { color: white; font-family: var(--font-display); font-size: 15px; font-weight: 600; margin-bottom: 14px; }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 9px; }
.footer-col a:hover { color: var(--electric); }
.footer-bottom {
  padding-top: 26px; border-top: 1px solid rgba(255,255,255,0.08);
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 14px;
  font-family: var(--font-mono); font-size: 12px;
}
@media (max-width: 720px) { .footer-grid { grid-template-columns: 1fr; gap: 30px; } }

/* ============ FAB WHATSAPP ============ */

.fab {
  position: fixed; bottom: 24px; right: 24px;
  width: 58px; height: 58px; background: #25D366; color: white;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 30px -8px rgba(37,211,102,0.5); z-index: 50;
  transition: transform .25s;
}
.fab:hover { transform: scale(1.08); }

/* ============ REVEAL ============ */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s, transform .7s; }
.reveal.in { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
}
