/* =========================================================
   Júlia Baeta — Psicóloga
   Aesthetic: Soft feminino (rosé, areia, lavanda)
   Type: Instrument Serif (display) + Manrope (body)
   ========================================================= */

:root {
  /* Surfaces — warm ivory & sand */
  --bg:        oklch(0.972 0.010 75);
  --bg-2:      oklch(0.945 0.018 70);
  --bg-3:      oklch(0.905 0.028 65);
  --bg-rose:   oklch(0.86 0.045 60);   /* toasted beige (kept var name for compat) */
  --bg-deep:   oklch(0.26 0.035 55);   /* dark chocolate */

  /* Accents — brown family */
  --rose:        oklch(0.55 0.08 55);   /* caramel */
  --rose-strong: oklch(0.40 0.075 50);  /* walnut / espresso */
  --rose-soft:   oklch(0.78 0.055 60);  /* latte */
  --lavender:    oklch(0.72 0.04 80);
  --lavender-deep: oklch(0.52 0.06 60);

  /* Ink — warm dark browns */
  --ink:    oklch(0.22 0.020 50);
  --ink-2:  oklch(0.40 0.018 50);
  --ink-3:  oklch(0.56 0.014 55);
  --line:   oklch(0.85 0.022 60);
  --line-2: oklch(0.91 0.016 60);

  /* Layout */
  --maxw: 1240px;
  --maxw-narrow: 900px;
  --pad: clamp(24px, 6vw, 56px);
  --radius: 18px;
  --radius-sm: 10px;

  /* Type */
  --serif: 'Instrument Serif', 'Cormorant Garamond', Georgia, serif;
  --sans:  'Manrope', system-ui, -apple-system, sans-serif;

  /* Motion */
  --ease: cubic-bezier(.2,.7,.2,1);
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; overflow-x: clip; max-width: 100%; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--bg);
  font-size: 17px;
  line-height: 1.55;
  font-weight: 400;
  letter-spacing: -0.005em;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  cursor: none;  /* custom cursor */
}

@media (hover: none) {
  body { cursor: auto; }
}

img { max-width: 100%; display: block; }
a { color: inherit; }
button { font-family: inherit; cursor: none; }
@media (hover: none) { button { cursor: pointer; } }

::selection { background: var(--rose-soft); color: var(--ink); }

/* ---------- Typography ---------- */
.eyebrow {
  font-family: var(--sans);
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-2);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: '';
  width: 22px;
  height: 1px;
  background: var(--rose);
  display: inline-block;
}

.display, h1, h2, h3 {
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -0.015em;
  color: var(--ink);
  line-height: 1.05;
  margin: 0;
  text-wrap: pretty;
}
h1 { font-size: clamp(48px, 8vw, 112px); }
h2 { font-size: clamp(36px, 5.4vw, 68px); }
h3 { font-size: clamp(22px, 2.4vw, 30px); line-height: 1.2; }

.italic { font-style: italic; }
.serif { font-family: var(--serif); }
.rose  { color: var(--rose-strong); }
.muted { color: var(--ink-2); }
.dim   { color: var(--ink-3); }

p { margin: 0 0 1em; text-wrap: pretty; }
.lede { font-size: clamp(17px, 1.4vw, 19px); color: var(--ink-2); line-height: 1.6; max-width: 60ch; }

/* ---------- Custom cursor ---------- */
.cursor {
  position: fixed; top: 0; left: 0;
  width: 28px; height: 28px;
  border: 1px solid var(--rose);
  border-radius: 50%;
  pointer-events: none;
  transform: translate(-50%, -50%);
  transition: width .25s var(--ease), height .25s var(--ease),
              background .25s var(--ease), border-color .25s var(--ease),
              opacity .2s;
  z-index: 9999;
  mix-blend-mode: multiply;
}
.cursor-dot {
  position: fixed; top: 0; left: 0;
  width: 4px; height: 4px;
  background: var(--rose-strong);
  border-radius: 50%;
  pointer-events: none;
  transform: translate(-50%, -50%);
  z-index: 9999;
}
.cursor.hover {
  width: 56px; height: 56px;
  background: oklch(0.62 0.09 18 / 0.08);
}
.cursor.text {
  width: 4px; height: 22px;
  border-radius: 1px;
  background: var(--rose-strong);
  border: none;
}
@media (hover: none) { .cursor, .cursor-dot { display: none; } }

/* ---------- Layout ---------- */
.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding-left: var(--pad); padding-right: var(--pad); }
.narrow { max-width: var(--maxw-narrow); margin: 0 auto; padding-left: var(--pad); padding-right: var(--pad); }
section { padding: clamp(80px, 11vw, 140px) 0; position: relative; }
.section-tight { padding: clamp(60px, 8vw, 110px) 0; }

.divider { border: none; height: 1px; background: var(--line); margin: 0; }

/* ---------- Nav ---------- */
.nav {
  position: sticky;
  top: 0; z-index: 100;
  backdrop-filter: blur(14px) saturate(1.1);
  -webkit-backdrop-filter: blur(14px) saturate(1.1);
  background: oklch(0.975 0.008 30 / 0.78);
  border-bottom: 1px solid var(--line-2);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px var(--pad);
  max-width: var(--maxw); margin: 0 auto;
}
.brand {
  font-family: var(--serif);
  font-size: 22px;
  font-style: italic;
  letter-spacing: -0.01em;
  text-decoration: none;
  color: var(--ink);
  display: inline-flex; align-items: baseline; gap: 4px;
  white-space: nowrap;
  flex-shrink: 0;
}
.brand .dot { color: var(--rose); }
.nav-links {
  display: none;
  gap: 22px;
  font-size: 13.5px;
  color: var(--ink-2);
}
.nav-links a {
  text-decoration: none;
  position: relative;
  transition: color .2s var(--ease);
}
.nav-links a:hover { color: var(--ink); }
.nav-links a::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: -6px;
  height: 1px; background: var(--rose);
  transform: scaleX(0); transform-origin: left;
  transition: transform .35s var(--ease);
}
.nav-links a:hover::after { transform: scaleX(1); }

@media (min-width: 1100px) { .nav-links { display: flex; } }
.nav .btn { flex-shrink: 0; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 22px;
  border-radius: 999px;
  font-family: var(--sans);
  font-weight: 500;
  font-size: 14.5px;
  letter-spacing: 0.01em;
  text-decoration: none;
  border: 1px solid transparent;
  transition: all .35s var(--ease);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}
.btn-primary {
  background: var(--ink);
  color: var(--bg);
}
.btn-primary:hover {
  background: var(--rose-strong);
  transform: translateY(-1px);
}
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line);
}
.btn-ghost:hover {
  background: var(--bg-2);
  border-color: var(--ink-3);
}
.btn-rose {
  background: var(--rose);
  color: white;
}
.btn-rose:hover {
  background: var(--rose-strong);
  transform: translateY(-1px);
}
.btn .arrow {
  transition: transform .3s var(--ease);
  display: inline-block;
}
.btn:hover .arrow { transform: translateX(4px); }

/* ---------- Hero ---------- */
.hero {
  padding: 60px 0 80px;
  position: relative;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: end;
}
@media (min-width: 980px) {
  .hero-grid { grid-template-columns: 1.05fr 0.95fr; gap: 60px; align-items: end; }
}

.hero-text { padding-top: 40px; }
.hero-eyebrow { margin-bottom: 28px; }
.hero h1 {
  letter-spacing: -0.025em;
  margin-bottom: 24px;
}
.hero h1 .italic { color: var(--rose-strong); }
.hero .lede { margin-bottom: 36px; max-width: 30ch; }

.hero-meta {
  display: flex; flex-wrap: wrap;
  gap: 22px;
  font-size: 13px;
  color: var(--ink-2);
  margin-bottom: 36px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}
.hero-meta strong { color: var(--ink); font-weight: 500; }
.hero-meta-item { display: flex; align-items: center; gap: 8px; }
.hero-meta-item svg { color: var(--rose); flex-shrink: 0; }

.hero-cta-row { display: flex; flex-wrap: wrap; gap: 12px; }

.hero-photo-wrap {
  position: relative;
}
.hero-photo {
  position: relative;
  aspect-ratio: 3 / 4;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg-3);
  box-shadow: 0 40px 80px -40px oklch(0.30 0.025 25 / 0.25);
}
.hero-photo img {
  width: 100%; height: 100%; object-fit: cover; object-position: center top;
}
.hero-photo::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 60%, oklch(0.88 0.032 18 / 0.18) 100%);
  pointer-events: none;
}
.hero-badge {
  position: absolute;
  left: 50%;
  bottom: -18px;
  transform: translateX(-50%);
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 10px 18px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-2);
  display: inline-flex; align-items: center; gap: 10px;
  box-shadow: 0 10px 30px -10px oklch(0.30 0.025 25 / 0.25);
  white-space: nowrap;
  z-index: 2;
}
.hero-badge .pulse {
  width: 6px; height: 6px; border-radius: 50%;
  background: oklch(0.65 0.13 145);
  box-shadow: 0 0 0 0 oklch(0.65 0.13 145 / 0.6);
  animation: pulse 2.4s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 oklch(0.65 0.13 145 / 0.5); }
  70% { box-shadow: 0 0 0 8px oklch(0.65 0.13 145 / 0); }
  100% { box-shadow: 0 0 0 0 oklch(0.65 0.13 145 / 0); }
}

/* Hero ornament */
.hero-ornament {
  position: absolute;
  right: -120px; top: -80px;
  width: 380px; height: 380px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, oklch(0.88 0.032 18 / 0.55), transparent 70%);
  filter: blur(20px);
  pointer-events: none;
  z-index: -1;
}

/* Marquee ticker */
.ticker {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--bg-2);
  padding: 18px 0;
  overflow: hidden;
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(22px, 3vw, 32px);
  color: var(--ink);
  white-space: nowrap;
}
.ticker-track {
  display: inline-flex;
  gap: 40px;
  animation: marquee 38s linear infinite;
  padding-right: 40px;
}
.ticker-track span { display: inline-flex; align-items: center; gap: 40px; }
.ticker-dot {
  display: inline-block;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--rose);
  vertical-align: middle;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ---------- About ---------- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 50px;
}
@media (min-width: 900px) {
  .about-grid { grid-template-columns: 0.4fr 0.6fr; gap: 80px; }
}
.about-credentials {
  display: flex; flex-direction: column; gap: 28px;
}
.cred {
  border-left: 1px solid var(--line);
  padding-left: 20px;
}
.cred-label {
  font-size: 11.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-bottom: 6px;
}
.cred-value {
  font-family: var(--serif);
  font-size: 22px;
  line-height: 1.25;
  color: var(--ink);
}
.cred.highlight {
  border-left-color: var(--rose);
}
.cred.highlight .cred-value { color: var(--rose-strong); font-style: italic; }

.cred-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.cred-list li {
  font-family: var(--sans);
  font-size: 14.5px;
  line-height: 1.45;
  color: var(--ink-2);
  text-wrap: pretty;
}

.about-copy h2 { margin-bottom: 32px; }
.about-copy p { font-size: 18px; line-height: 1.7; color: var(--ink-2); max-width: 56ch; }
.about-copy p strong { color: var(--ink); font-weight: 500; }

/* ---------- Specialty sections (dedicated) ---------- */
.specialty {
  background: var(--bg-2);
  border-top: 1px solid var(--line-2);
  border-bottom: 1px solid var(--line-2);
}
.specialty.alt { background: var(--bg-3); }

.specialty-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 56px;
  align-items: center;
}
@media (min-width: 900px) {
  .specialty-grid { grid-template-columns: 0.55fr 0.45fr; gap: 80px; }
  .specialty.reverse .specialty-grid > :first-child { order: 2; }
  .specialty.reverse .specialty-grid > :last-child  { order: 1; }
}

.specialty-num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 14px;
  color: var(--rose-strong);
  letter-spacing: 0.04em;
  margin-bottom: 18px;
}
.specialty h2 { margin-bottom: 24px; }
.specialty h2 em { font-style: italic; color: var(--rose-strong); }
.specialty-lede { font-size: 18px; line-height: 1.7; color: var(--ink-2); max-width: 52ch; margin-bottom: 32px; }

.specialty-list {
  list-style: none; padding: 0; margin: 0 0 36px;
  display: flex; flex-direction: column; gap: 14px;
}
.specialty-list li {
  display: flex; gap: 14px; align-items: flex-start;
  font-size: 15.5px;
  color: var(--ink-2);
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line-2);
}
.specialty-list li:last-child { border-bottom: none; padding-bottom: 0; }
.specialty-list .mark {
  flex-shrink: 0;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--bg);
  border: 1px solid var(--rose-soft);
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--rose-strong);
  font-size: 11px;
  margin-top: 1px;
}

/* Specialty illustration block */
.specialty-illus {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius);
  background: linear-gradient(160deg, oklch(0.88 0.032 18 / 0.7), oklch(0.92 0.04 295 / 0.5));
  padding: 36px;
  display: flex; flex-direction: column; justify-content: space-between;
  overflow: hidden;
  border: 1px solid var(--line-2);
}
.specialty.alt .specialty-illus {
  background: linear-gradient(160deg, oklch(0.92 0.04 295 / 0.6), oklch(0.88 0.032 18 / 0.55));
}
.specialty-illus .label-tl {
  font-family: var(--serif);
  font-style: italic;
  font-size: 18px;
  color: var(--ink);
  opacity: 0.6;
}
.specialty-illus .glyph {
  font-family: var(--serif);
  font-size: clamp(120px, 18vw, 200px);
  line-height: 1;
  color: var(--ink);
  align-self: flex-end;
  letter-spacing: -0.04em;
  font-style: italic;
}
.specialty-illus .label-br {
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-2);
  align-self: flex-end;
}
.specialty-illus::before {
  content: '';
  position: absolute;
  width: 240px; height: 240px;
  border-radius: 50%;
  border: 1px solid oklch(0.88 0.04 18 / 0.5);
  top: -60px; right: -60px;
  pointer-events: none;
}
.specialty-illus::after {
  content: '';
  position: absolute;
  width: 140px; height: 140px;
  border-radius: 50%;
  border: 1px solid oklch(0.74 0.05 295 / 0.4);
  bottom: 30%; left: -30px;
  pointer-events: none;
}

/* ---------- Clinical (general) section ---------- */
.clinical {
  padding-top: clamp(80px, 11vw, 140px);
  padding-bottom: clamp(60px, 8vw, 110px);
}
.clinical-head {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-bottom: 56px;
  align-items: end;
}
@media (min-width: 900px) {
  .clinical-head { grid-template-columns: 1.2fr 1fr; gap: 60px; }
}
.clinical-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}
@media (min-width: 700px) { .clinical-cards { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .clinical-cards { grid-template-columns: repeat(3, 1fr); } }

.clin-card {
  background: var(--bg-2);
  border: 1px solid var(--line-2);
  border-radius: var(--radius);
  padding: 28px 26px;
  transition: all .4s var(--ease);
  position: relative;
  overflow: hidden;
}
.clin-card:hover {
  background: var(--bg);
  border-color: var(--rose-soft);
  transform: translateY(-4px);
  box-shadow: 0 20px 40px -25px oklch(0.30 0.025 25 / 0.25);
}
.clin-card .icon {
  width: 36px; height: 36px;
  border-radius: 10px;
  background: var(--bg);
  border: 1px solid var(--line);
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--rose-strong);
  margin-bottom: 20px;
  transition: all .4s var(--ease);
}
.clin-card:hover .icon { background: var(--bg-rose); border-color: var(--rose-soft); }
.clin-card h3 { font-size: 22px; margin-bottom: 8px; }
.clin-card p { font-size: 14.5px; color: var(--ink-2); margin: 0; line-height: 1.55; }

/* ---------- How it works ---------- */
.how {
  background: var(--bg-deep);
  color: oklch(0.96 0.01 25);
}
.how .eyebrow { color: oklch(0.78 0.03 25); }
.how .eyebrow::before { background: var(--rose-soft); }
.how h2, .how h3 { color: oklch(0.97 0.012 25); }
.how-head { margin-bottom: 60px; max-width: 60ch; }
.how-head .lede { color: oklch(0.78 0.02 25); }

.how-steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}
@media (min-width: 800px) { .how-steps { grid-template-columns: repeat(4, 1fr); } }

.step {
  padding: 32px 24px 32px 0;
  border-top: 1px solid oklch(0.45 0.02 25);
  position: relative;
}
@media (min-width: 800px) {
  .step { padding: 32px 24px 32px 0; border-top: 1px solid oklch(0.45 0.02 25); }
  .step + .step { padding-left: 24px; }
}
.step-num {
  font-family: var(--serif);
  font-style: italic;
  color: var(--rose-soft);
  font-size: 14px;
  margin-bottom: 16px;
}
.step h3 {
  font-size: 24px;
  margin-bottom: 12px;
}
.step p { color: oklch(0.78 0.02 25); font-size: 14.5px; margin: 0; line-height: 1.6; }

/* ---------- Investment ---------- */
.investment-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-top: 56px;
}
@media (min-width: 800px) { .investment-grid { grid-template-columns: 1fr 1fr; } }

.invest-card {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 40px 36px;
  position: relative;
  transition: all .4s var(--ease);
}
.invest-card.featured {
  background: linear-gradient(165deg, var(--bg) 0%, var(--bg-rose) 100%);
  border-color: var(--rose-soft);
}
.invest-card:hover { transform: translateY(-3px); }
.invest-tag {
  font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--ink-3); margin-bottom: 12px;
  display: inline-flex; align-items: center; gap: 8px;
}
.invest-card.featured .invest-tag { color: var(--rose-strong); }
.invest-card h3 { font-size: 28px; margin-bottom: 18px; }
.invest-price {
  font-family: var(--serif);
  font-size: 44px;
  font-style: italic;
  color: var(--ink);
  margin: 12px 0 8px;
  line-height: 1;
}
.invest-price small { font-size: 16px; font-style: normal; font-family: var(--sans); color: var(--ink-2); margin-left: 4px; }
.invest-card .desc { font-size: 14.5px; color: var(--ink-2); margin-bottom: 24px; }
.invest-card ul {
  list-style: none; padding: 0; margin: 0 0 28px;
  display: flex; flex-direction: column; gap: 10px;
}
.invest-card ul li {
  font-size: 14px; color: var(--ink-2);
  display: flex; gap: 10px; align-items: flex-start;
}
.invest-card ul li::before {
  content: '';
  width: 12px; height: 1px; background: var(--rose);
  margin-top: 9px;
  flex-shrink: 0;
}

/* ---------- Testimonials carousel ---------- */
.testimonials {
  background: var(--bg-3);
  overflow: hidden;
}
.testi-head {
  display: flex; justify-content: space-between; align-items: end;
  gap: 24px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}
.testi-head h2 { max-width: 14ch; }

.testi-viewport {
  overflow: hidden;
  position: relative;
  margin-left: calc(var(--pad) * -1);
  margin-right: calc(var(--pad) * -1);
  padding: 0 var(--pad);
}
.testi-track {
  display: flex;
  gap: 20px;
  transition: transform .6s var(--ease);
}
.testi-card {
  flex: 0 0 min(420px, 88vw);
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px 30px;
  display: flex; flex-direction: column;
  position: relative;
  min-height: 320px;
}
.testi-quote-mark {
  font-family: var(--serif);
  font-style: italic;
  font-size: 64px;
  color: var(--rose-soft);
  line-height: 0.5;
  margin-bottom: 18px;
  display: block;
}
.testi-card .quote {
  font-family: var(--serif);
  font-style: italic;
  font-size: 22px;
  line-height: 1.35;
  color: var(--ink);
  margin: 0 0 24px;
  flex: 1;
}
.testi-card.long .quote {
  font-family: var(--sans);
  font-style: normal;
  font-size: 15.5px;
  line-height: 1.6;
  color: var(--ink-2);
}
.testi-meta {
  border-top: 1px solid var(--line-2);
  padding-top: 18px;
  display: flex; align-items: center; justify-content: space-between;
}
.testi-author { font-size: 14px; font-weight: 500; color: var(--ink); }
.testi-context { font-size: 12px; color: var(--ink-3); letter-spacing: 0.04em; }

.testi-controls {
  display: flex; align-items: center; gap: 14px;
  margin-top: 40px;
}
.testi-arrow {
  width: 48px; height: 48px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: var(--bg);
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--ink);
  transition: all .3s var(--ease);
}
.testi-arrow:hover { background: var(--ink); color: var(--bg); border-color: var(--ink); }
.testi-arrow:disabled { opacity: 0.4; pointer-events: none; }
.testi-dots {
  display: flex; gap: 6px;
  margin-left: 8px;
}
.testi-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--line);
  border: none;
  padding: 0;
  transition: all .3s var(--ease);
}
.testi-dot.active { background: var(--rose-strong); width: 22px; border-radius: 999px; }
.testi-counter {
  margin-left: auto;
  font-family: var(--serif);
  font-style: italic;
  font-size: 18px;
  color: var(--ink-2);
}
.testi-counter b { color: var(--ink); font-weight: 400; }

/* ---------- Beyond clinic (palestras, workshops, consultorias) ---------- */
.beyond {
  padding-top: clamp(80px, 11vw, 140px);
}
.beyond-head { margin-bottom: 56px; max-width: 60ch; }

.beyond-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}
@media (min-width: 700px) { .beyond-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1100px) { .beyond-grid { grid-template-columns: repeat(4, 1fr); } }

.beyond-card {
  position: relative;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 36px 32px;
  display: flex; flex-direction: column;
  transition: all .4s var(--ease);
  overflow: hidden;
  text-align: left;
  font-family: var(--sans);
  color: inherit;
  text-decoration: none;
  min-height: 320px;
}
.beyond-card::after {
  content: '';
  position: absolute;
  inset: auto -40% -50% auto;
  width: 220px; height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, oklch(0.88 0.032 18 / 0.5), transparent 70%);
  transition: transform .6s var(--ease), opacity .6s var(--ease);
  opacity: 0;
  pointer-events: none;
}
.beyond-card:hover {
  border-color: var(--rose-soft);
  transform: translateY(-4px);
  box-shadow: 0 30px 50px -30px oklch(0.30 0.025 25 / 0.25);
}
.beyond-card:hover::after { opacity: 1; transform: translate(-30px, -30px); }

.beyond-card .num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 14px;
  color: var(--rose-strong);
  margin-bottom: 20px;
}
.beyond-card h3 { font-size: 28px; margin-bottom: 14px; }
.beyond-card p { font-size: 14.5px; color: var(--ink-2); margin: 0 0 24px; flex: 1; }
.beyond-card .cta {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--ink);
  border-top: 1px solid var(--line-2);
  padding-top: 18px;
  transition: color .3s var(--ease);
}
.beyond-card .cta .arrow { transition: transform .35s var(--ease); }
.beyond-card:hover .cta { color: var(--rose-strong); }
.beyond-card:hover .cta .arrow { transform: translateX(5px); }

/* ---------- Articles ---------- */
.articles {
  background: var(--bg-2);
}
.articles-head { display: flex; align-items: end; justify-content: space-between; flex-wrap: wrap; gap: 24px; margin-bottom: 48px; }
.articles-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 800px) { .articles-grid { grid-template-columns: repeat(3, 1fr); } }

.article {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all .4s var(--ease);
  display: flex; flex-direction: column;
}
.article:hover { transform: translateY(-4px); border-color: var(--rose-soft); box-shadow: 0 20px 40px -25px oklch(0.30 0.025 25 / 0.25); }
.article-img {
  aspect-ratio: 4 / 3;
  background: linear-gradient(135deg, oklch(0.88 0.032 18 / 0.7), oklch(0.92 0.04 295 / 0.6));
  position: relative;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.article-img.b {
  background: linear-gradient(135deg, oklch(0.92 0.04 295 / 0.6), oklch(0.94 0.018 60 / 0.7));
}
.article-img.c {
  background: linear-gradient(135deg, oklch(0.94 0.018 60 / 0.7), oklch(0.88 0.032 18 / 0.6));
}
.article-img .glyph {
  font-family: var(--serif);
  font-style: italic;
  font-size: 92px;
  color: var(--ink);
  opacity: 0.18;
  line-height: 1;
}
.article-body { padding: 24px 24px 26px; flex: 1; display: flex; flex-direction: column; }
.article .cat {
  font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--rose-strong); margin-bottom: 12px;
}
.article h3 { font-size: 22px; margin-bottom: 12px; line-height: 1.25; }
.article p { font-size: 14px; color: var(--ink-2); margin: 0 0 18px; flex: 1; }
.article .meta {
  font-size: 12px;
  color: var(--ink-3);
  display: flex; align-items: center; gap: 10px;
  border-top: 1px solid var(--line-2);
  padding-top: 14px;
}

/* ---------- FAQ ---------- */
.faq-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 60px;
}
@media (min-width: 900px) { .faq-grid { grid-template-columns: 0.35fr 0.65fr; gap: 80px; } }

.faq-list {
  display: flex; flex-direction: column;
  border-top: 1px solid var(--line);
}
.faq-item {
  border-bottom: 1px solid var(--line);
}
.faq-q {
  width: 100%;
  padding: 26px 0;
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px;
  background: transparent;
  border: none;
  text-align: left;
  font-family: var(--serif);
  font-size: 22px;
  color: var(--ink);
  line-height: 1.3;
  transition: color .3s var(--ease);
}
.faq-q:hover { color: var(--rose-strong); }
.faq-q .toggle {
  flex-shrink: 0;
  width: 28px; height: 28px;
  border-radius: 50%;
  border: 1px solid var(--line);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 16px;
  color: var(--ink-2);
  transition: all .35s var(--ease);
  font-family: var(--sans);
}
.faq-item.open .toggle {
  background: var(--rose);
  color: white;
  border-color: var(--rose);
  transform: rotate(45deg);
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .5s var(--ease), padding .4s var(--ease);
}
.faq-a-inner {
  padding: 0 0 26px;
  font-size: 15.5px;
  line-height: 1.65;
  color: var(--ink-2);
  max-width: 60ch;
}
.faq-item.open .faq-a { max-height: 500px; }

/* ---------- CTA banner ---------- */
.cta-banner {
  background: var(--ink);
  color: var(--bg);
  padding: clamp(70px, 9vw, 110px) 0;
  text-align: center;
}
.cta-banner h2 { color: var(--bg); margin-bottom: 18px; }
.cta-banner h2 em { color: var(--rose-soft); font-style: italic; }
.cta-banner .lede { color: oklch(0.82 0.015 25); margin: 0 auto 32px; max-width: 50ch; }
.cta-banner .cta-row {
  display: inline-flex; gap: 12px; flex-wrap: wrap; justify-content: center;
}
.cta-banner .btn-ghost { color: var(--bg); border-color: oklch(0.45 0.02 25); }
.cta-banner .btn-ghost:hover { background: oklch(0.40 0.02 25); border-color: var(--bg); }

/* ---------- Footer ---------- */
.footer {
  background: var(--bg-2);
  padding: 60px 0 36px;
  border-top: 1px solid var(--line);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  margin-bottom: 48px;
}
@media (min-width: 800px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; } }
.footer h4 {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin: 0 0 16px;
}
.footer ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.footer ul a { text-decoration: none; color: var(--ink-2); font-size: 14px; transition: color .25s var(--ease); }
.footer ul a:hover { color: var(--ink); }
.footer-brand .brand { font-size: 28px; margin-bottom: 14px; display: inline-block; }
.footer-brand p { font-size: 14px; color: var(--ink-2); max-width: 32ch; margin: 0; }
.footer-bottom {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  flex-wrap: wrap; gap: 12px;
  font-size: 12px;
  color: var(--ink-3);
}
.footer-bottom .crp { font-family: var(--serif); font-style: italic; font-size: 14px; color: var(--ink-2); }
.footer-bottom .dev-credit { font-size: 12px; color: var(--ink-3); }
.footer-bottom .dev-credit a { color: var(--ink-2); text-decoration: none; border-bottom: 1px solid var(--line); transition: color .25s var(--ease), border-color .25s var(--ease); }
.footer-bottom .dev-credit a:hover { color: var(--rose-strong); border-color: var(--rose-strong); }

/* ---------- Modal ---------- */
.modal-backdrop {
  position: fixed; inset: 0;
  background: oklch(0.20 0.02 25 / 0.6);
  backdrop-filter: blur(8px);
  opacity: 0; pointer-events: none;
  transition: opacity .4s var(--ease);
  z-index: 200;
  display: flex; align-items: center; justify-content: center;
  padding: 24px;
}
.modal-backdrop.open { opacity: 1; pointer-events: auto; }
.modal {
  background: var(--bg);
  border-radius: 20px;
  padding: 44px 40px;
  max-width: 560px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  transform: translateY(20px) scale(0.98);
  transition: transform .5s var(--ease);
  position: relative;
  border: 1px solid var(--line);
  box-shadow: 0 40px 80px -20px oklch(0.20 0.02 25 / 0.3);
}
.modal-backdrop.open .modal { transform: translateY(0) scale(1); }
.modal-close {
  position: absolute; top: 18px; right: 18px;
  width: 34px; height: 34px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: var(--bg);
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--ink-2);
  transition: all .25s var(--ease);
}
.modal-close:hover { background: var(--ink); color: var(--bg); border-color: var(--ink); }
.modal h3 { font-size: 32px; margin-bottom: 6px; }
.modal .modal-sub { font-size: 14px; color: var(--ink-2); margin-bottom: 28px; }
.modal-tabs {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 4px;
  background: var(--bg-2);
  padding: 4px;
  border-radius: 999px;
  margin-bottom: 28px;
}
.modal-tab {
  padding: 9px 6px;
  border-radius: 999px;
  border: none;
  background: transparent;
  font-size: 12.5px;
  font-weight: 500;
  color: var(--ink-2);
  transition: all .3s var(--ease);
  letter-spacing: 0.01em;
}
.modal-tab.active { background: var(--ink); color: var(--bg); }

.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-grid .full { grid-column: 1 / -1; }
.field { display: flex; flex-direction: column; gap: 6px; }
.field label {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-3);
  font-weight: 500;
}
.field input, .field textarea, .field select {
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--bg);
  font-family: var(--sans);
  font-size: 14.5px;
  color: var(--ink);
  transition: all .3s var(--ease);
  width: 100%;
  resize: vertical;
}
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none;
  border-color: var(--rose);
  box-shadow: 0 0 0 4px oklch(0.62 0.085 18 / 0.12);
}
.field textarea { min-height: 90px; }
.modal-submit { width: 100%; justify-content: center; margin-top: 16px; padding: 16px; font-size: 15px; }
.modal-or { text-align: center; font-size: 12px; color: var(--ink-3); margin: 20px 0 14px; letter-spacing: 0.08em; }
.modal-direct {
  display: flex; gap: 10px;
  justify-content: center;
}
.modal-direct a {
  flex: 1;
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 12px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  text-decoration: none;
  color: var(--ink);
  font-size: 13.5px;
  transition: all .25s var(--ease);
}
.modal-direct a:hover { background: var(--bg-2); border-color: var(--ink-3); }

/* ---------- WhatsApp floating ---------- */
.float-wa {
  position: fixed;
  bottom: 24px; right: 24px;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: oklch(0.62 0.16 152);
  color: white;
  display: inline-flex; align-items: center; justify-content: center;
  text-decoration: none;
  box-shadow: 0 12px 28px -8px oklch(0.62 0.16 152 / 0.5);
  z-index: 90;
  transition: all .3s var(--ease);
}
.float-wa:hover { transform: scale(1.08); }
.float-wa svg { width: 26px; height: 26px; }

/* ---------- Section header utility ---------- */
.section-head {
  margin-bottom: 56px;
}
.section-head .eyebrow { margin-bottom: 20px; }
.section-head h2 { max-width: 18ch; margin-bottom: 18px; }
.section-head .lede { max-width: 56ch; }

/* ---------- Tweaks (overrides for our custom panel) ---------- */
[data-edit-panel] { font-family: var(--sans); }

/* ---------- Responsive cleanup ---------- */
@media (max-width: 700px) {
  .hero h1 { font-size: 56px; }
  .hero { padding-top: 28px; }
  .hero-photo { aspect-ratio: 4 / 5; }
  .form-grid { grid-template-columns: 1fr; }
  .modal { padding: 32px 24px; }
  .modal h3 { font-size: 26px; }
  .testi-counter { display: none; }
  .modal-tabs { grid-template-columns: 1fr 1fr; }
}

/* ---------- Trust strip ---------- */
.trust-strip {
  border-bottom: 1px solid var(--line);
  background: var(--bg);
  padding: 22px 0;
}
.trust-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  text-align: center;
}
@media (min-width: 600px) { .trust-grid { grid-template-columns: repeat(3, 1fr); gap: 0; } }
.trust-item { padding: 6px 12px; position: relative; }
@media (min-width: 600px) {
  .trust-item + .trust-item::before {
    content: ''; position: absolute; left: 0; top: 12%; bottom: 12%;
    width: 1px; background: var(--line);
  }
}
.trust-num {
  font-family: var(--serif);
  font-size: 32px;
  font-style: italic;
  color: var(--ink);
  line-height: 1;
  margin-bottom: 6px;
}
.trust-num .plus { color: var(--rose-strong); }
.trust-label {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-3);
}

/* ---------- "Pra quem é" qualifier ---------- */
.qualifier {
  background: var(--bg);
}
.qual-head { margin-bottom: 56px; max-width: 60ch; }
.qual-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 800px) { .qual-grid { grid-template-columns: 1fr 1fr; } }
.qual-col {
  background: var(--bg-2);
  border: 1px solid var(--line-2);
  border-radius: var(--radius);
  padding: 36px 32px;
}
.qual-col.no {
  background: transparent;
  border-style: dashed;
  border-color: var(--line);
}
.qual-col h3 {
  font-size: 22px;
  margin-bottom: 24px;
  display: flex; align-items: center; gap: 12px;
}
.qual-col h3 .pip {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--rose);
  color: white;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 14px;
  font-family: var(--sans);
  font-weight: 500;
  flex-shrink: 0;
}
.qual-col.no h3 .pip {
  background: transparent;
  border: 1px solid var(--line);
  color: var(--ink-3);
}
.qual-col ul {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 14px;
}
.qual-col ul li {
  font-size: 15px;
  color: var(--ink-2);
  line-height: 1.55;
  padding-left: 0;
  position: relative;
}
.qual-col ul li::before {
  content: none;
}
.qual-col.no ul li::before { content: none; }

/* ---------- Quiz ---------- */
.quiz {
  background: var(--bg-deep);
  color: oklch(0.96 0.01 25);
  overflow: hidden;
}
.quiz .eyebrow { color: oklch(0.78 0.03 25); }
.quiz .eyebrow::before { background: var(--rose-soft); }
.quiz h2 { color: oklch(0.97 0.012 25); }
.quiz-card {
  background: oklch(0.34 0.022 25);
  border: 1px solid oklch(0.42 0.02 25);
  border-radius: 24px;
  padding: 44px 40px;
  max-width: 720px;
  margin: 0 auto;
  position: relative;
  min-height: 320px;
}
.quiz-progress {
  display: flex; gap: 6px;
  margin-bottom: 28px;
}
.quiz-progress span {
  flex: 1; height: 3px; background: oklch(0.48 0.02 25);
  border-radius: 999px;
  transition: background .35s var(--ease);
}
.quiz-progress span.done { background: var(--rose); }
.quiz-progress span.active { background: var(--rose-soft); }
.quiz-step { display: none; }
.quiz-step.active { display: block; animation: fadeUp .4s var(--ease); }
@keyframes fadeUp { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }
.quiz-step .step-label {
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: oklch(0.74 0.02 25);
  margin-bottom: 14px;
}
.quiz-q {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(26px, 3.5vw, 38px);
  line-height: 1.2;
  color: oklch(0.97 0.012 25);
  margin: 0 0 28px;
  max-width: 24ch;
}
.quiz-opts {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}
@media (min-width: 600px) { .quiz-opts { grid-template-columns: 1fr 1fr; } }
.quiz-opt {
  padding: 18px 22px;
  border-radius: 14px;
  border: 1px solid oklch(0.5 0.02 25);
  background: transparent;
  color: oklch(0.94 0.012 25);
  font-family: var(--sans);
  font-size: 15px;
  text-align: left;
  transition: all .3s var(--ease);
  display: flex; align-items: center; gap: 12px;
  line-height: 1.4;
}
.quiz-opt::before {
  content: '';
  width: 14px; height: 14px; border-radius: 50%;
  border: 1px solid oklch(0.7 0.03 25);
  flex-shrink: 0;
}
.quiz-opt:hover {
  border-color: var(--rose-soft);
  background: oklch(0.40 0.024 25);
}
.quiz-opt:hover::before { border-color: var(--rose-soft); }
.quiz-result {
  text-align: left;
}
.quiz-result h3 {
  font-family: var(--serif);
  font-size: clamp(28px, 4vw, 40px);
  color: oklch(0.97 0.012 25);
  margin-bottom: 16px;
  font-style: italic;
}
.quiz-result h3 em { color: var(--rose-soft); }
.quiz-result p {
  color: oklch(0.84 0.018 25);
  font-size: 16px;
  line-height: 1.6;
  max-width: 56ch;
  margin-bottom: 24px;
}
.quiz-result .cta-row { display: flex; gap: 10px; flex-wrap: wrap; }
.quiz-restart {
  background: transparent;
  border: none;
  color: oklch(0.78 0.02 25);
  font-size: 13px;
  text-decoration: underline;
  padding: 0;
  margin-top: 16px;
}

/* ---------- Lead magnet ---------- */
.lead {
  background: linear-gradient(135deg, var(--bg-rose) 0%, var(--bg-2) 60%);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.lead-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}
@media (min-width: 900px) { .lead-grid { grid-template-columns: 1fr 1fr; gap: 60px; } }

.lead-visual {
  position: relative;
  aspect-ratio: 4 / 5;
  max-width: 360px;
  margin: 0 auto;
}
.lead-pdf {
  position: absolute;
  inset: 0;
  background: var(--bg);
  border-radius: 12px;
  padding: 28px 26px;
  box-shadow: 0 30px 60px -20px oklch(0.30 0.025 25 / 0.4);
  transform: rotate(-3deg);
  display: flex; flex-direction: column; justify-content: space-between;
  border: 1px solid var(--line);
}
.lead-pdf::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--bg);
  border-radius: 12px;
  border: 1px solid var(--line);
  transform: rotate(5deg) translate(8px, 12px);
  z-index: -1;
  opacity: 0.7;
}
.lead-pdf .pdf-cat {
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--rose-strong);
  margin-bottom: 12px;
}
.lead-pdf .pdf-title {
  font-family: var(--serif);
  font-size: 28px;
  line-height: 1.05;
  color: var(--ink);
  margin-bottom: 12px;
}
.lead-pdf .pdf-title em { font-style: italic; color: var(--rose-strong); }
.lead-pdf .pdf-byline {
  font-size: 11px;
  color: var(--ink-3);
  letter-spacing: 0.06em;
}
.lead-pdf .pdf-foot {
  font-family: var(--serif);
  font-style: italic;
  font-size: 14px;
  color: var(--ink-2);
  border-top: 1px solid var(--line-2);
  padding-top: 12px;
}
.lead-pdf .pdf-pages {
  font-size: 11px; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--ink-3);
}

.lead-copy h2 { margin-bottom: 16px; }
.lead-copy p.lede { margin-bottom: 28px; }
.lead-bullets {
  list-style: none; padding: 0; margin: 0 0 32px;
  display: flex; flex-direction: column; gap: 10px;
}
.lead-bullets li {
  font-size: 14.5px; color: var(--ink-2);
  padding-left: 22px; position: relative;
}
.lead-bullets li::before {
  content: '✓';
  position: absolute; left: 0;
  color: var(--rose-strong);
  font-weight: 500;
}
.lead-form {
  display: flex;
  gap: 8px;
  max-width: 420px;
  flex-wrap: wrap;
}
.lead-form input {
  flex: 1; min-width: 220px;
  padding: 14px 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--bg);
  font-family: var(--sans);
  font-size: 14.5px;
  color: var(--ink);
  transition: all .3s var(--ease);
}
.lead-form input:focus {
  outline: none;
  border-color: var(--rose);
  box-shadow: 0 0 0 4px oklch(0.62 0.085 18 / 0.12);
}
.lead-form button {
  border: none;
}
.lead-tos {
  font-size: 11px; color: var(--ink-3);
  margin-top: 12px;
  letter-spacing: 0.02em;
}

/* ---------- Guarantee strip in invest ---------- */
.invest-guarantee {
  margin-top: 36px;
  background: var(--bg-2);
  border: 1px dashed var(--rose-soft);
  border-radius: var(--radius);
  padding: 24px 28px;
  display: flex; align-items: center; gap: 18px;
}
.invest-guarantee .seal {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--bg);
  border: 1px solid var(--rose-soft);
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--serif);
  font-style: italic;
  font-size: 22px;
  color: var(--rose-strong);
  flex-shrink: 0;
}
.invest-guarantee .text {
  font-size: 14.5px;
  color: var(--ink-2);
  line-height: 1.5;
}
.invest-guarantee .text strong {
  color: var(--ink);
  font-weight: 500;
}

/* ---------- Sticky bottom bar ---------- */
.sticky-bar {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: var(--bg);
  border-top: 1px solid var(--line);
  padding: 14px var(--pad);
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px;
  transform: translateY(100%);
  transition: transform .5s var(--ease);
  z-index: 89;
  box-shadow: 0 -10px 30px -10px oklch(0.30 0.025 25 / 0.15);
}
.sticky-bar.show { transform: translateY(0); }
.sticky-text {
  display: flex; align-items: center; gap: 14px;
  font-size: 14px;
  color: var(--ink);
  min-width: 0;
}
.sticky-text .avatar {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--bg-3);
  overflow: hidden;
  flex-shrink: 0;
  border: 1px solid var(--line);
}
.sticky-text .avatar img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 0%; }
.sticky-text .label { line-height: 1.25; min-width: 0; }
.sticky-text .label strong { display: block; font-weight: 500; }
.sticky-text .label span { font-size: 12px; color: var(--ink-3); }
.sticky-bar .btn { padding: 11px 18px; font-size: 13.5px; }

@media (max-width: 640px) {
  .sticky-text .label { display: none; }
  .sticky-text { gap: 0; }
  .float-wa.hidden-by-bar { bottom: 88px; }
}
@media (min-width: 641px) {
  .float-wa.hidden-by-bar { display: none; }
}

/* ---------- Story (founder narrative) ---------- */
.story {
  background: var(--bg-deep);
  color: oklch(0.96 0.01 25);
  position: relative;
  overflow: hidden;
}
.story::before {
  content: '';
  position: absolute;
  width: 480px; height: 480px;
  border-radius: 50%;
  background: radial-gradient(circle, oklch(0.62 0.09 18 / 0.18), transparent 70%);
  filter: blur(40px);
  top: -100px; right: -150px;
  pointer-events: none;
}
.story .eyebrow { color: oklch(0.78 0.03 25); }
.story .eyebrow::before { background: var(--rose-soft); }

.story-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 56px;
  align-items: start;
  position: relative;
  z-index: 1;
}
@media (min-width: 900px) {
  .story-grid { grid-template-columns: 0.85fr 1.15fr; gap: 80px; }
}

.story-aside .quote-mark {
  font-family: var(--serif);
  font-style: italic;
  font-size: 160px;
  line-height: 0.6;
  color: var(--rose-soft);
  opacity: 0.5;
  margin-top: -8px;
  margin-bottom: 8px;
  display: block;
}
.story-aside .signature {
  font-family: var(--serif);
  font-style: italic;
  font-size: 28px;
  color: oklch(0.96 0.012 25);
  margin: 28px 0 4px;
}
.story-aside .signature-role {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: oklch(0.74 0.02 25);
}

.story-copy h2 {
  color: oklch(0.97 0.012 25);
  font-size: clamp(36px, 4.6vw, 56px);
  line-height: 1.08;
  margin-bottom: 36px;
  max-width: 22ch;
}
.story-copy h2 em {
  color: var(--rose-soft);
  font-style: italic;
}
.story-copy p {
  font-size: 17px;
  line-height: 1.7;
  color: oklch(0.84 0.018 25);
  margin-bottom: 1.1em;
  max-width: 58ch;
}
.story-copy p strong {
  color: oklch(0.96 0.012 25);
  font-weight: 500;
}
.story-copy p .em-rose {
  color: var(--rose-soft);
  font-style: italic;
  font-family: var(--serif);
  font-size: 1.08em;
}
.story-pullquote {
  border-left: 2px solid var(--rose);
  padding: 4px 0 4px 22px;
  margin: 32px 0;
  font-family: var(--serif);
  font-style: italic;
  font-size: 22px;
  line-height: 1.4;
  color: oklch(0.94 0.012 25);
  max-width: 50ch;
}

/* ---------- Reveal on scroll ---------- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .9s var(--ease), transform .9s var(--ease);
}
.reveal.in { opacity: 1; transform: translateY(0); }
.reveal.delay-1 { transition-delay: .08s; }
.reveal.delay-2 { transition-delay: .16s; }
.reveal.delay-3 { transition-delay: .24s; }
