/* CHANGELOG (anim brief — 2026-05-27):
   - Count-up dramatic state: .stat-cell.is-counting / .is-counted (Task 3)
   - VSL .vsl-thumb-glow idle "breathing" + hover lift (Task 5)
   - prefers-reduced-motion guards on all new motion

   CHANGELOG (secao-3 + tabela-mobile — 2026-05-27):
   - Section 3 (.why-not): redesign editorial "litania"
       · .why-grid (5-col card grid) removed → replaced by .why-litany (single-column
         rhythmic stanzas with hanging roman + tag, italic pull-quote, mono kicker)
       · respeita prefers-reduced-motion via .reveal infra
   - Section 4.5 mobile (.compare-table-mobile): refinamento premium
       · badge "★ Recomendado" absolutamente posicionada acima do header Côgo
       · coluna Côgo com bg deep cream-on-deep, borda clay e sombra de elevação
       · marks ✓/✕/~ em pílulas sage/coral/cinza com border
       · metadata separada da checklist por dashed border + bg cream-warm + mono
       · CTA movido pra dentro da última linha da coluna Côgo (full-width da coluna)
       · labels em Instrument Serif italic, valores em Geist, mais respiro vertical
*/
/* ============================================================
   Section-specific styles
   ============================================================ */

/* ----------------------- HERO ----------------------- */
.hero {
  background: var(--cream);
  padding-top: clamp(28px, 4vw, 64px);
  padding-bottom: clamp(36px, 4vw, 56px);
  position: relative;
  overflow: hidden;
}
@media (max-width: 920px) {
  .hero { padding-bottom: 36px; }
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  column-gap: clamp(40px, 5vw, 80px);
  row-gap: 0;
  align-items: start;
  grid-template-areas:
    "eyebrow vsl"
    "title   vsl"
    "pills   vsl"
    "sub     vsl"
    "cta     vsl"
    "filter  vsl"
    "trust   trust";
}
.hero-grid > * { min-width: 0; }
.hero-grid .hero-eyebrow { grid-area: eyebrow; }
.hero-grid .hero-h1 { grid-area: title; }
.hero-grid .benefit-pills { grid-area: pills; }
.hero-grid .hero-visual {
  grid-area: vsl;
  align-self: center;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

/* Pre-text acima/abaixo da VSL */
.vsl-pretext {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(17px, 4.4vw, 22px);
  line-height: 1.25;
  color: var(--ink);
  text-align: center;
  margin: 0;
  letter-spacing: -0.01em;
}
.vsl-pretext em {
  color: var(--clay);
  font-style: italic;
}
.vsl-pretext-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--clay);
  flex-shrink: 0;
  animation: pulse 1.8s ease-in-out infinite;
}

/* Desktop: pretext fica ABAIXO da VSL */
@media (min-width: 921px) {
  .hero-grid .hero-visual .vsl { order: 1; }
  .hero-grid .hero-visual .vsl-pretext { order: 2; }
}
.hero-grid .hero-sub { grid-area: sub; }
.hero-grid .hero-cta-row { grid-area: cta; }
.hero-grid .hero-filter { grid-area: filter; }
.hero-grid .hero-trust { grid-area: trust; }

.hero-filter {
  margin: var(--s5) 0 0 0;
  padding-top: var(--s4);
  border-top: 1px dashed var(--line-strong);
  font-size: 12.5px;
  color: var(--fg-3);
  font-family: var(--font-mono);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  max-width: 56ch;
}

@media (max-width: 920px) {
  .hero-grid {
    grid-template-columns: 1fr;
    column-gap: 0;
    justify-items: center;
    text-align: center;
    grid-template-areas:
      "title"
      "pills"
      "sub"
      "vsl"
      "cta"
      "filter"
      "trust";
  }
  .hero-grid .hero-eyebrow { display: none; }
  .hero-grid .hero-h1,
  .hero-grid .hero-sub,
  .hero-grid .hero-filter {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }
  .hero-grid .hero-sub { margin-top: 4px; margin-bottom: var(--s4); }
  .hero-grid .benefit-pills {
    justify-content: center;
  }
  .hero-grid .hero-sub .filter-line {
    text-align: center;
  }
  .hero-grid .hero-visual,
  .hero-grid .hero-cta-row,
  .hero-grid .hero-trust {
    justify-self: stretch;
    width: 100%;
  }
  .hero-grid .hero-cta-row {
    justify-content: center;
  }
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 14px;
  background: rgba(201, 122, 74, 0.1);
  border: 1px solid rgba(201, 122, 74, 0.25);
  border-radius: 999px;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--clay);
  margin-bottom: var(--s5);
  width: max-content;
  max-width: 100%;
}
.hero-eyebrow .dot {
  width: 6px; height: 6px; border-radius: 999px; background: var(--clay);
  animation: pulse 1.8s ease-in-out infinite;
}
.hero-h1 {
  font-size: clamp(38px, 5.2vw, 72px);
  line-height: 0.98;
  letter-spacing: -0.022em;
  margin: 0 0 var(--s5) 0;
  text-wrap: balance;
}
@media (max-width: 920px) {
  .hero-h1 {
    font-size: clamp(36px, 9.5vw, 52px);
    margin-bottom: var(--s4);
    text-wrap: pretty;
    width: 100%;
    max-width: 100%;
    padding: 0 4px;
  }
  .hero-eyebrow {
    margin-bottom: var(--s4);
    width: 100%;
    max-width: 100%;
    white-space: normal;
    font-size: 10px;
    letter-spacing: 0.08em;
    line-height: 1.35;
    text-align: center;
    justify-content: center;
  }
}
.hero-h1 .accent { font-style: italic; color: var(--clay); }
.hero-h1 .underline {
  background-image: linear-gradient(transparent 62%, rgba(201,122,74,0.25) 62%, rgba(201,122,74,0.25) 92%, transparent 92%);
  padding: 0 4px;
}

/* Benefit pills (3) */
.benefit-pills {
  list-style: none;
  padding: 0;
  margin: 0 0 var(--s6) 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.benefit-pills li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px 8px 10px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.4);
  font-family: var(--font-body);
  font-size: 13.5px;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -0.005em;
}
.benefit-pills .pill-ic {
  width: 24px; height: 24px;
  border-radius: 999px;
  background: var(--clay);
  color: #fff8ef;
  display: grid; place-items: center;
  flex-shrink: 0;
}
.benefit-pills .pill-ic svg { width: 14px; height: 14px; stroke-width: 1.8; }
@media (max-width: 920px) {
  .benefit-pills {
    margin-bottom: 14px;
    flex-wrap: nowrap;
    gap: 4px;
    width: 100%;
    justify-content: center;
  }
  .benefit-pills li {
    font-size: 9.5px;
    padding: 4px 8px 4px 4px;
    gap: 4px;
    letter-spacing: -0.02em;
    white-space: nowrap;
    flex-shrink: 1;
    min-width: 0;
  }
  .benefit-pills .pill-ic { width: 14px; height: 14px; }
  .benefit-pills .pill-ic svg { width: 8px; height: 8px; }
}
@media (max-width: 380px) {
  .benefit-pills li { font-size: 8.7px; padding: 4px 6px 4px 3px; gap: 3px; }
  .benefit-pills .pill-ic { width: 13px; height: 13px; }
  .benefit-pills .pill-ic svg { width: 8px; height: 8px; }
}

/* Sub + filter line */
.hero-sub {
  font-size: clamp(15px, 1.2vw, 17px);
  line-height: 1.55;
  color: var(--fg-2);
  margin: var(--s5) 0 var(--s5) 0;
  max-width: 56ch;
}
.hero-sub .filter-line {
  display: block;
  margin-top: var(--s3);
  padding-top: var(--s3);
  border-top: 1px dashed var(--line-strong);
  font-size: 12.5px;
  color: var(--fg-3);
  font-family: var(--font-mono);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* Dual CTA */
.hero-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s3);
  align-items: center;
  margin: 0;
}
@media (max-width: 920px) {
  .hero-cta-row { width: 100%; gap: 10px; margin-top: 18px; }
  .hero-cta-row .btn {
    flex: 1 1 auto;
    min-width: 0;
    white-space: normal;       /* deixa o texto quebrar em vez de forçar largura */
    padding: 15px 26px;        /* respiro horizontal pro texto não colar na borda */
    font-size: 15px;
    line-height: 1.3;
    gap: 8px;
    text-align: center;
  }
  /* ícones visíveis no mobile (igual desktop); alinhados ao topo pra não
     ficarem centralizados verticalmente quando o texto quebra em 2 linhas */
  .hero-cta-row .btn { align-items: center; }
  .hero-cta-row .btn .ic { flex: 0 0 auto; }
}

/* Trust strip */
.hero-trust {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--s4) var(--s5);
  margin-top: var(--s7);
  padding-top: var(--s5);
  border-top: 1px solid var(--line);
}
@media (max-width: 920px) {
  .hero-trust {
    grid-template-columns: repeat(4, 1fr);
    gap: 14px 10px;
    margin-top: var(--s5);
    padding-top: var(--s4);
  }
}
@media (max-width: 380px) {
  .hero-trust { gap: 12px 6px; }
}
.hero-trust-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
  align-items: center;
  text-align: center;
}
.hero-trust-item .num {
  font-family: var(--font-display);
  font-size: 28px;
  line-height: 1;
  letter-spacing: -0.01em;
}
.hero-trust-item .lbl {
  font-family: var(--font-mono);
  font-size: 10.5px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--fg-3);
  line-height: 1.3;
}
@media (max-width: 920px) {
  .hero-trust-item .num { font-size: 22px; }
  .hero-trust-item .lbl { font-size: 8.5px; letter-spacing: 0.06em; }
}

/* ----- VSL ----- */
.vsl {
  position: relative;
  width: 100%;
  max-width: 330px;
  margin: 0 auto;
  align-self: center;
  border-radius: 18px;
  overflow: hidden;
  background: var(--deep);
  box-shadow: 0 30px 60px -20px rgba(15, 26, 23, 0.4), 0 12px 30px -10px rgba(15, 26, 23, 0.25);
}
@media (max-width: 920px) {
  .vsl {
    max-width: 300px;
    margin: 4px auto 0;
    border-radius: 14px;
  }
}
.vsl-iframe {
  width: 100%;
  aspect-ratio: 9 / 16;
  height: auto;
  border: 0;
  display: block;
}
.vsl-thumb {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(60% 50% at 78% 20%, rgba(201,122,74,0.32) 0%, transparent 60%),
    radial-gradient(80% 60% at 15% 85%, rgba(122,148,131,0.18) 0%, transparent 60%),
    linear-gradient(180deg, #182723 0%, #0f1a17 80%);
}
.vsl-thumb-glow {
  position: absolute;
  top: 32%; left: 50%;
  transform: translate(-50%, -50%);
  width: 260px; height: 260px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(201, 122, 63, 0.32) 0%, rgba(201, 122, 63, 0.12) 35%, transparent 70%);
  filter: blur(8px);
}
.vsl-thumb-grain {
  position: absolute;
  inset: 0;
  opacity: 0.4;
  mix-blend-mode: overlay;
  background-image: radial-gradient(rgba(235,226,204,0.05) 1px, transparent 1px);
  background-size: 3px 3px;
}
.vsl-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 22px;
  z-index: 2;
  pointer-events: none;
}
@media (max-width: 920px) { .vsl-overlay { padding: 16px; } }
.vsl-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
}
.vsl-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(235,226,204,0.18);
  backdrop-filter: blur(10px);
  padding: 6px 12px;
  border-radius: 999px;
  font-family: var(--font-mono);
  font-size: 10.5px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--cream);
}
.vsl-badge .live-dot {
  width: 7px; height: 7px; border-radius: 999px;
  background: var(--clay);
  box-shadow: 0 0 0 0 rgba(201,122,74,0.6);
  animation: pulse 1.6s ease-in-out infinite;
}
.vsl-duration {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cream);
  background: rgba(0,0,0,0.45);
  border: 1px solid rgba(235,226,204,0.18);
  padding: 6px 10px;
  border-radius: 6px;
}
.vsl-play {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 88px; height: 88px;
  border-radius: 999px;
  background: var(--cream);
  display: grid;
  place-items: center;
  z-index: 3;
  border: 0;
  box-shadow: 0 16px 44px rgba(0,0,0,0.45);
  cursor: pointer;
  transition: transform 0.2s, background 0.2s;
}
@media (max-width: 920px) { .vsl-play { width: 72px; height: 72px; } }
.vsl-play::before {
  content: "";
  position: absolute;
  inset: -8px;
  border-radius: 999px;
  border: 1px solid rgba(244,237,224,0.45);
}
.vsl-play:hover { transform: translate(-50%, -50%) scale(1.06); background: #fff; }
.vsl-play svg { width: 26px; height: 26px; color: var(--ink); margin-left: 4px; }
.vsl-title {
  align-self: flex-start;
  color: var(--cream);
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(22px, 2.4vw, 30px);
  line-height: 1.12;
  letter-spacing: -0.012em;
  max-width: 92%;
  margin: 0;
}
.vsl-title em { font-style: italic; }
.vsl-title .vsl-title-accent { color: var(--clay-soft); font-style: italic; }
.vsl-title small {
  display: block;
  margin-top: 10px;
  font-family: var(--font-mono);
  font-size: 10.5px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(235,226,204,0.6);
  font-style: normal;
}
@media (max-width: 920px) {
  .vsl-title { font-size: clamp(18px, 4.6vw, 24px); }
  .vsl-title small { margin-top: 6px; font-size: 9.5px; }
}

/* ----------------------- SECTION 2: Identificação ----------------------- */
.identify {
  background: var(--cream);
}
.identify-grid {
  display: grid;
  grid-template-columns: minmax(0, 320px) 1fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: start;
}
@media (max-width: 920px) { .identify-grid { grid-template-columns: 1fr; gap: 32px; } }
.identify-count {
  position: sticky;
  top: 96px;
}
@media (max-width: 920px) {
  .identify-count { position: static; top: auto; }
}
.identify-count .num {
  font-family: var(--font-display);
  font-size: clamp(72px, 9vw, 132px);
  line-height: 0.9;
  letter-spacing: -0.03em;
  color: var(--clay);
}
.identify-count .num-of {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--fg-3);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-top: 8px;
}
.check-list {
  display: grid;
  gap: 2px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.check-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
  cursor: pointer;
  transition: padding-left 0.2s ease, color 0.2s ease;
  user-select: none;
}
.check-item:hover { padding-left: 8px; }
.check-item:last-child { border-bottom: 0; }
.check-box {
  width: 26px; height: 26px;
  border-radius: 6px;
  border: 1.5px solid var(--line-strong);
  flex-shrink: 0;
  margin-top: 2px;
  position: relative;
  transition: background 0.2s, border-color 0.2s;
}
.check-box::after {
  content: "";
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  opacity: 0;
  transition: opacity 0.2s;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23fff8ef' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>");
  background-size: 16px;
  background-repeat: no-repeat;
  background-position: center;
}
.check-item.checked .check-box { background: var(--clay); border-color: var(--clay); }
.check-item.checked .check-box::after { opacity: 1; }
.check-item.checked { color: var(--fg-2); }
.check-text {
  font-size: 18px;
  line-height: 1.45;
  flex: 1;
}
.check-item.checked .check-text { text-decoration: line-through; text-decoration-color: var(--line-strong); text-decoration-thickness: 1px; }
.check-result {
  margin-top: var(--s6);
  padding: var(--s5) var(--s5);
  background: var(--cream-warm);
  border-left: 3px solid var(--clay);
  border-radius: 0 8px 8px 0;
  font-size: 16px;
  color: var(--fg-2);
  text-wrap: pretty;
}
.check-result strong { color: var(--clay); font-weight: 600; }

/* ----------------------- SECTION 3: Why nothing worked — "Card deck v2" (autoplay + densidade) ----------------------- */
.why-not {
  background: var(--cream-warm);
}

.why-deck-wrap {
  margin-top: var(--s7);
  position: relative;
}

.why-deck {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}

@media (max-width: 920px) {
  .why-deck {
    grid-template-columns: none;
    grid-auto-flow: column;
    grid-auto-columns: 82%;
    gap: 14px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scroll-padding: clamp(20px, 4vw, 48px);
    padding: 6px clamp(20px, 4vw, 48px) 16px;
    margin: 0 calc(clamp(20px, 4vw, 48px) * -1);
    scrollbar-width: none;
    scroll-behavior: smooth;
  }
  .why-deck::-webkit-scrollbar { display: none; }
}
@media (max-width: 380px) {
  .why-deck { grid-auto-columns: 88%; }
}

.why-card {
  background: var(--cream);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-m);
  padding: 18px 18px 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 12px;
  scroll-snap-align: center;
  box-shadow: 0 1px 0 rgba(255,255,255,0.5) inset, 0 8px 20px -14px rgba(58,42,29,0.18);
  transition: transform 0.25s cubic-bezier(0.2,0.7,0.2,1), box-shadow 0.25s ease, border-color 0.25s ease;
}
@media (hover: hover) and (pointer: fine) {
  .why-card:hover {
    transform: translateY(-3px);
    border-color: var(--clay);
    box-shadow: 0 1px 0 rgba(255,255,255,0.5) inset, 0 18px 32px -14px rgba(58,42,29,0.3);
  }
}

.why-card-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--line);
}

.why-card-num {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  color: var(--fg-3);
}

.why-card-stamp {
  font-family: var(--font-mono);
  font-size: 8.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--danger);
  border: 1.5px solid var(--danger);
  padding: 3px 7px;
  border-radius: 3px;
  transform: rotate(-3deg);
  white-space: nowrap;
  background: rgba(199, 107, 95, 0.04);
  user-select: none;
}

.why-card-name {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  font-style: normal;
  line-height: 1.2;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--fg-3);
  margin: 0;
  text-decoration: line-through;
  text-decoration-color: var(--danger);
  text-decoration-thickness: 1.5px;
  text-underline-offset: 2px;
}

/* PROMESSA — protagonista visual */
.why-card-promise {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(22px, 2.2vw, 28px);
  line-height: 1.15;
  color: var(--ink);
  margin: 4px 0 0 0;
  padding: 0 0 0 14px;
  border-left: 3px solid var(--clay);
  text-wrap: balance;
}

/* VEREDITO — contraponto forte */
.why-card-verdict {
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.45;
  color: var(--fg-2);
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-top: 4px;
  padding-top: 12px;
  border-top: 1px dashed var(--line);
}
.why-card-verdict strong {
  color: var(--ink);
  font-weight: 700;
  letter-spacing: -0.005em;
}
.why-card-arrow {
  color: var(--clay);
  font-weight: 700;
  font-size: 15px;
  flex-shrink: 0;
  line-height: 1;
}

/* Hint mobile + indicadores */
.why-deck-controls {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 14px 0 0 0;
}
@media (max-width: 920px) {
  .why-deck-controls { display: flex; }
}
.why-deck-dot {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--line-strong);
  transition: background 0.3s ease, transform 0.3s ease, width 0.3s ease;
  border: 0;
  padding: 0;
  cursor: pointer;
}
.why-deck-dot.active {
  background: var(--clay);
  width: 22px;
}

.why-deck-hint {
  display: none;
  text-align: center;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--fg-3);
  margin: 10px 0 0 0;
  opacity: 0.7;
}
@media (max-width: 920px) {
  .why-deck-hint { display: block; }
}

@media (prefers-reduced-motion: reduce) {
  .why-card { transition: none !important; }
  .why-deck-dot { transition: none !important; }
  .why-deck { scroll-behavior: auto; }
}

/* ----------------------- SECTION 4: Truth about surgery ----------------------- */
.surgery { background: var(--deep); color: var(--on-deep); }
.surgery .eyebrow { color: var(--on-deep-mute); }
.surgery h2 {
  font-size: clamp(34px, 4vw, 56px);
  line-height: 1.02;
  max-width: 22ch;
  margin-bottom: 0;
}
.surgery h2 em { color: var(--clay-soft); font-style: italic; }
.stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
@media (max-width: 820px) { .stats-row { grid-template-columns: 1fr; } }
.stat-cell {
  padding: 56px 28px;
  border-right: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.stat-cell:last-child { border-right: 0; }
@media (max-width: 820px) {
  .stat-cell {
    flex-direction: row;
    align-items: flex-start;
    border-right: 0;
    border-bottom: 1px solid var(--line);
    padding: 22px 4px;
    gap: 18px;
  }
  .stat-cell:last-child { border-bottom: 0; }
  .stat-num { font-size: 50px; line-height: 0.9; flex: 0 0 auto; min-width: 88px; }
  .stat-desc { font-size: 14.5px; max-width: 100%; flex: 1; padding-top: 6px; }
}
.stat-num {
  font-family: var(--font-display);
  font-size: clamp(78px, 11vw, 156px);
  line-height: 0.92;
  letter-spacing: -0.03em;
  color: var(--cream);
}
.stat-num .small { font-size: 0.5em; vertical-align: 0.3em; color: var(--clay-soft); }
.stat-desc {
  font-size: 16px;
  color: var(--on-deep-mute);
  line-height: 1.45;
  max-width: 24ch;
}
.stat-desc strong { color: var(--on-deep); font-weight: 500; }

.case-block {
  margin-top: var(--s8);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 4vw, 64px);
  align-items: center;
}
@media (max-width: 820px) { .case-block { grid-template-columns: 1fr; } }
.case-media {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.case-media .ph {
  aspect-ratio: 3/4;
}
.case-media .case-img {
  aspect-ratio: 3/4;
  border-radius: var(--radius-m);
  overflow: hidden;
  background: var(--deep-2);
}
.case-media .case-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.case-media .stage {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.case-media .stage-label {
  font-family: var(--font-mono);
  font-size: 10.5px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--on-deep-mute);
}
.case-copy h3 {
  font-size: clamp(24px, 2.4vw, 34px);
  line-height: 1.15;
  margin-bottom: var(--s4);
  max-width: 24ch;
}
.case-copy p {
  color: var(--on-deep-mute);
  line-height: 1.6;
  margin: 0 0 var(--s5) 0;
  max-width: 50ch;
}
.case-meta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s4);
  margin-bottom: var(--s5);
}
.case-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 6px 12px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  color: var(--on-deep-mute);
}
.case-tag.win {
  color: var(--cream);
  border-color: var(--sage);
  background: rgba(122, 148, 131, 0.15);
}

/* ----------------------- SECTION 5: Método ----------------------- */
.method { background: var(--cream); }
.pillars {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius-l);
  overflow: hidden;
}
@media (max-width: 720px) { .pillars { grid-template-columns: 1fr; } }
.pillar {
  background: var(--cream);
  padding: clamp(28px, 3vw, 44px);
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-height: 280px;
}
.pillar-num {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 48px;
  line-height: 1;
  color: var(--clay);
  letter-spacing: -0.02em;
}
.pillar h3 {
  font-size: 26px;
  line-height: 1.1;
}
.pillar p {
  font-size: 16px;
  line-height: 1.55;
  color: var(--fg-2);
  margin: 0;
  max-width: 42ch;
}
.pillar-tags {
  margin-top: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding-top: 16px;
}
.tag {
  font-family: var(--font-mono);
  font-size: 10.5px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 5px 10px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  color: var(--fg-3);
}

/* ----------------------- SECTION 6: Filter ----------------------- */
.filter { background: var(--cream-warm); }
.filter-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius-l);
  overflow: hidden;
}
@media (max-width: 760px) { .filter-cols { grid-template-columns: 1fr; } }
.filter-col {
  padding: clamp(28px, 3vw, 44px);
  background: var(--cream);
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.filter-col + .filter-col {
  border-left: 1px solid var(--line);
  background: #f3ece0;
}
@media (max-width: 760px) {
  .filter-col + .filter-col { border-left: 0; border-top: 1px solid var(--line); }
}
.filter-head {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 8px;
}
.filter-badge {
  width: 36px; height: 36px;
  border-radius: 999px;
  display: grid; place-items: center;
  font-size: 14px;
  font-weight: 600;
}
.filter-badge.yes { background: var(--sage); color: #fff8ef; }
.filter-badge.no { background: var(--danger); color: #fff8ef; }
.filter-head .label {
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--fg-3);
  display: block;
  margin-bottom: 2px;
}
.filter-head h3 {
  font-size: 22px;
  line-height: 1.1;
}
.filter-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 14px;
}
.filter-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15.5px;
  line-height: 1.45;
}
.filter-list li .mark {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--fg-3);
  margin-top: 4px;
  width: 22px;
  flex-shrink: 0;
}
.filter-list.yes li .mark { color: var(--sage-deep); }
.filter-list.no li .mark { color: var(--danger); }

.filter-cta {
  margin-top: var(--s7);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--s4);
}

/* ----------------------- SECTION 7: Quem é a Dra. Karla ----------------------- */
.about { background: var(--cream); }
.about-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.1fr;
  gap: clamp(40px, 5vw, 80px);
  align-items: start;
}
@media (max-width: 860px) { .about-grid { grid-template-columns: 1fr; } }
.about-photo {
  aspect-ratio: 4/5;
  border-radius: var(--radius-l);
  overflow: hidden;
  position: sticky;
  top: 100px;
}
@media (max-width: 860px) { .about-photo { position: static; max-width: 480px; } }
.about-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center 30%; display: block; }
.about-meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s4);
  margin: var(--s6) 0;
  padding: var(--s5) 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.meta-cell .n {
  font-family: var(--font-display);
  font-size: clamp(32px, 3.6vw, 48px);
  line-height: 1;
  letter-spacing: -0.02em;
}
.meta-cell .n em { color: var(--clay); font-style: italic; }
.meta-cell .l {
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--fg-3);
  margin-top: 6px;
}
.about-bio {
  font-size: 17px;
  line-height: 1.65;
  color: var(--fg-2);
  text-wrap: pretty;
}
.about-bio p { margin: 0 0 var(--s4) 0; }
.about-bio p:last-child { margin: 0; }
.about-sign {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 24px;
  color: var(--fg);
  margin-top: var(--s5);
  padding-top: var(--s4);
  border-top: 1px solid var(--line);
}
.about-sign small {
  display: block;
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--fg-3);
  font-style: normal;
  margin-top: 8px;
}
.creds {
  margin-top: var(--s6);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius-m);
  overflow: hidden;
}
@media (max-width: 540px) { .creds { grid-template-columns: 1fr; } }
.cred-cell {
  background: var(--cream);
  padding: 18px 22px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.cred-cell .school {
  font-family: var(--font-mono);
  font-size: 10.5px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--fg-3);
}
.cred-cell .name {
  font-family: var(--font-display);
  font-size: 19px;
  line-height: 1.15;
}

/* ----------------------- SECTION 4½: Compare ----------------------- */
.compare { background: var(--cream); }
.compare-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  align-items: stretch;
}
@media (max-width: 900px) { .compare-grid { grid-template-columns: 1fr; } }

/* Mobile: esconder cards, mostrar tabela refinada premium */
.compare-table-mobile { display: none; }
@media (max-width: 720px) {
  .compare-grid { display: none; }

  .compare-table-mobile {
    display: block;
    position: relative;
    margin: var(--s6) 0 0;
    padding-top: 24px; /* respiro pro badge ★ Recomendado */
    overflow: visible;
  }

  /* Badge "★ Recomendado" — solid terracota, acima da coluna Côgo */
  .ctm-badge {
    position: absolute;
    top: 0;
    /* 28% label col + 24% 1st value col + half of 24% featured = 64% */
    left: 64%;
    transform: translate(-50%, -2px);
    z-index: 4;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--clay);
    color: #fff8ef;
    font-family: var(--font-mono);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    padding: 7px 12px 6px;
    border-radius: 999px;
    box-shadow: 0 6px 14px -4px rgba(58,42,29,0.35), 0 0 0 4px var(--cream-warm);
    white-space: nowrap;
    /* Microinteração: fade + drop quando entra. Sem JS — animação CSS pura,
       respeitando prefers-reduced-motion abaixo. */
    animation: ctmBadgeIn 0.6s cubic-bezier(0.2, 0.7, 0.2, 1) 0.25s both;
  }
  @keyframes ctmBadgeIn {
    from { opacity: 0; transform: translate(-50%, 10px); }
    to   { opacity: 1; transform: translate(-50%, -2px); }
  }

  /* Table base */
  .ctm-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    table-layout: fixed;
    font-size: 13px;
    position: relative;
    z-index: 2;
    background: var(--cream);
    border: 1px solid var(--line-strong);
    border-radius: var(--radius-m);
    overflow: hidden; /* clip cell bgs to rounded corners */
  }
  .ctm-table colgroup col.ctm-col-label { width: 28%; }
  .ctm-table colgroup col { width: 24%; }

  .ctm-table th,
  .ctm-table td {
    padding: 14px 4px;
    text-align: center;
    border-bottom: 1px solid var(--line);
    vertical-align: middle;
    line-height: 1.3;
    color: var(--fg);
    background: var(--cream);
  }

  /* HEAD ROW */
  .ctm-table thead th {
    font-family: var(--font-mono);
    font-size: 10.5px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--fg-3);
    background: var(--cream-warm);
    border-bottom: 1px solid var(--line-strong);
    padding: 14px 4px 12px;
  }
  .ctm-table thead th.featured {
    background: var(--deep);
    color: var(--cream);
    font-weight: 700;
    letter-spacing: 0.18em;
    border-bottom: 1px solid var(--clay);
    box-shadow:
      inset 1px 0 0 var(--clay),
      inset -1px 0 0 var(--clay);
  }
  .ctm-table thead th:first-child {
    background: var(--cream-warm);
    border-bottom: 1px solid var(--line-strong);
  }

  /* LABELS (1ª coluna) — Instrument Serif italic suave */
  .ctm-table .ctm-label {
    text-align: left;
    font-family: var(--font-display);
    font-style: italic;
    font-weight: 400;
    font-size: 17px;
    letter-spacing: -0.005em;
    color: var(--fg);
    padding-left: 14px;
    padding-right: 6px;
    background: var(--cream);
    width: 28%;
  }

  /* CHECK MARKS — pílulas coloridas com borda */
  .ctm-mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 700;
    line-height: 1;
    border: 1.5px solid currentColor;
    background: rgba(255, 255, 255, 0.45);
  }
  .ctm-mark.yes {
    color: var(--sage-deep);
    background: var(--sage-soft);
    border-color: var(--sage);
  }
  .ctm-mark.no {
    color: #8a3a30;
    background: var(--danger-soft);
    border-color: var(--danger);
  }
  .ctm-mark.partial {
    color: var(--fg-3);
    background: var(--cream-deep);
    border-color: var(--line-strong);
    font-weight: 600;
  }

  /* COLUNA CÔGO destacada DRAMATICAMENTE */
  .ctm-table td.featured,
  .ctm-table th.featured {
    background: var(--deep);
    color: var(--cream);
    box-shadow:
      inset 1px 0 0 var(--clay),
      inset -1px 0 0 var(--clay);
    position: relative;
  }
  /* check mark colors inside featured column — keep pills bright on dark */
  .ctm-table td.featured .ctm-mark.yes {
    color: var(--sage-deep);
    background: var(--sage-soft);
    border-color: var(--sage-soft);
    box-shadow: 0 0 0 1px var(--clay);
  }

  /* METADATA — visualmente separada da checklist */
  .ctm-table tfoot tr.meta-divider th,
  .ctm-table tfoot tr.meta-divider td {
    border-top: 1px dashed var(--line-strong);
    padding-top: 16px;
  }
  .ctm-table tfoot th.ctm-label,
  .ctm-table tfoot td {
    background: var(--cream-warm);
  }
  .ctm-table tfoot td.ctm-meta {
    font-family: var(--font-mono);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.04em;
    color: var(--fg-2);
    text-transform: none;
  }
  .ctm-table tfoot td.featured.ctm-meta {
    background: var(--deep);
    color: var(--clay-soft);
    font-weight: 600;
    letter-spacing: 0.06em;
  }

  /* Tighten featured column visual continuity — add top "cap" via thead shadow */
  .ctm-table thead th.featured {
    border-top: 1px solid var(--clay);
  }
  /* Bottom cap of featured column above CTA */
  .ctm-table tfoot tr:nth-last-child(2) td.featured {
    border-bottom: 1px solid var(--clay);
  }

  /* CTA — ABAIXO da tabela, full-width, mais respiro */
  .compare-table-mobile .compare-table-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    margin-top: 20px;
    padding: 18px 24px;
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0.005em;
    border-radius: 999px;
    background: var(--clay);
    color: #fff8ef;
    border: 1px solid var(--clay);
    text-decoration: none;
    transition: background 0.2s ease, transform 0.2s ease;
    line-height: 1.2;
    box-shadow: 0 8px 20px -10px rgba(201, 122, 63, 0.5);
  }
  .compare-table-mobile .compare-table-cta:hover {
    background: var(--clay-hover);
    border-color: var(--clay-hover);
    transform: translateY(-1px);
  }
  .compare-table-mobile .compare-table-cta .dot {
    width: 7px; height: 7px;
    border-radius: 999px;
    background: var(--sage);
    box-shadow: 0 0 0 2px rgba(127,171,133,0.3);
    flex-shrink: 0;
  }
  .compare-table-mobile .compare-table-cta .ic.arrow {
    width: 16px; height: 16px;
    fill: none; stroke: currentColor; stroke-width: 2;
    transition: transform 0.2s;
    flex-shrink: 0;
  }
  .compare-table-mobile .compare-table-cta:hover .ic.arrow { transform: translateX(3px); }

  /* Remove last bottom border on body's last row */
  .ctm-table tbody tr:last-child td,
  .ctm-table tbody tr:last-child th {
    border-bottom: 1px solid var(--line);
  }
  .ctm-table tfoot tr:last-of-type td,
  .ctm-table tfoot tr:last-of-type th { border-bottom: 0; }

  /* prefers-reduced-motion */
  @media (prefers-reduced-motion: reduce) {
    .compare-table-mobile .ctm-badge { animation: none; opacity: 1; transform: translate(-50%, -2px); }
    .ctm-table .ctm-cta { transition: none; }
    .ctm-table .ctm-cta:hover .ic.arrow { transform: none; }
  }
}

/* Very narrow (360px) — make sure CTA fits inside col */
@media (max-width: 380px) {
  .ctm-table { font-size: 12px; }
  .ctm-table .ctm-label { font-size: 15px; padding-left: 10px; }
  .ctm-table .ctm-cta { font-size: 10.5px; padding: 9px 4px; gap: 5px; }
  .ctm-table .ctm-cta .ic.arrow { display: none; }
  .ctm-mark { width: 26px; height: 26px; font-size: 13px; }
  .ctm-badge { font-size: 9px; padding: 6px 10px 5px; letter-spacing: 0.14em; }
}

.compare-col {
  position: relative;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius-l);
  padding: 26px 22px 22px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  min-height: 100%;
}
.compare-col.featured {
  background: var(--deep);
  color: var(--on-deep);
  border: 1.5px solid var(--clay);
  box-shadow: 0 24px 50px -18px rgba(15,26,23,0.35), 0 0 0 4px rgba(201,122,74,0.08);
  transform: translateY(-6px);
}
@media (max-width: 900px) { .compare-col.featured { transform: none; grid-column: 1 / -1; } }

.compare-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: var(--clay);
  color: #fff8ef;
  border-radius: 999px;
  font-family: var(--font-mono);
  font-size: 10.5px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  box-shadow: 0 8px 18px rgba(201,122,74,0.35);
}
.compare-badge .badge-dot {
  width: 6px; height: 6px; border-radius: 999px; background: #fff8ef;
  animation: pulse 1.8s ease-in-out infinite;
}

.compare-head {
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}
.compare-col.featured .compare-head { border-bottom-color: rgba(235,226,204,0.16); }
.compare-tag {
  font-family: var(--font-mono);
  font-size: 10.5px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--fg-3);
  display: block;
  margin-bottom: 8px;
}
.compare-col.featured .compare-tag { color: var(--clay-soft); }
.compare-head h3 {
  font-family: var(--font-display);
  font-size: 24px;
  line-height: 1.1;
  letter-spacing: -0.012em;
  margin: 0;
}
.compare-head h3 .sub {
  display: block;
  margin-top: 4px;
  font-family: var(--font-body);
  font-size: 11.5px;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: var(--fg-3);
}
.compare-col.featured .compare-head h3 .sub { color: var(--on-deep-mute); }
.compare-head h3 .sub.italic { font-family: var(--font-display); font-size: 14px; font-style: italic; letter-spacing: -0.005em; color: var(--clay-soft); }

.compare-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}
.compare-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  line-height: 1.35;
  color: var(--fg-2);
}
.compare-col.featured .compare-list li { color: var(--on-deep); }
.compare-list .ico {
  width: 22px; height: 22px;
  border-radius: 999px;
  display: grid; place-items: center;
  flex-shrink: 0;
  font-size: 12px;
  font-weight: 600;
  font-family: var(--font-body);
}
.compare-list .ico.yes { background: var(--sage); color: #fff8ef; }
.compare-list .ico.no { background: rgba(166,70,52,0.15); color: var(--danger); border: 1px solid rgba(166,70,52,0.3); }
.compare-list .ico.partial { background: rgba(201,122,74,0.18); color: var(--clay); border: 1px solid rgba(201,122,74,0.35); font-size: 14px; line-height: 1; }
.compare-col.featured .compare-list .ico.yes { background: var(--clay); box-shadow: 0 0 0 1px rgba(232,196,167,0.3); }

.compare-meta {
  margin: auto 0 0 0;
  padding: 14px 0 0 0;
  border-top: 1px dashed var(--line);
  display: grid;
  gap: 10px;
}
.compare-col.featured .compare-meta { border-top-color: rgba(235,226,204,0.18); }
.compare-meta > div {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 12px;
  font-size: 12.5px;
  line-height: 1.3;
}
.compare-meta dt {
  font-family: var(--font-mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--fg-3);
  align-self: center;
}
.compare-col.featured .compare-meta dt { color: var(--on-deep-mute); }
.compare-meta dd {
  margin: 0;
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--fg);
}
.compare-col.featured .compare-meta dd { color: var(--cream); }

.compare-cta {
  margin-top: 16px;
  width: 100%;
  justify-content: center;
}

.compare-footnote {
  margin-top: var(--s6);
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--fg-3);
  text-align: center;
}
.compare-footnote .mono { color: var(--clay); font-weight: 500; }

/* ----------------------- Pillar: featured variant ----------------------- */
.pillar.featured {
  background: var(--clay);
  color: #fff8ef;
  position: relative;
}
.pillar.featured .featured-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 5px 12px;
  background: rgba(255,248,239,0.18);
  border: 1px solid rgba(255,248,239,0.3);
  border-radius: 999px;
  font-family: var(--font-mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #fff8ef;
  backdrop-filter: blur(8px);
}
.pillar.featured .featured-badge .badge-dot {
  width: 6px; height: 6px; border-radius: 999px; background: #fff8ef;
  animation: pulse 1.8s ease-in-out infinite;
}
.pillar.featured .pillar-num { color: rgba(255,248,239,0.65); font-style: italic; }
.pillar.featured h3 { color: #fff8ef; }
.pillar.featured p { color: rgba(255,248,239,0.88); }
.pillar.featured .tag {
  color: #fff8ef;
  border-color: rgba(255,248,239,0.35);
  background: rgba(255,248,239,0.08);
}


/* ============================================================
   ANIM BRIEF — Task 3: count-up dramatic state
   wireCounters() adds .is-counting then .is-counted to each
   .stat-cell in .stats-row, with 200ms stagger between cells.
   ============================================================ */
.stats-row .stat-cell .stat-num {
  opacity: 0.45;
  color: var(--on-deep-mute);
  transition:
    opacity 900ms cubic-bezier(0.2, 0.7, 0.2, 1),
    color 900ms cubic-bezier(0.2, 0.7, 0.2, 1);
}
.stats-row .stat-cell.is-counting .stat-num,
.stats-row .stat-cell.is-counted .stat-num {
  opacity: 1;
  color: var(--cream);
}
.stats-row .stat-num .small {
  display: inline-block;
  transform-origin: 30% 65%;
  will-change: transform;
}
.stats-row .stat-cell.is-counted .stat-num .small {
  animation: stat-suffix-pulse 380ms cubic-bezier(0.2, 0.7, 0.2, 1);
}
@keyframes stat-suffix-pulse {
  0%   { transform: scale(1); }
  45%  { transform: scale(1.08); }
  100% { transform: scale(1); }
}
@media (prefers-reduced-motion: reduce) {
  .stats-row .stat-cell .stat-num {
    opacity: 1;
    color: var(--cream);
    transition: none;
  }
  .stats-row .stat-cell.is-counted .stat-num .small { animation: none; }
}

/* ============================================================
   ANIM BRIEF — Task 5: VSL idle "breathing" + hover lift
   Idle: soft radial glow breathes on a 4s cycle.
   Hover (desktop): glow snaps to peak, play button lifts &
   gains a warm terracota halo. Mobile/touch ignores hover.
   ============================================================ */
@keyframes vsl-breathe {
  0%, 100% { transform: translate(-50%, -50%) scale(0.92); opacity: 0.55; }
  50%      { transform: translate(-50%, -50%) scale(1.12); opacity: 1;    }
}
.vsl-thumb-glow {
  animation: vsl-breathe 4s ease-in-out infinite;
  transition:
    transform 350ms cubic-bezier(0.2, 0.7, 0.2, 1),
    opacity 350ms cubic-bezier(0.2, 0.7, 0.2, 1);
  will-change: transform, opacity;
}

/* Make whole VSL clickable surface feel hot */
.vsl { cursor: pointer; }

.vsl-play {
  /* extend existing transition to cover the new shadow */
  transition:
    transform 250ms cubic-bezier(0.2, 0.7, 0.2, 1),
    background 250ms cubic-bezier(0.2, 0.7, 0.2, 1),
    box-shadow 250ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

@media (hover: hover) and (pointer: fine) {
  .vsl:hover .vsl-thumb-glow {
    animation-play-state: paused;
    transform: translate(-50%, -50%) scale(1.08);
    opacity: 1;
  }
  .vsl:hover .vsl-play {
    background: #ffffff;
    transform: translate(-50%, -50%) scale(1.08);
    box-shadow:
      0 16px 44px rgba(0, 0, 0, 0.45),
      0 0 32px rgba(201, 122, 63, 0.4);
  }
  .vsl:hover .vsl-title { opacity: 1; }
}

/* Mobile: keep idle breath but reduce intensity slightly */
@media (max-width: 920px) {
  .vsl-thumb-glow { animation-duration: 5s; }
}

@media (prefers-reduced-motion: reduce) {
  .vsl-thumb-glow {
    animation: none;
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.85;
  }
  .vsl:hover .vsl-thumb-glow {
    transform: translate(-50%, -50%) scale(1);
  }
  .vsl-play, .vsl:hover .vsl-play {
    transition: none;
  }
}
