/* ---------- tokens (DARK / VSL) ---------- */
:root {
  --bg: #0E1410;
  --bg-deep: #070A08;
  --surface: #15201A;
  --surface-2: #1B2820;
  --ink: #ECEFE8;
  --ink-2: #C8CFC4;
  --muted: #8C9590;
  --line: #243228;

  /* greens — tweakable via JS */
  --lime: oklch(0.88 0.20 130);
  --lime-soft: oklch(0.94 0.10 130);
  --green-deep: oklch(0.22 0.05 145);
  --green-mid: oklch(0.55 0.14 145);

  --r-lg: 28px;
  --r-md: 18px;
  --r-sm: 10px;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--ink);
  font-family: "Barlow", -apple-system, system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

/* subtle grain bg with slow drift */
body::before {
  content: "";
  position: fixed; inset: -10%;
  pointer-events: none;
  background:
    radial-gradient(circle at 15% 12%, color-mix(in oklab, var(--lime) 16%, transparent), transparent 45%),
    radial-gradient(circle at 85% 70%, color-mix(in oklab, var(--green-mid) 14%, transparent), transparent 45%),
    radial-gradient(circle at 50% 50%, color-mix(in oklab, var(--lime) 6%, transparent), transparent 40%);
  z-index: 0;
  animation: ambient-drift 24s ease-in-out infinite alternate;
  will-change: transform;
}

@keyframes ambient-drift {
  0%   { transform: translate(0, 0) scale(1); }
  33%  { transform: translate(-3%, 2%) scale(1.04); }
  66%  { transform: translate(2%, -2%) scale(1.06); }
  100% { transform: translate(-2%, 3%) scale(1.02); }
}

/* wave-like slow drift on the ethereal mask */
.ether-wave {
  animation: ether-wave 14s ease-in-out infinite alternate;
  will-change: transform;
}
@keyframes ether-wave {
  0%   { transform: translate(0%, 0%) scale(1.0); }
  25%  { transform: translate(-2%, 1.5%) scale(1.05); }
  50%  { transform: translate(1.5%, -2%) scale(1.08); }
  75%  { transform: translate(-1%, 2.5%) scale(1.04); }
  100% { transform: translate(2%, -1%) scale(1.06); }
}

/* ensure all sections sit above the fixed ethereal layer */
.nav, .section, .hero, .footer { position: relative; z-index: 1; }

img, svg { display: block; max-width: 100%; }

.muted { color: var(--muted); }

.display {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 0.98;
}

.eyebrow {
  font-family: "Barlow", sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--lime);
}

/* italic display word: "O GRANDE SALTO" style */
.display-italic {
  font-family: "Barlow Condensed", sans-serif;
  font-style: italic;
  font-weight: 400;
  color: var(--lime);
  letter-spacing: -0.01em;
}

/* ---------- layout ---------- */
.wrap {
  width: min(1240px, 92vw);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.section { padding: 64px 0; position: relative; z-index: 1; }
.section.tight { padding: 40px 0; }
@media (max-width: 720px) { .section { padding: 40px 0; } }

/* alternating section atmosphere — soft radial glows at edges */
.section.glow-top::before {
  content: "";
  position: absolute; left: 50%; top: -1px;
  transform: translateX(-50%);
  width: 60%; height: 1px;
  background: linear-gradient(90deg, transparent, color-mix(in oklab, var(--lime) 50%, transparent), transparent);
  pointer-events: none;
}
.section.glow-top::after {
  content: "";
  position: absolute; left: 50%; top: 0;
  transform: translateX(-50%);
  width: 80%; height: 280px;
  background: radial-gradient(ellipse at center top, color-mix(in oklab, var(--lime) 8%, transparent), transparent 70%);
  pointer-events: none;
  z-index: -1;
}
.section.dim {
  background: linear-gradient(180deg, transparent, color-mix(in oklab, var(--bg-deep) 80%, transparent), transparent);
}

/* ---------- nav ---------- */
.nav {
  position: sticky; top: 44px; z-index: 50;
  backdrop-filter: blur(12px);
  background: color-mix(in oklab, var(--bg) 78%, transparent);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 0;
}
.brand {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 800;
  font-size: 18px;
  letter-spacing: -0.02em;
  display: flex; align-items: center; gap: 10px;
  color: var(--ink);
  text-decoration: none;
}
.brand-mark {
  width: 28px; height: 28px;
  border-radius: 8px;
  background: var(--lime);
  display: grid; place-items: center;
  font-size: 14px;
  color: var(--green-deep);
}
.brand-mark.mono { font-family: "Barlow", sans-serif; font-weight: 700; }
.nav-section-label {
  font-family: "Barlow", sans-serif;
  font-size: 13px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--muted);
}
.nav-links { display: flex; gap: 24px; align-items: center; }
.nav-links a {
  color: var(--ink-2);
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
}
.nav-links a:hover { color: var(--lime); }
.nav-links .btn { color: var(--green-deep); }
.nav-links .btn:hover { color: var(--green-deep); }
@media (max-width: 820px) { .nav-links a:not(.btn) { display: none; } }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 24px;
  border-radius: 4px;
  border: 1px solid transparent;
  font-family: "Barlow", sans-serif;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  cursor: pointer;
  transition: transform .15s ease, background .2s ease, box-shadow .2s ease;
  white-space: nowrap;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.btn-primary {
  background: var(--lime);
  color: var(--green-deep);
  box-shadow: 0 8px 30px -10px oklch(0.7 0.18 130 / 0.7);
}
.btn-primary:hover {
  background: oklch(0.92 0.20 130);
  transform: translateY(-1px);
}
.btn-ghost {
  background: transparent;
  border-color: var(--line);
  color: var(--ink);
}
.btn-ghost:hover { background: var(--surface); border-color: var(--lime); }
.btn-lg { padding: 20px 32px; font-size: 14px; }
.btn-block { display: flex; width: 100%; justify-content: center; }

/* ---------- chip ---------- */
.chip {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 7px 14px;
  border-radius: 999px;
  background: var(--surface);
  border: 1px solid var(--line);
  font-size: 12px;
  font-weight: 500;
  color: var(--ink-2);
  font-family: "Barlow", sans-serif;
  letter-spacing: 0.04em;
}
.chip.green {
  background: color-mix(in oklab, var(--lime) 14%, var(--surface));
  border-color: color-mix(in oklab, var(--lime) 35%, var(--line));
  color: var(--lime);
}
.chip-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 8px var(--lime);
}

/* ---------- section heads ---------- */
.section-head { margin-bottom: 56px; max-width: 760px; }
.section-head h2 {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 700;
  font-size: clamp(34px, 4.4vw, 56px);
  line-height: 1.02;
  letter-spacing: -0.025em;
  margin: 16px 0 16px;
  color: var(--ink);
}
.section-head h2 em {
  font-family: "Barlow Condensed", sans-serif;
  font-style: italic;
  font-weight: 400;
  color: var(--lime);
}
.section-head p { font-size: 16px; color: var(--ink-2); margin: 0; max-width: 60ch; }

.section-head.center { margin-inline: auto; text-align: center; }
.section-head.center p { margin-inline: auto; }

/* ---------- HERO ---------- */
.hero {
  padding-top: 48px;
  padding-bottom: 80px;
  position: relative;
  overflow: hidden;
}
.hero::after {
  content: "";
  position: absolute; left: 50%; bottom: 0;
  width: 1px; height: 60px;
  background: linear-gradient(to bottom, transparent, var(--lime));
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
  min-height: 580px;
}
@media (max-width: 920px) {
  .hero-grid { grid-template-columns: 1fr; gap: 32px; min-height: auto; }
}

.hero-eyebrow {
  font-family: "Barlow", sans-serif;
  font-size: 13px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 24px;
  display: flex; align-items: center; gap: 12px;
}
.hero-eyebrow::before {
  content: "";
  width: 28px; height: 1px;
  background: var(--lime);
}

.hero-title {
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(52px, 8vw, 104px);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.05;
  margin: 0 0 44px;
  color: var(--ink);
  text-transform: uppercase;
  padding-bottom: 0.18em;
}
.hero-title .italic-word {
  display: inline-block;
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 400;
  font-style: italic;
  color: var(--lime);
  text-transform: none;
  letter-spacing: -0.02em;
  margin-left: 6px;
  line-height: 1.1;
  text-shadow: 0 0 40px oklch(0.88 0.20 130 / 0.5);
  font-size: 0.96em;
  vertical-align: baseline;
}

.hero-sub {
  font-size: 16px;
  max-width: 480px;
  color: var(--ink-2);
  margin: 0 0 28px;
  line-height: 1.55;
}

.hero-bullets {
  list-style: none;
  padding: 0;
  margin: 0 0 36px;
  display: flex; flex-direction: column;
  gap: 14px;
  max-width: 480px;
}
.hero-bullets li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  font-size: 15px;
  color: var(--ink-2);
  line-height: 1.4;
}
.hero-bullets li::before {
  content: "";
  flex-shrink: 0;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--lime);
  margin-top: 1px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'><path d='M3.5 8 L7 11 L13 5' fill='none' stroke='%2315201A' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'/></svg>");
  background-size: 14px 14px;
  background-repeat: no-repeat;
  background-position: center;
}

/* portrait placeholder */
.portrait {
  position: relative;
  aspect-ratio: 4/5;
  width: 100%;
  max-width: 460px;
  margin: 0 auto;
  border-radius: 20px;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 60% 35%, color-mix(in oklab, var(--lime) 30%, var(--bg-deep)), var(--bg-deep) 60%),
    var(--bg-deep);
  border: 1px solid var(--line);
}
.portrait::before {
  content: "";
  position: absolute; inset: 0;
  background-image:
    repeating-linear-gradient(45deg, transparent, transparent 14px, color-mix(in oklab, var(--lime) 6%, transparent) 14px, color-mix(in oklab, var(--lime) 6%, transparent) 15px);
}
.portrait::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, var(--bg-deep));
}
.portrait-label {
  position: absolute;
  bottom: 18px; left: 18px;
  font-family: "Barlow", sans-serif;
  font-size: 13px;
  color: var(--lime);
  letter-spacing: 0.1em;
  z-index: 2;
}
.portrait-label::before {
  content: "[ ";
}
.portrait-label::after {
  content: " ]";
}
.portrait-tag {
  position: absolute;
  top: 18px; right: 18px;
  z-index: 2;
}

/* big italic decorative behind */
.hero-bg-italic {
  position: absolute;
  font-family: "Barlow Condensed", sans-serif;
  font-style: italic;
  font-size: clamp(180px, 24vw, 360px);
  color: var(--lime);
  opacity: 0.06;
  pointer-events: none;
  line-height: 0.85;
  z-index: 0;
  letter-spacing: -0.03em;
}

.hero-bottom-bar {
  margin-top: 56px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  font-family: "Barlow", sans-serif;
  font-size: 13px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--muted);
}
.hero-bottom-bar .marker { color: var(--lime); }

/* ---------- hero trust row ---------- */
.hero-trust-row {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 28px 0 24px;
}
.hero-avatars {
  display: flex;
}
.ha {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 2px solid var(--bg);
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 700;
  color: var(--bg);
  margin-left: -8px;
}
.ha:first-child { margin-left: 0; }
.hero-trust-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.hero-trust-count {
  font-weight: 700;
  font-size: 14px;
  color: var(--ink);
}
.hero-trust-stars {
  font-size: 12px;
  color: var(--lime);
  letter-spacing: 0.03em;
}
.hero-trust-stars em {
  font-style: normal;
  color: var(--muted);
  font-family: "Barlow", sans-serif;
  font-size: 13px;
}

/* ---------- hero CTA row + price ---------- */
.hero-cta-row {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 28px;
}
.hero-price-block {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.hero-price-val {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 800;
  font-size: 24px;
  color: var(--lime);
  letter-spacing: -0.02em;
  line-height: 1;
}
.hero-price-note {
  font-family: "Barlow", sans-serif;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ---------- hero visual column (foto + mockup) ---------- */
.hero-visual-col {
  position: relative;
  min-height: 580px;
}
.hero-photo-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 55% 85%, color-mix(in oklab, var(--lime) 14%, transparent) 0%, transparent 62%);
  z-index: 0;
  pointer-events: none;
}
.hero-casal-float {
  position: absolute;
  bottom: 0; left: 0;
  height: 96%;
  width: auto;
  max-width: 52%;
  object-fit: contain;
  object-position: bottom left;
  filter: drop-shadow(0 20px 48px rgba(0,0,0,0.45));
  z-index: 1;
  pointer-events: none;
  animation: fade-up 1s ease both;
  animation-delay: 0.5s;
}
.hero-mockup-card {
  position: absolute;
  right: 0; bottom: 24px;
  width: 60%;
  z-index: 2;
}
.hero-result-badge {
  position: absolute;
  top: 24px; right: 0;
  background: color-mix(in oklab, var(--lime) 92%, transparent);
  border-radius: 18px;
  padding: 14px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 3;
  animation: fade-up 0.8s ease both;
  animation-delay: 1s;
}
.hero-result-num {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 800;
  font-size: 30px;
  color: oklch(0.14 0.05 145);
  line-height: 1;
  letter-spacing: -0.03em;
}
.hero-result-num sup {
  font-size: 14px;
  vertical-align: super;
}
.hero-result-label {
  font-family: "Barlow", sans-serif;
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: oklch(0.28 0.08 145);
  margin-top: 3px;
}
@media (max-width: 920px) {
  .hero-visual-col { min-height: 340px; }
  .hero-casal-float { display: none; }
  .hero-photo-glow { display: none; }
  .hero-result-badge { display: none; }
  .hero-mockup-card { position: static; width: 100%; }
  .hero-cta-row { flex-wrap: wrap; }
}

/* ---------- pain points ---------- */
.pain-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
@media (max-width: 920px) { .pain-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .pain-grid { grid-template-columns: 1fr; } }

.pain-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 28px;
  transition: all .2s ease;
  position: relative;
  color: var(--ink);
}
.pain-card:hover {
  background: var(--surface-2);
  border-color: color-mix(in oklab, var(--lime) 30%, var(--line));
}
.pain-card.feature {
  background: linear-gradient(180deg, color-mix(in oklab, var(--lime) 12%, var(--surface)), var(--surface));
  grid-row: span 2;
  display: flex; flex-direction: column;
  border-color: color-mix(in oklab, var(--lime) 25%, var(--line));
}
.pain-card h4 {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 800;
  font-size: 24px;
  margin: 14px 0 10px;
  letter-spacing: -0.02em;
  color: var(--ink);
  line-height: 1.15;
}
.pain-card .num {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: var(--lime);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.pain-card p { font-size: 15px; line-height: 1.6; margin: 0; color: var(--muted); }

/* ---------- phone showcase (cleaned up — no phone, just proof) ---------- */
.phone-showcase {
  background:
    radial-gradient(ellipse at 80% 20%, color-mix(in oklab, var(--lime) 12%, transparent), transparent 60%),
    var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 64px;
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 64px;
  align-items: center;
  position: relative;
  overflow: hidden;
}
@media (max-width: 820px) {
  .phone-showcase { grid-template-columns: 1fr; gap: 32px; padding: 40px 28px; }
}
.phone-showcase-text h3 {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 700;
  font-size: clamp(26px, 3.4vw, 38px);
  line-height: 1.1;
  letter-spacing: -0.025em;
  margin: 14px 0 18px;
  color: var(--ink);
}
.phone-showcase-text h3 em {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 400;
  font-style: italic;
  color: var(--lime);
}
.phone-showcase-text p {
  font-size: 15px;
  color: var(--ink-2);
  line-height: 1.65;
  margin: 0;
}

.ps-decor {
  position: relative;
  display: flex; flex-direction: column;
  align-items: flex-start;
  gap: 32px;
  padding: 16px 0;
}
.ps-quote-mark {
  font-family: "Barlow Condensed", sans-serif;
  font-style: italic;
  font-size: 180px;
  line-height: 0.7;
  color: var(--lime);
  opacity: 0.85;
  user-select: none;
  letter-spacing: -0.05em;
}
.ps-stats {
  display: flex;
  align-items: flex-end;
  gap: 24px;
  flex-wrap: wrap;
  width: 100%;
  border-top: 1px solid var(--line);
  padding-top: 28px;
}
.ps-stat-num {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 800;
  font-size: clamp(40px, 5vw, 60px);
  line-height: 0.95;
  letter-spacing: -0.035em;
  color: var(--ink);
}
.ps-stat-num .ps-stat-sm {
  font-family: "Barlow Condensed", sans-serif;
  font-style: italic;
  font-weight: 400;
  color: var(--lime);
  font-size: 0.55em;
  margin-left: 2px;
}
.ps-stat-label {
  font-family: "Barlow", sans-serif;
  font-size: 13px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 6px;
}
.ps-stat-divider {
  width: 1px;
  height: 56px;
  background: var(--line);
  align-self: center;
}
@media (max-width: 540px) { .ps-stat-divider { display: none; } }

/* ---------- interactive phone mockup ---------- */
.mockup-stage {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 0.92;
  max-width: 660px;
  margin: 0 auto;
  perspective: 1200px;
  cursor: pointer;
}
.mockup-floater {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  transform-style: preserve-3d;
  will-change: transform;
  animation: mockup-float 7s ease-in-out infinite alternate;
}
@keyframes mockup-float {
  0%   { translate: 0 0; }
  50%  { translate: 0 -10px; }
  100% { translate: 0 4px; }
}
.mockup-img {
  width: 100%;
  height: auto;
  display: block;
  filter:
    drop-shadow(0 40px 60px rgba(0, 0, 0, 0.7))
    drop-shadow(0 0 80px oklch(0.88 0.20 130 / 0.15));
  user-select: none;
  -webkit-user-drag: none;
  pointer-events: none;
}
.mockup-glow {
  position: absolute;
  inset: 10%;
  background: radial-gradient(ellipse at center, color-mix(in oklab, var(--lime) 28%, transparent), transparent 65%);
  filter: blur(40px);
  z-index: 0;
  animation: mockup-glow 6s ease-in-out infinite alternate;
  pointer-events: none;
}
@keyframes mockup-glow {
  0%   { opacity: 0.55; transform: scale(0.95); }
  100% { opacity: 0.85; transform: scale(1.05); }
}
.mockup-curves {
  position: absolute;
  inset: -8% -10%;
  width: 120%;
  height: 116%;
  z-index: 1;
  pointer-events: none;
}
.mockup-curves svg { width: 100%; height: 100%; }

/* floating info badges */
.mockup-badge {
  position: absolute;
  z-index: 3;
  background: color-mix(in oklab, var(--surface) 92%, transparent);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 10px 14px;
  font-family: "Barlow", sans-serif;
  font-size: 13px;
  letter-spacing: 0.04em;
  color: var(--ink-2);
  display: flex;
  align-items: center;
  gap: 10px;
  backdrop-filter: blur(8px);
  box-shadow: 0 16px 40px -20px rgba(0, 0, 0, 0.7);
  transition: transform .3s ease;
}
.mockup-stage.is-hovered .mockup-badge { transform: translateY(-2px); }
.mockup-badge-1 {
  top: 6%;
  left: -6%;
  transform: rotate(-3deg);
}
.mockup-badge-2 {
  bottom: 12%;
  right: -4%;
  transform: rotate(2deg);
}
.mockup-badge .mb-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 10px var(--lime);
  animation: mb-pulse 1.4s ease-in-out infinite;
}
@keyframes mb-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}
.mockup-badge .mb-num {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 800;
  font-size: 18px;
  color: var(--lime);
  letter-spacing: -0.02em;
}
.mockup-cursor-hint {
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  font-family: "Barlow", sans-serif;
  font-size: 13px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--muted);
  opacity: 0.7;
  transition: opacity .3s ease;
  z-index: 4;
  pointer-events: none;
}
.mockup-stage.is-hovered .mockup-cursor-hint { opacity: 0; }

@media (max-width: 920px) {
  .mockup-badge-1 { left: 0; }
  .mockup-badge-2 { right: 0; }
}
.proof-stack {
  position: relative;
  width: 100%;
  max-width: 460px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 20px 0;
}
.proof-curves {
  position: absolute;
  inset: -10% -8%;
  width: 116%;
  height: 120%;
  pointer-events: none;
  z-index: 0;
}
.proof-card {
  position: relative;
  z-index: 1;
  background:
    linear-gradient(180deg,
      color-mix(in oklab, var(--surface) 80%, transparent),
      color-mix(in oklab, var(--surface-2) 90%, transparent)),
    color-mix(in oklab, #000 30%, var(--surface));
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 22px 26px;
  backdrop-filter: blur(8px);
  box-shadow:
    0 24px 48px -28px rgba(0, 0, 0, 0.8),
    0 0 0 1px color-mix(in oklab, var(--lime) 6%, transparent);
}
.proof-card.accent {
  background:
    linear-gradient(180deg, color-mix(in oklab, var(--lime) 8%, var(--surface)), var(--surface));
  border-color: color-mix(in oklab, var(--lime) 35%, var(--line));
}
.proof-1 { transform: translateX(-20px) rotate(-2deg); }
.proof-2 { transform: translateX(28px) rotate(1.5deg); }
.proof-3 { transform: translateX(-12px) rotate(-1deg); }
@media (max-width: 920px) {
  .proof-1, .proof-2, .proof-3 { transform: none; }
}

.proof-eyebrow {
  font-family: "Barlow", sans-serif;
  font-size: 13px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--lime);
  margin-bottom: 10px;
}
.proof-eyebrow.dark { color: var(--green-deep); opacity: 0.7; }
.proof-num {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 800;
  font-size: 56px;
  line-height: 1;
  letter-spacing: -0.035em;
  color: var(--ink);
}
.proof-num.small { font-size: 44px; }
.proof-num.xl { font-size: 72px; }
.proof-card.accent .proof-num { color: var(--lime); }
.proof-num .aster {
  font-family: "Barlow Condensed", sans-serif;
  font-style: italic;
  font-weight: 400;
  font-size: 0.45em;
  margin-left: 4px;
  vertical-align: top;
  opacity: 0.7;
}
.proof-row { display: flex; align-items: baseline; gap: 16px; }
.proof-stars {
  color: var(--lime);
  font-size: 18px;
  letter-spacing: 4px;
}
.proof-foot {
  margin-top: 10px;
  font-size: 12px;
  color: var(--muted);
  font-family: "Barlow", sans-serif;
  letter-spacing: 0.04em;
}
.proof-foot.dark { color: color-mix(in oklab, var(--green-deep) 80%, var(--ink-2)); opacity: 0.7; }

.proof-avatars {
  display: flex;
  margin-top: 14px;
}
.proof-avatars .pa {
  width: 32px; height: 32px;
  border-radius: 50%;
  border: 2px solid var(--surface);
  margin-left: -8px;
  display: grid; place-items: center;
  font-family: "Barlow", sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: var(--green-deep);
  letter-spacing: 0.02em;
}
.proof-avatars .pa:first-child { margin-left: 0; }

/* ---------- numbered cards (vertical with connectors) ---------- */
.num-vertical {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 760px;
  margin: 0 auto;
  position: relative;
}
.num-row {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 20px;
  align-items: stretch;
  position: relative;
}
.num-row-connector {
  height: 32px;
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 20px;
}
.num-row-connector::before {
  content: "";
  margin: 0 auto;
  width: 1px;
  background-image: linear-gradient(to bottom, var(--lime) 50%, transparent 50%);
  background-size: 2px 8px;
  opacity: 0.6;
  width: 1px;
  grid-column: 1;
  justify-self: center;
}
.num-circle {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--surface);
  border: 1px solid color-mix(in oklab, var(--lime) 40%, var(--line));
  display: grid; place-items: center;
  font-family: "Barlow", sans-serif;
  font-weight: 700;
  font-size: 13px;
  color: var(--lime);
  flex-shrink: 0;
  letter-spacing: 0.04em;
  position: relative;
}
.num-circle::before {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 1px solid color-mix(in oklab, var(--lime) 20%, transparent);
}
.num-card2 {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 24px 28px;
  display: flex; flex-direction: column;
  gap: 8px;
}
.num-card2 h4 {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 600;
  font-size: 18px;
  letter-spacing: -0.015em;
  margin: 0;
  color: var(--ink);
  line-height: 1.2;
}
.num-card2 p {
  font-size: 14px;
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}
.num-card2.feature {
  border-color: color-mix(in oklab, var(--lime) 35%, var(--line));
  background: color-mix(in oklab, var(--lime) 6%, var(--surface));
}

/* ---------- stats ---------- */
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--surface);
}
@media (max-width: 720px) { .stats-row { grid-template-columns: repeat(2, 1fr); } }
.stat {
  padding: 36px 28px;
  border-right: 1px solid var(--line);
  position: relative;
}
.stat:last-child { border-right: none; }
@media (max-width: 720px) {
  .stat:nth-child(2n) { border-right: none; }
  .stat:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
}
.stat.accent { background: color-mix(in oklab, var(--lime) 8%, var(--surface)); }
.stat-num {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 800;
  font-size: clamp(40px, 5vw, 64px);
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--ink);
}
.stat-num em {
  font-family: "Barlow Condensed", sans-serif;
  font-style: italic;
  font-weight: 400;
  color: var(--lime);
}
.stat-label {
  font-size: 12px;
  font-family: "Barlow", sans-serif;
  color: var(--muted);
  margin-top: 12px;
  max-width: 200px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1.4;
}

/* ---------- mentor section ---------- */
.mentor-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
@media (max-width: 920px) {
  .mentor-grid { grid-template-columns: 1fr; }
  .mentor-photo-right > *:last-child { order: -1; }
}
.mentor-role {
  font-family: "Barlow", sans-serif;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--lime);
  margin-bottom: 8px;
}
.mentor-name {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 800;
  font-size: clamp(40px, 5vw, 64px);
  line-height: 1;
  letter-spacing: -0.03em;
  margin: 0 0 24px;
  color: var(--ink);
}
.mentor-name em {
  font-family: "Barlow Condensed", sans-serif;
  font-style: italic;
  font-weight: 400;
  color: var(--lime);
}
.mentor-bio {
  font-size: 18px;
  color: var(--ink-2);
  line-height: 1.8;
  margin: 0 0 20px;
}
.mentor-photo-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 8px;
  aspect-ratio: 1;
}
.mentor-photo {
  background:
    radial-gradient(ellipse at 50% 30%, color-mix(in oklab, var(--lime) 18%, var(--surface)), var(--bg-deep) 70%),
    var(--bg-deep);
  border-radius: 12px;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
}
.mentor-photo::before {
  content: "";
  position: absolute; inset: 0;
  background-image: repeating-linear-gradient(135deg, transparent 0, transparent 12px, color-mix(in oklab, var(--lime) 5%, transparent) 12px, color-mix(in oklab, var(--lime) 5%, transparent) 13px);
}
.mentor-photo.main { grid-row: span 2; }
.mentor-photo .photo-label {
  position: absolute;
  bottom: 10px; left: 12px;
  font-family: "Barlow", sans-serif;
  font-size: 13px;
  color: var(--lime);
  letter-spacing: 0.08em;
}

/* ---------- testimonials ---------- */
.test-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
@media (max-width: 920px) { .test-grid { grid-template-columns: 1fr; } }
.test {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 28px;
  display: flex; flex-direction: column;
  gap: 18px;
  transition: all .2s ease;
}
.test:hover { border-color: color-mix(in oklab, var(--lime) 30%, var(--line)); }
.test-photo {
  aspect-ratio: 4 / 3;
  border-radius: var(--r-md);
  background:
    radial-gradient(ellipse at 50% 30%, color-mix(in oklab, var(--lime) 18%, var(--bg-deep)), var(--bg-deep) 70%);
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
}
.test-photo::before {
  content: "";
  position: absolute; inset: 0;
  background-image: repeating-linear-gradient(45deg, transparent, transparent 12px, color-mix(in oklab, var(--lime) 7%, transparent) 12px, color-mix(in oklab, var(--lime) 7%, transparent) 13px);
}
.test-photo-label {
  position: absolute; inset: auto 0 0 0;
  padding: 10px 14px;
  font-size: 13px;
  font-family: "Barlow", sans-serif;
  color: var(--lime);
  letter-spacing: 0.06em;
}
.test-badge {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 12px;
  border-radius: 999px;
  background: color-mix(in oklab, var(--lime) 14%, var(--surface));
  color: var(--lime);
  font-size: 12px;
  font-weight: 600;
  width: fit-content;
  border: 1px solid color-mix(in oklab, var(--lime) 30%, transparent);
}
.stars { color: var(--lime); font-size: 14px; letter-spacing: 2px; }
.test blockquote {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 16px;
  line-height: 1.45;
  margin: 0;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.test cite {
  font-style: normal;
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
  font-family: "Barlow", sans-serif;
  letter-spacing: 0.06em;
}

/* (carrossel giratório — estilos inline no JSX) */

/* ---------- pricing detail ---------- */
.pricing-card {
  background: linear-gradient(180deg, color-mix(in oklab, var(--lime) 6%, var(--surface)), var(--surface));
  border: 1px solid color-mix(in oklab, var(--lime) 25%, var(--line));
  border-radius: var(--r-lg);
  padding: 48px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
  position: relative;
  overflow: hidden;
}
@media (max-width: 820px) { .pricing-card { grid-template-columns: 1fr; padding: 32px; } }
.pricing-card::before {
  content: "";
  position: absolute; right: -60px; top: -60px;
  width: 320px; height: 320px;
  border-radius: 50%;
  background: var(--lime);
  opacity: 0.08;
  filter: blur(40px);
}
.price-old {
  font-size: 14px;
  color: var(--muted);
  text-decoration: line-through;
  margin: 0;
  font-family: "Barlow", sans-serif;
}
.price-now {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 800;
  font-size: clamp(64px, 9vw, 112px);
  line-height: 0.95;
  color: var(--lime);
  letter-spacing: -0.04em;
  margin: 4px 0 8px;
}
.price-now .pre { font-size: 0.38em; vertical-align: top; opacity: 0.7; margin-right: 4px; }
.price-includes {
  list-style: none;
  margin: 24px 0 28px;
  padding: 0;
}
.price-includes li {
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  display: flex; align-items: center; gap: 12px;
  font-size: 14px;
  color: var(--ink-2);
}
.price-includes li::before {
  content: "";
  flex-shrink: 0;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--lime);
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'><path d='M3.5 8 L7 11 L13 5' fill='none' stroke='%2315201A' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'/></svg>");
  background-size: 14px;
  background-repeat: no-repeat;
  background-position: center;
}

/* ---------- FAQ ---------- */
.faq-item {
  border-bottom: 1px solid var(--line);
}
.faq-q {
  width: 100%;
  background: none;
  border: none;
  padding: 26px 0;
  text-align: left;
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 600;
  font-size: clamp(17px, 1.6vw, 22px);
  letter-spacing: -0.015em;
  color: var(--ink);
  cursor: pointer;
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px;
}
.faq-q:hover { color: var(--lime); }
.faq-icon {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--surface);
  border: 1px solid var(--line);
  display: grid; place-items: center;
  flex-shrink: 0;
  font-size: 16px;
  color: var(--ink-2);
  transition: all .2s ease;
}
.faq-item.open .faq-icon {
  background: var(--lime);
  border-color: transparent;
  color: var(--green-deep);
  transform: rotate(45deg);
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease, padding .3s ease;
  font-size: 15px;
  color: var(--ink-2);
  padding-bottom: 0;
  line-height: 1.6;
}
.faq-item.open .faq-a {
  max-height: 400px;
  padding-bottom: 28px;
}

/* ---------- final cta ---------- */
.final {
  background:
    radial-gradient(ellipse at 50% 0%, color-mix(in oklab, var(--lime) 18%, var(--bg-deep)), var(--bg-deep) 60%);
  border: 1px solid color-mix(in oklab, var(--lime) 25%, var(--line));
  border-radius: var(--r-lg);
  padding: clamp(48px, 8vw, 96px);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.final h2 {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 800;
  font-size: clamp(40px, 6vw, 84px);
  line-height: 0.95;
  letter-spacing: -0.035em;
  margin: 0 auto 20px;
  max-width: 16ch;
  position: relative;
  text-transform: uppercase;
  color: var(--ink);
}
.final h2 em {
  font-family: "Barlow Condensed", sans-serif;
  font-style: italic;
  font-weight: 400;
  color: var(--lime);
  text-transform: none;
}
.final p {
  max-width: 50ch;
  margin: 0 auto;
  color: var(--ink-2);
  position: relative;
}
.final-meta {
  display: flex; gap: 12px; justify-content: center; flex-wrap: wrap;
  margin: 28px 0;
  position: relative;
}

/* ---------- footer ---------- */
.footer {
  padding: 56px 0 32px;
  border-top: 1px solid var(--line);
  font-size: 13px;
  color: var(--muted);
  background: var(--bg-deep);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 32px;
  margin-bottom: 32px;
}
@media (max-width: 720px) { .footer-grid { grid-template-columns: 1fr; } }
.footer a { color: var(--muted); text-decoration: none; }
.footer a:hover { color: var(--lime); }

/* ---------- manifesto block ---------- */
.manifesto {
  text-align: center;
  padding: 40px 0;
}
.manifesto .kicker {
  font-family: "Barlow Condensed", sans-serif;
  font-style: italic;
  font-size: clamp(24px, 3vw, 36px);
  color: var(--muted);
  margin: 0 0 12px;
}
.manifesto h2 {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 800;
  font-size: clamp(40px, 6vw, 88px);
  line-height: 0.95;
  letter-spacing: -0.035em;
  margin: 0;
  max-width: 100%;
  text-align: center;
  text-transform: uppercase;
  color: var(--ink);
}
.manifesto h2 em {
  font-family: "Barlow Condensed", sans-serif;
  font-style: italic;
  font-weight: 400;
  color: var(--lime);
  text-transform: none;
}
.manifesto p {
  margin: 24px auto 0;
  max-width: 56ch;
  font-size: 16px;
  color: var(--ink-2);
}

.row { display: flex; gap: 12px; align-items: center; flex-wrap: wrap; }

/* big stat callout */
.stat-callout {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  padding: 12px 18px;
  border-radius: 999px;
  background: var(--surface);
  border: 1px solid var(--line);
  font-family: "Barlow", sans-serif;
  font-size: 12px;
  color: var(--ink-2);
  letter-spacing: 0.04em;
}
.stat-callout strong {
  color: var(--lime);
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 800;
  font-size: 20px;
  letter-spacing: -0.02em;
}

/* ============================================================
   HERO PHONE MOCKUP — two tilted iPhones + dotted curves
   ============================================================ */
.ph-stage {
  position: relative;
  width: 100%;
  aspect-ratio: 5/6;
  max-width: 660px;
  margin: 0 auto;
}

.ph-bgword {
  position: absolute;
  top: 2%;
  right: -8%;
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 900;
  font-style: italic;
  font-size: clamp(110px, 18vw, 220px);
  color: var(--ink);
  opacity: 0.05;
  letter-spacing: -0.05em;
  line-height: 0.85;
  pointer-events: none;
  z-index: 0;
  user-select: none;
}

.ph-curves {
  position: absolute;
  inset: -5% -10%;
  width: 120%;
  height: 110%;
  pointer-events: none;
  z-index: 1;
}

/* shared phone body */
.ph {
  position: absolute;
  width: 60%;
  aspect-ratio: 240 / 488;
  background: #0A100C;
  border-radius: 38px;
  border: 6px solid #050805;
  padding: 6px;
  box-shadow:
    0 40px 80px -30px rgba(0, 0, 0, 0.9),
    0 0 0 1px rgba(180, 240, 100, 0.06),
    0 0 60px -20px oklch(0.88 0.20 130 / 0.15);
  overflow: hidden;
}
.ph-notch {
  position: absolute;
  top: 12px; left: 50%;
  transform: translateX(-50%);
  width: 32%;
  height: 22px;
  background: #050805;
  border-radius: 0 0 14px 14px;
  z-index: 5;
}
.ph-screen {
  position: relative;
  height: 100%;
  border-radius: 30px;
  background: #0E1612;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  font-family: "Barlow", sans-serif;
  color: #ECEFE8;
}

/* front phone (left, tilted left) — WhatsApp */
.ph-front {
  left: -2%;
  top: 4%;
  transform: rotate(-9deg);
  z-index: 3;
}
/* back phone (right, tilted right) — welcome card */
.ph-back {
  right: -4%;
  bottom: 0%;
  transform: rotate(8deg);
  z-index: 2;
}

/* ---- status bar ---- */
.ph-status {
  display: flex;
  justify-content: space-between;
  padding: 14px 18px 6px;
  font-size: 12px;
  font-weight: 700;
  color: #ECEFE8;
  font-feature-settings: "tnum";
  position: relative;
  z-index: 6;
}
.ph-status-r { display: flex; gap: 4px; font-size: 8px; align-items: center; }

/* ---- WhatsApp header ---- */
.ph-wh-header {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  background: linear-gradient(180deg, color-mix(in oklab, var(--lime) 14%, var(--green-deep)), var(--green-deep));
  border-bottom: 1px solid color-mix(in oklab, var(--lime) 18%, transparent);
}
.ph-wh-back {
  background: none; border: none; color: var(--lime);
  font-size: 16px; cursor: pointer; padding: 0; line-height: 1;
}
.ph-wh-avatar {
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--lime);
  color: var(--green-deep);
  display: grid; place-items: center;
  font-family: "Barlow", sans-serif;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.04em;
  flex-shrink: 0;
}
.ph-wh-title {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: -0.01em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.ph-wh-sub {
  font-size: 8px;
  color: oklch(0.7 0.05 145);
  margin-top: 1px;
}
.ph-wh-icons {
  display: flex; gap: 8px;
  font-size: 13px;
  color: var(--lime);
}

/* ---- WhatsApp body ---- */
.ph-wh-body {
  flex: 1;
  padding: 8px 10px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  background:
    radial-gradient(ellipse at 70% 20%, color-mix(in oklab, var(--lime) 4%, transparent), transparent 50%),
    #0A130D;
  overflow: hidden;
}
.ph-wh-day {
  align-self: center;
  font-size: 7px;
  letter-spacing: 0.12em;
  color: oklch(0.6 0.02 145);
  background: #14201A;
  padding: 2px 8px;
  border-radius: 6px;
  margin: 2px 0 4px;
}

.ph-msg {
  max-width: 78%;
  padding: 6px 8px 4px;
  border-radius: 10px;
  font-size: 12px;
  line-height: 1.3;
  position: relative;
}
.ph-msg.in {
  align-self: flex-start;
  background: #182520;
  border-top-left-radius: 2px;
  color: #ECEFE8;
}
.ph-msg.in.lime {
  background: linear-gradient(180deg, color-mix(in oklab, var(--lime) 16%, #182520), #1A2A22);
  border: 1px solid color-mix(in oklab, var(--lime) 25%, transparent);
}
.ph-msg.out {
  align-self: flex-end;
  background: var(--lime);
  color: var(--green-deep);
  border-top-right-radius: 2px;
}
.ph-msg.out strong { color: var(--green-deep); }
.ph-msg-author {
  font-family: "Barlow";
  font-size: 7px;
  font-weight: 700;
  color: var(--lime);
  margin-bottom: 2px;
  letter-spacing: 0.02em;
}
.ph-msg-text { font-size: 12px; }
.ph-msg-text strong { color: var(--lime); font-weight: 700; }
.ph-msg-time {
  font-size: 6.5px;
  margin-top: 2px;
  text-align: right;
  opacity: 0.5;
  letter-spacing: 0.04em;
}
.ph-msg.out .ph-msg-time { color: var(--green-deep); opacity: 0.65; }

/* ---- WhatsApp input ---- */
.ph-wh-input {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 10px;
  background: #0A130D;
  border-top: 1px solid #1A2A22;
  font-size: 13px;
}
.ph-wh-mic {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--lime);
  display: grid; place-items: center;
  font-size: 13px;
  color: var(--green-deep);
}

/* ---- back phone: welcome card ---- */
.ph-screen-card {
  padding: 38px 18px 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  background:
    radial-gradient(ellipse at 60% 30%, color-mix(in oklab, var(--lime) 18%, var(--green-deep)), var(--green-deep) 65%),
    var(--green-deep);
}
.ph-card-mark {
  width: 28px; height: 28px;
  border-radius: 8px;
  background: var(--lime);
  color: var(--green-deep);
  display: grid; place-items: center;
  font-family: "Barlow", sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.04em;
}
.ph-card-eyebrow {
  font-family: "Barlow", sans-serif;
  font-size: 7px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: oklch(0.75 0.06 145);
}
.ph-card-title {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 800;
  font-size: 22px;
  line-height: 1;
  letter-spacing: -0.025em;
  color: #ECEFE8;
}
.ph-card-title em {
  font-family: "Barlow Condensed", sans-serif;
  font-style: italic;
  font-weight: 400;
  color: var(--lime);
}
.ph-card-sub {
  font-size: 12px;
  color: oklch(0.8 0.03 145);
  line-height: 1.4;
}
.ph-card-cta {
  background: var(--lime);
  color: var(--green-deep);
  border: none;
  border-radius: 999px;
  padding: 9px 12px;
  font-family: "Barlow", sans-serif;
  font-weight: 700;
  font-size: 13px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  letter-spacing: 0.04em;
  cursor: pointer;
}
.ph-card-cta span {
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--green-deep);
  color: var(--lime);
  display: grid; place-items: center;
  font-size: 12px;
}

@media (max-width: 920px) {
  .ph-stage { max-width: 440px; aspect-ratio: 5/6; }
}

/* ---------- entrada suave (stagger no hero) ---------- */
@keyframes fade-up {
  from { opacity: 0; transform: translateY(26px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-eyebrow  { animation: fade-up 0.7s ease both; animation-delay: 0.2s; }
.hero-title    { animation: fade-up 0.8s ease both; animation-delay: 0.45s; }
.hero-sub      { animation: fade-up 0.7s ease both; animation-delay: 0.75s; }
.hero-bullets  { animation: fade-up 0.7s ease both; animation-delay: 0.95s; }
.hero .row     { animation: fade-up 0.7s ease both; animation-delay: 1.1s; }
.hero-bottom-bar { animation: fade-up 0.7s ease both; animation-delay: 1.25s; }
.mockup-stage  { animation: fade-up 1s ease both; animation-delay: 0.6s; }
.proof-stack   { animation: fade-up 1s ease both; animation-delay: 0.6s; }

/* ---------- scroll reveal ---------- */
.scroll-anim {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.75s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}
.scroll-anim-in {
  opacity: 1;
  transform: translateY(0);
}
/* hero elements já têm fade-up próprio — não aplicar scroll-anim */
.hv3-badge.scroll-anim,
.hv3-title.scroll-anim,
.hv3-tagline.scroll-anim,
.hv3-sub.scroll-anim,
.hv3-strap.scroll-anim {
  opacity: 1;
  transform: none;
}

/* ---------- mentor grid colunas (desktop) ---------- */
@media (min-width: 921px) {
  .mentor-photo-right { grid-template-columns: 1.4fr 0.6fr; }
  .mentor-photo-left  { grid-template-columns: 0.6fr 1.4fr; }
}

