/* =========================================================================
   ALMA — Landing Page Styles
   ========================================================================= */

/* — Fonts — */
@font-face {
  font-family: 'Inter';
  src: url('fonts/Inter-VariableFont_opsz_wght.ttf') format('truetype-variations');
  font-weight: 100 900; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Inter';
  src: url('fonts/Inter-Italic-VariableFont_opsz_wght.ttf') format('truetype-variations');
  font-weight: 100 900; font-style: italic; font-display: swap;
}
@font-face {
  font-family: 'Cormorant Garamond';
  src: url('fonts/CormorantGaramond-VariableFont_wght.ttf') format('truetype-variations');
  font-weight: 300 700; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Cormorant Garamond';
  src: url('fonts/CormorantGaramond-Italic-VariableFont_wght.ttf') format('truetype-variations');
  font-weight: 300 700; font-style: italic; font-display: swap;
}

/* — Tokens — alinhado ao Design System oficial Alma — */
:root {
  /* Surfaces · DS canonical (warm dark, quase preto) */
  --bg:          #050505;
  --bg2:         #0C0B0A;
  --surface:     #131211;
  --s2:          #1A1918;
  --s3:          #222120;

  /* Brand gradient · azul marinho NO TOPO transitando até o tom da marca na base.
     Steps refinados pra ter transição mais cromática-natural,
     evitando "cortes" entre azul → quente. */
  --brand-navy-top:  #0E1A35;  /* azul marinho profundo (identidade no topo) */
  --brand-navy-mid:  #0B1424;  /* transição azul */
  --brand-bridge:    #0A1018;  /* ponte neutra (entre azul e warm) */
  --brand-warm:      #0E0D0B;  /* warm dark da marca */
  --brand-anchor:    #0C0B0A;  /* DS bg2 (warm anchor) */
  --brand-anchor-2:  #060606;  /* base final, próxima ao DS bg #050505 */

  /* Aliases legados (mantidos pra retrocompatibilidade nos selectors antigos) */
  --bg-deep:     var(--brand-navy-mid);
  --bg-mid:      var(--brand-navy-top);
  --surface-lp:  var(--surface);

  /* Ink · DS canonical */
  --ink:         #EDE8DF;
  --ink2:        #B5AFA4;
  --ink3:        #958F85;
  --ink4:        #7D776D;

  /* Accent (teal — punctual only) */
  --accent:        #2DD4BF;
  --accent-bg:     #0A1F1C;
  --accent-glow:   rgba(45, 212, 191, 0.10);
  --accent-warm:   #E8D5B7;  /* tom dourado claro (uso editorial, não substitui --accent) */
  --accent-cosmic: #2DD4BF;  /* alias legacy */

  /* Astrological elements · sagradas, contexto astro */
  --fire:   #D4896E;  /* + Plus tier */
  --earth:  #BDA76F;  /* + Pro tier */
  --air:    #86AAC4;
  --water:  #76AEBE;

  /* Tier badges */
  --free-fg:  var(--accent);
  --free-bg:  rgba(45, 212, 191, 0.14);
  --plus-fg:  var(--fire);
  --plus-bg:  rgba(212, 137, 110, 0.18);
  --pro-fg:   var(--earth);
  --pro-bg:   rgba(189, 167, 111, 0.18);

  /* Borders & glass · DS canonical */
  --border:        rgba(255, 248, 240, 0.05);
  --border2:       rgba(255, 248, 240, 0.08);
  --divider:       rgba(255, 248, 240, 0.06);
  --glass:         rgba(18, 17, 16, 0.80);
  --glass-border:  rgba(255, 248, 240, 0.04);

  /* Type families */
  --font-sans:   'Inter', system-ui, -apple-system, sans-serif;
  --font-serif:  'Cormorant Garamond', Georgia, serif;

  /* Easing */
  --ease-expo:   cubic-bezier(0.22, 1, 0.36, 1);
  --ease-out:    cubic-bezier(0.2, 0, 0, 1);

  /* Shadows · DS canonical */
  --shadow-sm:   0 2px 8px rgba(0, 0, 0, 0.15);
  --shadow-md:   0 4px 20px rgba(0, 0, 0, 0.25);
  --shadow-lg:   0 8px 40px rgba(0, 0, 0, 0.35);
}

/* — Reset & Base — */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  scroll-behavior: smooth;
  /* Anchor de cor da página inteira — base preta-quente da marca */
  background: var(--brand-anchor-2);
}
body {
  /* Gradiente global ANCORADO no html · azul marinho NO TOPO transitando
     gradualmente até o tom da marca (#0C0B0A → #050505) na base.
     `background-attachment: fixed` faz a transição cobrir a página inteira
     conforme o usuário rola, em vez de repetir por seção. */
  background:
    linear-gradient(
      180deg,
      var(--brand-navy-top)  0%,
      var(--brand-navy-mid)  16%,
      var(--brand-bridge)    32%,
      var(--brand-warm)      50%,
      var(--brand-anchor)    72%,
      var(--brand-anchor-2)  100%
    );
  background-attachment: fixed;
  background-repeat: no-repeat;
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, svg { display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* Grain overlay */
body::before {
  content: '';
  position: fixed; inset: 0; z-index: 0;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='1'/%3E%3C/svg%3E");
  background-size: 180px;
  opacity: 0.04;
  mix-blend-mode: overlay;
}

/* — Back-to-top button — flutuante na lateral direita, aparece após scroll — */
.back-to-top {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--accent);
  color: #050505;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 200;
  text-decoration: none;
  box-shadow: 0 6px 20px rgba(45, 212, 191, 0.35), 0 0 0 1px rgba(45, 212, 191, 0.18);
  opacity: 0;
  transform: translateY(12px) scale(0.9);
  pointer-events: none;
  transition:
    opacity 0.3s var(--ease-expo),
    transform 0.4s var(--ease-expo),
    background 0.2s ease,
    box-shadow 0.2s ease;
}
.back-to-top.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}
.back-to-top:hover {
  background: #5EEAD4;
  box-shadow: 0 8px 28px rgba(45, 212, 191, 0.5), 0 0 0 1px rgba(45, 212, 191, 0.4);
  transform: translateY(-2px);
}
.back-to-top svg { display: block; }

@media (max-width: 640px) {
  .back-to-top { right: 16px; bottom: 16px; width: 40px; height: 40px; }
}

@media (prefers-reduced-motion: reduce) {
  .back-to-top { transition: opacity 0.2s; transform: none; }
  .back-to-top.visible { transform: none; }
  .back-to-top:hover { transform: none; }
}

/* — Scroll Progress Bar — */
#scroll-progress {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: 1px;
  background: var(--accent-warm);
  transform-origin: left;
  transform: scaleX(0);
  transition: transform 0.1s linear;
  opacity: 0.7;
}

/* (Cursor legacy #cursor removido — estava fixo no canto superior esquerdo
   e parecia uma "lua" por causa do mix-blend-mode: difference.
   O cursor customizado agora é .cursor-dot + .cursor-ring abaixo) */

/* — Nav — */
#nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 0 48px;
  height: 68px;
  display: flex; align-items: center; justify-content: space-between;
  transition: background 0.4s var(--ease-out), backdrop-filter 0.4s;
}
#nav.scrolled {
  background: var(--glass);
  backdrop-filter: blur(20px) saturate(1.3);
  border-bottom: 1px solid var(--glass-border);
}
.nav-brand {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink);
  display: flex; align-items: center; gap: 10px;
}
.nav-brand svg.brand-mark {
  width: 18px; height: 18px;
  margin-right: 4px;
  filter: drop-shadow(0 0 4px rgba(232,213,183,0.4));
  transition: transform 0.5s var(--ease-expo), filter 0.4s ease;
}
.nav-brand .brand-star-outer { fill: var(--accent-warm); }
.nav-brand:hover svg.brand-mark {
  transform: rotate(45deg) scale(1.1);
  filter: drop-shadow(0 0 8px rgba(232,213,183,0.85));
}
@media (prefers-reduced-motion: reduce) {
  .nav-brand:hover svg.brand-mark { transform: none; }
}
.nav-links {
  display: flex; align-items: center; gap: 36px;
  list-style: none;
}
.nav-links a {
  font-size: 13px;
  font-weight: 450;
  color: var(--ink3);
  letter-spacing: 0.03em;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--ink); }
.nav-cta {
  font-size: 13px;
  font-weight: 500;
  padding: 9px 22px;
  border-radius: 999px;
  background: var(--accent-warm);
  color: #0A0E1A;
  letter-spacing: 0.01em;
  transition: box-shadow 0.3s var(--ease-expo), transform 0.2s var(--ease-expo);
}
.nav-cta:hover {
  box-shadow: 0 0 24px rgba(232,213,183,0.35);
  transform: translateY(-1px);
}

/* — Section base — */
section { position: relative; }
.section-label {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--ink4);
  text-align: center;
  display: flex; align-items: center; justify-content: center; gap: 12px;
}
.section-label::before, .section-label::after {
  content: ''; display: block;
  width: 28px; height: 1px; background: var(--divider);
}

/* — Reveal animation — */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s var(--ease-expo), transform 0.8s var(--ease-expo);
}
.reveal.in { opacity: 1; transform: translateY(0); }

/* =========================================================================
   SECTION 1 — HERO
   ========================================================================= */
#hero {
  /* Hero ocupa SEMPRE 100% da altura da viewport, em qualquer tela. */
  min-height: 100vh;
  min-height: 100dvh;
  height: 100vh;
  height: 100dvh;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
  /* Hero é transparente — deixa o gradient body (azul marinho no topo) aparecer */
  background: transparent;
}

/* Star particles canvas */
#star-canvas {
  position: absolute; inset: 0; z-index: 0;
}

/* Astral map container — adaptativo (limita por largura E altura) */
#hero-map-wrap {
  position: absolute;
  width: min(640px, 85vw, 80vh);
  aspect-ratio: 1;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
}
#hero-map {
  width: 100%; height: 100%;
  opacity: 0.05;
  animation: mapRotate 90s linear infinite;
  will-change: transform;
}
#hero-map path { stroke: var(--accent-warm); fill: none; stroke-width: 0.5; }
#hero-map .st0 { fill: var(--accent-warm); stroke: none; }

/* Glow rings — múltiplas camadas pra profundidade */
#glow-ring {
  position: absolute; inset: -6%;
  border-radius: 50%;
  background: radial-gradient(circle, transparent 42%, rgba(45,212,191,0.06) 58%, rgba(232,213,183,0.04) 68%, transparent 80%);
  animation: glowPulse 6s ease-in-out infinite;
}
#glow-ring-outer {
  position: absolute; inset: -22%;
  border-radius: 50%;
  background: radial-gradient(circle, transparent 50%, rgba(232,213,183,0.025) 65%, transparent 80%);
  animation: glowPulse 9s ease-in-out infinite reverse;
  z-index: -1;
  pointer-events: none;
}
#glow-ring-inner {
  position: absolute; inset: 18%;
  border-radius: 50%;
  background:
    radial-gradient(circle, transparent 35%, rgba(45,212,191,0.10) 50%, transparent 70%),
    conic-gradient(from 0deg, rgba(232,213,183,0.08), transparent 25%, rgba(45,212,191,0.06) 50%, transparent 75%, rgba(232,213,183,0.08));
  animation: glowPulse 4.5s ease-in-out infinite, ringSpin 60s linear infinite;
  pointer-events: none;
}

@keyframes mapRotate {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
@keyframes glowPulse {
  0%, 100% { opacity: 0.6; transform: scale(1); }
  50%       { opacity: 1; transform: scale(1.02); }
}
@keyframes ringSpin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

/* ─── HERO CONSTELLATIONS (real southern sky overlay) ─── */
.hero-constellations {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  z-index: 0;
  pointer-events: none;
  opacity: 0;
  animation: constellationsFadeIn 3.5s ease-out 0.8s forwards;
}
.hero-constellations .constellation { opacity: 0; animation: constellationReveal 2s ease-out forwards; animation-delay: var(--delay, 0s); }
.hero-constellations .constellation line,
.hero-constellations .constellation path {
  stroke: rgba(232, 213, 183, 0.18);
  stroke-width: 0.5;
  fill: none;
  stroke-dasharray: 200;
  stroke-dashoffset: 200;
  animation: constellationDraw 3.5s ease-out forwards;
  animation-delay: calc(var(--delay, 0s) + 0.4s);
}
.hero-constellations .star-bright,
.hero-constellations .star-mid,
.hero-constellations .star-dim {
  fill: var(--accent-warm);
  filter: drop-shadow(0 0 4px rgba(232,213,183,0.7));
}
.hero-constellations .star-bright { animation: starTwinkle 4s ease-in-out infinite; }
.hero-constellations .star-mid    { animation: starTwinkle 6s ease-in-out infinite 1s; opacity: 0.78; }
.hero-constellations .star-dim    { animation: starTwinkle 7s ease-in-out infinite 2s; opacity: 0.55; }

@keyframes constellationsFadeIn { to { opacity: 1; } }
@keyframes constellationReveal { from { opacity: 0; } to { opacity: 1; } }
@keyframes constellationDraw   { to { stroke-dashoffset: 0; } }
@keyframes starTwinkle {
  0%, 100% { opacity: 1; filter: drop-shadow(0 0 4px rgba(232,213,183,0.7)); }
  50%      { opacity: 0.45; filter: drop-shadow(0 0 8px rgba(232,213,183,1)); }
}

/* (Estrelas cadentes removidas — não combinou com o tom da landing) */

/* ─── AURORA / atmosfera atrás do mapa ─── */
.hero-aurora {
  position: absolute; inset: 0;
  z-index: 0; pointer-events: none;
  overflow: hidden;
  filter: blur(60px);
  opacity: 0.55;
}
.aurora-blob {
  position: absolute;
  border-radius: 50%;
  mix-blend-mode: screen;
  will-change: transform;
}
.aurora-blob-1 {
  width: 460px; height: 460px;
  top: 25%; left: 18%;
  background: radial-gradient(circle, rgba(45,212,191,0.55) 0%, transparent 70%);
  animation: auroraDrift1 22s ease-in-out infinite;
}
.aurora-blob-2 {
  width: 520px; height: 520px;
  top: 45%; right: 12%;
  background: radial-gradient(circle, rgba(232,213,183,0.32) 0%, transparent 70%);
  animation: auroraDrift2 28s ease-in-out infinite reverse;
}
.aurora-blob-3 {
  width: 380px; height: 380px;
  bottom: 18%; left: 50%; transform: translateX(-50%);
  background: radial-gradient(circle, rgba(45,212,191,0.18) 0%, transparent 70%);
  animation: auroraDrift3 32s ease-in-out infinite;
}
@keyframes auroraDrift1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50%      { transform: translate(80px, -50px) scale(1.15); }
}
@keyframes auroraDrift2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50%      { transform: translate(-60px, 70px) scale(1.1); }
}
@keyframes auroraDrift3 {
  0%, 100% { transform: translateX(-50%) scale(1); }
  50%      { transform: translateX(-50%) translateY(-40px) scale(1.2); }
}

/* Reduced motion: aurora estática + sem meteoros */
@media (prefers-reduced-motion: reduce) {
  .aurora-blob, .meteor, .hero-constellations,
  .hero-constellations .constellation,
  .hero-constellations .constellation line,
  .hero-constellations .constellation path,
  #glow-ring-inner, #glow-ring-outer { animation: none !important; }
  .hero-constellations { opacity: 0.7; }
  .hero-constellations .constellation { opacity: 1; }
  .hero-constellations .constellation line,
  .hero-constellations .constellation path { stroke-dashoffset: 0; }
  .meteor { display: none; }
}

/* Hero content — GRID com 3 rows:
   Row 1 (1fr): spacer top
   Row 2 (auto): texto principal centralizado verticalmente
   Row 3 (1fr): bloco de ações ancorado no bottom da row */
#hero-content {
  position: relative; z-index: 2;
  text-align: center;
  max-width: 860px;
  width: 100%;
  height: 100%;
  /* Bottom padding maior · garante respiro entre a pílula WhatsApp
     e o scroll-hint absolutamente posicionado abaixo */
  padding: clamp(80px, 10vh, 120px) 24px clamp(96px, 12vh, 140px);
  display: grid;
  grid-template-rows: 1fr auto 1fr;
  align-items: center;
  justify-items: center;
}

/* Bloco texto · row 2 · centro vertical absoluto */
.hero-text {
  grid-row: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(20px, 3vh, 36px);
  width: 100%;
}

/* Bloco ações · row 3 · ancorado no bottom da row */
.hero-actions {
  grid-row: 3;
  align-self: end;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  width: 100%;
}
.hero-eyebrow {
  font-size: 11px; font-weight: 500;
  text-transform: uppercase; letter-spacing: 0.16em;
  color: var(--accent);
  display: flex; align-items: center; gap: 10px;
  opacity: 0; animation: fadeUp 1s var(--ease-expo) 0.2s forwards;
}
.hero-eyebrow::before, .hero-eyebrow::after {
  content: '✦'; font-size: 8px; opacity: 0.6;
}
.hero-h1 {
  font-family: var(--font-serif);
  font-size: clamp(38px, 5.4vw, 68px);
  font-weight: 300;
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: var(--ink);
  text-wrap: pretty;
  opacity: 0; animation: fadeUp 1s var(--ease-expo) 0.4s forwards;
  max-width: 880px;
}

/* Headline principal · italic + accent warm (única linha do título agora) */
.hero-h1-main {
  display: block;
  font-style: italic;
  font-weight: 500;
  color: var(--accent-warm);
}

/* Compatibilidade com headings sem subdivisão (caso reverta) */
.hero-h1 em:not(.hero-h1-main) {
  font-style: italic;
  color: var(--accent-warm);
}
.hero-sub {
  font-size: clamp(15px, 1.5vw, 18px);
  color: var(--ink3);
  max-width: 520px;
  line-height: 1.6;
  font-weight: 400;
  opacity: 0; animation: fadeUp 1s var(--ease-expo) 0.6s forwards;
  margin-top: -8px;
}
.hero-ctas {
  display: flex; align-items: center; gap: 20px; flex-wrap: wrap; justify-content: center;
  opacity: 0; animation: fadeUp 1s var(--ease-expo) 0.8s forwards;
}
/* Pílula WhatsApp logo abaixo dos CTAs · gap controlado pelo .hero-actions */
.hero-availability {
  margin-top: 0 !important;
}
.btn-primary {
  padding: 14px 32px;
  border-radius: 999px;
  background: var(--accent-warm);
  color: #0A0E1A;
  font-size: 14px; font-weight: 550;
  letter-spacing: 0.02em;
  transition: box-shadow 0.35s var(--ease-expo), transform 0.2s var(--ease-expo);
  white-space: nowrap;
}
.btn-primary:hover {
  box-shadow: 0 0 32px rgba(232,213,183,0.4), 0 4px 20px rgba(0,0,0,0.3);
  transform: translateY(-2px);
}
.btn-secondary {
  font-size: 14px; font-weight: 450;
  color: var(--ink3);
  display: flex; align-items: center; gap: 8px;
  transition: color 0.2s, gap 0.2s;
  padding: 14px 4px;
}
.btn-secondary:hover { color: var(--ink); gap: 12px; }
.btn-secondary svg { transition: transform 0.2s var(--ease-expo); }
.btn-secondary:hover svg { transform: translateY(3px); }

/* Scroll indicator · ancorado no rodapé do hero, ABAIXO do selo WhatsApp */
#scroll-hint {
  position: absolute;
  bottom: 16px;  /* mais perto da borda · evita conflito com a pílula */
  left: 50%; transform: translateX(-50%);
  z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  opacity: 0; animation: fadeUp 1s var(--ease-expo) 1.2s forwards;
  pointer-events: none;
}
.scroll-line {
  width: 1px; height: 32px;  /* mais curta · 48 → 32 */
  background: linear-gradient(to bottom, transparent, var(--ink4));
  position: relative; overflow: hidden;
}
.scroll-pulse {
  position: absolute; top: -100%;
  width: 100%; height: 50%;
  background: linear-gradient(to bottom, transparent, var(--accent-warm));
  animation: scrollPulse 2s ease-in-out infinite 1.5s;
}
@keyframes scrollPulse {
  0%   { top: -100%; opacity: 0; }
  20%  { opacity: 1; }
  100% { top: 200%; opacity: 0; }
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* =========================================================================
   SECTION 2 — TENSÃO
   ========================================================================= */
#tension {
  padding: 140px 48px;
  background: transparent;  /* Deixa o gradient body aparecer */
}
#tension .inner {
  max-width: 1120px; margin: 0 auto;
}
#tension .section-label { margin-bottom: 72px; }
.tension-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.tension-card {
  /* Card translúcido · deixa o gradient body aparecer */
  background: linear-gradient(155deg, rgba(232,213,183,0.04) 0%, rgba(232,213,183,0.015) 100%);
  border: 1px solid rgba(232,213,183,0.10);
  box-shadow:
    inset 0 1px 0 rgba(255, 248, 240, 0.04),
    0 4px 24px rgba(0, 0, 0, 0.20);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 52px 40px;
  position: relative; overflow: hidden;
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s var(--ease-expo), transform 0.8s var(--ease-expo);
}
.tension-card:first-child { border-radius: 20px 0 0 20px; }
.tension-card:last-child  { border-radius: 0 20px 20px 0; }
.tension-card.in { opacity: 1; transform: translateY(0); }
.tension-card::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.03) 0%, transparent 60%);
  pointer-events: none;
}
.tension-number {
  font-family: var(--font-serif);
  font-size: 64px; font-weight: 300;
  color: var(--divider);
  line-height: 1;
  margin-bottom: 24px;
  letter-spacing: -0.03em;
}
.tension-card h2,
.tension-card h3 {
  font-family: var(--font-serif) !important;
  font-size: 28px; font-weight: 400;
  color: var(--ink); line-height: 1.25;
  margin-bottom: 14px;
  letter-spacing: -0.01em;
}
.tension-card p {
  font-size: 14px; color: var(--ink3); line-height: 1.65;
}
.tension-visual {
  margin-top: 32px;
  height: 100px;
  display: flex; align-items: center; justify-content: center;
}

/* Tension card 3 — special highlight */
.tension-card.highlight {
  background: linear-gradient(135deg, rgba(45,212,191,0.12) 0%, rgba(30,34,53,0.95) 60%);
}
.tension-card.highlight h3 { color: var(--accent-warm); }

/* ─── Big Five bars · com nome completo + percentual ─── */
.bigfive-bars {
  display: flex; flex-direction: column; gap: 10px; width: 100%;
}
.bf-caption {
  font-size: 9.5px; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--ink3);
  margin: 0 0 6px;
  opacity: 0.85;
}
.bf-row {
  display: grid;
  grid-template-columns: 130px 1fr 28px;
  align-items: center;
  gap: 12px;
}
.bf-label {
  font-size: 11px;
  font-weight: 500;
  color: var(--ink2);
  letter-spacing: 0.01em;
  text-align: left;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.bf-track {
  height: 5px;
  background:
    linear-gradient(180deg, rgba(0,0,0,0.25), rgba(255,255,255,0.04)),
    rgba(255,255,255,0.05);
  border-radius: 4px;
  overflow: hidden;
  position: relative;
}
.bf-track::before {
  /* shimmer leve no track */
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.03), transparent);
  pointer-events: none;
}
.bf-fill {
  height: 100%;
  border-radius: 4px;
  background:
    linear-gradient(90deg,
      var(--accent-cosmic) 0%,
      rgba(232,213,183,0.85) 60%,
      var(--accent-warm) 100%);
  box-shadow:
    0 0 6px rgba(232,213,183,0.4),
    inset 0 1px 0 rgba(255,255,255,0.25);
  transform-origin: left;
  transform: scaleX(0);
  transition: transform 1.2s var(--ease-expo);
}
.bf-fill.in { transform: scaleX(1); }
.bf-pct {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 14px;
  font-weight: 400;
  color: var(--ink2);
  text-align: right;
  letter-spacing: -0.01em;
  font-variant-numeric: tabular-nums;
}

/* Mobile: layout mais apertado */
@media (max-width: 640px) {
  .bf-row { grid-template-columns: 100px 1fr 26px; gap: 10px; }
  .bf-label { font-size: 10.5px; }
}

/* ─── Big Five MINI (versão compacta para card de tension) ─── */
.bigfive-mini {
  display: flex; flex-direction: column;
  gap: 6px;
  width: 90px;
  align-items: stretch;
}
.bf-mini-bar {
  display: block;
  height: 4px;
  width: 100%;
  background: rgba(255,255,255,0.06);
  border-radius: 3px;
  overflow: hidden;
  position: relative;
}
.bf-mini-bar::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  height: 100%;
  width: calc(var(--w, 0.5) * 100%);
  background: linear-gradient(90deg,
    var(--accent-cosmic) 0%,
    rgba(232,213,183,0.85) 60%,
    var(--accent-warm) 100%);
  border-radius: 3px;
  box-shadow:
    0 0 4px rgba(232,213,183,0.45),
    inset 0 1px 0 rgba(255,255,255,0.25);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 1s var(--ease-expo);
}
.bf-mini-bar.in::before { transform: scaleX(1); }

/* Astral mini ring */
.astral-mini-ring {
  width: 80px; height: 80px;
  border-radius: 50%;
  border: 1px solid rgba(232,213,183,0.15);
  position: relative;
  animation: mapRotate 20s linear infinite;
}
.astral-mini-ring::before {
  content: ''; position: absolute;
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--accent-warm);
  top: 50%; right: -4px;
  transform: translateY(-50%);
  box-shadow: 0 0 8px rgba(232,213,183,0.5);
}
.astral-mini-ring::after {
  content: ''; position: absolute;
  width: 5px; height: 5px; border-radius: 50%;
  background: var(--accent);
  bottom: 10px; left: 10px;
  box-shadow: 0 0 6px rgba(45,212,191,0.4);
}

/* Venn diagram */
.venn-wrap { position: relative; width: 100px; height: 64px; }
.venn-circle {
  position: absolute;
  width: 56px; height: 56px; border-radius: 50%;
  top: 4px;
  transition: opacity 0.8s var(--ease-expo), transform 0.8s var(--ease-expo);
}
.venn-c1 {
  left: 0;
  background: rgba(45,212,191,0.25);
  border: 1px solid rgba(45,212,191,0.4);
}
.venn-c2 {
  right: 0;
  background: rgba(232,213,183,0.15);
  border: 1px solid rgba(232,213,183,0.3);
}
.venn-intersect {
  position: absolute;
  width: 26px; height: 46px;
  top: 9px; left: 37px;
  background: rgba(232,213,183,0.25);
  border-radius: 0;
  clip-path: ellipse(50% 50% at 50% 50%);
  opacity: 0;
  transition: opacity 1s var(--ease-expo) 0.4s;
}
.venn-intersect.in { opacity: 1; }

/* =========================================================================
   SECTION 3 — SCROLLYTELLING / REVELAÇÃO
   ========================================================================= */
#revelation {
  background: transparent;
  position: relative;
  /* Atmosfera quente sutil que dá coesão visual ao bloco inteiro
     evitando o "flutuar no vazio" entre os steps */
  isolation: isolate;
}
#revelation::before {
  content: '';
  position: absolute;
  inset: 0;
  /* Atmosfera mínima · só creme cálido bem sutil, sem teal */
  background:
    radial-gradient(ellipse 70% 80% at 25% 50%,
      rgba(232, 213, 183, 0.025) 0%,
      transparent 60%);
  pointer-events: none;
  z-index: 0;
}
.story-outer {
  display: flex;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
}
.story-sticky {
  position: sticky;
  top: 0;
  width: 50%;
  height: 100vh;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  z-index: 1;
}
.story-map-stage {
  position: relative;
  width: min(420px, 44vw);
  aspect-ratio: 1;
}
/* Halo cálido atrás do mapa · viaja com o sticky pra criar atmosfera contínua
   conforme o usuário rola pelos steps */
.story-map-stage::before {
  content: '';
  position: absolute;
  inset: -45%;  /* spread bem maior pra fade gradual longo */
  border-radius: 50%;
  /* Múltiplas camadas de fade — do creme central até preto absoluto, sem corte */
  background:
    radial-gradient(circle,
      rgba(232, 213, 183, 0.05) 0%,
      rgba(232, 213, 183, 0.025) 18%,
      rgba(0, 0, 0, 0.10) 38%,
      rgba(0, 0, 0, 0.30) 60%,
      rgba(0, 0, 0, 0.55) 80%,
      transparent 100%);
  filter: blur(36px);
  pointer-events: none;
  z-index: -1;
  opacity: 0;
  transition: opacity 1.2s var(--ease-expo) 0.4s;
}
.story-map-stage.map-revealed::before { opacity: 1; }

/* ─── Birth chart completo (signos com nome, glifos, casas, eixos) ─── */
.story-birth-chart {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  opacity: 0;
  clip-path: circle(0% at 50% 50%);
  transform: scale(0.92);
  transition:
    opacity 1.1s var(--ease-expo) 0.3s,
    clip-path 1.6s cubic-bezier(0.22, 1, 0.36, 1) 0.3s,
    transform 1.4s var(--ease-expo) 0.3s;
}
.story-map-stage.map-revealed .story-birth-chart {
  opacity: 1;  /* Cor creme nítida — não esmaecido */
  clip-path: circle(75% at 50% 50%);
  transform: scale(1);
}

/* Camada 2 · overlay com planetas + aspectos + eixos ASC/DSC/IC/MC */
.story-birth-overlay {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  opacity: 0;
  transform: scale(0.95);
  transition:
    opacity 1.0s var(--ease-expo) 0.9s,
    transform 1.0s var(--ease-expo) 0.9s;
  z-index: 3;
  pointer-events: none;
}
.story-map-stage.map-revealed .story-birth-overlay {
  opacity: 1;
  transform: scale(1);
}

/* Labels ASC / DSC / IC / MC — eixos do birth chart */
.house-labels text {
  font-family: 'Inter', sans-serif;
  font-size: 6.5px;
  font-weight: 500;
  letter-spacing: 0.18em;
  fill: rgba(232,213,183,0.7);
}
.story-map-stage.map-revealed .house-labels {
  animation: houseLabelsFadeIn 0.8s var(--ease-expo) 1.0s both;
}
@keyframes houseLabelsFadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* Glyphs planetários dentro das bolinhas — renderização monocromática (não emoji colorido) */
.planet-glyph {
  font-family: 'Cormorant Garamond', 'Times New Roman', serif;
  font-size: 5.5px;
  font-weight: 400;
  fill: rgba(232,213,183,0.95);
  text-anchor: middle;
  pointer-events: none;
  font-variant-emoji: text;
  -webkit-font-variant-emoji: text;
}

/* ─── PLOT layer · escondido (substituído pelo birth-chart-clone.svg completo) ─── */
.story-map-plot {
  display: none;
}

/* ─── Aspectos coloridos · estilo birth chart real ─── */
.aspect {
  stroke-dasharray: 220;
  stroke-dashoffset: 220;
  stroke-width: 0.8;
}
.aspect-tense    { stroke: rgba(212, 89, 89, 0.55); }   /* vermelho/cobre */
.aspect-harmonic { stroke: rgba(118, 174, 190, 0.55); } /* azul/teal */

.story-map-stage.map-revealed .aspect {
  animation: drawAspect 1.2s var(--ease-expo) both;
}
.story-map-stage.map-revealed .aspect:nth-child(1) { animation-delay: 2.1s; }
.story-map-stage.map-revealed .aspect:nth-child(2) { animation-delay: 2.2s; }
.story-map-stage.map-revealed .aspect:nth-child(3) { animation-delay: 2.3s; }
.story-map-stage.map-revealed .aspect:nth-child(4) { animation-delay: 2.4s; }
.story-map-stage.map-revealed .aspect:nth-child(5) { animation-delay: 2.5s; }
.story-map-stage.map-revealed .aspect:nth-child(6) { animation-delay: 2.6s; }
.story-map-stage.map-revealed .aspect:nth-child(7) { animation-delay: 2.7s; }

@keyframes drawAspect {
  to { stroke-dashoffset: 0; }
}

/* Planetas — pontos limpos, entram em sequência depois dos signos */
.planet {
  opacity: 0;
  transform-box: fill-box;
  transform-origin: center;
}
.story-map-stage.map-revealed .planet {
  animation: planetFadeIn 0.6s var(--ease-expo) both;
}
.planet[data-planet="sun"]     { animation-delay: 1.45s; }
.planet[data-planet="moon"]    { animation-delay: 1.55s; }
.planet[data-planet="mercury"] { animation-delay: 1.62s; }
.planet[data-planet="venus"]   { animation-delay: 1.68s; }
.planet[data-planet="mars"]    { animation-delay: 1.74s; }
.planet[data-planet="jupiter"] { animation-delay: 1.80s; }
.planet[data-planet="saturn"]  { animation-delay: 1.86s; }
.planet[data-planet="uranus"]  { animation-delay: 1.90s; }
.planet[data-planet="neptune"] { animation-delay: 1.94s; }
.planet[data-planet="pluto"]   { animation-delay: 1.98s; }

@keyframes planetFadeIn {
  from { opacity: 0; transform: scale(0.4); }
  to   { opacity: 1; transform: scale(1); }
}

/* Quando o mapa é dimmado (steps 2+), o plot acompanha */
.story-map-svg { transition-property: opacity, clip-path, transform; }

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .story-map-plot, .zodiac-glyph, .planet {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
  .story-map-stage.map-revealed .story-map-plot { opacity: 1; transform: none; }
}

/* ─── Scanner ring · ativo durante o reveal do step 0 ─── */
.story-scanner {
  position: absolute; inset: 0;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.6s ease;
  z-index: 5;
}
.story-scanner svg {
  width: 100%; height: 100%;
  display: block;
}
.story-scanner.scanning {
  opacity: 1;
}
.story-scanner.scanning .story-scanner-arc {
  animation: scannerSweep 1.6s cubic-bezier(0.4, 0, 0.2, 1);
  transform-origin: 100px 100px;
  filter: drop-shadow(0 0 6px rgba(232,213,183,0.55));
}
@keyframes scannerSweep {
  from { transform: rotate(-90deg); opacity: 0.9; }
  to   { transform: rotate(360deg); opacity: 0; }
}

@media (prefers-reduced-motion: reduce) {
  .story-map-svg {
    transition: opacity 0.3s ease !important;
    clip-path: none !important;
    transform: none !important;
  }
  .story-scanner { display: none; }
}

/* Overlay layers */
.story-overlay {
  position: absolute; inset: 0;
  opacity: 0;
  transition: opacity 0.8s var(--ease-expo);
  pointer-events: none;
}
.story-overlay.active { opacity: 1; }

/* ─── Highlight do Sol e da Lua sobre os planetas plotados ─── */
/* Sol em Virgem está em (135, 142) do viewBox 200×200 → 67.5%, 71% */
#ov-sun {
  background:
    radial-gradient(circle at 67.5% 71%,
      rgba(232,213,183,0.55) 0%,
      rgba(232,213,183,0.25) 8%,
      rgba(232,213,183,0.08) 18%,
      transparent 32%);
  pointer-events: none;
  filter: blur(2px);
  z-index: 3;  /* acima do mapa, abaixo dos overlays maiores */
}
/* Lua em Câncer está em (160, 108) do viewBox 200×200 → 80%, 54% */
#ov-moon {
  background:
    radial-gradient(circle at 80% 54%,
      rgba(134,170,196,0.55) 0%,
      rgba(134,170,196,0.25) 8%,
      rgba(134,170,196,0.08) 18%,
      transparent 32%);
  pointer-events: none;
  filter: blur(2px);
  z-index: 3;
}
/* Pulso sutil sincronizado quando ativos */
#ov-sun.active, #ov-moon.active {
  animation: focusPulse 3s ease-in-out infinite;
}
@keyframes focusPulse {
  0%, 100% { opacity: 0.85; }
  50%      { opacity: 1; }
}
/* ─── Big Five overlay sobre o mapa (revelation section) ─── */
#ov-bigfive {
  display: flex; flex-direction: column; justify-content: flex-end;
  align-items: center;
  padding: 32px;
  /* Fade na cor warm da marca (#0C0B0A = --brand-anchor)
     · integra perfeitamente com o gradient body que termina nesse tom */
  background: linear-gradient(to top,
    rgba(12, 11, 10, 0.92) 0%,
    rgba(12, 11, 10, 0.55) 45%,
    rgba(12, 11, 10, 0.20) 75%,
    transparent 95%);
}
.bigfive-overlay {
  width: min(440px, 90%);
  padding: 20px 22px;
  background:
    linear-gradient(165deg, rgba(20,24,38,0.92) 0%, rgba(14,16,28,0.92) 100%);
  border: 1px solid rgba(232,213,183,0.10);
  border-radius: 14px;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.04),
    0 12px 32px rgba(0,0,0,0.45);
  backdrop-filter: blur(8px) saturate(1.1);
  -webkit-backdrop-filter: blur(8px) saturate(1.1);
}
.bigfive-overlay .bf-caption {
  color: var(--accent-warm);
  opacity: 0.75;
  margin-bottom: 14px;
  text-align: left;
}

/* Fusion highlight */
#ov-fusion {
  background: radial-gradient(circle at center, rgba(45,212,191,0.18) 0%, transparent 55%);
  border: 1px solid rgba(45,212,191,0.12);
  border-radius: 50%;
}

/* Connecting lines */
#ov-connect svg { width: 100%; height: 100%; }
#ov-connect line {
  stroke: var(--accent-warm);
  stroke-width: 0.8;
  stroke-dasharray: 4 4;
  opacity: 0.5;
}

/* Seal */
#ov-seal {
  display: flex; align-items: flex-end; justify-content: flex-end;
  padding: 20px;
}
/* ─── FUSION REVELATION (step 06) ──────────────────── */
#ov-seal {
  display: flex !important;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px 32px;
  gap: 36px;
}

.fusion-revelation {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: start;
  justify-items: center;
  width: min(560px, 100%);
  column-gap: 12px;
}

.fusion-side {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 14px;
  width: 100%;
  max-width: 160px;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.8s var(--ease-expo), transform 0.8s var(--ease-expo);
}
#ov-seal.fusion-play .fusion-map { opacity: 1; transform: translateY(0); transition-delay: 0.05s; }
#ov-seal.fusion-play .fusion-personality { opacity: 1; transform: translateY(0); transition-delay: 0.25s; }

.fusion-icon {
  width: 84px; height: 84px;
  display: flex; align-items: center; justify-content: center;
  background:
    radial-gradient(circle at 30% 25%, rgba(255,255,255,0.06) 0%, transparent 55%),
    linear-gradient(155deg, rgba(20,24,38,0.95) 0%, rgba(14,16,28,1) 100%);
  border-radius: 50%;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.05),
    0 8px 24px rgba(0,0,0,0.4),
    0 0 32px rgba(232,213,183,0.12);
  position: relative;
  flex-shrink: 0;
}
.fusion-icon::before {
  content: '';
  position: absolute;
  inset: -1.5px;
  border-radius: 50%;
  padding: 1.5px;
  background: conic-gradient(
    from 200deg,
    rgba(232,213,183,0.6),
    rgba(232,213,183,0.05) 30%,
    rgba(45,212,191,0.4) 55%,
    rgba(232,213,183,0.05) 80%,
    rgba(232,213,183,0.6)
  );
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  pointer-events: none;
  animation: avatarRingSpin 24s linear infinite;
}
/* Padding interno consistente nos 2 ícones */
.fusion-map .fusion-icon { padding: 8px; }
.fusion-personality .fusion-icon { padding: 16px 14px; }
.fusion-icon svg { width: 100%; height: 100%; }

/* Mini barras dentro do icon (lado direito) — perfeitamente centralizadas */
.fusion-bars {
  display: flex; flex-direction: column;
  gap: 5px;
  width: 100%;
  align-items: stretch;
  justify-content: center;
}
.fusion-bar {
  height: 3.5px;
  width: 100%;
  background:
    linear-gradient(90deg,
      var(--accent-cosmic) 0%,
      rgba(232,213,183,0.85) 60%,
      var(--accent-warm) 100%);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.9s var(--ease-expo);
  box-shadow: 0 0 4px rgba(232,213,183,0.35);
}

/* Container fixo de label + detail (mesma altura nos 2 lados) */
.fusion-text {
  display: flex; flex-direction: column; align-items: center;
  gap: 4px;
  min-height: 30px;
}
.fusion-label {
  font-size: 11.5px;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: 0.04em;
  margin: 0;
  text-align: center;
  line-height: 1.2;
}
.fusion-detail {
  font-size: 9px;
  color: var(--ink3);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin: 0;
  text-align: center;
  opacity: 0.7;
  line-height: 1.3;
}

/* Conector central — centralizado verticalmente com os ícones (não com o texto) */
.fusion-connector {
  display: flex; align-items: center; justify-content: center;
  position: relative;
  height: 84px;       /* mesma altura dos ícones */
  width: 100%;
  min-width: 90px;
  padding: 0;
  align-self: start;  /* alinha no topo do grid item, mesmo nível do icon */
}
.fusion-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(232,213,183,0.5), transparent);
  transform-origin: center;
  transform: scaleX(0);
  transition: transform 0.9s var(--ease-expo);
}
#ov-seal.fusion-play .fusion-line-l { transform: scaleX(1); transition-delay: 0.55s; }
#ov-seal.fusion-play .fusion-line-r { transform: scaleX(1); transition-delay: 0.55s; }

.fusion-plus {
  display: flex; align-items: center; justify-content: center;
  width: 36px; height: 36px;
  flex-shrink: 0;
  margin: 0 6px;
  border-radius: 50%;
  background: rgba(20,24,38,0.85);
  border: 1px solid rgba(232,213,183,0.18);
  opacity: 0;
  transform: scale(0.6) rotate(-90deg);
  transition: opacity 0.6s var(--ease-expo), transform 0.7s var(--ease-expo);
  box-shadow:
    0 0 0 4px rgba(232,213,183,0.05),
    0 0 16px rgba(232,213,183,0.3);
}
#ov-seal.fusion-play .fusion-plus {
  opacity: 1; transform: scale(1) rotate(0);
  transition-delay: 0.85s;
}

/* Selo final */
.fusion-seal-wrap {
  display: flex; flex-direction: column; align-items: center; gap: 12px;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.7s var(--ease-expo), transform 0.7s var(--ease-expo);
}
#ov-seal.fusion-play .fusion-seal-wrap {
  opacity: 1; transform: translateY(0);
  transition-delay: 1.4s;
}
.fusion-equals {
  opacity: 0.6;
  display: flex; align-items: center; justify-content: center;
}
.fusion-equals svg { display: block; }

/* Mobile */
@media (max-width: 640px) {
  #ov-seal { padding: 24px 16px; gap: 24px; }
  .fusion-revelation { column-gap: 4px; }
  .fusion-side { max-width: 110px; gap: 10px; }
  .fusion-icon { width: 64px; height: 64px; }
  .fusion-personality .fusion-icon { padding: 12px 10px; }
  .fusion-connector { height: 64px; min-width: 60px; }
  .fusion-plus { width: 28px; height: 28px; margin: 0 2px; }
  .fusion-plus svg { width: 16px; height: 16px; }
  .fusion-label { font-size: 10.5px; }
  .fusion-detail { font-size: 8.5px; letter-spacing: 0.1em; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .fusion-side, .fusion-line, .fusion-plus, .fusion-seal-wrap {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
  .fusion-icon::before { animation: none; }
}

.seal-badge {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 10px; font-weight: 500;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--earth);
  padding: 7px 14px; border-radius: 100px;
  background:
    linear-gradient(135deg, rgba(189,167,111,0.16) 0%, rgba(189,167,111,0.04) 100%);
  box-shadow:
    inset 0 1px 0 rgba(232,213,183,0.18),
    0 4px 12px rgba(189,167,111,0.18),
    0 0 24px rgba(189,167,111,0.12);
  isolation: isolate;
  overflow: hidden;
  white-space: nowrap;
}
/* SVG interno fica inline alinhado com o texto */
.seal-badge svg {
  display: inline-block;
  vertical-align: middle;
  flex-shrink: 0;
}
/* Conic gradient border premium */
.seal-badge::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: conic-gradient(from 0deg, rgba(189,167,111,0.6), rgba(232,213,183,0.15), rgba(189,167,111,0.6));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  pointer-events: none;
  animation: sealBadgeRing 8s linear infinite;
}
/* Shimmer sweep que cruza a cada 5s */
.seal-badge::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(105deg, transparent 35%, rgba(232,213,183,0.35) 50%, transparent 65%);
  transform: translateX(-120%);
  animation: sealBadgeShimmer 5s ease-in-out infinite;
  pointer-events: none;
}
@keyframes sealBadgeRing { to { transform: rotate(360deg); } }
@keyframes sealBadgeShimmer {
  0%, 60%, 100% { transform: translateX(-120%); }
  80%           { transform: translateX(120%); }
}
@media (prefers-reduced-motion: reduce) {
  .seal-badge::before, .seal-badge::after { animation: none; }
  .seal-badge::after { display: none; }
}

/* Steps */
.story-steps {
  width: 50%;
  padding: 120px 0 120px 80px;
}
.story-step {
  min-height: 100vh;
  display: flex; align-items: center;
  padding: 60px 0;
}
.step-content {
  max-width: 420px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s var(--ease-expo), transform 0.7s var(--ease-expo);
}
.step-content.active {
  opacity: 1;
  transform: translateY(0);
}
.step-num {
  font-size: 11px; font-weight: 500;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 20px;
  display: flex; align-items: center; gap: 8px;
}
.step-num::before { content: ''; display: block; width: 20px; height: 1px; background: var(--accent); opacity: 0.5; }
.step-content h2 {
  font-family: var(--font-serif);
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 300; line-height: 1.2;
  color: var(--ink); margin-bottom: 18px;
  letter-spacing: -0.02em;
}
.step-content h2 em { font-style: italic; color: var(--accent-warm); }
.step-content p {
  font-size: 16px; color: var(--ink2); line-height: 1.65;
}

/* =========================================================================
   SECTION 4 — DIFERENCIAIS
   ========================================================================= */
#differentials {
  padding: 140px 48px;
  background: transparent;
}
#differentials .inner { max-width: 1120px; margin: 0 auto; }
#differentials .section-label { margin-bottom: 72px; }

.diff-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.diff-card {
  /* Card translúcido · deixa o gradient body aparecer */
  background: linear-gradient(155deg, rgba(232,213,183,0.04) 0%, rgba(232,213,183,0.015) 100%);
  border-radius: 20px;
  padding: 48px 36px 40px;
  position: relative; overflow: hidden;
  border: 1px solid rgba(232,213,183,0.10);
  box-shadow:
    inset 0 1px 0 rgba(255, 248, 240, 0.04),
    0 4px 24px rgba(0, 0, 0, 0.20);
  backdrop-filter: blur(12px) saturate(1.1);
  -webkit-backdrop-filter: blur(12px) saturate(1.1);
  transition: transform 0.35s var(--ease-expo), box-shadow 0.35s var(--ease-expo), border-color 0.35s;
}
.diff-card:hover {
  transform: translateY(-4px);
  border-color: rgba(232, 213, 183, 0.20);
  box-shadow:
    inset 0 1px 0 rgba(255, 248, 240, 0.06),
    0 8px 36px rgba(0, 0, 0, 0.30);
}
.diff-card::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(140deg, rgba(255,255,255,0.04) 0%, transparent 50%);
  pointer-events: none;
}
.diff-visual {
  height: 200px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 32px;
  position: relative;
}
.diff-card h3 {
  font-family: var(--font-serif);
  font-size: 24px; font-weight: 400;
  color: var(--ink); margin-bottom: 14px;
  line-height: 1.25;
}
.diff-card p {
  font-size: 14px; color: var(--ink3); line-height: 1.65;
}
.diff-card .badge-exclusive {
  display: inline-flex; align-items: center; gap: 6px;
  margin-top: 20px;
  font-size: 10px; font-weight: 500;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--earth);
  background: rgba(189,167,111,0.1);
  border: 1px solid rgba(189,167,111,0.25);
  padding: 4px 10px; border-radius: 20px;
}

/* ─── DIFFERENTIAL 1 — Circular score meter (ampliado) ─── */
.score-meter-wrap {
  position: relative;
  width: 168px; height: 168px;
  opacity: 0;
  transform: scale(0.85);
  transition: opacity 0.9s var(--ease-expo), transform 0.9s var(--ease-expo);
}
.diff-card.in .score-meter-wrap {
  opacity: 1; transform: scale(1);
}
.score-meter-wrap svg { width: 100%; height: 100%; overflow: visible; }
.score-track {
  fill: none;
  stroke: rgba(255,255,255,0.07);
  stroke-width: 4;
}
.score-fill {
  fill: none;
  stroke: url(#scoreFillGrad);
  stroke-width: 4;
  stroke-linecap: round;
  stroke-dasharray: 245;
  stroke-dashoffset: 245;
  transform: rotate(-90deg); transform-origin: 50% 50%;
  transition: stroke-dashoffset 1.8s var(--ease-expo);
  filter: drop-shadow(0 0 6px rgba(232,213,183,0.55));
}
/* Tick marks decorativos ao redor */
.score-meter-wrap::before {
  content: '';
  position: absolute;
  inset: -14px;
  border-radius: 50%;
  background:
    repeating-conic-gradient(
      from 0deg,
      rgba(232,213,183,0.18) 0deg 1.5deg,
      transparent 1.5deg 30deg
    );
  -webkit-mask: radial-gradient(circle, transparent 60%, #000 62%, #000 64%, transparent 66%);
          mask: radial-gradient(circle, transparent 60%, #000 62%, #000 64%, transparent 66%);
  pointer-events: none;
}
/* Halo radial atrás */
.score-meter-wrap::after {
  content: '';
  position: absolute;
  inset: -20px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232,213,183,0.18) 0%, transparent 65%);
  filter: blur(10px);
  z-index: -1;
  pointer-events: none;
  opacity: 0;
  transition: opacity 1.2s ease 0.4s;
}
.diff-card.in .score-meter-wrap::after { opacity: 1; }

.score-center {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 6px;
}
.score-glyph-svg {
  width: 34px; height: 34px;
  filter:
    invert(85%) sepia(11%) saturate(569%) hue-rotate(2deg) brightness(99%) contrast(89%)
    drop-shadow(0 0 6px rgba(232,213,183,0.6));
}
.score-glyph {
  font-family: var(--font-serif);
  font-size: 32px; color: var(--accent-warm); line-height: 1;
}
.score-pct {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 400;
  color: var(--ink);
  letter-spacing: -0.01em;
  font-variant-numeric: tabular-nums;
  text-shadow: 0 0 12px rgba(232,213,183,0.4);
}

/* ─── DIFFERENTIAL 2 — AI Star Stage (estrela da marca + motion premium) ─── */
.ai-star-stage {
  position: relative;
  width: 200px; height: 200px;
  display: flex; align-items: center; justify-content: center;
  opacity: 0;
  transform: scale(0.85);
  transition: opacity 0.9s var(--ease-expo), transform 0.9s var(--ease-expo);
}
.diff-card.in .ai-star-stage {
  opacity: 1; transform: scale(1);
}

/* Halo respirando atrás */
.ai-halo {
  position: absolute; inset: 0;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(232,213,183,0.32) 0%, rgba(45,212,191,0.18) 35%, transparent 65%);
  filter: blur(18px);
  animation: aiHaloBreathe 4.5s ease-in-out infinite;
}
@keyframes aiHaloBreathe {
  0%, 100% { transform: scale(0.92); opacity: 0.65; }
  50%      { transform: scale(1.08); opacity: 1; }
}

/* Anéis orbitais */
.ai-orbit {
  position: absolute;
  width: 100%; height: 100%;
  pointer-events: none;
}
.ai-orbit-1 {
  animation: aiOrbitSpin 18s linear infinite;
}
.ai-orbit-2 {
  animation: aiOrbitSpin 11s linear infinite reverse;
}
@keyframes aiOrbitSpin {
  to { transform: rotate(360deg); }
}

/* Partículas orbitais (3 satélites em órbita) */
.ai-particle {
  position: absolute;
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--accent-warm);
  box-shadow:
    0 0 6px rgba(232,213,183,0.95),
    0 0 14px rgba(232,213,183,0.55);
  top: 50%; left: 50%;
  transform-origin: 0 0;
}
.ai-particle-1 {
  animation: aiParticleOrbit 7s linear infinite;
  --orbit-r: 86px;
}
.ai-particle-2 {
  animation: aiParticleOrbit 9s linear infinite reverse;
  --orbit-r: 62px;
  background: var(--accent-cosmic);
  box-shadow:
    0 0 6px rgba(45,212,191,0.95),
    0 0 14px rgba(45,212,191,0.5);
  animation-delay: -2s;
}
.ai-particle-3 {
  animation: aiParticleOrbit 12s linear infinite;
  --orbit-r: 86px;
  animation-delay: -5s;
  width: 3px; height: 3px;
}
@keyframes aiParticleOrbit {
  from { transform: rotate(0deg) translate(var(--orbit-r)) rotate(0deg); }
  to   { transform: rotate(360deg) translate(var(--orbit-r)) rotate(-360deg); }
}

/* Estrela da marca no centro */
.ai-star {
  position: relative;
  width: 96px; height: 96px;
  z-index: 2;
  filter:
    drop-shadow(0 0 12px rgba(232,213,183,0.7))
    drop-shadow(0 0 28px rgba(232,213,183,0.35));
  animation: aiStarSpin 32s linear infinite, aiStarFloat 6s ease-in-out infinite;
}
@keyframes aiStarSpin {
  to { transform: rotate(360deg); }
}
@keyframes aiStarFloat {
  0%, 100% { filter: drop-shadow(0 0 12px rgba(232,213,183,0.7)) drop-shadow(0 0 28px rgba(232,213,183,0.35)); }
  50%      { filter: drop-shadow(0 0 18px rgba(232,213,183,0.95)) drop-shadow(0 0 40px rgba(232,213,183,0.6)); }
}
.ai-core-pulse {
  transform-origin: 50px 50px;
  animation: aiCorePulse 2.2s ease-in-out infinite;
}
@keyframes aiCorePulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%      { opacity: 0.4; transform: scale(2.4); }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .ai-halo, .ai-orbit, .ai-particle, .ai-star, .ai-core-pulse,
  .score-meter-wrap, .ai-star-stage {
    animation: none !important;
    transform: none !important;
  }
  .ai-particle { display: none; }
  .diff-card.in .score-meter-wrap,
  .diff-card.in .ai-star-stage { opacity: 1; }
}

/* ─── DIFFERENTIAL 3 — Constelação · estrela central + 5 nodes em órbita ─── */
.constellation-stage {
  position: relative;
  width: 200px; height: 200px;
  display: flex; align-items: center; justify-content: center;
  opacity: 0;
  transform: scale(0.85);
  transition: opacity 0.9s var(--ease-expo), transform 0.9s var(--ease-expo);
}
.diff-card.in .constellation-stage {
  opacity: 1; transform: scale(1);
}

/* Halo central pulsante */
.const-halo {
  position: absolute; inset: 0;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232,213,183,0.28) 0%, rgba(45,212,191,0.12) 35%, transparent 65%);
  filter: blur(16px);
  animation: constHaloBreathe 4.5s ease-in-out infinite;
}
@keyframes constHaloBreathe {
  0%, 100% { transform: scale(0.92); opacity: 0.6; }
  50%      { transform: scale(1.08); opacity: 1; }
}

/* Anéis orbitais */
.const-orbit {
  position: absolute;
  width: 100%; height: 100%;
  pointer-events: none;
}
.const-orbit-1 { animation: constOrbitSpin 22s linear infinite; }
.const-orbit-2 { animation: constOrbitSpin 14s linear infinite reverse; }
@keyframes constOrbitSpin { to { transform: rotate(360deg); } }

/* Linhas da constelação · desenham com stroke-dashoffset ao revelar */
.const-lines {
  position: absolute;
  width: 100%; height: 100%;
  pointer-events: none;
}
.const-lines line {
  stroke-dasharray: 200;
  stroke-dashoffset: 200;
}
.diff-card.in .const-lines line {
  animation: constLineDraw 1.4s var(--ease-expo) forwards;
}
.diff-card.in .const-lines line:nth-child(1) { animation-delay: 0.4s; }
.diff-card.in .const-lines line:nth-child(2) { animation-delay: 0.5s; }
.diff-card.in .const-lines line:nth-child(3) { animation-delay: 0.6s; }
.diff-card.in .const-lines line:nth-child(4) { animation-delay: 0.7s; }
.diff-card.in .const-lines line:nth-child(5) { animation-delay: 0.8s; }
.diff-card.in .const-lines line:nth-child(6) { animation-delay: 0.95s; }
.diff-card.in .const-lines line:nth-child(7) { animation-delay: 1.05s; }
.diff-card.in .const-lines line:nth-child(8) { animation-delay: 1.15s; }
.diff-card.in .const-lines line:nth-child(9) { animation-delay: 1.25s; }
.diff-card.in .const-lines line:nth-child(10) { animation-delay: 1.35s; }
@keyframes constLineDraw { to { stroke-dashoffset: 0; } }

/* 5 Nodes orbitais (representam as features) */
.const-node {
  position: absolute;
  top: 0; left: 0;
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--accent-warm);
  box-shadow:
    0 0 6px rgba(232, 213, 183, 0.85),
    0 0 14px rgba(232, 213, 183, 0.4);
  transform: translate(calc(var(--x) - 50%), calc(var(--y) - 50%));
  opacity: 0;
  transition: opacity 0.5s ease;
}
.diff-card.in .const-node { opacity: 1; }
.diff-card.in .const-node-1 { transition-delay: 0.5s; animation: nodePulse 4s ease-in-out infinite 0.5s; }
.diff-card.in .const-node-2 { transition-delay: 0.7s; animation: nodePulse 4s ease-in-out infinite 1.3s; }
.diff-card.in .const-node-3 { transition-delay: 0.9s; animation: nodePulse 4s ease-in-out infinite 2.1s; }
.diff-card.in .const-node-4 { transition-delay: 1.1s; animation: nodePulse 4s ease-in-out infinite 2.9s; }
.diff-card.in .const-node-5 { transition-delay: 1.3s; animation: nodePulse 4s ease-in-out infinite 3.7s; }
@keyframes nodePulse {
  0%, 100% { box-shadow: 0 0 6px rgba(232,213,183,0.85), 0 0 14px rgba(232,213,183,0.4); }
  50%      { box-shadow: 0 0 10px rgba(232,213,183,1), 0 0 22px rgba(45,212,191,0.7); }
}

/* Estrela 8 pontas central · marca Alma */
.const-star {
  position: relative;
  width: 56px; height: 56px;
  z-index: 2;
  filter:
    drop-shadow(0 0 10px rgba(232, 213, 183, 0.7))
    drop-shadow(0 0 22px rgba(232, 213, 183, 0.35));
  animation: constStarSpin 28s linear infinite;
}
@keyframes constStarSpin { to { transform: rotate(360deg); } }

@media (prefers-reduced-motion: reduce) {
  .const-halo, .const-orbit, .const-star, .const-node, .constellation-stage {
    animation: none !important;
    transform: none !important;
  }
  .diff-card.in .constellation-stage { opacity: 1; }
  .diff-card.in .const-lines line { stroke-dashoffset: 0; animation: none; }
}

/* ─── DIFFERENTIAL 3 (legacy connect-icons — não usado mais) ─── */
.connect-icons {
  position: relative; width: 188px; height: 188px;
  opacity: 0;
  transform: scale(0.85);
  transition: opacity 0.9s var(--ease-expo), transform 0.9s var(--ease-expo);
}
.diff-card.in .connect-icons {
  opacity: 1; transform: scale(1);
}
/* Halo central */
.connect-icons::before {
  content: '';
  position: absolute; inset: 0;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232,213,183,0.18) 0%, transparent 55%);
  filter: blur(12px);
  opacity: 0;
  transition: opacity 1.2s ease 0.5s;
}
.diff-card.in .connect-icons::before { opacity: 1; }

.conn-center {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--accent-warm);
  box-shadow:
    0 0 24px rgba(232,213,183,0.6),
    0 0 0 1px rgba(232,213,183,0.25) inset,
    0 0 0 6px rgba(232,213,183,0.06);
  display: flex; align-items: center; justify-content: center;
  z-index: 3;
  animation: connCenterPulse 3s ease-in-out infinite;
}
.conn-center::after {
  content: "";
  width: 10px; height: 10px; border-radius: 50%;
  background: #0C0B0A;
  opacity: 0.75;
}
@keyframes connCenterPulse {
  0%, 100% { box-shadow: 0 0 24px rgba(232,213,183,0.5), 0 0 0 1px rgba(232,213,183,0.25) inset, 0 0 0 6px rgba(232,213,183,0.06); }
  50%      { box-shadow: 0 0 36px rgba(232,213,183,0.85), 0 0 0 1px rgba(232,213,183,0.4) inset, 0 0 0 12px rgba(232,213,183,0.04); }
}
.conn-dot {
  position: absolute; width: 32px; height: 32px; border-radius: 50%;
  background:
    linear-gradient(155deg, rgba(20,24,38,0.95) 0%, rgba(14,16,28,1) 100%);
  border: 1px solid rgba(232,213,183,0.22);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.45), inset 0 1px 0 rgba(255,255,255,0.04);
  transition: transform 0.8s var(--ease-expo), opacity 0.8s var(--ease-expo);
  z-index: 2;
}
.conn-dot svg {
  width: 16px; height: 16px;
  display: block;
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .connect-icons, .conn-center { animation: none !important; transform: translate(-50%, -50%) !important; }
  .diff-card.in .connect-icons { opacity: 1; transform: none; }
  .conn-center { transform: translate(-50%, -50%) !important; }
}
.conn-line {
  position: absolute;
  top: 50%; left: 50%;
  height: 1px;
  background: linear-gradient(90deg, rgba(232,213,183,0.55), rgba(232,213,183,0.05));
  transform-origin: left center;
  opacity: 0;
  transition: opacity 0.6s var(--ease-expo);
  z-index: 1;
  pointer-events: none;
}
.conn-line.in { opacity: 1; }

/* =========================================================================
   SECTION 5 — AI CHAT
   ========================================================================= */
#ai-section {
  padding: 140px 48px;
  background: transparent;
  overflow: hidden;
}
#ai-section .inner {
  max-width: 1120px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
}
/* Conversação · mesmo tamanho/peso das outras section-labels, mas alinhada à esquerda */
.ai-text-col .section-label {
  text-align: left;
  justify-content: flex-start;
  margin-bottom: 20px;
}
.ai-text-col .section-label::before { display: none; }
.ai-text-col .section-label::after { display: none; }
.ai-text-col h2 {
  font-family: var(--font-serif);
  font-size: clamp(34px, 4vw, 52px);
  font-weight: 300; line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--ink); margin: 20px 0 24px;
}
.ai-text-col h2 em { font-style: italic; color: var(--accent-warm); }
.ai-text-col p { font-size: 16px; color: var(--ink2); line-height: 1.65; }

/* iPhone mockup */
.phone-wrap {
  position: relative;
  display: flex; justify-content: center;
}
.phone-frame {
  width: 260px;
  border-radius: 44px;
  background: #0c0b0a;
  border: 1.5px solid rgba(255,255,255,0.08);
  box-shadow: 0 32px 80px rgba(0,0,0,0.6), 0 0 0 1px rgba(255,255,255,0.04), inset 0 1px 0 rgba(255,255,255,0.06);
  overflow: hidden;
  padding: 16px 12px 20px;
  position: relative;
}
.phone-notch {
  width: 90px; height: 26px; border-radius: 14px;
  background: #050505;
  margin: 0 auto 14px;
  position: relative;
}
.phone-notch::before {
  content: ''; position: absolute;
  top: 50%; right: 22px; transform: translateY(-50%);
  width: 10px; height: 10px; border-radius: 50%;
  background: #111;
}
.chat-area {
  display: flex; flex-direction: column; gap: 10px;
  padding: 4px 4px 8px;
  min-height: 400px;
}
.chat-bubble {
  max-width: 85%; padding: 10px 14px; border-radius: 16px;
  font-size: 12px; line-height: 1.5; font-weight: 400;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.5s var(--ease-expo), transform 0.5s var(--ease-expo);
}
.chat-bubble.in { opacity: 1; transform: translateY(0); }
.bubble-alma {
  background: rgba(10,31,28,0.9);
  color: var(--ink2);
  border-bottom-left-radius: 4px;
  align-self: flex-start;
}
.bubble-alma .bubble-name {
  font-size: 9px; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 4px;
}
.bubble-user {
  background: rgba(232,213,183,0.12);
  color: var(--ink);
  border-bottom-right-radius: 4px;
  align-self: flex-end;
}
.typing-dots {
  display: flex; gap: 4px; padding: 8px 14px;
  background: rgba(10,31,28,0.9); border-radius: 16px 16px 16px 4px;
  align-self: flex-start; opacity: 0;
  transition: opacity 0.3s;
}
.typing-dots span {
  width: 5px; height: 5px; border-radius: 50%;
  background: var(--accent);
  animation: typingDot 1.2s ease-in-out infinite;
}
.typing-dots span:nth-child(2) { animation-delay: 0.15s; }
.typing-dots span:nth-child(3) { animation-delay: 0.3s; }
@keyframes typingDot {
  0%, 80%, 100% { transform: translateY(0); opacity: 0.4; }
  40%           { transform: translateY(-4px); opacity: 1; }
}

/* =========================================================================
   SECTION 6 — CATÁLOGO / PLANOS
   ========================================================================= */
#catalogue {
  padding: 140px 48px;
  background: linear-gradient(180deg, var(--bg-deep) 0%, #080b17 100%);
}
#catalogue .inner { max-width: 1100px; margin: 0 auto; }
#catalogue .section-label { margin-bottom: 72px; }

.catalogue-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.cat-col {
  padding: 40px 32px;
  position: relative;
}
.cat-col:first-child {
  background: var(--surface-lp);
  border-radius: 20px 0 0 20px;
}
.cat-col:nth-child(2) {
  background: linear-gradient(160deg, rgba(45,212,191,0.1) 0%, rgba(30,34,53,1) 100%);
  border-radius: 0;
  z-index: 1;
  box-shadow: 0 0 60px rgba(45,212,191,0.08);
}
.cat-col:last-child {
  background: var(--surface-lp);
  border-radius: 0 20px 20px 0;
}
.cat-tier {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 4px;
  padding: 4px 10px;
  border-radius: 100px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  align-self: flex-start;
}
.tier-free   { color: var(--accent);     background: rgba(45,212,191,0.10);  border-color: rgba(45,212,191,0.25); }
.tier-plus   { color: var(--fire);       background: rgba(212,137,110,0.12); border-color: rgba(212,137,110,0.30); }
.tier-pro    { color: var(--earth);      background: rgba(189,167,111,0.12); border-color: rgba(189,167,111,0.30); }
.cat-headline {
  font-family: var(--font-serif);
  font-size: 20px; font-weight: 400;
  color: var(--ink3); margin-bottom: 32px;
  font-style: italic;
}
.cat-items {
  list-style: none;
  display: flex; flex-direction: column; gap: 12px;
  margin-bottom: 24px;
}
.cat-item {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 13px; color: var(--ink2); line-height: 1.45;
  opacity: 0;
  transform: translateX(-8px);
  transition: opacity 0.5s var(--ease-expo), transform 0.5s var(--ease-expo);
}
.cat-item.in { opacity: 1; transform: translateX(0); }
.cat-item::before {
  content: '✦';
  font-size: 7px; margin-top: 4px;
  flex-shrink: 0;
}
.cat-col:first-child .cat-item::before { color: var(--accent); }
.cat-col:nth-child(2) .cat-item::before { color: var(--fire); }
.cat-col:last-child .cat-item::before  { color: var(--earth); }
.cat-item .cat-sub {
  display: flex; flex-direction: column; gap: 2px;
}
.cat-item .cat-sub-item {
  font-size: 12px; color: var(--ink4);
  padding-left: 10px;
  display: flex; align-items: baseline; gap: 6px;
}
.cat-item .cat-sub-item::before { content: '–'; font-size: 10px; }
.exclusive-tag {
  font-size: 9px; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--earth);
  background: rgba(189,167,111,0.12);
  border: 1px solid rgba(189,167,111,0.25);
  padding: 2px 7px; border-radius: 10px;
  margin-left: 6px;
  vertical-align: middle;
}
.cat-divider {
  height: 1px; background: var(--divider); margin: 20px 0;
}

/* =========================================================================
   SECTION 7 — PROVA SOCIAL
   ========================================================================= */
#social-proof {
  padding: 120px 0;
  background: transparent;
  overflow: hidden;
}
#social-proof .section-label { margin-bottom: 56px; padding: 0 48px; }
.track-spacer {
  flex-shrink: 0;
  width: 48px;
  pointer-events: none;
  scroll-snap-align: none;
}
.testimonials-track {
  display: flex; gap: 20px;
  padding: 0 0 8px;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  scroll-snap-type: x mandatory;
  scroll-padding-left: 48px;
}
.testimonials-track::-webkit-scrollbar { display: none; }
.testimonial-card { scroll-snap-align: start; }
.testimonials-track::-webkit-scrollbar { display: none; }
.testimonial-card {
  background: linear-gradient(155deg, rgba(232,213,183,0.04) 0%, rgba(232,213,183,0.015) 100%);
  border-radius: 16px;
  padding: 32px 28px;
  min-width: 320px; max-width: 360px;
  border: 1px solid rgba(232,213,183,0.10);
  box-shadow:
    inset 0 1px 0 rgba(255, 248, 240, 0.04),
    0 4px 18px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  scroll-snap-align: start;
  flex-shrink: 0;
  transition: transform 0.3s var(--ease-expo), border-color 0.3s, box-shadow 0.3s;
}
.testimonial-card:hover {
  transform: translateY(-3px);
  border-color: rgba(232, 213, 183, 0.20);
  box-shadow:
    inset 0 1px 0 rgba(255, 248, 240, 0.06),
    0 8px 28px rgba(0, 0, 0, 0.25);
}
.test-quote {
  font-family: var(--font-serif);
  font-size: 18px; font-weight: 300; font-style: italic;
  color: var(--ink); line-height: 1.5;
  margin-bottom: 24px;
}
.test-meta {
  display: flex; align-items: center; gap: 12px;
}
.test-avatar {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--s3);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-serif);
  font-size: 15px; color: var(--ink3);
  flex-shrink: 0;
}
.test-info { display: flex; flex-direction: column; gap: 2px; }
.test-name { font-size: 13px; font-weight: 500; color: var(--ink); }
.test-detail { font-size: 12px; color: var(--ink4); }

/* =========================================================================
   SECTION 8 — PRICING
   ========================================================================= */
#pricing {
  padding: 140px 48px;
  background: linear-gradient(180deg, #080b17 0%, var(--bg-deep) 100%);
}
#pricing .inner { max-width: 1060px; margin: 0 auto; }
#pricing .section-label { margin-bottom: 40px; }

.pricing-toggle {
  display: flex; align-items: center; justify-content: center;
  gap: 16px;
  margin-bottom: 64px;
}
.toggle-label {
  font-size: 13px; color: var(--ink3); font-weight: 450;
  cursor: pointer;
  transition: color 0.2s;
}
.toggle-label.active { color: var(--ink); }
.toggle-switch {
  width: 48px; height: 26px; border-radius: 13px;
  background: var(--s3);
  position: relative; cursor: pointer;
  border: 1px solid var(--border2);
  transition: background 0.3s;
}
.toggle-switch.annual { background: rgba(232,213,183,0.15); }
.toggle-knob {
  position: absolute; top: 3px; left: 3px;
  width: 18px; height: 18px; border-radius: 50%;
  background: var(--ink3);
  transition: transform 0.3s var(--ease-expo), background 0.3s;
}
.toggle-switch.annual .toggle-knob {
  transform: translateX(22px);
  background: var(--accent-warm);
}
.annual-badge {
  font-size: 10px; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-bg, rgba(45,212,191,0.1));
  border: 1px solid rgba(45,212,191,0.2);
  padding: 3px 8px; border-radius: 10px;
  opacity: 0; transform: scale(0.8);
  transition: opacity 0.3s var(--ease-expo), transform 0.3s var(--ease-expo);
}
.annual-badge.visible { opacity: 1; transform: scale(1); }

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr 1fr;
  gap: 2px;
  align-items: start;
}
.price-card {
  border-radius: 20px;
  padding: 40px 32px;
  background: var(--surface-lp);
  position: relative; overflow: hidden;
  border: 1px solid transparent;
  transition: transform 0.35s var(--ease-expo), box-shadow 0.35s;
}
.price-card:hover { transform: translateY(-3px); }
.price-card.featured {
  background: linear-gradient(160deg, rgba(45,212,191,0.12) 0%, rgba(30,34,53,0.98) 100%);
  border-color: rgba(45,212,191,0.25);
  box-shadow: 0 0 60px rgba(45,212,191,0.1);
  margin-top: -12px;
  padding-top: 52px;
}
.price-card.featured:hover { box-shadow: 0 8px 60px rgba(45,212,191,0.18); }
.featured-badge {
  position: absolute; top: 18px; right: 20px;
  font-size: 9px; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--fire);
  background: rgba(212,137,110,0.12);
  border: 1px solid rgba(212,137,110,0.25);
  padding: 3px 10px; border-radius: 10px;
}
.price-tier {
  font-size: 10px; font-weight: 600;
  letter-spacing: 0.16em; text-transform: uppercase;
  margin-bottom: 8px;
}
.price-headline {
  font-family: var(--font-serif);
  font-size: 16px; font-weight: 400; font-style: italic;
  color: var(--ink3); margin-bottom: 24px;
}
.price-amount {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 10px;
}
.price-currency {
  font-family: var(--font-serif);
  font-size: 24px;
  font-weight: 400;
  color: var(--ink2);
  align-self: flex-start;
  line-height: 1.05;
  margin-top: 6px;
}
.price-num {
  font-family: var(--font-serif);
  font-size: 56px;
  font-weight: 300;
  line-height: 0.95;
  color: var(--ink);
  letter-spacing: -0.03em;
  transition: all 0.4s var(--ease-expo);
  font-variant-numeric: tabular-nums;
}
.price-period {
  font-size: 14px;
  color: var(--ink3);
  letter-spacing: 0.01em;
  align-self: flex-end;
  font-weight: 400;
  margin-bottom: 4px;
}
.price-features {
  list-style: none;
  display: flex; flex-direction: column; gap: 10px;
  margin: 24px 0;
}
.price-feat {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 13px; color: var(--ink2); line-height: 1.4;
}
.price-feat::before {
  content: '✦'; font-size: 7px; margin-top: 4px; flex-shrink: 0;
}
.price-card:first-child .price-feat::before { color: var(--accent); }
.price-card.featured .price-feat::before   { color: var(--fire); }
.price-card:last-child .price-feat::before  { color: var(--earth); }
.price-divider { height: 1px; background: var(--divider); margin: 20px 0; }
/* CTAs primário (contratar) — accent teal centralizado */
.price-cta-primary {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 14px 20px;
  border-radius: 999px;
  background: var(--accent);
  color: #050505;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-align: center;
  text-decoration: none;
  transition: box-shadow 0.35s var(--ease-expo), transform 0.2s, background 0.2s;
}
.price-cta-primary:hover {
  background: #5EEAD4;  /* teal mais claro no hover */
  box-shadow: 0 0 32px rgba(45, 212, 191, 0.40);
  transform: translateY(-1px);
}
/* CTA secundário · centralizado */
.price-cta-secondary {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 13px 20px;
  border-radius: 999px;
  border: 1px solid var(--border2);
  color: var(--ink2);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.01em;
  text-align: center;
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}
.price-cta-secondary:hover {
  border-color: rgba(232, 213, 183, 0.25);
  color: var(--ink);
  background: rgba(232, 213, 183, 0.04);
}
.price-note {
  font-size: 11px; color: var(--ink4);
  text-align: center; margin-top: 10px;
}

/* =========================================================================
   SECTION 9 — FAQ
   ========================================================================= */
#faq {
  padding: 120px 48px;
  background: transparent;
}
#faq .inner { max-width: 720px; margin: 0 auto; }
#faq .section-label { margin-bottom: 60px; }
.faq-list { display: flex; flex-direction: column; gap: 2px; }
.faq-item {
  border-radius: 12px;
  background: linear-gradient(155deg, rgba(232,213,183,0.04) 0%, rgba(232,213,183,0.015) 100%);
  border: 1px solid rgba(232,213,183,0.10);
  box-shadow: inset 0 1px 0 rgba(255, 248, 240, 0.03);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  overflow: hidden;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.faq-item.open {
  border-color: rgba(232, 213, 183, 0.20);
  box-shadow: inset 0 1px 0 rgba(255, 248, 240, 0.05), 0 4px 18px rgba(0, 0, 0, 0.18);
}
.faq-q {
  width: 100%; padding: 22px 24px;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  text-align: left;
  font-size: 15px; font-weight: 450; color: var(--ink);
  transition: color 0.2s;
  background: none;
}
.faq-q:hover { color: var(--ink2); }
.faq-chevron {
  flex-shrink: 0; width: 18px; height: 18px;
  border-radius: 50%; border: 1px solid var(--divider);
  display: flex; align-items: center; justify-content: center;
  transition: transform 0.35s var(--ease-expo), border-color 0.2s;
}
.faq-item.open .faq-chevron { transform: rotate(180deg); border-color: rgba(255,255,255,0.15); }
.faq-chevron svg { width: 10px; height: 10px; stroke: var(--ink3); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height 0.5s var(--ease-expo);
}
.faq-item.open .faq-a { max-height: 300px; }
.faq-a-inner {
  padding: 0 24px 20px;
  font-size: 14px; color: var(--ink3); line-height: 1.7;
}
.faq-a-inner a { color: var(--accent); border-bottom: 1px solid rgba(45,212,191,0.3); }

/* =========================================================================
   SECTION 10 — FOOTER / ÂNCORA
   ========================================================================= */
#footer-anchor {
  padding: 160px 48px;
  background: transparent;
  text-align: center;
  position: relative; overflow: hidden;
}
.footer-bg-glow {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 40% at 50% 80%, rgba(45,212,191,0.07) 0%, transparent 70%);
  pointer-events: none;
}
#footer-anchor .tagline {
  font-family: var(--font-serif);
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 300; font-style: italic;
  color: var(--ink); letter-spacing: -0.02em;
  margin-bottom: 48px;
  text-wrap: pretty;
}
#footer-anchor .tagline em { color: var(--accent-warm); }
#footer-anchor .btn-primary { margin: 0 auto; display: inline-block; }
.footer-links {
  display: flex; align-items: center; justify-content: center;
  gap: 32px; flex-wrap: wrap;
  margin-top: 56px;
  padding-top: 40px;
  border-top: 1px solid var(--divider);
}
.footer-links a {
  font-size: 12px; color: var(--ink4);
  letter-spacing: 0.04em;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--ink3); }
.footer-brand {
  font-family: var(--font-serif);
  font-size: 13px; color: var(--ink4);
  letter-spacing: 0.1em; text-transform: uppercase;
}

/* =========================================================================
   MOBILE RESPONSIVE
   ========================================================================= */
@media (max-width: 768px) {
  #nav { padding: 0 20px; }
  .nav-links { display: none; }

  /* Hero · espaçamentos enxutos pra caber em rolagem confortável */
  #hero { padding-top: 60px; }
  .hero-h1 { font-size: clamp(34px, 8vw, 44px) !important; line-height: 1.15; }
  .hero-h1-main { font-size: 1em; }
  .hero-sub { font-size: 14px; line-height: 1.55; }
  .hero-eyebrow { font-size: 10px; }

  /* Section labels (sobre cada seção) compactas */
  .section-label { margin-bottom: 28px !important; font-size: 10.5px; }
  .plans-h2, .differentials-h2, .testimonials-h2, .tension-h2, .plans-h2 {
    font-size: clamp(26px, 6.4vw, 34px) !important;
    line-height: 1.18;
    margin-bottom: 32px !important;
  }
  /* Body text geral mobile */
  p { font-size: 14px; }

  /* Carrosseis · trava arraste vertical da página durante swipe horizontal */
  .plans-grid, .diff-grid, .tension-grid, .testimonials-track {
    touch-action: pan-x !important;
    overscroll-behavior-x: contain;
    overscroll-behavior-y: none;
  }

  /* Tension cards viram CARROSSEL horizontal no mobile */
  #tension { padding: 64px 0; }
  #tension .inner { padding: 0 20px; position: relative; padding-bottom: 32px; }
  .tension-grid {
    display: flex;
    grid-template-columns: none;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    gap: 14px;
    padding: 8px 20px 24px;
    margin: 0 -20px;
    -webkit-overflow-scrolling: touch;
    scroll-padding-left: 20px;
    scrollbar-width: none;
  }
  .tension-grid::-webkit-scrollbar { display: none; }
  .tension-card {
    flex: 0 0 86%;
    max-width: 360px;
    scroll-snap-align: center;
    border-radius: 20px !important;
    padding: 40px 28px;
  }

  /* ─── Scrollytelling REDESENHADO PRA MOBILE ─────────────────
     Desktop: mapa lateral sticky · Mobile: mapa fixo no topo da viewport,
     steps descem como cards verticais abaixo dele. Sem overlays sobrepostos. */
  .story-outer { flex-direction: column; padding: 0; }
  .story-sticky {
    position: sticky;
    top: 0;
    width: 100%;
    height: auto;
    padding: 20px 20px 0;   /* zero bottom · gradient cuida do fade */
    /* Gradient AGRESSIVO · termina logo após o mapa, não vaza pros cards */
    background: linear-gradient(180deg,
      var(--brand-warm) 0%,
      var(--brand-warm) 35%,
      rgba(14,13,11,0.50) 60%,
      transparent 80%);
    z-index: 5;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
  }
  /* Mapa COMPACTO · 130px */
  .story-map-stage { width: min(130px, 35vw); }
  .story-map-stage::before {
    inset: -12%;
    filter: blur(14px);
  }
  /* Steps começam ENCOSTADOS no mapa · sem espaço morto */
  .story-steps {
    width: 100%;
    padding: 0 20px 56px;
    margin-top: -16px;       /* puxa pra cima · encosta no mapa */
  }
  .story-step {
    min-height: auto;
    padding: 8px 0 20px;
  }
  .step-content {
    background: linear-gradient(155deg, var(--s2) 0%, var(--surface) 100%);
    border: 1px solid var(--border2);
    border-radius: 16px;
    padding: 24px 22px;
    box-shadow: inset 0 1px 0 rgba(255,248,240,0.04), var(--shadow-sm);
    /* Mobile: step content sempre visível (sem ativação por scroll) */
    opacity: 1 !important;
    transform: none !important;
    max-width: 100%;
  }

  /* Esconde overlays sobrepostos no mobile (não sobrepõem ao mapa pequeno).
     Big Five vai aparecer como card próprio dentro do step 03. */
  #ov-sun, #ov-moon, #ov-fusion, #ov-connect { display: none; }

  /* Big Five: vira CARD ESTÁTICO embedded · sempre visível, não overlay */
  #ov-bigfive {
    position: relative;
    inset: auto;
    padding: 0;
    margin: 20px 0 0;
    background: transparent;
    display: block !important;
    opacity: 1 !important;  /* ignora ativação por step (sempre visível) */
  }
  #ov-bigfive .bigfive-overlay {
    width: 100%; max-width: 100%;
    padding: 18px 20px;
    background: linear-gradient(155deg, rgba(232,213,183,0.05) 0%, rgba(232,213,183,0.02) 100%);
    border: 1px solid rgba(232,213,183,0.12);
    border-radius: 14px;
    backdrop-filter: blur(10px);
    box-shadow: inset 0 1px 0 rgba(255,248,240,0.04), 0 4px 18px rgba(0,0,0,0.18);
  }

  /* Fusion (step 06): também vira inline */
  #ov-seal {
    position: relative;
    inset: auto;
    padding: 24px 0 0;
    margin: 16px 0 0;
    display: flex !important;
  }
  .fusion-revelation { gap: 4px; }
  .fusion-side { max-width: 90px; }
  .fusion-icon { width: 56px; height: 56px; }
  .fusion-personality .fusion-icon { padding: 10px 8px; }
  .fusion-connector { height: 56px; min-width: 40px; }
  .fusion-plus { width: 24px; height: 24px; margin: 0; }
  .fusion-plus svg { width: 14px; height: 14px; }

  /* Differentials cards viram CARROSSEL horizontal no mobile */
  #differentials { padding: 64px 0; }
  #differentials .inner { padding: 0 20px; position: relative; padding-bottom: 32px; }
  .diff-grid {
    display: flex;
    grid-template-columns: none;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    gap: 14px;
    padding: 8px 20px 24px;
    margin: 0 -20px;
    -webkit-overflow-scrolling: touch;
    scroll-padding-left: 20px;
    scrollbar-width: none;
  }
  .diff-grid::-webkit-scrollbar { display: none; }
  .diff-card {
    flex: 0 0 86%;
    max-width: 360px;
    scroll-snap-align: center;
    padding: 36px 28px 32px;
  }

  #ai-section { padding: 64px 20px; }
  #ai-section .inner { grid-template-columns: 1fr; gap: 48px; }
  /* Mobile: texto vem primeiro (contexto), phone depois (demo) */
  .ai-text-col { order: 1; }
  .phone-wrap { order: 2; }

  #catalogue { padding: 80px 20px; }
  .catalogue-grid { grid-template-columns: 1fr; gap: 2px; }
  .cat-col:first-child { border-radius: 20px 20px 0 0; }
  .cat-col:nth-child(2) { border-radius: 0; }
  .cat-col:last-child  { border-radius: 0 0 20px 20px; }

  #pricing { padding: 80px 20px; }
  .pricing-grid { grid-template-columns: 1fr; gap: 16px; }
  .price-card.featured { margin-top: 0; padding-top: 40px; }

  #faq { padding: 64px 20px; }
  #footer-anchor { padding: 100px 20px; }
  .footer-links { gap: 20px; }
}

@media (max-width: 480px) {
  .hero-h1 { font-size: 32px; }
  .hero-ctas { flex-direction: column; width: 100%; }
  .btn-primary { width: 100%; text-align: center; }
}

/* ═══════════════════════════════════════════════════════
   MOBILE GLOBAL OVERRIDES · garante UX completa em telas
   pequenas (375px–768px). Cobre o que faltava.
   ═══════════════════════════════════════════════════════ */

/* Nav: links somem em mobile, mantém logo + CTA */
@media (max-width: 768px) {
  #nav {
    padding: 0 16px;
  }
  .nav-links { display: none; }
  .nav-cta { padding: 7px 16px; font-size: 12px; }
}

/* Hero: tipografia mais responsiva, padding ajustado, prelude menor */
@media (max-width: 640px) {
  #hero-content {
    padding: clamp(60px, 8vh, 100px) 20px;
    gap: clamp(12px, 2vh, 24px);
  }
  .hero-eyebrow { font-size: 10px; letter-spacing: 0.14em; }
  .hero-h1 { font-size: clamp(28px, 7.5vw, 42px) !important; line-height: 1.18; }
  .hero-h1-prelude { font-size: clamp(15px, 3.8vw, 20px) !important; margin-bottom: 12px; }
  .hero-sub { font-size: clamp(13px, 3.5vw, 15px); padding: 0 8px; }
  .hero-ctas { gap: 12px; }
  .btn-primary, .btn-secondary { padding: 14px 20px; font-size: 14px; min-height: 48px; }
  /* Hero map mais compacto pra deixar o conteúdo respirar */
  #hero-map-wrap { width: min(420px, 80vw, 50vh); opacity: 0.6; }
}

/* Tension cards: padding interno maior em mobile */
@media (max-width: 640px) {
  .tension-card { padding: 32px 24px; min-height: auto; }
  .tension-card h2 { font-size: clamp(22px, 5.5vw, 30px) !important; }
  .tension-card p  { font-size: 14px; }
  .tension-visual  { height: 80px; margin-top: 24px; }
}

/* Story revelation (scrollytelling): mapa em cima, texto abaixo de cada step */
@media (max-width: 768px) {
  .story-map-stage { width: min(280px, 75vw); }
  .story-step { padding: 32px 0; }
  .step-content h2 { font-size: clamp(22px, 5.5vw, 30px) !important; }
  .step-content p  { font-size: 14px; line-height: 1.55; }
  .step-num { font-size: 11px; }
  /* Big-five overlay no mapa: card menor */
  .bigfive-overlay { width: min(320px, 90%); padding: 14px 16px; }
  .bigfive-overlay .bf-row {
    grid-template-columns: 90px 1fr 22px;
    gap: 8px;
  }
  .bigfive-overlay .bf-label { font-size: 9.5px; }
  .bigfive-overlay .bf-pct   { font-size: 11px; }
  /* Fusion (step 06) — ajustes já existem em max-width: 640px do bloco fusion */
}

/* Diferenciais: cards em coluna, visuais menores */
@media (max-width: 640px) {
  .diff-card { padding: 32px 24px; }
  .diff-card h3 { font-size: 22px; }
  .diff-card p  { font-size: 13.5px; }
  .diff-visual  { height: 160px; margin-bottom: 24px; }
  .score-meter-wrap { width: 140px; height: 140px; }
  .ai-star-stage { width: 160px; height: 160px; }
  .ai-star { width: 76px; height: 76px; }
  .constellation-stage { width: 160px; height: 160px; }
  .const-star { width: 44px; height: 44px; }
  .const-node { width: 8px; height: 8px; }
  .differentials-h2 { font-size: clamp(28px, 6.5vw, 40px) !important; }
}

/* AI Section: phone mockup primeiro, texto abaixo */
@media (max-width: 768px) {
  .ai-text-col { text-align: left; }
  .phone-frame { width: min(280px, 80vw); }
}

/* Social proof: stats empilhadas, testimonials swipe-friendly */
@media (max-width: 640px) {
  #social-proof { padding: 64px 16px; }
  .testimonials-track { gap: 12px; padding: 16px 8px; }
  .testimonial-card { width: min(280px, 85vw); padding: 24px; }
  .test-quote { font-size: 14px; line-height: 1.5; }
  .test-name { font-size: 13px; }
  .test-detail { font-size: 11px; }
  .test-avatar { width: 40px; height: 40px; padding: 8px; }
}

/* Plans (planos): mobile · CARROSSEL horizontal LIMPO · sem overlays/máscaras */
@media (max-width: 768px) {
  .plans-grid {
    display: flex !important;
    grid-template-columns: none !important;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    gap: 14px;
    padding: 8px 16px 16px;
    margin: 0 -16px;          /* sangria full-bleed · cards encostam nas bordas */
    -webkit-overflow-scrolling: touch;
    scroll-padding-left: 16px;
    scrollbar-width: none;
    touch-action: pan-x !important;
    overscroll-behavior-x: contain;
    overscroll-behavior-y: none;
  }
  .plans-grid::-webkit-scrollbar { display: none; }
  .plan-card {
    flex: 0 0 84%;
    max-width: 320px;
    scroll-snap-align: center;
    padding: 24px 22px;
  }
  /* Featured (Plus) sem scale no mobile · destaque vem da borda accent */
  .plan-card.featured {
    transform: none;
  }
  .plan-card.featured:hover {
    transform: translateY(-2px);
  }

  /* MENOS É MAIS · esconde sub-textos descritivos */
  .plan-card .feat-sub { display: none !important; }
  .plan-card .plan-feat-intro { display: none !important; }

  /* Headline menor pro card respirar */
  .plan-card .plan-headline {
    font-size: 18px;
    min-height: auto;
    margin: 6px 0 6px;
  }

  /* Preço com peso similar mas ocupando menos espaço */
  .plan-card .price-num { font-size: 44px; }
  .plan-card .price-currency { font-size: 18px; margin-top: 4px; }
  .plan-card .price-period { font-size: 12px; }
  .plan-card .price-note-inline { font-size: 11px; }

  /* Lista de features compactada · só os títulos */
  .plan-card .plan-features {
    gap: 6px;
    margin-bottom: 18px;
  }
  .plan-card .plan-feat {
    font-size: 12.5px;
    line-height: 1.4;
    padding-left: 16px;
  }
  .plan-card .plan-feat::before {
    width: 7px; height: 7px;
    top: 6px;
  }
  /* Lista do Plus ainda tem os 4 testes em sub-line · esses ficam ocultos junto com feat-sub */

  /* Divider mais discreto */
  .plan-card .plan-divider {
    margin: 12px 0 10px;
  }

  /* Tier badge menor */
  .plan-card .cat-tier {
    font-size: 10px;
    padding: 3px 9px;
  }
}
/* Mobile · ajustes de toggle, headline e CTAs dos planos */
@media (max-width: 768px) {
  /* Plans, tension e differentials: SEM overlays/máscaras nos carrosseis ·
     cards rolam limpos, sem sensação de "área separada com scroll próprio" */
  #plans .inner,
  #tension .inner,
  #differentials .inner {
    position: relative;
    padding-bottom: 0;
  }
  #plans .inner::before,
  #plans .inner::after,
  #tension .inner::before,
  #tension .inner::after,
  #differentials .inner::before,
  #differentials .inner::after {
    display: none !important;
  }

  .plans-h2 {
    font-size: clamp(26px, 6.2vw, 34px) !important;
    margin-bottom: 24px !important;
  }
  /* Toggle CENTRALIZADO + compacto + colado nos cards */
  .pricing-toggle {
    gap: 10px;
    flex-wrap: nowrap;
    justify-content: center;
    margin: 0 auto 24px;       /* antes 64px · agora encosta nos cards */
  }
  .pricing-toggle .annual-badge {
    flex-basis: 100%;            /* badge desce uma linha mas centralizada */
    text-align: center;
    margin-top: 4px;
  }
  .price-num { font-size: 48px; }
  .price-cta-primary, .price-cta-secondary {
    padding: 14px 20px; font-size: 13.5px; min-height: 48px;
  }
}

/* FAQ */
@media (max-width: 640px) {
  .faq-q { padding: 18px 0; font-size: 14px; min-height: 48px; }
  .faq-a-inner { font-size: 13.5px; line-height: 1.6; }
}

/* Footer anchor (CTA final) */
@media (max-width: 640px) {
  #footer-anchor { padding: 80px 20px; }
  .footer-headline { font-size: clamp(28px, 7vw, 44px); }
  .footer-cta { padding: 16px 28px; font-size: 14px; min-height: 50px; }
  .footer-links { flex-wrap: wrap; gap: 16px; font-size: 12px; }
}

/* Win-back modal */
@media (max-width: 480px) {
  .winback-card { padding: 32px 22px 24px; }
  .winback-title { font-size: 24px; }
  .winback-amount { font-size: 32px; }
  .winback-features li { font-size: 12.5px; }
  .winback-cta-primary { padding: 14px 24px; min-height: 48px; }
}

/* Birth chart: tamanho fixo razoável em mobile */
@media (max-width: 640px) {
  .story-map-stage { width: min(280px, 78vw); }
  .text-axis-label { font-size: 10px; }  /* dentro do SVG */
}

/* Touch devices: desligar features de hover */
@media (hover: none), (pointer: coarse) {
  .tilt-card { transform: none !important; }
  .magnetic { transform: none !important; }
  .magnetic-inner { transform: none !important; }
  /* Hero parallax: deixa, mas fica suave em touch */
}

/* Garante touch targets mínimos (44px) APENAS em CTAs primários (não dots/decorativos) */
@media (max-width: 768px) {
  .nav-cta, .price-cta-primary, .price-cta-secondary,
  .btn-primary, .btn-secondary, .footer-cta, .winback-cta-primary,
  .beta-submit, .faq-q {
    min-height: 44px;
  }
  /* Dots: regra base já cobre · só zera o min-height global */
  .carousel-dot { min-height: 0; }
}

/* — Focus rings — */
*:focus { outline: none; }
*:focus-visible {
  outline: none;
  box-shadow: 0 0 0 2px var(--bg-deep), 0 0 0 4px var(--accent);
  border-radius: 4px;
}

/* — Reduced motion — */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .reveal, .tension-card, .cat-item, .step-content { opacity: 1 !important; transform: none !important; }
}


/* =========================================================================
   PLANS — merged catalogue + pricing
   ========================================================================= */
#plans {
  padding: 140px 48px;
  background: transparent;
}
#plans .inner { max-width: 1180px; margin: 0 auto; }
#plans .section-label { margin-bottom: 24px; }

.plans-h2 {
  font-family: var(--font-serif);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 300; line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--ink);
  text-align: center;
  margin-bottom: 40px;
  text-wrap: pretty;
}
.plans-h2 em { font-style: italic; color: var(--accent-warm); }

.plans-grid {
  display: grid;
  grid-template-columns: 1fr 1.08fr 1fr;
  gap: 16px;
  align-items: stretch;
}
.plan-card {
  display: flex; flex-direction: column;
  /* Card translúcido · deixa o gradient body aparecer */
  background: linear-gradient(155deg, rgba(232,213,183,0.04) 0%, rgba(232,213,183,0.015) 100%);
  border-radius: 20px;
  padding: 28px 26px;
  position: relative; overflow: hidden;
  border: 1px solid rgba(232,213,183,0.10);
  box-shadow:
    inset 0 1px 0 rgba(255, 248, 240, 0.04),
    0 4px 24px rgba(0, 0, 0, 0.20);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: transform 0.35s var(--ease-expo), box-shadow 0.35s, border-color 0.35s;
}
.plan-card::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(140deg, rgba(232, 213, 183, 0.03) 0%, transparent 50%);
  pointer-events: none;
}
.plan-card:hover {
  transform: translateY(-3px);
  border-color: rgba(232, 213, 183, 0.20);
  box-shadow:
    inset 0 1px 0 rgba(255, 248, 240, 0.06),
    0 8px 36px rgba(0, 0, 0, 0.30);
}
/* PLUS · DESTAQUE — escala +5%, glow accent, sombra elevada */
.plan-card.featured {
  background:
    linear-gradient(160deg,
      rgba(45, 212, 191, 0.10) 0%,
      rgba(232, 213, 183, 0.04) 40%,
      rgba(232, 213, 183, 0.02) 100%);
  border-color: rgba(45, 212, 191, 0.40);
  border-width: 1.5px;
  box-shadow:
    inset 0 1px 0 rgba(45, 212, 191, 0.15),
    0 0 80px rgba(45, 212, 191, 0.18),
    0 12px 36px rgba(0, 0, 0, 0.35);
  transform: translateY(-8px) scale(1.04);
  z-index: 2;
}
.plan-card.featured:hover {
  transform: translateY(-12px) scale(1.04);
  box-shadow:
    inset 0 1px 0 rgba(45, 212, 191, 0.20),
    0 0 100px rgba(45, 212, 191, 0.25),
    0 16px 48px rgba(0, 0, 0, 0.40);
}

/* PRO · outline sutil — peso menor, mas presente */
.plan-card:nth-child(3) {
  background: linear-gradient(155deg, rgba(232,213,183,0.025) 0%, rgba(232,213,183,0.01) 100%);
  border-color: rgba(232, 213, 183, 0.07);
  opacity: 0.96;
}

/* FREE · entrada · peso visual reduzido sutilmente */
.plan-card:nth-child(1) {
  opacity: 0.92;
}
.plan-card:nth-child(1):hover {
  opacity: 1;
}

.plan-header {
  display: flex;
  flex-direction: column;
}
.plan-headline {
  font-family: var(--font-serif);
  font-size: 21px;
  font-weight: 400;
  font-style: italic;
  color: var(--ink);
  margin: 6px 0 10px;
  line-height: 1.2;
  letter-spacing: -0.005em;
  text-wrap: balance;
  /* min-height pra equalizar altura entre cards e alinhar preços */
  min-height: 50px;
  display: flex;
  align-items: flex-end;
}
.plan-card .price-amount { margin-bottom: 8px; }
.price-note-inline {
  font-size: 12.5px;
  color: var(--ink3);
  letter-spacing: 0.01em;
  margin-top: 2px;
}
.price-note-inline.price-note-trial {
  font-size: 11.5px;
  color: var(--ink4);
  margin-top: 6px;
  opacity: 0.85;
}
.plan-divider {
  height: 1px; background: var(--divider);
  margin: 18px 0 14px;
}
.plan-features {
  list-style: none;
  display: flex; flex-direction: column; gap: 10px;
  margin-bottom: 22px;
  flex: 1;
}
.plan-feat {
  display: flex; flex-direction: column; gap: 2px;
  font-size: 13px; color: var(--ink2); line-height: 1.45;
  position: relative;
  padding-left: 18px;
  opacity: 0;
  transform: translateX(-6px);
  transition: opacity 0.5s var(--ease-expo), transform 0.5s var(--ease-expo);
}
.plan-feat.in { opacity: 1; transform: translateX(0); }
.plan-feat::before {
  content: '';
  position: absolute;
  left: 0; top: 8px;
  width: 8px; height: 8px;
  background-image: url('assets/star-4pt.svg');
  background-size: contain;
  background-repeat: no-repeat;
  filter: brightness(0) saturate(100%);
}
.plan-card:nth-child(1) .plan-feat::before { filter: invert(76%) sepia(54%) saturate(371%) hue-rotate(126deg) brightness(94%) contrast(91%); }
.plan-card.featured .plan-feat::before { filter: invert(67%) sepia(43%) saturate(437%) hue-rotate(335deg) brightness(95%) contrast(89%); }
.plan-card:nth-child(3) .plan-feat::before { filter: invert(72%) sepia(20%) saturate(521%) hue-rotate(11deg) brightness(91%) contrast(86%); }

.plan-feat.plan-feat-inherit {
  color: var(--ink4);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding-left: 0;
  margin-bottom: -4px;
}
.plan-feat-inherit::before { display: none; }

/* "Inclui:" / "Inclui tudo do Free, mais:" — intro acima da lista de features */
.plan-feat-intro {
  color: var(--ink4);
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin: 0 0 10px;
  opacity: 0.85;
}

.feat-sub {
  display: flex; flex-direction: column; gap: 2px;
  font-size: 12px;
  color: var(--ink4);
}
.feat-sub-line {
  display: flex; align-items: center; gap: 6px;
  padding-left: 10px;
  position: relative;
}
.feat-sub-line::before {
  content: ''; display: inline-block;
  width: 5px; height: 1px; background: var(--ink4);
  position: absolute; left: 0; top: 50%;
}

.plan-card .price-cta-primary,
.plan-card .price-cta-secondary {
  margin-top: auto;
}

/* Score glyph SVG */
.score-glyph-svg {
  width: 24px; height: 24px;
  filter: invert(85%) sepia(11%) saturate(569%) hue-rotate(2deg) brightness(99%) contrast(89%);
}

/* =========================================================================
   PHONE — redesigned chat with status bar, header, composer
   ========================================================================= */
.phone-frame {
  width: 290px;
  border-radius: 44px;
  background: #0c0b0a;
  border: 1.5px solid rgba(255,255,255,0.08);
  box-shadow: 0 32px 80px rgba(0,0,0,0.6), 0 0 0 1px rgba(255,255,255,0.04), inset 0 1px 0 rgba(255,255,255,0.06);
  overflow: hidden;
  padding: 0;
  position: relative;
  display: flex; flex-direction: column;
  min-height: 580px;
}
.phone-status {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 22px 4px;
  color: var(--ink);
  font-size: 13px; font-weight: 600;
  letter-spacing: 0.01em;
}
.status-time {
  font-variant-numeric: tabular-nums;
}
.status-icons {
  display: flex; align-items: center; gap: 6px;
  color: var(--ink);
}
.phone-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 18px 14px;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.ph-close {
  width: 24px; height: 24px;
  display: flex; align-items: center; justify-content: center;
  color: var(--ink3);
}
.ph-title {
  display: flex; align-items: center; gap: 8px;
  font-family: var(--font-serif);
  font-size: 17px; font-weight: 400;
  color: var(--ink);
  letter-spacing: 0.01em;
}
.ph-avatar {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: rgba(45,212,191,0.1);
  border: 1px solid rgba(45,212,191,0.25);
  display: flex; align-items: center; justify-content: center;
  padding: 4px;
}
.ph-avatar svg { width: 100%; height: 100%; }

.chat-area {
  display: flex; flex-direction: column; gap: 8px;
  padding: 16px 14px;
  flex: 1;
  min-height: 380px;
  max-height: 420px;
  overflow: hidden;
  overflow-y: auto;
  scrollbar-width: none;
}
.chat-area::-webkit-scrollbar { display: none; }

.chat-bubble {
  max-width: 82%;
  padding: 10px 14px;
  border-radius: 16px;
  font-size: 13px; line-height: 1.5; font-weight: 400;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.35s var(--ease-expo), transform 0.35s var(--ease-expo);
}
.chat-bubble.in { opacity: 1; transform: translateY(0); }
.bubble-alma {
  background: rgba(10,31,28,0.85);
  color: var(--ink2);
  border-bottom-left-radius: 4px;
  align-self: flex-start;
}
.bubble-alma .bubble-name {
  font-size: 9px; font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 4px;
}
.bubble-user {
  background: rgba(232,213,183,0.12);
  color: var(--ink);
  border-bottom-right-radius: 4px;
  align-self: flex-end;
}
.bubble-text { display: inline; }

.typing-dots {
  display: flex; gap: 4px;
  padding: 12px 14px;
  background: rgba(10,31,28,0.85);
  border-radius: 16px 16px 16px 4px;
  align-self: flex-start;
  opacity: 0;
  animation: bubbleIn 0.3s var(--ease-expo) forwards;
}
.typing-dots span {
  width: 5px; height: 5px; border-radius: 50%;
  background: var(--accent);
  animation: typingDot 1.2s ease-in-out infinite;
}
.typing-dots span:nth-child(2) { animation-delay: 0.15s; }
.typing-dots span:nth-child(3) { animation-delay: 0.3s; }
@keyframes typingDot {
  0%, 80%, 100% { transform: translateY(0); opacity: 0.4; }
  40%           { transform: translateY(-4px); opacity: 1; }
}
@keyframes bubbleIn {
  to { opacity: 1; }
}

.phone-composer {
  display: flex; align-items: center; gap: 8px;
  padding: 12px 14px 18px;
  border-top: 1px solid rgba(255,255,255,0.04);
  background: rgba(0,0,0,0.2);
}
.composer-input {
  flex: 1;
  padding: 9px 14px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 18px;
  font-size: 12px;
  color: var(--ink);
  display: flex; align-items: center;
  min-height: 32px;
  position: relative;
}
.composer-input #composer-text {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
  line-height: 1.2;
}
.composer-input #composer-text svg {
  display: inline-block;
  vertical-align: middle;
  flex-shrink: 0;
}
.composer-input #composer-text.placeholder,
.composer-input:not(.typing) #composer-text {
  color: var(--ink4);
}
.composer-input.typing #composer-text { color: var(--ink); }
.composer-input #composer-text.typing { color: var(--ink); }
.composer-caret {
  display: inline-block;
  width: 1px; height: 12px;
  background: var(--accent);
  margin-left: 2px;
  animation: caretBlink 1s steps(2) infinite;
  opacity: 0;
}
.composer-input #composer-text.typing + .composer-caret { opacity: 1; }
@keyframes caretBlink {
  50% { opacity: 0; }
}
/* Botão de microfone (sempre visível, anima durante gravação) */
.composer-mic {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: var(--ink2);
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s var(--ease-expo);
  position: relative;
}
.composer-mic:hover {
  background: rgba(255,255,255,0.08);
  color: var(--ink);
}
/* Estado gravando · cor accent + pulso ring */
.composer-mic.recording {
  background: rgba(212, 89, 89, 0.18);
  border-color: rgba(212, 89, 89, 0.55);
  color: #e88c8c;
}
.composer-mic.recording::before {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  border: 1.5px solid rgba(212, 89, 89, 0.6);
  animation: micRing 1.4s ease-out infinite;
}
@keyframes micRing {
  0%   { transform: scale(0.9); opacity: 0.9; }
  100% { transform: scale(1.4); opacity: 0; }
}

.composer-send {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--accent-warm);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: transform 0.15s var(--ease-expo), box-shadow 0.15s;
}
.composer-send.sending {
  transform: scale(0.88);
  box-shadow: 0 0 16px rgba(232,213,183,0.45);
}

/* ── MULTIMODAL CHAT ELEMENTS ─────────────────────────────── */

/* Audio voice pill */
.audio-pill {
  display: flex; align-items: center; gap: 9px;
  min-width: 140px;
}
.audio-play {
  width: 24px; height: 24px; border-radius: 50%; flex-shrink: 0;
  background: var(--accent-warm);
  display: flex; align-items: center; justify-content: center;
}
.audio-play svg { display: block; }
.audio-waveform {
  display: flex; align-items: center; gap: 2px; flex: 1; height: 20px;
}
.audio-waveform span {
  display: block; width: 2px; border-radius: 2px;
  background: var(--accent-warm); opacity: 0.75;
  animation: waveform 1.2s ease-in-out infinite alternate;
}
.audio-waveform span:nth-child(1)  { height: 6px;  animation-delay: 0.00s; }
.audio-waveform span:nth-child(2)  { height: 12px; animation-delay: 0.07s; }
.audio-waveform span:nth-child(3)  { height: 16px; animation-delay: 0.14s; }
.audio-waveform span:nth-child(4)  { height: 10px; animation-delay: 0.21s; }
.audio-waveform span:nth-child(5)  { height: 18px; animation-delay: 0.28s; }
.audio-waveform span:nth-child(6)  { height: 8px;  animation-delay: 0.35s; }
.audio-waveform span:nth-child(7)  { height: 14px; animation-delay: 0.42s; }
.audio-waveform span:nth-child(8)  { height: 6px;  animation-delay: 0.49s; }
.audio-waveform span:nth-child(9)  { height: 11px; animation-delay: 0.56s; }
.audio-waveform span:nth-child(10) { height: 7px;  animation-delay: 0.63s; }
.audio-waveform span:nth-child(11) { height: 15px; animation-delay: 0.70s; }
.audio-waveform span:nth-child(12) { height: 9px;  animation-delay: 0.77s; }
.audio-duration { font-size: 10px; color: var(--ink4); white-space: nowrap; }
@keyframes waveform {
  from { transform: scaleY(0.4); opacity: 0.45; }
  to   { transform: scaleY(1);   opacity: 0.9;  }
}

/* Insight card (rich response from Alma) */
.insight-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(232,213,183,0.12);
  border-radius: 12px;
  padding: 12px 14px;
  margin-top: 8px;
  display: flex; flex-direction: column; gap: 8px;
}
.insight-card-title {
  font-size: 9px; font-weight: 600; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--accent); margin-bottom: 2px;
}
.insight-row {
  display: flex; gap: 6px; flex-wrap: wrap;
}
.insight-pill {
  display: flex; align-items: center; gap: 5px;
  background: rgba(232,213,183,0.07);
  border: 1px solid rgba(232,213,183,0.14);
  border-radius: 20px; padding: 4px 10px;
  font-size: 10px; color: var(--ink3);
}
.insight-pill svg { width: 9px; height: 9px; opacity: 0.7; }

/* Mood spectrum inside insight card */
.mood-spectrum {
  height: 4px; border-radius: 4px; overflow: hidden;
  background: rgba(255,255,255,0.06);
  position: relative;
}
.mood-spectrum-fill {
  height: 100%; border-radius: 4px;
  background: linear-gradient(90deg, var(--water), var(--accent-warm));
  transition: width 1.2s cubic-bezier(0.22,1,0.36,1);
}
.mood-label-row {
  display: flex; justify-content: space-between;
  font-size: 9px; color: var(--ink4);
}

/* Transcript pill (spoken = shown below audio) */
.transcript-text {
  margin-top: 6px;
  font-size: 11px; color: var(--ink4); font-style: italic;
  line-height: 1.45;
}

/* Carousel dots · pequenos com hit area expandida */
.carousel-dots {
  display: flex; justify-content: center; align-items: center;
  gap: 8px;
  padding: 24px 0 0;
}
.carousel-dot {
  /* Visual: dot pequeno · Toque: 32×24px via padding */
  width: 6px; height: 6px;
  border-radius: 50%;
  background: rgba(237,232,223,0.25);
  border: none;
  cursor: pointer;
  padding: 9px 6px;  /* hit area · invisível mas tappable */
  background-clip: content-box;
  -webkit-background-clip: content-box;
  box-sizing: content-box;
  transition: background-color 0.3s var(--ease-expo), width 0.3s var(--ease-expo);
}
.carousel-dot.active {
  width: 18px;
  border-radius: 3px;
  background: var(--accent);
  background-clip: content-box;
  -webkit-background-clip: content-box;
}
.carousel-dot:hover { background-color: rgba(237,232,223,0.45); }

/* ─── PREMIUM AVATAR · gradient border + glow por elemento ─── */
.test-avatar {
  position: relative;
  width: 48px; height: 48px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  padding: 9px;
  background:
    radial-gradient(circle at 30% 25%, rgba(255,255,255,0.06) 0%, transparent 55%),
    linear-gradient(155deg, rgba(20,24,38,0.95) 0%, rgba(14,16,28,1) 100%);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.04),
    0 6px 18px rgba(0,0,0,0.35);
  isolation: isolate;
  flex-shrink: 0;
  transition: transform 0.4s var(--ease-expo), box-shadow 0.4s ease;
}
/* Conic gradient border (substitui o stroke chato) */
.test-avatar::before {
  content: '';
  position: absolute;
  inset: -1.5px;
  border-radius: 50%;
  padding: 1.5px;
  background: conic-gradient(
    from 200deg,
    rgba(232,213,183,0.55),
    rgba(232,213,183,0.05) 30%,
    rgba(45,212,191,0.35) 55%,
    rgba(232,213,183,0.05) 80%,
    rgba(232,213,183,0.55)
  );
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  pointer-events: none;
  animation: avatarRingSpin 18s linear infinite;
}
/* Halo externo (cor por elemento) */
.test-avatar::after {
  content: '';
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--avatar-glow, rgba(232,213,183,0.2)) 0%, transparent 65%);
  opacity: 0.55;
  z-index: -1;
  filter: blur(6px);
  transition: opacity 0.4s ease, inset 0.4s ease;
}
.test-avatar:hover { transform: translateY(-2px); }
.test-avatar:hover::after { opacity: 0.95; inset: -12px; }

/* Glyph dentro */
.test-avatar img {
  width: 100%; height: 100%;
  filter:
    invert(85%) sepia(11%) saturate(569%) hue-rotate(2deg) brightness(99%) contrast(89%)
    drop-shadow(0 0 4px rgba(232,213,183,0.4));
}

/* Cores por elemento astrológico */
.test-avatar[data-element="fire"]  { --avatar-glow: rgba(212,137,110,0.55); }
.test-avatar[data-element="earth"] { --avatar-glow: rgba(189,167,111,0.50); }
.test-avatar[data-element="air"]   { --avatar-glow: rgba(134,170,196,0.55); }
.test-avatar[data-element="water"] { --avatar-glow: rgba(118,174,190,0.55); }

@keyframes avatarRingSpin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
@media (prefers-reduced-motion: reduce) {
  .test-avatar::before { animation: none; }
}

/* Hide old phone-notch */
.phone-notch { display: none; }

/* =========================================================
   FEATURES SHOWCASE · grid 3×2 com mini cards visuais
========================================================= */
#features-showcase {
  padding: 120px 48px;
  background: transparent;
  position: relative;
}
#features-showcase .inner {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}
#features-showcase .section-label {
  margin-bottom: 24px;
}
.features-h2 {
  font-family: var(--font-serif);
  font-size: clamp(32px, 4.5vw, 52px);
  font-weight: 300;
  line-height: 1.18;
  letter-spacing: -0.02em;
  color: var(--ink);
  text-align: center;
  margin-bottom: 64px;
  text-wrap: pretty;
}
.features-h2 em {
  font-style: italic;
  color: var(--accent-warm);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.feature-card {
  background: linear-gradient(155deg, rgba(232,213,183,0.04) 0%, rgba(232,213,183,0.015) 100%);
  border: 1px solid rgba(232,213,183,0.10);
  border-radius: 16px;
  padding: 28px 26px;
  box-shadow:
    inset 0 1px 0 rgba(255, 248, 240, 0.04),
    0 4px 18px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: transform 0.35s var(--ease-expo), border-color 0.35s, box-shadow 0.35s;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.feature-card:hover {
  transform: translateY(-3px);
  border-color: rgba(232, 213, 183, 0.20);
  box-shadow:
    inset 0 1px 0 rgba(255, 248, 240, 0.06),
    0 8px 28px rgba(0, 0, 0, 0.25);
}
.feature-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: rgba(45, 212, 191, 0.08);
  border: 1px solid rgba(45, 212, 191, 0.15);
  display: flex; align-items: center; justify-content: center;
  color: var(--accent);
  flex-shrink: 0;
}
.feature-icon svg { width: 26px; height: 26px; display: block; }
.feature-card h3 {
  font-family: var(--font-serif);
  font-size: 19px;
  font-weight: 500;
  color: var(--ink);
  line-height: 1.25;
  margin: 0;
  letter-spacing: -0.005em;
}
.feature-card p {
  font-size: 13.5px;
  color: var(--ink2);
  line-height: 1.55;
  margin: 0;
}

/* Mobile · features viram CARROSSEL horizontal */
@media (max-width: 768px) {
  #features-showcase { padding: 56px 0 64px; }
  #features-showcase .inner {
    padding: 0;
    position: relative;
    max-width: 100%;
  }
  /* Texto da seção fica com padding lateral · grid ocupa full-width */
  #features-showcase .section-label,
  .features-h2 {
    padding: 0 20px;
  }
  .features-h2 {
    font-size: clamp(24px, 6.2vw, 32px);
    line-height: 1.22;
    margin-bottom: 28px;
  }
  .features-grid {
    display: flex;
    grid-template-columns: none;          /* anula o desktop grid */
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    gap: 12px;
    padding: 4px 20px 16px;
    margin: 0;
    width: 100%;
    -webkit-overflow-scrolling: touch;
    scroll-padding-left: 20px;
    scrollbar-width: none;
    touch-action: pan-x;
    overscroll-behavior-x: contain;
    overscroll-behavior-y: none;
  }
  .features-grid::-webkit-scrollbar { display: none; }
  .feature-card {
    flex: 0 0 78%;
    max-width: 320px;
    min-width: 240px;
    scroll-snap-align: center;
    padding: 22px 20px;
    gap: 12px;
  }
  .feature-icon {
    width: 40px; height: 40px;
    border-radius: 10px;
  }
  .feature-icon svg { width: 22px; height: 22px; }
  .feature-card h3 { font-size: 17px; }
  .feature-card p { font-size: 13px; line-height: 1.5; }
}

/* Mobile additions
   NOTA: .plans-grid no mobile é CARROSSEL horizontal — definido na regra @media 640px acima.
   Não sobrescrever aqui com grid-template-columns: 1fr (quebraria o carrossel). */
@media (max-width: 768px) {
  #plans { padding: 64px 0; }
  .plans-h2 { font-size: 28px; padding: 0 20px; }
  .phone-frame { width: 100%; max-width: 320px; }
}

/* ─── Disponível no App e WhatsApp · pílula no hero ─── */
.hero-availability {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  padding: 7px 14px;
  background: rgba(45, 212, 191, 0.06);
  border: 1px solid rgba(45, 212, 191, 0.20);
  border-radius: 100px;
  font-size: 12px;
  color: var(--ink2);
  letter-spacing: 0.01em;
  opacity: 0;
  animation: fadeUp 1s var(--ease-expo) 1.2s forwards;
}
.hero-availability strong {
  color: var(--ink);
  font-weight: 500;
}
.availability-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
}

/* ─── Plataformas (App + WhatsApp) na seção da IA ─── */
.ai-platforms {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 10px 16px;
  background: rgba(45, 212, 191, 0.05);
  border: 1px solid rgba(45, 212, 191, 0.18);
  border-radius: 100px;
  margin-top: 6px;
}
.ai-platform {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: 0.01em;
}
.ai-platform svg {
  color: var(--accent);
  flex-shrink: 0;
}
.ai-platforms-divider {
  color: var(--ink4);
  font-weight: 300;
}

/* =========================================================
   LIGHTBOX · DOWNLOAD APP
========================================================= */
.download-overlay {
  position: fixed; inset: 0;
  background: rgba(5, 6, 8, 0.82);
  backdrop-filter: blur(16px) saturate(1.1);
  -webkit-backdrop-filter: blur(16px) saturate(1.1);
  display: flex; align-items: center; justify-content: center;
  padding: 20px;
  z-index: 9999;
  opacity: 0; visibility: hidden;
  pointer-events: none;
  transition: opacity 0.32s var(--ease-expo), visibility 0s linear 0.32s;
}
.download-overlay.visible {
  opacity: 1; visibility: visible;
  pointer-events: auto;
  transition: opacity 0.32s var(--ease-expo), visibility 0s;
}

.download-card {
  position: relative;
  width: 100%; max-width: 420px;
  background: linear-gradient(165deg, var(--s2) 0%, var(--surface) 100%);
  border: 1px solid var(--border2);
  border-radius: 22px;
  padding: 48px 36px 36px;
  text-align: center;
  box-shadow:
    inset 0 1px 0 rgba(255, 248, 240, 0.05),
    0 24px 60px rgba(0, 0, 0, 0.55);
  transform: translateY(20px) scale(0.97);
  opacity: 0;
  transition: transform 0.42s var(--ease-expo), opacity 0.32s ease-out;
}
.download-overlay.visible .download-card {
  transform: translateY(0) scale(1);
  opacity: 1;
}

.download-close {
  position: absolute; top: 14px; right: 14px;
  width: 36px; height: 36px;
  background: transparent; border: 0; padding: 0;
  display: flex; align-items: center; justify-content: center;
  color: var(--ink3);
  cursor: pointer;
  border-radius: 50%;
  transition: background 0.2s ease, color 0.2s ease;
}
.download-close:hover { background: rgba(255,255,255,0.06); color: var(--ink); }

/* Estrela da marca · 4 pontas em teal sobre disco escuro */
.download-mark {
  display: flex;
  justify-content: center;
  margin-bottom: 22px;
}
.download-mark-bg {
  width: 88px; height: 88px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--surface) 0%, #050505 100%);
  display: flex; align-items: center; justify-content: center;
  box-shadow:
    inset 0 1px 0 rgba(255, 248, 240, 0.05),
    0 0 32px rgba(45, 212, 191, 0.18);
  border: 1px solid rgba(45, 212, 191, 0.18);
}
.download-mark-bg svg {
  filter: drop-shadow(0 0 8px rgba(45, 212, 191, 0.55));
}

.download-eyebrow {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 10px;
}
.download-title {
  font-family: var(--font-serif);
  font-weight: 300;
  font-size: 32px;
  line-height: 1.15;
  color: var(--ink);
  margin: 0 0 8px;
}
.download-title em {
  font-style: italic;
  color: var(--accent);
}
.download-sub {
  font-size: 14px;
  color: var(--ink2);
  margin: 0 0 28px;
  line-height: 1.5;
}

/* Formulário Beta Testers */
.beta-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-align: left;
  margin-top: 6px;
}
.form-row { display: flex; gap: 10px; }
.form-row-double > .form-field { flex: 1; }
.form-field { display: flex; flex-direction: column; flex: 1; }
.form-label {
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink3);
  margin-bottom: 6px;
}
.form-field input {
  width: 100%;
  padding: 11px 14px;
  background: rgba(0, 0, 0, 0.25);
  border: 1px solid var(--border2);
  border-radius: 10px;
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 14px;
  letter-spacing: 0.005em;
  transition: border-color 0.2s, background 0.2s;
}
.form-field input::placeholder {
  color: var(--ink4);
  opacity: 0.7;
}
.form-field input:focus {
  outline: none;
  border-color: var(--accent);
  background: rgba(45, 212, 191, 0.04);
}
/* date e time inputs · forçar tema escuro */
.form-field input[type="date"],
.form-field input[type="time"] {
  color-scheme: dark;
}

.beta-submit {
  margin-top: 6px;
  width: 100%;
  padding: 14px 20px;
  background: var(--accent);
  color: #050505;
  border: 0;
  border-radius: 100px;
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: background 0.2s ease, box-shadow 0.2s ease, transform 0.2s var(--ease-expo);
}
.beta-submit:hover:not(:disabled) {
  background: #5EEAD4;
  box-shadow: 0 0 32px rgba(45, 212, 191, 0.40);
  transform: translateY(-1px);
}
.beta-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.beta-footnote {
  font-size: 11px;
  color: var(--ink4);
  margin: 8px 0 0;
  text-align: center;
  letter-spacing: 0.01em;
  line-height: 1.4;
}

/* Estado de sucesso */
.beta-success {
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  padding: 12px 0;
  text-align: center;
}
.beta-success.visible { display: flex; }
.beta-success svg {
  filter: drop-shadow(0 0 12px rgba(45, 212, 191, 0.5));
}
.beta-success h4 {
  font-family: var(--font-serif);
  font-size: 24px;
  font-weight: 400;
  font-style: italic;
  color: var(--ink);
  margin: 0;
}
.beta-success p {
  font-size: 14px;
  color: var(--ink2);
  margin: 0;
  line-height: 1.5;
  max-width: 320px;
}

@media (max-width: 480px) {
  .download-card { padding: 36px 22px 26px; border-radius: 18px; }
  .download-title { font-size: 24px; }
  .download-sub { font-size: 13px; }
  .download-mark-bg { width: 72px; height: 72px; }
  .form-row-double { flex-direction: column; }
  .form-field input { padding: 12px 14px; font-size: 15px; }  /* iOS evita zoom em 16px+ */
  .beta-submit { min-height: 48px; }
}

@media (prefers-reduced-motion: reduce) {
  .download-overlay, .download-card { transition: none !important; }
  .download-card { transform: none; }
}

/* =========================================================
   PREMIUM POLISH LAYER · grain, cursor, tilt, magnetic
========================================================= */

/* ─── Grain overlay ─────────────────────────────────── */
.grain-overlay {
  position: fixed; inset: 0;
  pointer-events: none;
  z-index: 9998;
  opacity: 0.05;
  mix-blend-mode: overlay;
  /* Forçar GPU layer pra evitar repaint em scroll */
  will-change: transform;
  transform: translateZ(0);
}
.grain-overlay svg { width: 100%; height: 100%; display: block; }

@media (prefers-reduced-motion: reduce) {
  .grain-overlay { opacity: 0.03; }
}

/* ─── Custom cursor (desktop only) — estrela 8-pontas da marca ── */
.cursor-dot, .cursor-ring {
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  z-index: 10000;
  opacity: 0;
  will-change: transform;
}
.cursor-dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--accent-warm);
  transform: translate(-50%, -50%);
  transition: opacity 0.25s ease, width 0.2s var(--ease-expo), height 0.2s var(--ease-expo);
  box-shadow: 0 0 6px rgba(232, 213, 183, 0.65);
}
.cursor-ring {
  width: 28px; height: 28px;
  transform: translate(-50%, -50%);
  transition: opacity 0.25s ease, width 0.25s var(--ease-expo), height 0.25s var(--ease-expo);
}
.cursor-ring svg {
  width: 100%; height: 100%;
  display: block;
  filter: drop-shadow(0 0 3px rgba(232, 213, 183, 0.4));
}
.cursor-star {
  fill: rgba(232, 213, 183, 0.55);
  transition: fill 0.25s ease;
}
.cursor-active .cursor-dot,
.cursor-active .cursor-ring { opacity: 1; }

/* Hover state em CTAs/links · estrela cresce e fica mais opaca */
.cursor-hover .cursor-dot {
  width: 3px; height: 3px;
}
.cursor-hover .cursor-ring {
  width: 44px; height: 44px;
}
.cursor-hover .cursor-star {
  fill: var(--accent-warm);
}

/* Esconde cursor customizado em touch devices */
@media (hover: none), (pointer: coarse) {
  .cursor-dot, .cursor-ring { display: none; }
}

/* ─── 3D Tilt cards ─────────────────────────────────── */
.tilt-card {
  transform-style: preserve-3d;
  transform: perspective(1200px) rotateX(0) rotateY(0);
  transition: transform 0.5s var(--ease-expo), box-shadow 0.5s ease;
  will-change: transform;
}
.tilt-card > * {
  transform: translateZ(20px);
}

@media (prefers-reduced-motion: reduce) {
  .tilt-card { transform: none !important; }
  .tilt-card > * { transform: none !important; }
}

/* ─── Magnetic CTA button ───────────────────────────── */
.magnetic {
  display: inline-flex;
  position: relative;
  will-change: transform;
  transition: transform 0.4s var(--ease-expo);
}
.magnetic-inner {
  display: inline-flex;
  pointer-events: none;
  transition: transform 0.4s var(--ease-expo);
}

@media (prefers-reduced-motion: reduce) {
  .magnetic, .magnetic-inner { transform: none !important; }
}

/* ─── Counter (number entrada animada) ──────────────── */
.proof-stat-num.counter-active {
  display: inline-flex;
  align-items: baseline;
}

/* =========================================================
   PRICE — narrative trial line (under "menos de R$ 0,50/dia")
========================================================= */
.price-note-trial {
  margin-top: 4px;
  opacity: 0.7;
}

/* =========================================================
   PROOF STATS · faixa de números acima dos depoimentos
========================================================= */
.proof-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(20px, 4vw, 56px);
  flex-wrap: wrap;
  max-width: 980px;
  margin: 32px auto 64px;
  padding: 28px 32px;
  background: linear-gradient(180deg, rgba(232,213,183,0.04) 0%, rgba(232,213,183,0.015) 100%);
  border: 1px solid rgba(232,213,183,0.10);
  border-radius: 18px;
}

.proof-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  text-align: center;
  min-width: 120px;
}

.proof-stat-num {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 300;
  font-size: clamp(30px, 4vw, 42px);
  letter-spacing: -0.02em;
  line-height: 1;
  color: var(--ink);
  display: inline-flex;
  align-items: baseline;
  gap: 1px;
}

.proof-stat-fraction {
  font-size: 0.55em;
  color: var(--ink3);
  font-weight: 400;
  margin-left: 2px;
}

.proof-stat-label {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink3);
  line-height: 1.4;
  max-width: 160px;
}

.proof-stat-divider {
  width: 1px;
  height: 36px;
  background: linear-gradient(180deg, transparent 0%, rgba(232,213,183,0.18) 50%, transparent 100%);
}

/* Mobile: empilhar com dividers horizontais */
@media (max-width: 640px) {
  .proof-stats {
    flex-direction: column;
    gap: 20px;
    padding: 24px;
    margin: 24px auto 40px;
  }
  .proof-stat-divider {
    width: 60%;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(232,213,183,0.18) 50%, transparent 100%);
  }
  .proof-stat { width: 100%; }
}

/* =========================================================
   WIN-BACK MODAL
   ========================================================= */
.winback-overlay {
  position: fixed; inset: 0;
  background: rgba(5, 7, 12, 0.78);
  backdrop-filter: blur(14px) saturate(1.1);
  -webkit-backdrop-filter: blur(14px) saturate(1.1);
  display: flex; align-items: center; justify-content: center;
  padding: 20px;
  z-index: 9999;
  opacity: 0; visibility: hidden;
  pointer-events: none;
  transition: opacity 0.32s var(--ease-expo), visibility 0s linear 0.32s;
}
.winback-overlay.visible {
  opacity: 1; visibility: visible;
  pointer-events: auto;
  transition: opacity 0.32s var(--ease-expo), visibility 0s;
}

.winback-card {
  position: relative;
  width: 100%; max-width: 440px;
  background: linear-gradient(165deg, #161924 0%, #0E1017 100%);
  border: 1px solid rgba(232, 213, 183, 0.14);
  border-radius: 22px;
  padding: 44px 36px 36px;
  box-shadow:
    0 24px 60px rgba(0, 0, 0, 0.55),
    0 1px 0 rgba(255, 248, 240, 0.04) inset;
  transform: translateY(20px) scale(0.97);
  opacity: 0;
  transition: transform 0.42s var(--ease-expo), opacity 0.32s ease-out;
}
.winback-overlay.visible .winback-card {
  transform: translateY(0) scale(1);
  opacity: 1;
}

.winback-close {
  position: absolute; top: 14px; right: 14px;
  width: 36px; height: 36px;
  background: transparent;
  border: 0; padding: 0;
  display: flex; align-items: center; justify-content: center;
  color: var(--ink3);
  cursor: pointer;
  border-radius: 50%;
  transition: background 0.2s ease, color 0.2s ease;
}
.winback-close:hover { background: rgba(255,255,255,0.06); color: var(--ink); }
.winback-close:focus-visible {
  outline: 2px solid var(--accent-warm);
  outline-offset: 2px;
}

.winback-eyebrow {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-warm);
  margin: 0 0 12px;
  opacity: 0.85;
}

.winback-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 300;
  font-size: 32px;
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin: 0 0 28px;
}
.winback-title em {
  font-style: italic;
  font-weight: 400;
  color: var(--accent-warm);
}

.winback-offer {
  background: rgba(232, 213, 183, 0.05);
  border: 1px solid rgba(232, 213, 183, 0.10);
  border-radius: 14px;
  padding: 22px 20px;
  margin-bottom: 24px;
}

.winback-price-block {
  display: flex; align-items: center; gap: 14px;
  flex-wrap: wrap;
}

.winback-price-old {
  font-size: 14px;
  color: var(--ink4);
  text-decoration: line-through;
  text-decoration-color: rgba(125, 119, 109, 0.6);
  text-decoration-thickness: 1px;
}

.winback-price-new {
  display: flex; align-items: baseline; gap: 4px;
  color: var(--ink);
}
.winback-currency {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 18px; font-weight: 400;
  color: var(--ink2);
}
.winback-amount {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 42px; font-weight: 400;
  letter-spacing: -0.01em;
  line-height: 1;
}
.winback-period {
  font-size: 13px; color: var(--ink3);
  letter-spacing: 0.02em;
}

.winback-discount-tag {
  margin-left: auto;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #0A0E1A;
  background: var(--accent-warm);
  padding: 5px 10px;
  border-radius: 100px;
}

.winback-trial {
  margin: 12px 0 0;
  font-size: 12px;
  color: var(--ink3);
  letter-spacing: 0.01em;
  line-height: 1.45;
}

.winback-features {
  list-style: none;
  padding: 0; margin: 0 0 28px;
  display: flex; flex-direction: column; gap: 8px;
}
.winback-features li {
  position: relative;
  padding-left: 18px;
  font-size: 13px;
  color: var(--ink2);
  line-height: 1.5;
  letter-spacing: 0.005em;
}
.winback-features li::before {
  content: '';
  position: absolute;
  left: 0; top: 9px;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent-warm);
  opacity: 0.7;
}

.winback-actions {
  display: flex; flex-direction: column; gap: 10px;
}

.winback-cta-primary {
  display: flex; align-items: center; justify-content: center;
  width: 100%;
  padding: 14px 24px;
  background: var(--accent-warm);
  color: #0A0E1A;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.02em;
  border: 0; border-radius: 100px;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.2s var(--ease-expo), box-shadow 0.2s ease;
}
.winback-cta-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 22px rgba(232, 213, 183, 0.18);
}
.winback-cta-primary:focus-visible {
  outline: 2px solid var(--accent-warm);
  outline-offset: 3px;
}

.winback-cta-secondary {
  width: 100%;
  background: transparent;
  border: 0; padding: 10px;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  color: var(--ink3);
  letter-spacing: 0.01em;
  cursor: pointer;
  transition: color 0.2s ease;
}
.winback-cta-secondary:hover { color: var(--ink); }
.winback-cta-secondary:focus-visible {
  outline: 1px solid var(--ink4);
  outline-offset: 3px;
  border-radius: 4px;
}

/* Mobile */
@media (max-width: 480px) {
  .winback-card { padding: 36px 24px 28px; border-radius: 18px; }
  .winback-title { font-size: 26px; }
  .winback-amount { font-size: 36px; }
  .winback-discount-tag { margin-left: 0; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .winback-overlay, .winback-card { transition: none !important; }
  .winback-card { transform: none; }
}
