/* ================================================================
   style.css — Sinastria Amorosa de Casal
   Jost · contraste alto · mobile-first
   ================================================================ */

/* ── Reset ─────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }
body {
  font-family: 'Jost', system-ui, sans-serif;
  background: #06041C;
  color: #EAE4FF;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  line-height: 1.65;
}
img  { display: block; max-width: 100%; height: auto; }
a    { color: inherit; text-decoration: none; }
ul   { list-style: none; }
button { font-family: inherit; cursor: pointer; }

/* ── Design tokens ─────────────────────────────────────────────── */
:root {
  /* fundos bem distintos */
  --b0: #020110;   /* mais escuro — hero, faq, cta final */
  --b1: #06041C;   /* padrão */
  --b2: #0C0830;   /* seções alternadas */
  --b3: #120F3C;   /* cards, seções claras */

  /* texto — ALTO contraste */
  --w1: #FFFFFF;
  --w2: #D8D0F0;   /* corpo principal */
  --w3: #9A94B8;   /* secundário / muted */

  /* ouro */
  --g1: #FFD740;
  --g2: #F5A800;
  --g3: #C07000;
  --ga15: rgba(255,215,64,.15);
  --ga25: rgba(255,215,64,.25);
  --ga40: rgba(255,215,64,.40);

  /* roxo */
  --p1: #9268CC;
  --pa20: rgba(146,104,204,.20);

  /* rosa */
  --r1: #E060A0;

  /* botão principal */
  --btn-bg:    radial-gradient(ellipse at 38% 28%, #FFE566 0%, #F5A800 50%, #C07000 100%);
  --btn-hover: radial-gradient(ellipse at 38% 28%, #FFF066 0%, #FFB800 50%, #D08000 100%);
  --btn-glow:  rgba(245,168,0,.45);
  --btn-txt:   #1A0600;

  /* verde WhatsApp — escuro para contraste correto com texto branco */
  --wa: #0d7a43;
  --wa-h: #0a5e33;

  /* formas */
  --pill: 100px;
  --lg: 20px;
  --md: 14px;
  --sm: 8px;

  /* layout */
  --max: 1080px;
  --px: clamp(18px, 5vw, 52px);

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

/* ── Wrappers ─────────────────────────────────────────────────── */
.wrap {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--px);
}

.section {
  padding: clamp(64px, 9vw, 120px) 0;
  position: relative;
}
.s-b0 { background: var(--b0); }
.s-b1 { background: var(--b1); }
.s-b2 { background: var(--b2); }
.s-b3 { background: var(--b3); }

/* ── Kicker / label ───────────────────────────────────────────── */
.kicker {
  display: inline-flex;
  align-items: center;
  gap: .45em;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--g1);
  background: var(--ga15);
  border: 1px solid var(--ga25);
  border-radius: var(--pill);
  padding: .38em 1em;
  margin-bottom: 1rem;
}

/* ── Headings ─────────────────────────────────────────────────── */
.h-hero {
  font-size: clamp(1.9rem, 6.5vw, 5.2rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -.025em;
  color: var(--w1);
  text-wrap: balance;
}
/* Parte enfatizada dentro do h-hero — maior e dourada */
.h-hl {
  display: block;
  font-size: 1.18em;
  color: var(--g1);
  font-style: italic;
  line-height: 1.05;
}

.h-xl {
  font-size: clamp(2.2rem, 4.5vw, 3.6rem);
  font-weight: 800;
  line-height: 1.1;
  color: var(--w1);
  text-wrap: balance;
}

.h-lg {
  font-size: clamp(1.7rem, 3.2vw, 2.6rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--w1);
  text-wrap: balance;
}

.h-md {
  font-size: clamp(1.2rem, 2vw, 1.7rem);
  font-weight: 700;
  line-height: 1.3;
  color: var(--w1);
}

.sub {
  font-size: clamp(1.05rem, 1.8vw, 1.2rem);
  color: var(--w2);
  line-height: 1.75;
}
.sub--sm {
  font-size: clamp(.95rem, 1.5vw, 1.05rem);
  color: var(--w2);
  line-height: 1.7;
}
.sub--narrow  { max-width: 520px; }
.sub--center  { text-align: center; margin-left: auto; margin-right: auto; max-width: 600px; }
.muted        { color: var(--w3); font-size: .9rem; }

.accent-gold  { color: var(--g1); }
.accent-it    { font-style: italic; color: var(--g1); }

.rule {
  display: block;
  width: 48px; height: 3px;
  background: linear-gradient(90deg, var(--g1), var(--p1));
  border: none; border-radius: 3px;
  margin: .85rem 0 1.3rem;
}
.rule--c { margin-left: auto; margin-right: auto; }
.rule--l { margin-left: 0; }

/* ── Buttons ──────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55em;
  font-family: 'Jost', sans-serif;
  font-weight: 800;
  font-size: 1rem;
  padding: .9em 1.8em;
  border-radius: var(--pill);
  border: none;
  cursor: pointer;
  text-decoration: none;
  text-align: center;
  box-sizing: border-box;
  max-width: 100%;
  transition: transform .22s var(--ease), box-shadow .22s var(--ease);
  position: relative;
  overflow: hidden;
  letter-spacing: .01em;
}
.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,rgba(255,255,255,.18) 0%,transparent 50%);
  pointer-events: none;
}
.btn:active { transform: scale(.97); }

/* Principal — amarelo radial */
.btn-main {
  background: var(--btn-bg);
  color: var(--btn-txt);
  box-shadow: 0 4px 28px var(--btn-glow);
}
.btn-main:hover {
  background: var(--btn-hover);
  transform: translateY(-3px);
  box-shadow: 0 10px 42px var(--btn-glow);
}

/* WhatsApp */
.btn-wa {
  background: var(--wa);
  color: #fff;
  box-shadow: 0 4px 24px rgba(37,211,102,.32);
}
.btn-wa:hover {
  background: var(--wa-h);
  transform: translateY(-3px);
  box-shadow: 0 10px 36px rgba(37,211,102,.48);
}

/* Tamanhos */
.btn-lg  { font-size: 1.1rem; padding: 1em 2em; }
.btn-xl  { font-size: 1.18rem; padding: 1.1em 2.2em; }
.btn-ico { width: 18px; height: 18px; flex-shrink: 0; display: block; }
.btn-lg  .btn-ico, .btn-xl .btn-ico { width: 20px; height: 20px; }

/* Mobile: todos os btn-main vão full-width */
@media (max-width: 600px) {
  .btn-main {
    width: 100%;
    font-size: 1.06rem;
    padding: 1.05em 1.2em;
    line-height: 1.35;
    letter-spacing: .005em;
    box-shadow: 0 6px 36px var(--btn-glow), 0 2px 0 rgba(255,255,255,.15) inset;
  }
  .btn-wa { width: 100%; font-size: 1rem; }
}

/* Microcopy */
.mc {
  font-size: .78rem;
  color: var(--w3);
  text-align: center;
  margin-top: .7rem;
  line-height: 1.5;
}

/* ================================================================
   FLOATING CTA — mobile
   ================================================================ */
.fcta {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 9000;
  padding: 12px 16px 16px;
  /* Gradiente amor/cosmos: roxo profundo → vinho → índigo */
  background: linear-gradient(135deg,
    rgba(38,8,72,.97)  0%,
    rgba(72,10,48,.97) 45%,
    rgba(24,6,60,.97)  100%);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-top: 1px solid transparent;
  background-clip: padding-box;
  box-shadow:
    0 -1px 0 rgba(255,215,64,.3),          /* linha dourada sutil no topo */
    0 -8px 32px rgba(100,20,80,.5);        /* glow rosado subindo */
  transform: translateY(100%);
  transition: transform .38s cubic-bezier(.22,1,.36,1);
}
.fcta.on { transform: translateY(0); }
@media (max-width: 767px) { .fcta { display: block; } }

/* ================================================================
   HERO
   ================================================================ */
.hero {
  position: relative;
  background: radial-gradient(ellipse at 55% 38%, #130840 0%, #020110 65%);
  overflow: hidden;
  padding: clamp(88px, 13vw, 140px) 0 clamp(64px, 8vw, 100px);
  min-height: 100svh;
  display: flex;
  align-items: center;
}

/* canvas stars */
#starfield {
  position: absolute;
  inset: 0; width: 100%; height: 100%;
  pointer-events: none; z-index: 0;
}

/* orbs */
.h-orb {
  position: absolute; border-radius: 50%;
  pointer-events: none; z-index: 0;
}
.h-orb-a {
  width: min(700px, 80vw); height: min(700px, 80vw);
  top: -30%; right: -18%;
  background: radial-gradient(circle, rgba(146,104,204,.28) 0%, transparent 65%);
}
.h-orb-b {
  width: min(500px, 65vw); height: min(500px, 65vw);
  bottom: -28%; left: -14%;
  background: radial-gradient(circle, rgba(255,215,64,.12) 0%, transparent 65%);
}

/* zodiac floaters */
.zf { position: absolute; inset: 0; z-index: 0; pointer-events: none; overflow: hidden; }
.zf span {
  position: absolute;
  left: var(--x); top: var(--y);
  font-size: var(--s, 1.8rem);
  color: var(--g1);
  animation: zfa var(--dur,10s) ease-in-out var(--del,0s) infinite;
  opacity: 0;
}
@keyframes zfa {
  0%,100% { opacity:0; transform:translateY(8px) rotate(-6deg); }
  15%,85% { opacity:var(--op,.07); }
  50%      { opacity:calc(var(--op,.07)*1.5); transform:translateY(-14px) rotate(5deg); }
}

/* ── Hero grid ────────────────────────────────────────────────── */
.h-grid {
  position: relative; z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: clamp(32px, 6vw, 72px);
}

/* ── Text (left) side ─────────────────────────────────────────── */
.h-left { min-width: 0; }

/* Text rotator — CSS grid stack */
.h-rotator {
  display: grid;
  margin-bottom: 1.6rem;
}
.h-rot-item {
  grid-area: 1/1;
  opacity: 0;
  transform: translateY(14px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
  pointer-events: none;
}
.h-rot-item.on {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.h-sub {
  font-size: clamp(1.05rem, 1.8vw, 1.2rem);
  color: var(--w2);
  line-height: 1.72;
  margin-top: .8rem;
  max-width: 460px;
}

/* CTA block */
.h-cta { margin-top: 1.8rem; }

/* Trust pills row */
.h-trust {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem .8rem;
  margin-top: 1.1rem;
}
.h-trust li {
  display: flex;
  align-items: center;
  gap: .35em;
  font-size: .8rem;
  font-weight: 500;
  color: var(--w3);
}

/* Dots */
.h-dots {
  display: flex;
  gap: 8px;
  margin-top: 1.6rem;
}
.h-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--w3);
  border: none;
  cursor: pointer;
  transition: background .3s, transform .3s;
  padding: 0;
}
.h-dot.on { background: var(--g1); transform: scale(1.35); }

/* ── Visual (right) side ─────────────────────────────────────── */
.h-right { position: relative; min-width: 0; }

.h-vis-rotator { display: grid; }
.h-vis-item {
  grid-area: 1/1;
  opacity: 0;
  transition: opacity .8s var(--ease);
  pointer-events: none;
}
.h-vis-item.on { opacity: 1; pointer-events: auto; }

.h-vis-item img {
  width: 100%;
  border-radius: var(--lg);
  box-shadow: 0 36px 90px rgba(0,0,0,.7), 0 0 0 1px var(--ga25);
}

/* Float badge on image */
.h-badge {
  position: absolute;
  bottom: -14px; left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  background: var(--b3);
  border: 1px solid var(--ga25);
  border-radius: var(--pill);
  padding: .52em 1.2em;
  font-size: .8rem;
  font-weight: 600;
  color: var(--g1);
  white-space: nowrap;
  box-shadow: 0 8px 28px rgba(0,0,0,.5);
}

/* Syn wheel inside hero slide */
.h-wheel-wrap {
  padding: 1rem 0.5rem 2rem;
}

/* Mobile hero — reordena: kicker → roda → rotator → cta → trust → dots */
@media (max-width: 768px) {
  .h-grid  { display: flex; flex-direction: column; }
  .h-left  { display: contents; }          /* dissolve o wrapper, filhos entram no flex pai */
  .kicker  { order: 1; }
  .h-right { order: 2; max-width: 220px; margin: 0 auto; align-self: center; }
  #heroRot { order: 3; }
  .h-cta   { order: 4; }
  .h-trust { order: 5; }
  .h-dots  { order: 6; }
  .h-sub      { display: none; }
  #heroRot    { margin-bottom: 0; }
  .h-cta      { margin-top: -25px; }
  .hero    { min-height: auto; padding-top: 5px; padding-bottom: 60px; align-items: flex-start; }
  .h-badge { font-size: .74rem; }

  /* Roda menor e mais compacta */
  .h-wheel-wrap { padding: .4rem .25rem .8rem; }

  /* Animação mais viva no mobile */
  .sw--v1 .sw-ring    { animation-duration: 20s; }
  .sw--v1 .sw-a,
  .sw--v1 .sw-b       { animation-duration: 3s; }
  .sw--v1 .sw-heart   { animation-duration: 2s; }

  /* Título do hero: maior e mais impactante */
  .h-hero { font-size: clamp(2.4rem, 10vw, 3.6rem); line-height: 1.05; }
  .h-hl   { font-size: 1.22em; }
}

/* ================================================================
   SYNASTRY WHEEL (reutilizado em múltiplos lugares)
   ================================================================ */
.sw {
  position: relative;
  width: 100%;
  padding-bottom: 100%;
}

.sw-ring {
  position: absolute; inset: 0;
  border-radius: 50%;
  border: 2px solid rgba(255,215,64,.52);
  box-shadow: 0 0 20px rgba(255,215,64,.14), inset 0 0 16px rgba(255,215,64,.07);
  animation: swSpin 36s linear infinite;
}
.sw-ring::after {
  content: '';
  position: absolute; inset: 9%;
  border-radius: 50%;
  border: 1px dashed rgba(146,104,204,.45);
}
@keyframes swSpin { to { transform: rotate(360deg); } }

.sw-signs {
  position: absolute; inset: 0; border-radius: 50%;
}
.sw-signs span {
  position: absolute;
  left: 50%; top: 50%;
  font-size: .82rem;
  color: var(--g1);
  opacity: .35;
  transform-origin: 0 0;
  transform: rotate(var(--r)) translateY(-45%) translateX(-50%);
}

.sw-a, .sw-b {
  position: absolute;
  width: 52%; padding-bottom: 52%;
  top: 24%; border-radius: 50%;
  border-width: 2px; border-style: solid;
}
.sw-a {
  left: 4%;
  border-color: var(--g2);
  background: radial-gradient(circle, rgba(245,168,0,.12), transparent 70%);
  box-shadow: 0 0 30px -6px rgba(245,168,0,.35);
}
.sw-b {
  right: 4%;
  border-color: var(--p1);
  background: radial-gradient(circle, rgba(146,104,204,.12), transparent 70%);
  box-shadow: 0 0 30px -6px rgba(146,104,204,.35);
}

.sw-lbl {
  position: absolute;
  bottom: 12%; left: 50%;
  transform: translateX(-50%);
  font-size: .62rem; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  white-space: nowrap;
}
.sw-a .sw-lbl { color: var(--g1); }
.sw-b .sw-lbl { color: var(--p1); }

.sw-heart {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  font-size: 1.6rem; z-index: 2;
  filter: drop-shadow(0 0 10px rgba(224,96,160,.7));
  animation: swHp 2.6s ease-in-out infinite;
}
@keyframes swHp {
  0%,100%{transform:translate(-50%,-50%) scale(1)}
  50%{transform:translate(-50%,-50%) scale(1.15)}
}

/* Small synastry used in wheel section */
.sw-caption {
  text-align: center;
  margin-top: 1.2rem;
}
.sw-caption p {
  font-size: .85rem;
  color: var(--w3);
  font-style: italic;
}

/* ================================================================
   SYNASTRY FEATURE SECTION (early in page)
   ================================================================ */
.syn-section-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: clamp(36px, 7vw, 80px);
}
.syn-wheel-col { max-width: 360px; width: 100%; }

@media (max-width: 720px) {
  .syn-section-grid { grid-template-columns: 1fr; }
  .syn-wheel-col { max-width: 260px; margin: 0 auto; }
}

/* ================================================================
   PAIN SECTION
   ================================================================ */
.pain-center {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  margin-bottom: clamp(36px, 5vw, 60px);
}

.pain-q {
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 800;
  font-style: italic;
  color: var(--w1);
  line-height: 1.18;
  margin-bottom: .9rem;
}

.pain-body {
  font-size: clamp(1.05rem, 1.7vw, 1.2rem);
  color: var(--w2);
  line-height: 1.8;
}

.pain-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.pc {
  /* fundo contrastante — quase preto, bem diferente do --b0 */
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,215,64,.22);
  border-radius: var(--md);
  padding: 1.8rem 1.6rem 1.6rem;
  display: flex;
  flex-direction: column;
  gap: .8rem;
  position: relative;
  overflow: hidden;
  transition: border-color .28s var(--ease), transform .28s var(--ease), box-shadow .28s var(--ease);
}
/* Linha dourada no topo de cada card */
.pc::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--g1), var(--p1));
  border-radius: var(--md) var(--md) 0 0;
}
.pc:hover {
  border-color: rgba(255,215,64,.45);
  transform: translateY(-4px);
  box-shadow: 0 18px 50px rgba(0,0,0,.55), 0 0 0 1px rgba(255,215,64,.1);
}

/* Ícone — grande, sem container, no topo do card */
.pc-ico {
  font-size: 2.2rem;
  line-height: 1;
  display: block;
}

/* Texto — grande, branco, bold */
.pc-t {
  font-size: 1.12rem;
  font-weight: 600;
  color: var(--w1);
  line-height: 1.6;
}

@media (max-width: 540px) {
  .pain-cards { grid-template-columns: 1fr; }
  .pc-t { font-size: 1.05rem; }
}

/* ================================================================
   REVEALS — CARDS
   ================================================================ */
.rc-head { text-align: center; margin-bottom: clamp(28px, 5vw, 48px); }

.rg {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(265px, 1fr));
  gap: 14px;
}

.rc {
  background: var(--b3);
  border: 1px solid var(--ga25);
  border-radius: var(--md);
  padding: 1.5rem 1.4rem;
  position: relative; overflow: hidden;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), border-color .25s var(--ease);
}
.rc::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--g1), var(--p1));
  transform: scaleX(0); transform-origin: left;
  transition: transform .3s var(--ease);
}
.rc:hover { transform: translateY(-5px); border-color: var(--ga40); box-shadow: 0 18px 50px rgba(0,0,0,.45); }
.rc:hover::before { transform: scaleX(1); }

.rc-n    { font-size: .66rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--g2); margin-bottom: .45rem; }
.rc-icon { font-size: 1.9rem; line-height: 1; margin-bottom: .55rem; display: block; }
.rc-t    { font-size: 1.05rem; font-weight: 700; color: var(--w1); line-height: 1.35; margin-bottom: .35rem; }
.rc-d    { font-size: .88rem; color: var(--w3); line-height: 1.6; }

.rc-foot {
  margin-top: clamp(28px, 4vw, 48px);
  text-align: center;
  padding-top: clamp(24px, 3vw, 40px);
  border-top: 1px solid var(--ga25);
}

/* ================================================================
   RECEIVE SECTION
   ================================================================ */
.rec-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: clamp(40px, 7vw, 88px);
}

.rl { display: flex; flex-direction: column; gap: .85rem; margin-top: 1.4rem; }
.rl-item {
  display: flex; align-items: flex-start; gap: .7em;
  font-size: 1rem; color: var(--w2); line-height: 1.5;
}
.rl-ico {
  width: 26px; height: 26px; flex-shrink: 0;
  border-radius: 50%;
  background: rgba(29,185,84,.16); border: 1px solid rgba(29,185,84,.3);
  display: flex; align-items: center; justify-content: center;
  font-size: .85rem; margin-top: 1px;
}

/* Synastry wheel (receive side) */
.rec-wheel { width: clamp(200px, 24vw, 300px); flex-shrink: 0; }

@media (max-width: 720px) {
  .rec-grid { grid-template-columns: 1fr; }
  .rec-wheel { width: min(85%, 240px); margin: 2rem auto 0; }
}

/* ================================================================
   STEPS
   ================================================================ */
.steps-g {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: start;
  gap: clamp(16px, 4vw, 48px);
  margin-top: clamp(32px, 5vw, 56px);
  position: relative;
}

/* Linha conectora animada entre os três círculos (desktop) */
.steps-g::before {
  content: '';
  position: absolute;
  top: 29px; /* metade dos 60px do círculo */
  left: 16.67%;  /* centro da 1ª coluna */
  right: 16.67%; /* centro da 3ª coluna */
  height: 2px;
  background: linear-gradient(90deg, var(--g2), var(--p1), var(--g2));
  background-size: 200% 100%;
  animation: lineShimmer 3.5s linear infinite;
  opacity: .45;
  pointer-events: none;
}
@keyframes lineShimmer {
  0%   { background-position: 0% 0%; }
  100% { background-position: 200% 0%; }
}

.step { text-align: center; padding: 0 .5rem; }

.step-n {
  width: 60px; height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--g2) 0%, var(--p1) 100%);
  color: #fff; font-size: 1.55rem; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1rem;
  box-shadow: 0 4px 22px var(--ga40);
  position: relative; /* garante que fica sobre a linha */
}
.step-t { font-size: 1.18rem; font-weight: 700; color: var(--w1); margin-bottom: .5rem; }
.step-d { font-size: 1rem; color: var(--w2); line-height: 1.7; }

/* Mobile: linha do tempo vertical */
@media (max-width: 580px) {
  .steps-g {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .steps-g::before { display: none; }

  .step {
    display: grid;
    grid-template-columns: 60px 1fr;
    grid-template-rows: auto auto;
    column-gap: 1.2rem;
    text-align: left;
    padding-bottom: 28px;
    position: relative;
  }
  .step-n {
    grid-column: 1;
    grid-row: 1 / 3;
    align-self: start;
    margin: 0;
  }
  .step-t {
    grid-column: 2; grid-row: 1;
    padding-top: .5rem;
  }
  .step-d {
    grid-column: 2; grid-row: 2;
  }
  /* Linha vertical entre passos */
  .step:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 29px;
    top: 60px;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, var(--p1) 0%, transparent 100%);
    opacity: .4;
  }
}

/* ================================================================
   TRUST SECTION
   ================================================================ */
.trust-g {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: clamp(36px, 6vw, 80px);
}
.trust-img img {
  width: clamp(200px, 26vw, 310px);
  border-radius: var(--lg);
  box-shadow: 0 20px 60px rgba(0,0,0,.55);
  display: block;
}
.t-badges {
  display: flex; flex-wrap: wrap; gap: 8px;
  margin-top: 1.5rem;
}
.tb {
  display: flex; align-items: center; gap: .45em;
  background: var(--b3); border: 1px solid var(--ga25);
  border-radius: var(--pill);
  padding: .5em 1em;
  font-size: .86rem; font-weight: 600; color: var(--g1);
}

@media (max-width: 720px) {
  .trust-g { grid-template-columns: 1fr; }
  .trust-img { text-align: center; }
  .trust-img img { margin: 0 auto; width: min(85%, 260px); }
}

/* ================================================================
   FAQ
   ================================================================ */
.faq-w {
  max-width: 720px; margin: clamp(24px, 4vw, 48px) auto 0;
  display: flex; flex-direction: column; gap: 10px;
}

.fi {
  background: var(--b3);
  border: 1px solid var(--ga25); border-radius: var(--md);
  overflow: hidden;
  transition: border-color .22s var(--ease);
}
.fi.open { border-color: var(--ga40); }

.fq {
  width: 100%; text-align: left;
  background: none; border: none;
  padding: 1.25rem 1.4rem;
  font-size: 1.12rem; font-weight: 700; color: var(--w1);
  line-height: 1.4;
  display: flex; align-items: center; justify-content: space-between; gap: .8em;
  transition: color .2s;
}
.fq:hover { color: var(--g1); }

.fq-arr {
  width: 26px; height: 26px; flex-shrink: 0;
  border-radius: 50%;
  background: var(--ga15); border: 1px solid var(--ga25);
  display: flex; align-items: center; justify-content: center;
  transition: transform .28s var(--ease);
}
.fq-arr svg { width: 13px; height: 13px; stroke: var(--g1); }
.fi.open .fq-arr { transform: rotate(180deg); }

.fa {
  max-height: 0; overflow: hidden;
  transition: max-height .4s var(--ease);
}
.fi.open .fa { max-height: 360px; }

.fa p {
  padding: .6rem 1.4rem 1.3rem;
  color: var(--w2); font-size: .97rem; line-height: 1.75;
  border-top: 1px solid var(--ga25);
}

/* ================================================================
   FINAL CTA
   ================================================================ */
.fcta-s {
  background: radial-gradient(ellipse at 50% 60%, #180A5A 0%, #020110 65%);
  text-align: center; position: relative; overflow: hidden;
}
.fcta-s::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at top, rgba(255,215,64,.08) 0%, transparent 55%);
}
.fcta-inner { position: relative; z-index: 1; max-width: 680px; margin: 0 auto; }
.fcta-t {
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  font-weight: 800; font-style: italic;
  color: var(--g1); line-height: 1.12;
  margin-bottom: 1rem; text-wrap: balance;
}
.fcta-d {
  font-size: clamp(1rem, 1.7vw, 1.12rem);
  color: var(--w2); margin-bottom: 2.2rem; line-height: 1.75;
}

/* ================================================================
   WHATSAPP
   ================================================================ */
.wa-s { text-align: center; }
.wa-intro { font-size: 1.3rem; font-weight: 700; color: var(--w1); margin-bottom: .6rem; }
.wa-sub   { font-size: 1rem; color: var(--w2); margin-bottom: 1.8rem; }
.wa-h     { font-size: .82rem; color: var(--w3); margin-top: 1rem; line-height: 1.65; }

/* Pulsing online dot */
.wa-dot {
  width: 10px; height: 10px; flex-shrink: 0;
  border-radius: 50%;
  background: #4eff91;
  box-shadow: 0 0 0 3px rgba(78,255,145,.25);
  animation: waDot 2.2s ease-in-out infinite;
}
@keyframes waDot {
  0%, 100% { box-shadow: 0 0 0 3px rgba(78,255,145,.25); }
  50%       { box-shadow: 0 0 0 7px rgba(78,255,145,.08); }
}

/* WhatsApp modal schedule */
.wa-sched-list {
  list-style: none;
  margin: 1rem 0 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: .45rem .8rem;
}
.wa-sched-list li {
  font-size: .9rem;
  color: var(--w2);
}
.wa-sched-open   { color: #4eff91; }
.wa-sched-closed { color: var(--w3); }
.modal-box--sm { max-width: 480px; }
.modal-wa-actions {
  margin-top: 1.8rem;
  display: flex; gap: .8rem; flex-wrap: wrap;
}
.btn-ghost {
  background: transparent;
  border: 1px solid var(--ga25);
  color: var(--w3);
  font-family: 'Jost', sans-serif;
  font-size: .95rem; font-weight: 600;
  padding: .8em 1.5em;
  border-radius: var(--pill);
  cursor: pointer;
  transition: border-color .2s, color .2s;
}
.btn-ghost:hover { border-color: var(--ga40); color: var(--w1); }

/* ================================================================
   DIVIDER
   ================================================================ */
.div-line {
  display: block; width: 100%; height: 1px; border: none;
  background: linear-gradient(90deg, transparent, var(--ga25), transparent);
  position: relative;
}
.div-line::after {
  content: '✦';
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  font-size: .7rem; color: var(--g2);
  background: var(--b1); padding: 0 10px; opacity: .6;
}

/* ================================================================
   FOOTER
   ================================================================ */
.foot {
  background: var(--b0);
  border-top: 1px solid var(--ga25);
  padding: 44px 0 32px; text-align: center;
}
.foot-logo { width: 46px; height: 46px; border-radius: 50%; margin: 0 auto 1rem; opacity: .8; }
.foot-brand { font-size: 1rem; font-weight: 700; color: var(--g1); letter-spacing: .06em; margin-bottom: .4rem; }
.foot-disc  { font-size: .76rem; color: var(--w3); max-width: 680px; margin: .9rem auto; line-height: 1.7; }
.foot-legal { font-size: .72rem; color: var(--w3); margin-top: 1.2rem; line-height: 1.6; }
.foot-links {
  display: flex; align-items: center; justify-content: center;
  flex-wrap: wrap; gap: .8rem 1.4rem; margin-top: .8rem;
}
.foot-links a { font-size: .76rem; color: var(--w3); text-decoration: underline; text-underline-offset: 3px; transition: color .2s; }
.foot-links a:hover { color: var(--g1); }

/* ================================================================
   SCROLL REVEAL
   ================================================================ */
.rv {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .65s var(--ease), transform .65s var(--ease);
}
.rv.in { opacity: 1; transform: translateY(0); }

/* stagger grids */
.rg  .rc.rv:nth-child(1)    { transition-delay: .03s; }
.rg  .rc.rv:nth-child(2)    { transition-delay: .10s; }
.rg  .rc.rv:nth-child(3)    { transition-delay: .17s; }
.rg  .rc.rv:nth-child(4)    { transition-delay: .24s; }
.rg  .rc.rv:nth-child(5)    { transition-delay: .31s; }
.rg  .rc.rv:nth-child(6)    { transition-delay: .38s; }
.rg  .rc.rv:nth-child(7)    { transition-delay: .45s; }
.pain-cards .pc.rv:nth-child(1) { transition-delay: .04s; }
.pain-cards .pc.rv:nth-child(2) { transition-delay: .12s; }
.pain-cards .pc.rv:nth-child(3) { transition-delay: .20s; }
.pain-cards .pc.rv:nth-child(4) { transition-delay: .28s; }

/* ================================================================
   #VOCE (pain section) — fundo linear roxo
   ================================================================ */
#voce.section {
  overflow: hidden;
  background: linear-gradient(160deg, #1a0a3d 0%, #0d0828 40%, #1e0d4a 70%, #0a0520 100%);
}

/* Orbe dourado suave no canto — toque de calor sobre o roxo */
#voce::after {
  content: '';
  position: absolute;
  top: -20%; right: -12%;
  width: clamp(280px, 44vw, 520px);
  height: clamp(280px, 44vw, 520px);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,215,64,.11) 0%, transparent 60%);
  animation: voceOrb 11s ease-in-out infinite alternate;
  pointer-events: none;
  z-index: 0;
}
@keyframes voceOrb {
  0%   { transform: scale(1)    translate(0,   0);   opacity: .65; }
  100% { transform: scale(1.14) translate(-6%, 9%);  opacity: 1; }
}

/* ================================================================
   #REVELA — fundo astrológico semitransparente
   ================================================================ */
#revela.section { overflow: hidden; }

#revela::before {
  content: '';
  position: absolute;
  right: -10%;
  top: 50%;
  transform: translateY(-50%);
  width: clamp(280px, 46vw, 520px);
  height: clamp(280px, 46vw, 520px);
  /* SVG de carta astral inline: anel zodiacal externo + divisórias + dois círculos de sinastria */
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='200' cy='200' r='192' fill='none' stroke='%23FFD740' stroke-opacity='0.18' stroke-width='1.5'/%3E%3Ccircle cx='200' cy='200' r='158' fill='none' stroke='%239268CC' stroke-opacity='0.13' stroke-width='1' stroke-dasharray='4 9'/%3E%3Ccircle cx='200' cy='200' r='112' fill='none' stroke='%23FFD740' stroke-opacity='0.07' stroke-width='0.8' stroke-dasharray='2 14'/%3E%3Cline x1='358' y1='200' x2='392' y2='200' stroke='%23FFD740' stroke-opacity='0.12' stroke-width='1'/%3E%3Cline x1='337' y1='279' x2='368' y2='297' stroke='%23FFD740' stroke-opacity='0.12' stroke-width='1'/%3E%3Cline x1='279' y1='337' x2='297' y2='368' stroke='%23FFD740' stroke-opacity='0.12' stroke-width='1'/%3E%3Cline x1='200' y1='358' x2='200' y2='392' stroke='%23FFD740' stroke-opacity='0.12' stroke-width='1'/%3E%3Cline x1='121' y1='337' x2='103' y2='368' stroke='%23FFD740' stroke-opacity='0.12' stroke-width='1'/%3E%3Cline x1='63' y1='279' x2='32' y2='297' stroke='%23FFD740' stroke-opacity='0.12' stroke-width='1'/%3E%3Cline x1='42' y1='200' x2='8' y2='200' stroke='%23FFD740' stroke-opacity='0.12' stroke-width='1'/%3E%3Cline x1='63' y1='121' x2='32' y2='103' stroke='%23FFD740' stroke-opacity='0.12' stroke-width='1'/%3E%3Cline x1='121' y1='63' x2='103' y2='32' stroke='%23FFD740' stroke-opacity='0.12' stroke-width='1'/%3E%3Cline x1='200' y1='42' x2='200' y2='8' stroke='%23FFD740' stroke-opacity='0.12' stroke-width='1'/%3E%3Cline x1='279' y1='63' x2='297' y2='32' stroke='%23FFD740' stroke-opacity='0.12' stroke-width='1'/%3E%3Cline x1='337' y1='121' x2='368' y2='103' stroke='%23FFD740' stroke-opacity='0.12' stroke-width='1'/%3E%3Ccircle cx='164' cy='200' r='77' fill='%23F5A800' fill-opacity='0.06' stroke='%23F5A800' stroke-opacity='0.28' stroke-width='1.5'/%3E%3Ccircle cx='236' cy='200' r='77' fill='%239268CC' fill-opacity='0.06' stroke='%239268CC' stroke-opacity='0.28' stroke-width='1.5'/%3E%3Ccircle cx='200' cy='200' r='4' fill='%23FFD740' fill-opacity='0.4'/%3E%3Ccircle cx='72' cy='128' r='1.5' fill='%23FFD740' fill-opacity='0.35'/%3E%3Ccircle cx='318' cy='88' r='1.2' fill='%23FFD740' fill-opacity='0.3'/%3E%3Ccircle cx='340' cy='310' r='1.5' fill='%23FFD740' fill-opacity='0.28'/%3E%3Ccircle cx='88' cy='332' r='1.2' fill='%23FFD740' fill-opacity='0.25'/%3E%3C/svg%3E") center/contain no-repeat;
  pointer-events: none;
  z-index: 0;
  animation: revelaBgSpin 80s linear infinite;
  opacity: 0.7;
}
#revela > .wrap { position: relative; z-index: 1; }
@keyframes revelaBgSpin {
  from { transform: translateY(-50%) rotate(0deg); }
  to   { transform: translateY(-50%) rotate(360deg); }
}
@media (max-width: 720px) {
  #revela::before { opacity: .25; right: -35%; }
}

/* ================================================================
   REVEAL CARDS — nebula animada de fundo
   ================================================================ */

/* Eleva o conteúdo dos cards acima do pseudo-elemento */
.rg .rc .rc-n,
.rg .rc .rc-icon,
.rg .rc .rc-t,
.rg .rc .rc-d { position: relative; z-index: 1; }

/* Nebula de fundo animada — amor, cosmos, ouro */
.rg .rc::after {
  content: '';
  position: absolute;
  inset: -30%;
  border-radius: 50%;
  background:
    radial-gradient(ellipse at 30% 40%, rgba(224,96,160,.16) 0%, transparent 50%),
    radial-gradient(ellipse at 68% 62%, rgba(255,215,64,.11) 0%, transparent 48%),
    radial-gradient(ellipse at 50% 82%, rgba(146,104,204,.13) 0%, transparent 45%);
  animation: rcNebula 9s ease-in-out infinite alternate;
  pointer-events: none;
  z-index: 0;
  will-change: transform, opacity;
}
@keyframes rcNebula {
  0%   { transform: translate(0,0) scale(1) rotate(0deg); opacity: .45; }
  50%  { opacity: .8; }
  100% { transform: translate(8%,-6%) scale(1.14) rotate(8deg); opacity: .35; }
}
/* Fases escalonadas por card */
.rg .rc:nth-child(1)::after { animation-delay:    0s; }
.rg .rc:nth-child(2)::after { animation-delay: -1.8s; }
.rg .rc:nth-child(3)::after { animation-delay: -3.6s; }
.rg .rc:nth-child(4)::after { animation-delay: -5.4s; }
.rg .rc:nth-child(5)::after { animation-delay: -7.2s; }
.rg .rc:nth-child(6)::after { animation-delay: -2.4s; }
.rg .rc:nth-child(7)::after { animation-delay: -4.8s; }

/* ================================================================
   SECTION BACKGROUND TEXTURE (estrelas CSS puras)
   ================================================================ */
.s-bg-tex::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at  8% 14%, rgba(255,215,64,.2) 0, rgba(255,215,64,.2) 1px, transparent 1px),
    radial-gradient(circle at 23% 58%, rgba(255,255,255,.16) 0, rgba(255,255,255,.16) 1px, transparent 1px),
    radial-gradient(circle at 41% 11%, rgba(255,215,64,.13) 0, rgba(255,215,64,.13) .9px, transparent .9px),
    radial-gradient(circle at 59% 79%, rgba(255,255,255,.14) 0, rgba(255,255,255,.14) 1px, transparent 1px),
    radial-gradient(circle at 72% 32%, rgba(255,215,64,.17) 0, rgba(255,215,64,.17) 1.1px, transparent 1.1px),
    radial-gradient(circle at 85% 61%, rgba(255,255,255,.12) 0, rgba(255,255,255,.12) .9px, transparent .9px),
    radial-gradient(circle at 91%  8%, rgba(255,255,255,.15) 0, rgba(255,255,255,.15) 1px, transparent 1px),
    radial-gradient(circle at 34% 86%, rgba(255,215,64,.11) 0, rgba(255,215,64,.11) .8px, transparent .8px),
    radial-gradient(circle at 67% 46%, rgba(255,255,255,.13) 0, rgba(255,255,255,.13) 1px, transparent 1px),
    radial-gradient(circle at 15% 71%, rgba(255,215,64,.16) 0, rgba(255,215,64,.16) 1px, transparent 1px),
    radial-gradient(circle at 50% 29%, rgba(146,104,204,.12) 0, rgba(146,104,204,.12) .9px, transparent .9px),
    radial-gradient(circle at 78% 91%, rgba(255,255,255,.14) 0, rgba(255,255,255,.14) 1px, transparent 1px),
    radial-gradient(circle at  4% 44%, rgba(255,215,64,.1) 0, rgba(255,215,64,.1) .8px, transparent .8px),
    radial-gradient(circle at 96% 55%, rgba(255,255,255,.11) 0, rgba(255,255,255,.11) .9px, transparent .9px);
  pointer-events: none;
  z-index: 0;
}
/* Wrap fica acima da textura */
.s-bg-tex > .wrap {
  position: relative;
  z-index: 1;
}

/* ================================================================
   SYNASTRY WHEEL ANIMATION VARIANTS
   ================================================================ */

/* v1 (hero) — anel horário lento, signos piscam em sequência, coração pulsa com brilho */
.sw--v1 .sw-a {
  animation: swFloatA 5s ease-in-out infinite;
}
.sw--v1 .sw-b {
  animation: swFloatA 5s ease-in-out 1.2s infinite;
}
.sw--v1 .sw-heart {
  animation: swHpGlow 2.8s ease-in-out infinite;
}
.sw--v1 .sw-signs span {
  animation: swSignBlink 6s ease-in-out infinite;
}
/* Escalonamento dos signos */
.sw--v1 .sw-signs span:nth-child(1)  { animation-delay: 0s; }
.sw--v1 .sw-signs span:nth-child(2)  { animation-delay: .5s; }
.sw--v1 .sw-signs span:nth-child(3)  { animation-delay: 1s; }
.sw--v1 .sw-signs span:nth-child(4)  { animation-delay: 1.5s; }
.sw--v1 .sw-signs span:nth-child(5)  { animation-delay: 2s; }
.sw--v1 .sw-signs span:nth-child(6)  { animation-delay: 2.5s; }
.sw--v1 .sw-signs span:nth-child(7)  { animation-delay: 3s; }
.sw--v1 .sw-signs span:nth-child(8)  { animation-delay: 3.5s; }
.sw--v1 .sw-signs span:nth-child(9)  { animation-delay: 4s; }
.sw--v1 .sw-signs span:nth-child(10) { animation-delay: 4.5s; }
.sw--v1 .sw-signs span:nth-child(11) { animation-delay: 5s; }
.sw--v1 .sw-signs span:nth-child(12) { animation-delay: 5.5s; }

@keyframes swFloatA {
  0%, 100% { transform: scale(1) translateY(0); }
  50%       { transform: scale(1.05) translateY(-4px); }
}
@keyframes swHpGlow {
  0%, 100% {
    transform: translate(-50%,-50%) scale(1);
    filter: drop-shadow(0 0 8px rgba(224,96,160,.65));
  }
  50% {
    transform: translate(-50%,-50%) scale(1.2);
    filter: drop-shadow(0 0 18px rgba(255,215,64,.9)) drop-shadow(0 0 6px rgba(224,96,160,.8));
  }
}
@keyframes swSignBlink {
  0%, 80%, 100% { opacity: .35; }
  90%           { opacity: .9; color: var(--g1); text-shadow: 0 0 8px rgba(255,215,64,.8); }
}

/* v2 (compatibilidade) — anel anti-horário, círculos respiram, coração bate duplo */
.sw--v2 .sw-ring {
  animation: swSpinR 40s linear infinite;
}
.sw--v2 .sw-a {
  animation: swBreatheA 4.2s ease-in-out infinite;
}
.sw--v2 .sw-b {
  animation: swBreatheA 4.2s ease-in-out .7s infinite;
}
.sw--v2 .sw-heart {
  animation: swDblBeat 1.9s ease-in-out infinite;
}
@keyframes swSpinR { to { transform: rotate(-360deg); } }
@keyframes swBreatheA {
  0%, 100% { transform: scale(1); opacity: 1; }
  50%       { transform: scale(1.07); opacity: .85; }
}
@keyframes swDblBeat {
  0%, 100% { transform: translate(-50%,-50%) scale(1); }
  20%      { transform: translate(-50%,-50%) scale(1.22); }
  35%      { transform: translate(-50%,-50%) scale(1.02); }
  55%      { transform: translate(-50%,-50%) scale(1.16); }
  70%      { transform: translate(-50%,-50%) scale(1); }
}

/* v3 (recebe) — anel oscila como pêndulo, coração pulsa com brilho */
.sw--v3 .sw-ring {
  animation: swPendulum 7s ease-in-out infinite;
  transform-origin: center center;
}
.sw--v3 .sw-a {
  animation: swDriftL 5s ease-in-out infinite;
}
.sw--v3 .sw-b {
  animation: swDriftR 5s ease-in-out .8s infinite;
}
.sw--v3 .sw-heart {
  animation: swGlowPulse 3.2s ease-in-out infinite;
}
@keyframes swPendulum {
  0%, 100% { transform: rotate(-18deg); }
  50%      { transform: rotate(18deg); }
}
@keyframes swDriftL {
  0%, 100% { transform: translateX(0); }
  50%      { transform: translateX(-5px); }
}
@keyframes swDriftR {
  0%, 100% { transform: translateX(0); }
  50%      { transform: translateX(5px); }
}
@keyframes swGlowPulse {
  0%, 100% {
    transform: translate(-50%,-50%) scale(1);
    filter: drop-shadow(0 0 8px rgba(224,96,160,.6));
  }
  50% {
    transform: translate(-50%,-50%) scale(1.25);
    filter: drop-shadow(0 0 22px rgba(224,96,160,1)) drop-shadow(0 0 8px rgba(255,215,64,.5));
  }
}

/* ================================================================
   SINASTRIA COMPAT VISUAL — "Ressonância Orbital"
   Dois astros em órbita, atraídos pelo mesmo centro.
   ================================================================ */
.scv {
  position: relative;
  width: 270px; height: 270px;
  margin: 0 auto;
  flex-shrink: 0;
}
.scv::before {
  content: '';
  position: absolute; inset: 0;
  border-radius: 50%;
  background: radial-gradient(ellipse at 50% 44%, #200860 0%, #0c0330 60%, #060115 100%);
  box-shadow:
    0 0 60px -6px rgba(160,40,255,.4),
    0 0 0 1.5px rgba(255,215,64,.12),
    inset 0 0 40px rgba(0,0,0,.5);
  z-index: 0;
}

/* Rotating conic energy field */
.scv-field {
  position: absolute; inset: 22%;
  border-radius: 50%;
  background: conic-gradient(
    from 0deg,
    rgba(255,215,64,.07), rgba(160,40,255,.15),
    rgba(255,215,64,.07), rgba(160,40,255,.15),
    rgba(255,215,64,.07)
  );
  animation: scvFieldSpin 10s linear infinite;
  z-index: 1;
}
@keyframes scvFieldSpin { to { transform: rotate(360deg); } }

/* Expanding ripple rings */
.scv-ripple {
  position: absolute;
  top: 50%; left: 50%;
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,215,64,.55);
  transform: translate(-50%, -50%);
  animation: scvRipple 3.6s ease-out infinite;
  z-index: 1;
  pointer-events: none;
}
.scv-r2 { animation-delay: 1.2s; }
.scv-r3 { animation-delay: 2.4s; border-color: rgba(160,40,255,.55); }
@keyframes scvRipple {
  0%   { transform: translate(-50%,-50%) scale(.5);  opacity: .8; }
  100% { transform: translate(-50%,-50%) scale(7.2); opacity: 0; }
}

/* Orbital track rings (decorative) */
.scv-track {
  position: absolute;
  top: 50%; left: 50%;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 1;
}
.scv-track--a {
  width: 200px; height: 200px;
  border: 1.5px dashed rgba(255,215,64,.22);
  animation: scvFieldSpin 30s linear infinite reverse;
}
.scv-track--b {
  width: 150px; height: 150px;
  border: 1.5px dashed rgba(160,40,255,.22);
  animation: scvFieldSpin 20s linear infinite;
}

/* Orbit wrappers — full-size overlays that rotate */
.scv-orbit {
  position: absolute; inset: 0;
  border-radius: 50%;
  z-index: 2;
}
.scv-orbit--a { animation: scvOrbitCW   9s linear infinite; }
.scv-orbit--b { animation: scvOrbitCCW 13s linear infinite; }
@keyframes scvOrbitCW  { to { transform: rotate( 360deg); } }
@keyframes scvOrbitCCW { to { transform: rotate(-360deg); } }

/* Planets — positioned at orbital radius, counter-rotate to stay upright */
.scv-planet {
  position: absolute;
  left: 50%;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
/* Planet A (gold) orbit r=100px; size 38px; top = 135-100-19 = 16px */
.scv-planet--a {
  width: 38px; height: 38px;
  top: 16px;
  background: radial-gradient(circle at 38% 32%, #fff8cc, #f5a800 55%, #c07000);
  box-shadow: 0 0 18px 5px rgba(255,215,64,.55), 0 0 6px 2px rgba(255,180,0,.85);
  animation: scvCounterCW 9s linear infinite;
}
/* Planet B (purple) orbit r=75px; size 28px; top = 135-75-14 = 46px */
.scv-planet--b {
  width: 28px; height: 28px;
  top: 46px;
  background: radial-gradient(circle at 38% 32%, #e8aaff, #b040ff 55%, #7800cc);
  box-shadow: 0 0 14px 4px rgba(160,40,255,.6), 0 0 5px 2px rgba(180,60,255,.8);
  animation: scvCounterCCW 13s linear infinite;
}
@keyframes scvCounterCW  {
  0%   { transform: translateX(-50%) rotate(  0deg); }
  100% { transform: translateX(-50%) rotate(-360deg); }
}
@keyframes scvCounterCCW {
  0%   { transform: translateX(-50%) rotate(  0deg); }
  100% { transform: translateX(-50%) rotate( 360deg); }
}

/* Planet labels */
.scv-lbl {
  position: absolute;
  bottom: -20px; left: 50%;
  transform: translateX(-50%);
  font-size: .6rem;
  font-weight: 700;
  letter-spacing: .06em;
  white-space: nowrap;
  text-shadow: 0 1px 6px rgba(0,0,0,.95);
}
.scv-planet--a .scv-lbl { color: var(--g1); }
.scv-planet--b .scv-lbl { color: #c878ff; }

/* Central nexus — pulsing heart */
.scv-nexus {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
  pointer-events: none;
}
.scv-heart {
  font-size: 1.7rem;
  display: block;
  animation: scvHeartBeat 2.4s ease-in-out infinite;
  filter: drop-shadow(0 0 10px rgba(255,80,80,.8));
}
@keyframes scvHeartBeat {
  0%, 100% { transform: scale(1);    filter: drop-shadow(0 0 8px  rgba(255,80,80,.55)); }
  15%      { transform: scale(1.28); filter: drop-shadow(0 0 18px rgba(255,60,60,1));   }
  30%      { transform: scale(1.06); filter: drop-shadow(0 0 10px rgba(255,80,80,.7));  }
  45%      { transform: scale(1.22); filter: drop-shadow(0 0 15px rgba(255,60,60,.9));  }
  60%      { transform: scale(1); }
}

/* Cardinal zodiac signs — fixed, fade-pulse */
.scv-z {
  position: absolute;
  font-size: 1.2rem;
  pointer-events: none;
  z-index: 2;
}
.scv-z1 { top: 5%;   left: 50%;  transform: translateX(-50%); color: var(--g1); animation: scvZPx 5s ease-in-out       infinite; }
.scv-z2 { top: 50%;  left: 4%;   transform: translateY(-50%); color: #c878ff;  animation: scvZPy 5s ease-in-out 1.25s infinite; }
.scv-z3 { bottom: 5%; left: 50%; transform: translateX(-50%); color: var(--g1); animation: scvZPx 5s ease-in-out 2.5s  infinite; }
.scv-z4 { top: 50%;  right: 4%;  transform: translateY(-50%); color: #c878ff;  animation: scvZPy 5s ease-in-out 3.75s infinite; }
@keyframes scvZPx {
  0%, 100% { opacity: .28; transform: translateX(-50%) scale(1); }
  50%      { opacity: .65; transform: translateX(-50%) scale(1.2); }
}
@keyframes scvZPy {
  0%, 100% { opacity: .28; transform: translateY(-50%) scale(1); }
  50%      { opacity: .65; transform: translateY(-50%) scale(1.2); }
}

@media (max-width: 720px) {
  .syn-wheel-col .scv { transform: scale(.88); transform-origin: center top; }
}

/* ================================================================
   MODAL LEGAL
   ================================================================ */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(2,1,16,.88);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s var(--ease);
}
.modal-overlay.open {
  opacity: 1;
  pointer-events: auto;
}
.modal-box {
  background: var(--b3);
  border: 1px solid var(--ga25);
  border-radius: var(--lg);
  max-width: 700px;
  width: 100%;
  max-height: 82vh;
  display: flex;
  flex-direction: column;
  box-shadow: 0 40px 100px rgba(0,0,0,.75), 0 0 0 1px rgba(255,215,64,.08);
  transform: translateY(24px) scale(.96);
  transition: transform .38s cubic-bezier(.22,1,.36,1);
}
.modal-overlay.open .modal-box {
  transform: translateY(0) scale(1);
}
.modal-hd {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.1rem 1.5rem;
  border-bottom: 1px solid var(--ga25);
  flex-shrink: 0;
}
.modal-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--g1);
  letter-spacing: .02em;
}
.modal-cls {
  width: 34px; height: 34px; flex-shrink: 0;
  border-radius: 50%;
  background: var(--ga15);
  border: 1px solid var(--ga25);
  color: var(--w3);
  font-size: 1.05rem;
  line-height: 1;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: background .2s, color .2s;
  font-family: inherit;
}
.modal-cls:hover { background: var(--ga25); color: var(--w1); }
.modal-body {
  overflow-y: auto;
  padding: 1.5rem 1.6rem 2rem;
  color: var(--w2);
  font-size: .9rem;
  line-height: 1.8;
  flex: 1;
}
.modal-body h3 {
  font-size: .98rem;
  font-weight: 700;
  color: var(--w1);
  margin: 1.6rem 0 .5rem;
}
.modal-body h3:first-child { margin-top: 0; }
.modal-body p  { margin-bottom: .75rem; }
.modal-body ul { padding-left: 1.3em; margin-bottom: .75rem; }
.modal-body li { margin-bottom: .35rem; }
.modal-body a  { color: var(--g1); text-underline-offset: 3px; }

/* ================================================================
   UTILS
   ================================================================ */
.tc { text-align: center; }
.vh { position:absolute;width:1px;height:1px;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap; }
