/* ==========================================================================
   StateX Digital — design system
   Cores extraídas dos arquivos originais do logo (pasta /logos).
   Redesign 08/2026: dark-first nas pontas, tipografia display maior,
   header em pílula e componentes interativos. Ver REDESIGN-PLANO.md.
   ========================================================================== */

:root {
  /* Marca */
  --navy: #151F42;
  --navy-deep: #0B1229;   /* base do hero, manifesto e CTA — mais profundo que o navy */
  --navy-800: #1C2A56;
  --navy-700: #24356B;
  --blue: #4165DB;
  --blue-dark: #3552B8;
  --purple: #AE67B1;
  --purple-dark: #8E4A93;
  --blue-tint: #E3E8FA;
  --purple-tint: #F3E9F4;

  /* Texto sobre fundo escuro (um único conjunto, usado em todas as seções dark) */
  --on-dark: #EEF1FA;
  --on-dark-muted: #A8B3D4;
  --on-dark-soft: #C3CBE4;
  --on-dark-line: rgba(255,255,255,.12);

  /* Neutros */
  --ink: #0F1730;
  --ink-muted: #5B6480;
  --border: #D8DEF0;
  --surface: #FFFFFF;
  --surface-alt: #F6F8FE;

  /* Semânticos */
  --success: #1E9E6A;
  --warning: #D68910;
  --danger: #D14343;

  --gradient: linear-gradient(90deg, #4165DB 0%, #AE67B1 100%);
  --gradient-soft: linear-gradient(135deg, rgba(65,101,219,.12) 0%, rgba(174,103,177,.12) 100%);
  --gradient-bright: linear-gradient(90deg, #7E9BFF 0%, #D48FD7 100%);

  /* Tipografia */
  --font-display: 'Space Grotesk', ui-sans-serif, system-ui, sans-serif;
  --font-body: 'Inter', ui-sans-serif, system-ui, -apple-system, sans-serif;
  --font-mono: 'JetBrains Mono', ui-monospace, monospace;

  /* Raio e sombra */
  --r-sm: 8px;
  --r-md: 12px;
  --r-lg: 20px;
  --shadow-sm: 0 1px 2px rgba(15,23,48,.06), 0 2px 8px rgba(15,23,48,.04);
  --shadow-md: 0 4px 12px rgba(15,23,48,.08), 0 12px 32px rgba(15,23,48,.06);
  --shadow-lg: 0 12px 32px rgba(15,23,48,.12), 0 24px 64px rgba(21,31,66,.14);

  --wrap: 1160px;
  --header-h: 64px;
  --header-gap: 14px;   /* distância da pílula ao topo da janela */
}

/* ------------------------------------------------------------------ reset */

*, *::before, *::after { box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + var(--header-gap) + 16px);
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--surface);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img, svg { max-width: 100%; height: auto; display: block; }
a { color: var(--blue-dark); text-decoration: none; }
a:hover { text-decoration: underline; }
ul, ol { margin: 0; padding: 0; }
button { font: inherit; cursor: pointer; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  line-height: 1.12;
  letter-spacing: -.025em;
  margin: 0 0 .5em;
  font-weight: 600;
}

h1 { font-size: clamp(2.35rem, 6vw, 4.1rem); letter-spacing: -.035em; }
h2 { font-size: clamp(1.85rem, 4.2vw, 2.85rem); letter-spacing: -.03em; }
h3 { font-size: 1.28rem; }
p  { margin: 0 0 1.1em; }
p:last-child { margin-bottom: 0; }

:focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: 3px;
  border-radius: 4px;
}
.section-dark :focus-visible,
.hero :focus-visible,
.cta-band :focus-visible { outline-color: #9FB2F0; }

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 999;
  background: var(--navy); color: #fff; padding: 12px 20px; border-radius: 0 0 var(--r-sm) 0;
}
.skip-link:focus { left: 0; }

/* --------------------------------------------------------------- utilities */

.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: 24px; }

section { padding: clamp(64px, 9vw, 132px) 0; }
section.tight { padding: clamp(40px, 5vw, 64px) 0; }

.section-alt { background: var(--surface-alt); }
.section-dark { background: var(--navy); color: var(--on-dark); }
.section-dark h1, .section-dark h2, .section-dark h3 { color: #fff; }
.section-dark p { color: var(--on-dark-soft); }
.section-dark a { color: #fff; }

/* Fundo escuro profundo com brilho da marca — hero, manifesto e CTA final */
.section-deep { background: var(--navy-deep); color: var(--on-dark); position: relative; overflow: hidden; }
.section-deep h1, .section-deep h2, .section-deep h3 { color: #fff; }
.section-deep p { color: var(--on-dark-soft); }
.section-deep .wrap { position: relative; z-index: 1; }

.glow::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(900px 480px at 15% -12%, rgba(65,101,219,.42), transparent 62%),
    radial-gradient(720px 420px at 85% 6%, rgba(174,103,177,.32), transparent 64%);
}

.eyebrow {
  font-family: var(--font-mono);
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--blue-dark);
  margin: 0 0 14px;
  display: block;
}
.section-dark .eyebrow, .section-deep .eyebrow { color: #9FB2F0; }

.section-head { max-width: 680px; margin-bottom: clamp(40px, 5vw, 60px); }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head p { font-size: 1.09rem; color: var(--ink-muted); margin-bottom: 0; }
.section-dark .section-head p, .section-deep .section-head p { color: var(--on-dark-muted); }

.lead { font-size: 1.15rem; color: var(--ink-muted); }
.gradient-text {
  background: var(--gradient);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}
.section-dark .gradient-text, .section-deep .gradient-text, .hero .gradient-text {
  background: var(--gradient-bright);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.muted { color: var(--ink-muted); }
.center { text-align: center; }
.mt-3 { margin-top: 28px; }
.mt-4 { margin-top: 40px; }

/* ---------------------------------------------------------------- buttons */

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  padding: 15px 30px;
  font-family: var(--font-body); font-size: 1rem; font-weight: 600;
  border: 1.5px solid transparent; border-radius: var(--r-sm);
  cursor: pointer; text-decoration: none; white-space: nowrap;
  transition: transform .16s ease, box-shadow .16s ease, background .16s ease, color .16s ease;
}
.btn:hover { text-decoration: none; }

.btn-primary { background: var(--gradient); color: #fff; box-shadow: 0 4px 14px rgba(65,101,219,.3); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 22px rgba(65,101,219,.4); color: #fff; }

.btn-outline { border-color: var(--border); color: var(--ink); background: transparent; }
.btn-outline:hover { border-color: var(--blue); color: var(--blue-dark); background: var(--blue-tint); }

/* Em qualquer fundo escuro o contorno precisa inverter, senão o texto some */
.section-dark .btn-outline,
.section-deep .btn-outline,
.hero .btn-outline,
.cta-band .btn-outline { border-color: rgba(255,255,255,.38); color: #fff; }

.section-dark .btn-outline:hover,
.section-deep .btn-outline:hover,
.hero .btn-outline:hover,
.cta-band .btn-outline:hover { border-color: #fff; background: rgba(255,255,255,.12); color: #fff; }

.btn-sm { padding: 11px 20px; font-size: .93rem; }
.btn-lg { padding: 17px 38px; font-size: 1.06rem; }
.btn-block { width: 100%; }

.btn-group { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
.btn-group.center { justify-content: center; }

/* ----------------------------------------------------------------- header */

/* Pílula flutuante escura. Fica igual em todas as páginas porque todas abrem
   com hero escuro — assim o header nunca precisa trocar de tema no meio. */
.site-header {
  position: fixed; top: var(--header-gap); left: 0; right: 0; z-index: 100;
  padding-inline: 16px;
  transition: top .25s ease;
}

.header-inner {
  max-width: var(--wrap); margin-inline: auto;
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px; min-height: var(--header-h);
  padding: 8px 10px 8px 22px;
  background: rgba(13,20,45,.62);
  backdrop-filter: saturate(170%) blur(16px);
  -webkit-backdrop-filter: saturate(170%) blur(16px);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 999px;
  box-shadow: 0 10px 34px rgba(5,9,24,.26);
  transition: background .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.site-header.is-scrolled .header-inner {
  background: rgba(9,15,35,.9);
  border-color: rgba(255,255,255,.14);
  box-shadow: 0 12px 40px rgba(5,9,24,.42);
}

/* Sem backdrop-filter (Firefox antigo) o texto branco ficaria sobre transparente */
@supports not ((backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))) {
  .header-inner { background: rgba(9,15,35,.94); }
}

.brand { display: flex; align-items: center; flex-shrink: 0; }
.brand:hover { text-decoration: none; }
.brand img { width: 138px; height: auto; }

.site-nav { display: flex; align-items: center; gap: 26px; }
.site-nav > ul { display: flex; align-items: center; gap: 26px; list-style: none; }
.site-nav a {
  color: var(--on-dark-soft); font-size: .93rem; font-weight: 500;
  text-decoration: none; padding: 6px 0; position: relative;
  transition: color .15s ease;
}
.site-nav > ul a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 1.5px;
  background: var(--gradient-bright); border-radius: 2px;
  transform: scaleX(0); transform-origin: left; transition: transform .2s ease;
}
.site-nav > ul a:hover { color: #fff; text-decoration: none; }
.site-nav > ul a:hover::after { transform: scaleX(1); }
.site-nav a[aria-current="page"] { color: #fff; }
.site-nav a[aria-current="page"]::after { transform: scaleX(1); }

/* Precisa de `.site-nav` no seletor: `.site-nav a` (0,1,1) vence `.nav-cta` (0,1,0)
   e zerava o padding horizontal do botão, deixando o texto colado nas bordas. */
.site-nav .nav-cta {
  padding: 11px 22px;
  color: #fff;
  flex-shrink: 0;
  border-radius: 999px;
}
.site-nav .nav-cta::after { display: none; }

.nav-toggle {
  display: none; flex-direction: column; justify-content: center; gap: 5px;
  width: 44px; height: 44px; padding: 0 11px;
  background: none; border: 1px solid rgba(255,255,255,.22); border-radius: 999px;
}
.nav-toggle span { display: block; height: 2px; background: #fff; border-radius: 2px; transition: transform .22s, opacity .22s; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ------------------------------------------------------------------- hero */

.hero {
  position: relative; overflow: hidden;
  background: var(--navy-deep); color: var(--on-dark);
  /* o header é fixo: o hero precisa reservar a altura da pílula */
  padding: calc(var(--header-h) + var(--header-gap) + clamp(48px, 7vw, 96px)) 0 clamp(56px, 7vw, 88px);
}
.hero::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(1000px 520px at 18% -14%, rgba(65,101,219,.5), transparent 62%),
    radial-gradient(820px 460px at 86% 4%, rgba(174,103,177,.36), transparent 64%);
  pointer-events: none;
}
.hero .wrap { position: relative; z-index: 1; }
.hero-inner { max-width: 940px; }
.hero h1 { color: #fff; margin-bottom: 24px; }
.hero .eyebrow { color: #9FB2F0; }
.hero-sub { font-size: clamp(1.08rem, 1.9vw, 1.3rem); color: var(--on-dark-soft); max-width: 620px; margin-bottom: 34px; }
.hero .btn-group { margin-bottom: 14px; }
.hero-note { font-size: .9rem; color: #94A0C4; margin-top: 18px; }

/* Rede de nós — assinatura gráfica da marca, desenhada em SVG e animada.
   Fica atrás do conteúdo e é puramente decorativa. */
.hero-net {
  position: absolute; top: 0; right: 0; width: min(52%, 660px); height: 100%;
  z-index: 0; pointer-events: none;
  opacity: .5;
  mask-image: linear-gradient(to left, #000 40%, transparent 100%);
  -webkit-mask-image: linear-gradient(to left, #000 40%, transparent 100%);
}
.hero-net svg { width: 100%; height: 100%; }
.hero-net line { stroke: url(#netGrad); stroke-width: 1; opacity: .34; }
.hero-net circle { fill: #9FB2F0; }

.js .hero-net line {
  stroke-dasharray: var(--len, 200);
  stroke-dashoffset: var(--len, 200);
  animation: netDraw .9s ease forwards;
  animation-delay: var(--d, 0s);
}
.js .hero-net circle {
  opacity: 0;
  animation: netPop .5s ease forwards;
  animation-delay: var(--d, 0s);
}
@keyframes netDraw { to { stroke-dashoffset: 0; } }
@keyframes netPop  { to { opacity: 1; } }

/* Pulso lento nos nós depois que a rede termina de desenhar.
   Precisa repetir `.js` e `circle` para vencer a regra genérica acima. */
.js .hero-net circle.node-pulse {
  animation: netPop .5s ease forwards, nodeGlow 4s ease-in-out infinite 1.6s;
}
@keyframes nodeGlow {
  0%, 100% { r: 3px; opacity: .85; }
  50%      { r: 4.4px; opacity: 1; }
}

/* -------------------------------------------------------------- proof bar */

.proof-bar {
  position: relative; z-index: 1;
  margin-top: clamp(44px, 6vw, 76px);
  padding-top: clamp(32px, 4vw, 44px);
  border-top: 1px solid var(--on-dark-line);
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px;
}
.proof-item .num {
  font-family: var(--font-mono); font-size: clamp(1.8rem, 3.8vw, 2.7rem);
  font-weight: 700; line-height: 1; display: block; margin-bottom: 10px;
  letter-spacing: -.05em; /* mono abre demais em rótulos como "−8 p.p." */
  background: var(--gradient-bright);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
  font-variant-numeric: tabular-nums; /* evita o número "pular" durante a contagem */
}
.proof-item .label { font-size: .89rem; color: var(--on-dark-muted); line-height: 1.45; display: block; }

/* ---------------------------------------------------------------- marquee */

/* Faixa de stack: prova de competência técnica no lugar de logos de cliente
   (os clientes da StateX não são nomeados). */
.marquee-band {
  background: var(--navy-deep);
  border-top: 1px solid var(--on-dark-line);
  padding: 26px 0;
  position: relative; overflow: hidden;
}
.marquee-band .marquee-label {
  font-family: var(--font-mono); font-size: .68rem; font-weight: 700;
  letter-spacing: .16em; text-transform: uppercase; color: #6E7BA6;
  text-align: center; margin-bottom: 18px;
}
.marquee {
  display: flex; overflow: hidden; user-select: none;
  mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
}
.marquee-track {
  display: flex; flex-shrink: 0; align-items: center; gap: 44px;
  padding-right: 44px;
  animation: marquee 38s linear infinite;
}
.marquee:hover .marquee-track { animation-play-state: paused; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-100%); } }

.marquee-item {
  font-family: var(--font-display); font-size: 1.06rem; font-weight: 500;
  color: #8F9CC4; white-space: nowrap; letter-spacing: -.01em;
  display: flex; align-items: center; gap: 10px;
  transition: color .2s ease;
}
.marquee-item::before {
  content: ""; width: 6px; height: 6px; border-radius: 50%;
  background: var(--gradient-bright); flex-shrink: 0; opacity: .7;
}
.marquee-item:hover { color: #D6DDF2; }

/* ------------------------------------------------------------------ cards */

.grid { display: grid; gap: 22px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.card {
  position: relative;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--r-md); padding: 30px;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.card h3 { margin-bottom: 10px; }
.card p { color: var(--ink-muted); font-size: .99rem; margin-bottom: 0; }
.card-link { display: block; color: inherit; }
.card-link:hover { text-decoration: none; transform: translateY(-3px); box-shadow: var(--shadow-md); }
.card .more {
  display: inline-flex; align-items: center; gap: 7px; margin-top: 18px;
  font-size: .93rem; font-weight: 600; color: var(--blue-dark);
}
.card-link:hover .more { gap: 12px; }
.card .more::after { content: "→"; transition: transform .18s ease; }

/* Borda em gradiente no hover — recorte por máscara para não pintar o miolo */
.card-link::after {
  content: ""; position: absolute; inset: 0; border-radius: inherit;
  padding: 1.5px; background: var(--gradient);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask-composite: exclude;
  opacity: 0; transition: opacity .2s ease; pointer-events: none;
}
.card-link:hover::after, .card-link:focus-visible::after { opacity: 1; }

.card-icon {
  width: 46px; height: 46px; border-radius: var(--r-sm);
  display: grid; place-items: center; margin-bottom: 18px;
  background: var(--gradient-soft); color: var(--blue-dark);
  font-family: var(--font-mono); font-size: 1rem; font-weight: 700;
  transition: background .2s ease;
}
.card-icon svg { width: 24px; height: 24px; stroke: var(--blue-dark); }
.card-link:hover .card-icon { background: linear-gradient(135deg, rgba(65,101,219,.2), rgba(174,103,177,.2)); }
.section-dark .card-icon { background: rgba(126,155,255,.16); }
.section-dark .card-icon svg { stroke: #9FB2F0; }

/* --------------------------------------------------- dores (interativas) */

/* Sem JS todas as respostas ficam abertas; com JS a resposta vem sob demanda.
   Menos texto na tela, mesmo conteúdo disponível. */
.pain-grid { list-style: none; display: grid; gap: 14px; max-width: 860px; }
.pain-item {
  background: var(--surface); border: 1px solid var(--border);
  border-left: 3px solid var(--purple); border-radius: var(--r-sm);
  overflow: hidden; transition: border-color .18s ease, box-shadow .18s ease;
}
.pain-item:hover { box-shadow: var(--shadow-sm); }
.pain-item.is-open { border-left-color: var(--blue); }
.pain-q {
  width: 100%; text-align: left; background: none; border: 0;
  padding: 22px 26px; display: flex; align-items: flex-start; gap: 18px;
  font-family: var(--font-display); font-size: 1.06rem; font-weight: 600;
  color: var(--ink); line-height: 1.35;
}
.pain-q .plus {
  margin-left: auto; flex-shrink: 0; width: 26px; height: 26px; border-radius: 50%;
  display: grid; place-items: center; background: var(--blue-tint); color: var(--blue-dark);
  font-family: var(--font-mono); font-size: 1.05rem; font-weight: 700; line-height: 1;
  transition: transform .22s ease, background .2s ease;
}
.pain-item.is-open .plus { transform: rotate(45deg); background: var(--gradient); color: #fff; }
.pain-a { padding: 0 26px 22px 26px; color: var(--ink-muted); font-size: .99rem; max-width: 62ch; }
.js .pain-a { display: none; }
.js .pain-item.is-open .pain-a { display: block; animation: fadeUp .28s ease; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(-6px); } to { opacity: 1; transform: none; } }

/* --------------------------------------------------------------- segmentos */

/* Substitui a antiga tabela de 4 colunas: mesmo conteúdo, forma de card. */
.seg-card { display: flex; flex-direction: column; }
.seg-card .seg-kicker {
  font-family: var(--font-mono); font-size: .7rem; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase; color: var(--purple-dark);
  margin-bottom: 12px; display: block;
}
.seg-card h3 { font-size: 1.24rem; margin-bottom: 12px; }
.seg-card .seg-pain { color: var(--ink-muted); font-size: .99rem; margin-bottom: 20px; flex-grow: 1; }
.seg-chips { display: flex; flex-wrap: wrap; gap: 7px; margin-bottom: 18px; }
.seg-card .seg-where {
  font-size: .86rem; color: var(--ink-muted);
  padding-top: 16px; border-top: 1px solid var(--border);
}
.seg-card .seg-where strong { color: var(--ink); font-weight: 600; }

/* --------------------------------------------------------------- manifesto */

/* Funde o antigo comparativo em tabela com a seção "sobre o Victor":
   o argumento da operação enxuta ganha rosto. */
.manifesto {
  display: grid; grid-template-columns: .8fr 1.2fr;
  gap: clamp(36px, 5vw, 72px); align-items: center;
}
.manifesto-photo { position: relative; }
.manifesto-photo img {
  width: 100%; aspect-ratio: 4 / 5; object-fit: cover;
  border-radius: var(--r-lg); display: block;
  border: 1px solid rgba(255,255,255,.12);
}
.manifesto-photo figcaption {
  position: absolute; left: 18px; bottom: 18px; right: 18px;
  background: rgba(9,15,35,.78);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,.14); border-radius: var(--r-md);
  padding: 13px 18px;
}
.manifesto-photo .m-name { font-family: var(--font-display); font-weight: 600; color: #fff; display: block; font-size: 1rem; }
.manifesto-photo .m-role { font-size: .82rem; color: var(--on-dark-muted); display: block; }

/* O bloco serve tanto na seção escura da home quanto em página clara (/sobre) */
.manifesto-body p { font-size: 1.06rem; color: var(--ink-muted); max-width: 56ch; }
.manifesto-body .m-lead { font-size: 1.2rem; color: var(--ink); }
.section-deep .manifesto-body p, .section-dark .manifesto-body p { color: var(--on-dark-soft); }
.section-deep .manifesto-body .m-lead, .section-dark .manifesto-body .m-lead { color: #fff; }

.manifesto-stats {
  list-style: none; display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
  margin: 34px 0 0; padding-top: 28px; border-top: 1px solid var(--border);
}
.section-deep .manifesto-stats, .section-dark .manifesto-stats { border-top-color: var(--on-dark-line); }
.manifesto-stats .v {
  font-family: var(--font-mono); font-size: 1.5rem; font-weight: 700; line-height: 1;
  letter-spacing: -.04em; display: block; margin-bottom: 8px;
  background: var(--gradient-bright);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
  font-variant-numeric: tabular-nums;
}
.manifesto-stats .k { font-size: .84rem; color: var(--ink-muted); line-height: 1.4; display: block; }
.section-deep .manifesto-stats .k, .section-dark .manifesto-stats .k { color: var(--on-dark-muted); }

/* ----------------------------------------------------- método (stepper) */

.stepper { display: grid; gap: 0; }
.stepper-tabs {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
  position: relative; margin-bottom: 36px;
}
/* A linha liga o centro do primeiro ponto ao centro do último.
   Com 4 colunas de 1fr e gap de 16px, o centro do 4º ponto fica em 75% + 35px. */
.stepper-tabs::before {
  content: ""; position: absolute; left: 23px; right: calc(25% - 35px); top: 23px; height: 2px;
  background: linear-gradient(90deg, var(--blue) 0%, var(--purple) 100%);
  opacity: .25;
}
.step-tab {
  position: relative; text-align: left; background: none; border: 0; padding: 0;
  color: var(--ink-muted); transition: color .2s ease;
}
.step-tab .dot {
  width: 46px; height: 46px; border-radius: 50%; margin-bottom: 16px;
  display: grid; place-items: center; position: relative; z-index: 1;
  background: var(--surface); border: 2px solid var(--border); color: var(--ink-muted);
  font-family: var(--font-mono); font-size: .88rem; font-weight: 700;
  box-shadow: 0 0 0 6px var(--surface);
  transition: background .22s ease, color .22s ease, border-color .22s ease, transform .22s ease;
}
.section-alt .step-tab .dot { box-shadow: 0 0 0 6px var(--surface-alt); }
.step-tab .when {
  font-family: var(--font-mono); font-size: .7rem; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase; color: var(--purple-dark);
  display: block; margin-bottom: 5px;
}
.step-tab .title {
  font-family: var(--font-display); font-size: 1.1rem; font-weight: 600;
  color: var(--ink); display: block; line-height: 1.25;
}
.step-tab:hover .dot { border-color: var(--blue); transform: translateY(-2px); }
.step-tab[aria-selected="true"] .dot {
  background: var(--gradient); border-color: transparent; color: #fff;
}
.step-tab[aria-selected="true"] .title { color: var(--blue-dark); }

.step-panel {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--r-md); padding: clamp(24px, 3vw, 34px);
  max-width: 760px;
}
.step-panel h3 { font-size: 1.15rem; margin-bottom: 10px; }
.step-panel p { color: var(--ink-muted); margin-bottom: 0; }
.step-panel .out {
  margin-top: 18px; padding-top: 16px; border-top: 1px solid var(--border);
  font-size: .92rem; color: var(--ink-muted);
}
.step-panel .out strong { color: var(--ink); font-weight: 600; }
.step-tab .meta { display: block; }
.js .step-panel[hidden] { display: none; }
.js .step-panel:not([hidden]) { animation: fadeUp .3s ease; }
/* Sem JS os painéis empilham, cada um com seu próprio título — nada se perde.
   Com JS a classe `.js` esconde os títulos e o script remove os elementos. */
.step-panel + .step-panel { margin-top: 16px; }
.js .no-js-only { display: none; }

/* ------------------------------------------------------- antes → depois */

.ba { display: grid; gap: 11px; margin-top: 20px; }
.ba-row { display: grid; grid-template-columns: 52px 1fr auto; gap: 12px; align-items: center; }
.ba-label { font-size: .78rem; color: var(--ink-muted); text-transform: uppercase; letter-spacing: .06em; }
.ba-track { height: 10px; border-radius: 999px; background: #EDF1FB; overflow: hidden; }
.ba-track i {
  display: block; height: 100%; border-radius: 999px;
  background: #9AA6C8; min-width: 8px; /* precisa contrastar com o trilho */
  width: var(--w, 0%);
}
.ba-row.is-after .ba-track i { background: var(--gradient); }
/* Com JS a barra cresce quando entra em cena; sem JS já nasce no valor final */
.js .ba-track i { width: 0; transition: width 1.1s cubic-bezier(.22,.75,.3,1); }
.js .ba.is-visible .ba-track i { width: var(--w, 0%); }
.ba-val {
  font-family: var(--font-mono); font-size: .92rem; font-weight: 700;
  color: var(--ink-muted); white-space: nowrap; letter-spacing: -.03em;
}
.ba-row.is-after .ba-val { color: var(--blue-dark); }
.ba-note { font-size: .84rem; color: var(--ink-muted); margin-top: 4px; }

/* ----------------------------------------------------- linha do tempo */

.timeline { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; position: relative; }
.timeline::before {
  content: ""; position: absolute; left: 0; right: 0; top: 23px; height: 2px;
  background: linear-gradient(90deg, var(--blue) 0%, var(--purple) 100%);
  opacity: .3;
}
.tl-step { position: relative; }
.tl-dot {
  width: 46px; height: 46px; border-radius: 50%; margin-bottom: 18px;
  display: grid; place-items: center; position: relative; z-index: 1;
  background: var(--gradient); color: #fff;
  font-family: var(--font-mono); font-size: .88rem; font-weight: 700;
  box-shadow: 0 0 0 6px var(--surface);
}
.section-alt .tl-dot { box-shadow: 0 0 0 6px var(--surface-alt); }
.section-dark .tl-dot { box-shadow: 0 0 0 6px var(--navy); }
.tl-when {
  font-family: var(--font-mono); font-size: .72rem; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase; color: var(--purple-dark);
  display: block; margin-bottom: 6px;
}
.section-dark .tl-when { color: var(--purple); }
.tl-step h3 { font-size: 1.1rem; margin-bottom: 8px; }
.tl-step p { font-size: .95rem; color: var(--ink-muted); margin: 0; }
.section-dark .tl-step p { color: var(--on-dark-muted); }

/* --------------------------------------------------------- foto retrato */

.founder-photo {
  width: 100%; aspect-ratio: 1; border-radius: var(--r-md);
  object-fit: cover; margin-bottom: 22px; display: block;
}

/* Lista de dores simples (usada nas páginas internas) */
.pain-list { list-style: none; display: grid; gap: 16px; }
.pain-list li {
  display: flex; gap: 16px; align-items: flex-start;
  padding: 22px 24px; background: var(--surface);
  border: 1px solid var(--border); border-left: 3px solid var(--purple);
  border-radius: var(--r-sm);
}
.pain-list .q { font-weight: 600; display: block; margin-bottom: 5px; }
.pain-list .a { color: var(--ink-muted); font-size: .96rem; }

/* --------------------------------------------------------------- métricas */

.metric-card {
  background: var(--navy); color: #fff; border-radius: var(--r-md);
  padding: 30px; border: 1px solid var(--navy-700);
}
.metric-card .num {
  font-family: var(--font-mono); font-size: 2.1rem; font-weight: 700;
  line-height: 1; display: block; margin-bottom: 10px;
  background: var(--gradient-bright);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
  letter-spacing: -.04em; font-variant-numeric: tabular-nums;
}
.metric-card .label { color: var(--on-dark-muted); font-size: .9rem; }

/* ------------------------------------------------------------------ cases */

.case-card {
  position: relative;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--r-md); padding: 32px; display: flex; flex-direction: column;
  transition: box-shadow .18s ease, border-color .18s ease, transform .18s ease;
}
.case-card:hover { box-shadow: var(--shadow-md); border-color: var(--blue); transform: translateY(-2px); }
.case-tag {
  display: inline-block; align-self: flex-start; margin-bottom: 16px;
  padding: 5px 13px; border-radius: 999px;
  background: var(--blue-tint); color: var(--blue-dark);
  font-family: var(--font-mono); font-size: .72rem; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase;
}
.case-card h3 { font-size: 1.18rem; margin-bottom: 14px; }
.case-card > p { color: var(--ink-muted); font-size: .98rem; flex-grow: 1; }

/* ficha do caso: rótulo curto + frase, no lugar de parágrafo corrido */
.case-facts {
  margin: 22px 0 0; padding-top: 20px; border-top: 1px solid var(--border);
  display: grid; grid-template-columns: auto 1fr; gap: 10px 18px; align-items: baseline;
}
.case-facts dt {
  font-family: var(--font-mono); font-size: .68rem; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase; color: var(--purple-dark);
  white-space: nowrap;
}
.case-facts dd { margin: 0; font-size: .95rem; color: var(--ink-muted); line-height: 1.5; }
.case-facts dd strong { color: var(--ink); }

.case-metrics {
  list-style: none; display: grid; gap: 14px;
  margin-top: 22px; padding-top: 22px; border-top: 1px solid var(--border);
}
.case-metrics li { display: flex; align-items: baseline; gap: 12px; }
.case-metrics .v {
  font-family: var(--font-mono); font-size: 1.4rem; font-weight: 700;
  color: var(--blue-dark); line-height: 1; flex-shrink: 0; min-width: 88px;
  letter-spacing: -.04em;
}
.case-metrics .k { font-size: .92rem; color: var(--ink-muted); line-height: 1.4; }

/* ------------------------------------------------------- filtro de cases */

/* Sem JS o filtro não funcionaria — melhor não mostrar botão morto */
.filter-bar { display: none; }
.js .filter-bar {
  display: flex; flex-wrap: wrap; gap: 10px; align-items: center;
  margin-bottom: 34px;
}
.filter-btn {
  padding: 9px 18px; border-radius: 999px;
  background: var(--surface); border: 1.5px solid var(--border);
  font-family: var(--font-mono); font-size: .76rem; font-weight: 700;
  letter-spacing: .06em; text-transform: uppercase; color: var(--ink-muted);
  transition: border-color .18s ease, color .18s ease, background .18s ease;
}
.filter-btn:hover { border-color: var(--blue); color: var(--blue-dark); }
.filter-btn[aria-pressed="true"] {
  background: var(--gradient); border-color: transparent; color: #fff;
}
.filter-empty { color: var(--ink-muted); font-size: .98rem; }
[data-filterable][hidden] { display: none; }

/* ------------------------------------------------------------ comparativo */

.chip {
  display: inline-block; padding: 4px 11px;
  border-radius: 999px; background: var(--blue-tint); color: var(--blue-dark);
  font-family: var(--font-mono); font-size: .72rem; font-weight: 700;
  letter-spacing: .02em; white-space: nowrap;
}

.table-scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; }

/* ----------------------------------------------------------------- etapas */

.steps { list-style: none; counter-reset: s; display: grid; gap: 22px; }
.step {
  counter-increment: s; position: relative; padding-left: 68px;
}
.step::before {
  content: "0" counter(s);
  position: absolute; left: 0; top: 0;
  width: 46px; height: 46px; border-radius: var(--r-sm);
  display: grid; place-items: center;
  background: var(--gradient); color: #fff;
  font-family: var(--font-mono); font-size: .92rem; font-weight: 700;
}
.step h3 { margin-bottom: 7px; }
.step p { color: var(--ink-muted); font-size: .99rem; margin-bottom: 0; }
.section-dark .step p { color: var(--on-dark-muted); }

/* -------------------------------------------------------------------- faq */

.faq { display: grid; gap: 12px; max-width: 820px; margin-inline: auto; }
.faq-item { border: 1px solid var(--border); border-radius: var(--r-sm); background: var(--surface); overflow: hidden; transition: border-color .18s ease; }
.faq-item[open] { border-color: var(--blue); }
.faq-item summary {
  list-style: none; cursor: pointer; padding: 21px 26px;
  font-family: var(--font-display); font-size: 1.03rem; font-weight: 600;
  display: flex; justify-content: space-between; align-items: center; gap: 20px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+"; font-family: var(--font-mono); font-size: 1.4rem;
  color: var(--blue); flex-shrink: 0; transition: transform .2s ease;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item[open] summary { border-bottom: 1px solid var(--border); }
.faq-answer { padding: 20px 26px 24px; color: var(--ink-muted); font-size: .99rem; }

/* ------------------------------------------------------------------- listas */

.check-list { list-style: none; display: grid; gap: 13px; }
.check-list li { display: flex; gap: 13px; align-items: flex-start; font-size: 1rem; }
.check-list li::before {
  content: "✓"; flex-shrink: 0; margin-top: 1px;
  width: 22px; height: 22px; border-radius: 50%;
  display: grid; place-items: center; font-size: .74rem; font-weight: 700;
  background: var(--blue-tint); color: var(--blue-dark);
}
.section-dark .check-list li::before,
.section-deep .check-list li::before { background: rgba(126,155,255,.22); color: #9FB2F0; }
.section-dark .check-list li, .section-deep .check-list li { color: var(--on-dark-soft); }

.x-list { list-style: none; display: grid; gap: 13px; }
.x-list li { display: flex; gap: 13px; align-items: flex-start; color: var(--ink-muted); }
.x-list li::before {
  content: "×"; flex-shrink: 0; margin-top: 1px;
  width: 22px; height: 22px; border-radius: 50%;
  display: grid; place-items: center; font-size: .9rem; font-weight: 700;
  background: #F1E4E4; color: var(--danger);
}

.tag-list { list-style: none; display: flex; flex-wrap: wrap; gap: 10px; }
.tag-list li {
  padding: 8px 15px; border: 1px solid var(--border); border-radius: 999px;
  font-size: .89rem; color: var(--ink-muted); background: var(--surface);
}

/* ------------------------------------------------------------------ split */

.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 5vw, 68px); align-items: center; }
.split.narrow-left { grid-template-columns: .85fr 1.15fr; }

.founder-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--r-lg); padding: 34px; box-shadow: var(--shadow-sm);
}

/* --------------------------------------------------------------- callout */

.callout {
  background: var(--gradient-soft); border: 1px solid var(--blue-tint);
  border-radius: var(--r-md); padding: 28px 32px;
}
.callout p:last-child { margin-bottom: 0; }

/* --------------------------------------------------------------- cta band */

.cta-band {
  position: relative; overflow: hidden;
  background: var(--navy-deep); color: var(--on-dark); text-align: center;
  padding: clamp(64px, 8vw, 108px) 0;
}
.cta-band::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(820px 440px at 50% 0%, rgba(65,101,219,.46), transparent 66%),
              radial-gradient(640px 360px at 82% 100%, rgba(174,103,177,.34), transparent 66%);
}
.cta-band .wrap { position: relative; z-index: 1; }
.cta-band h2 { color: #fff; max-width: 760px; margin-inline: auto; }
.cta-band p { color: var(--on-dark-soft); max-width: 580px; margin-inline: auto; margin-bottom: 30px; }

/* ----------------------------------------------------------------- forms */

.form-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--r-lg); padding: clamp(26px, 4vw, 40px); box-shadow: var(--shadow-md);
}
.field { margin-bottom: 19px; }
.field label { display: block; font-size: .92rem; font-weight: 600; margin-bottom: 7px; }
.field .hint { font-weight: 400; color: var(--ink-muted); }
.field input, .field select, .field textarea {
  width: 100%; padding: 13px 15px; font: inherit; font-size: 1rem;
  color: var(--ink); background: var(--surface);
  border: 1.5px solid var(--border); border-radius: var(--r-sm);
  transition: border-color .15s, box-shadow .15s;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--blue); box-shadow: 0 0 0 3px rgba(65,101,219,.14);
}
.field textarea { min-height: 116px; resize: vertical; }
.field-error { color: var(--danger); font-size: .87rem; margin-top: 6px; display: none; }
.field.has-error input, .field.has-error select { border-color: var(--danger); }
.field.has-error .field-error { display: block; }

.consent { display: flex; gap: 11px; align-items: flex-start; font-size: .89rem; color: var(--ink-muted); }
.consent input { width: auto; margin-top: 3px; flex-shrink: 0; }

/* O checkbox não tem borda para colorir — sinaliza o erro no bloco inteiro */
.field.has-error .consent { color: var(--danger); }
.field.has-error .consent input { outline: 2px solid var(--danger); outline-offset: 2px; }

.form-note { font-size: .87rem; color: var(--ink-muted); margin-top: 16px; text-align: center; }

/* armadilha anti-spam: fora da tela, mas ainda preenchível por bot */
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.form-fail {
  margin-top: 16px; padding: 13px 16px; border-radius: var(--r-sm);
  background: #FBEDED; border: 1px solid #E9C6C6;
  color: #8E2C2C; font-size: .9rem;
}
.form-fail a { color: #8E2C2C; text-decoration: underline; }

/* ---------------------------------------------------------------- footer */

.site-footer { background: var(--navy-deep); color: var(--on-dark-soft); padding: clamp(48px, 6vw, 76px) 0 30px; }
.footer-grid { display: grid; grid-template-columns: 2.1fr 1fr 1fr 1fr; gap: 40px; }
.footer-brand p { font-size: .95rem; color: var(--on-dark-muted); margin: 20px 0 0; max-width: 330px; }
.footer-contact { margin-top: 16px !important; }
.footer-contact a { color: #fff; font-weight: 500; }
.site-footer h3 {
  font-size: .78rem; font-family: var(--font-mono); font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase; color: #7F8CB4; margin-bottom: 16px;
}
.site-footer ul { list-style: none; display: grid; gap: 11px; }
.site-footer ul a { color: var(--on-dark-soft); font-size: .95rem; text-decoration: none; }
.site-footer ul a:hover { color: #fff; text-decoration: underline; }

.footer-bottom {
  margin-top: 48px; padding-top: 26px; border-top: 1px solid var(--on-dark-line);
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 14px;
  font-size: .88rem; color: #8C97BC;
}
.footer-bottom p { margin: 0; }
.footer-bottom a { color: #8C97BC; }

/* ------------------------------------------------------------- whatsapp */

.wa-float {
  position: fixed; right: 22px; bottom: 22px; z-index: 90;
  width: 56px; height: 56px; border-radius: 50%;
  display: grid; place-items: center;
  background: #25D366; color: #fff;
  box-shadow: 0 6px 20px rgba(37,211,102,.4);
  transition: transform .18s ease;
}
.wa-float:hover { transform: scale(1.08); }

/* ------------------------------------------------------------- animação */

/* Só esconde se o JS estiver rodando (a classe .js é adicionada no <head>).
   Sem JS, ou se o script falhar, o conteúdo continua visível. */
.js .reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s ease, transform .6s ease; }
.js .reveal.is-visible { opacity: 1; transform: none; }

/* Entrada em cascata: os filhos diretos entram um a um */
.js .reveal-group > * { opacity: 0; transform: translateY(20px); transition: opacity .55s ease, transform .55s ease; }
.js .reveal-group.is-visible > * { opacity: 1; transform: none; }
.js .reveal-group.is-visible > *:nth-child(1) { transition-delay: 0s; }
.js .reveal-group.is-visible > *:nth-child(2) { transition-delay: .07s; }
.js .reveal-group.is-visible > *:nth-child(3) { transition-delay: .14s; }
.js .reveal-group.is-visible > *:nth-child(4) { transition-delay: .21s; }
.js .reveal-group.is-visible > *:nth-child(5) { transition-delay: .28s; }
.js .reveal-group.is-visible > *:nth-child(6) { transition-delay: .35s; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  .reveal, .reveal-group > * { opacity: 1 !important; transform: none !important; }
  .marquee-track { animation: none; }
  .js .ba-track i { width: var(--w, 0%); transition: none; }
  .hero-net line { stroke-dashoffset: 0 !important; }
  .hero-net circle { opacity: 1 !important; }
}

/* ---------------------------------------------------------- responsivo */

@media (max-width: 1000px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .proof-bar { grid-template-columns: repeat(2, 1fr); gap: 30px 24px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .footer-brand { grid-column: 1 / -1; }
  .manifesto { grid-template-columns: 1fr; gap: 40px; }
  .manifesto-photo { max-width: 380px; }
  .hero-net { opacity: .3; width: 60%; }
}

@media (max-width: 860px) {
  .grid-3, .grid-2 { grid-template-columns: 1fr; }
  .timeline { grid-template-columns: 1fr; gap: 28px; }
  .timeline::before { left: 22px; right: auto; top: 0; bottom: 0; width: 2px; height: auto;
    background: linear-gradient(180deg, var(--blue) 0%, var(--purple) 100%); }
  .tl-step { padding-left: 66px; }
  .tl-dot { position: absolute; left: 0; top: 0; margin: 0; }
  .split, .split.narrow-left { grid-template-columns: 1fr; }

  /* Stepper vira lista vertical: os títulos empilham e o painel vem abaixo */
  .stepper-tabs { grid-template-columns: 1fr 1fr; gap: 20px 14px; }
  .stepper-tabs::before { display: none; }
  .step-tab .dot { box-shadow: none; margin-bottom: 12px; }

  .nav-toggle { display: flex; }
  .site-nav {
    position: absolute; top: calc(100% + 10px); left: 0; right: 0; z-index: 99;
    flex-direction: column; align-items: stretch; gap: 0;
    /* Opaco de propósito: com fundo translúcido o texto do hero vaza atrás do menu */
    background: #0A0F23;
    border: 1px solid rgba(255,255,255,.12); border-radius: var(--r-lg);
    box-shadow: 0 18px 50px rgba(5,9,24,.5); padding: 10px 22px 22px;
    max-height: calc(100vh - var(--header-h) - 40px); overflow-y: auto;
    transform: translateY(-10px); opacity: 0; visibility: hidden;
    transition: opacity .2s ease, transform .2s ease, visibility .2s;
  }
  .site-nav.is-open { transform: none; opacity: 1; visibility: visible; }
  .site-nav > ul { flex-direction: column; align-items: stretch; gap: 0; }
  .site-nav > ul li { border-bottom: 1px solid rgba(255,255,255,.1); }
  .site-nav > ul a { display: block; padding: 15px 0; font-size: 1.02rem; }
  .site-nav > ul a::after { display: none; }
  .nav-cta { margin-top: 20px; width: 100%; padding: 15px 20px; font-size: 1rem; }

  /* A pílula precisa ser o contexto de posicionamento do menu aberto */
  .header-inner { position: relative; }
}

@media (max-width: 560px) {
  body { font-size: 16px; }
  .grid-4 { grid-template-columns: 1fr; }
  .proof-bar { grid-template-columns: 1fr 1fr; gap: 26px 20px; }
  .btn-group { flex-direction: column; align-items: stretch; }
  .btn { width: 100%; }
  .card, .case-card, .metric-card { padding: 24px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; }
  .hero-net { display: none; }
  .case-metrics .v { min-width: 76px; font-size: 1.25rem; }
  .case-facts { grid-template-columns: 1fr; gap: 4px 0; }
  .case-facts dd { margin-bottom: 12px; }
  .ba-row { grid-template-columns: 46px 1fr; }
  .ba-val { grid-column: 2; margin-top: -4px; }
  .stepper-tabs { grid-template-columns: 1fr; gap: 16px; }
  .step-tab { display: flex; align-items: center; gap: 16px; }
  .step-tab .dot { margin-bottom: 0; flex-shrink: 0; width: 40px; height: 40px; }
  .manifesto-stats { grid-template-columns: 1fr; gap: 18px; }
  .pain-q { padding: 18px 20px; font-size: 1rem; gap: 12px; }
  .pain-a { padding: 0 20px 20px; }
  .brand img { width: 118px; }
  .header-inner { padding-left: 18px; }
}

/* ------------------------------------------------------------------ print */

@media print {
  .site-header, .site-footer, .wa-float, .cta-band, .btn, .marquee-band { display: none !important; }
  body { color: #000; font-size: 12pt; }
  .js .reveal, .js .reveal-group > * { opacity: 1 !important; transform: none !important; }
  .js .pain-a, .js .step-panel[hidden] { display: block !important; }
}
