/* ================== DAC LANDING — SISTEMA ================== */
:root {
  --bg: #0A0908;
  --bg-raise: #131110;
  --bg-elev: #1A1715;
  --ink: #F5F1EA;
  --ink-mute: #B8B0A4;
  --ink-dim: #6F665B;
  --line: rgba(245, 241, 234, 0.08);
  --line-strong: rgba(245, 241, 234, 0.16);
  --amber: oklch(0.78 0.095 75);
  --amber-deep: oklch(0.65 0.11 65);
  --terra: oklch(0.55 0.08 30);
  --cream: #E9DFD0;

  --font-display: "Fraunces", "Playfair Display", Georgia, serif;
  --font-body: "Inter Tight", "Inter", -apple-system, sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, monospace;
}

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

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.55;
  letter-spacing: -0.005em;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

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

/* ================== TIPOGRAFIA ================== */
.display {
  font-family: var(--font-display);
  font-weight: 300;
  font-variation-settings: "opsz" 144, "SOFT" 50;
  letter-spacing: -0.035em;
  line-height: 0.95;
  color: var(--ink);
}

.display-italic {
  font-style: italic;
  font-variation-settings: "opsz" 144, "SOFT" 80;
  color: var(--amber);
}

.eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-dim);
}

.eyebrow-amber { color: var(--amber); }

.lede {
  font-family: var(--font-body);
  font-size: clamp(18px, 1.3vw, 22px);
  line-height: 1.5;
  color: var(--ink-mute);
  font-weight: 400;
  max-width: 58ch;
}

.prose {
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink-mute);
  max-width: 62ch;
}

.prose strong { color: var(--ink); font-weight: 500; }

/* ================== LAYOUT ================== */
.wrap {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
}

.wrap-narrow {
  max-width: 880px;
  margin: 0 auto;
  padding: 0 32px;
}

@media (max-width: 700px) {
  .wrap, .wrap-narrow { padding: 0 20px; }
}

section {
  position: relative;
  padding: clamp(80px, 10vw, 160px) 0;
}

/* ================== BOTÕES ================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 32px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.01em;
  border-radius: 0;
  cursor: pointer;
  text-decoration: none;
  border: none;
  transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
  position: relative;
}

.btn-primary {
  background: var(--amber);
  color: #18140C;
}

.btn-primary:hover {
  background: var(--cream);
  transform: translateY(-1px);
}

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--line-strong);
}

.btn-ghost:hover {
  border-color: var(--amber);
  color: var(--amber);
}

.btn-arrow { transition: transform 0.3s; }
.btn:hover .btn-arrow { transform: translateX(4px); }

.nav-cta-short { display: none; }
.nav-cta-full { display: inline; }
.mobile-only-br { display: none; }

/* ================== ANIMAÇÕES ================== */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 1s cubic-bezier(0.2, 0.8, 0.2, 1),
              transform 1s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ================== LINHA DIVISORIA ================== */
.hairline {
  height: 1px;
  background: var(--line);
  width: 100%;
}

/* ================== MICRO-PROVAS ================== */
.proof-band {
  padding: 28px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--bg-raise);
  overflow: hidden;
}

.proof-band-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-mute);
  text-align: center;
  padding: 0 20px;
}

.proof-band-inner .dot {
  width: 4px; height: 4px;
  background: var(--amber);
  border-radius: 50%;
  flex: none;
}

.proof-band-inner .big {
  color: var(--amber);
  font-size: 13px;
  font-weight: 500;
}

@media (max-width: 700px) {
  .proof-band-inner { font-size: 10.5px; letter-spacing: 0.12em; }
}

/* ================== HERO ================== */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding-top: 24px;
  padding-bottom: 48px;
  position: relative;
  isolation: isolate;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 20%, oklch(0.28 0.04 60 / 0.5), transparent 70%),
    radial-gradient(ellipse 60% 40% at 80% 90%, oklch(0.32 0.05 35 / 0.3), transparent 70%);
  z-index: -1;
  pointer-events: none;
}

.nav {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding: 20px 0;
}

.wordmark {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 400;
  letter-spacing: -0.01em;
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.wordmark-dot {
  width: 6px; height: 6px;
  background: var(--amber);
  border-radius: 50%;
  display: inline-block;
}

.wordmark-tag {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-mute);
  padding-left: 14px;
  margin-left: 6px;
  border-left: 1px solid var(--line-strong);
  line-height: 1;
}

@media (max-width: 760px) {
  .wordmark {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 0;
    text-align: left;
    width: 100%;
    font-size: 32px;
  }
  .wordmark > span:nth-child(1) { order: 1; }
  .wordmark-dot {
    order: 2;
    margin-left: 12px;
    flex: none;
  }
  .wordmark-tag {
    order: 3;
    display: block;
    border-left: none;
    padding-left: 0;
    margin-left: 0;
    margin-top: 10px;
    font-size: 17.5px;
    letter-spacing: 0.22em;
    width: 100%;
    text-align: left;
    color: var(--ink-mute);
  }
}

.hero-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 40px 0;
}

/* Hero split with portrait */
.hero-split {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(285px, 0.75fr);
  gap: 64px;
  align-items: center;
}

.hero-copy { min-width: 0; }

.hero-portrait {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-self: center;
  width: 100%;
}

.hero-portrait-mobile { display: none; }

.hero-portrait-frame {
  aspect-ratio: 4/5;
  width: 100%;
  max-width: 420px;
  min-width: 285px;
  background:
    radial-gradient(ellipse 80% 70% at 50% 100%, oklch(0.32 0.06 55 / 0.55), transparent 65%),
    radial-gradient(ellipse 60% 50% at 50% 30%, oklch(0.22 0.03 60 / 0.4), transparent 70%),
    linear-gradient(180deg, oklch(0.15 0.02 60), oklch(0.11 0.015 50));
  border: 1px solid var(--line-strong);
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  margin-left: auto;
  overflow: hidden;
}

.hero-portrait-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  filter: contrast(1.02) saturate(0.95);
}

.hero-portrait-frame::before,
.hero-portrait-frame::after {
  content: "";
  position: absolute;
  width: 16px; height: 16px;
  border: 1px solid var(--amber);
}
.hero-portrait-frame::before { top: -1px; left: -1px; border-right: none; border-bottom: none; }
.hero-portrait-frame::after  { bottom: -1px; right: -1px; border-left: none; border-top: none; }

.hero-portrait-label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-mute);
  background: var(--bg);
  padding: 7px 12px;
  border: 1px solid var(--line-strong);
}

.hero-portrait-caption {
  padding-top: 12px;
  max-width: 440px;
  margin-left: auto;
  width: 100%;
}

@media (max-width: 1024px) {
  .hero-split { grid-template-columns: 1fr; gap: 32px; }
  .hero-portrait { order: 2; max-width: 320px; margin: 0 auto; }
  .hero-portrait-frame { margin: 0 auto; min-width: 0; }
  .hero-portrait-caption { margin: 0 auto; text-align: center; }
}

@media (max-width: 760px) {
  .hero-portrait { max-width: 260px; }
}

.hero-headline {
  font-size: clamp(44px, 7vw, 132px);
  font-weight: 300;
  letter-spacing: -0.045em;
  line-height: 0.92;
  margin-bottom: 32px;
}

.hero-sub {
  font-size: clamp(19px, 1.6vw, 26px);
  color: var(--ink-mute);
  max-width: 36ch;
  line-height: 1.35;
  margin-bottom: 56px;
  font-weight: 300;
}

.hero-meta-bar {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: end;
  padding-top: 32px;
  border-top: 1px solid var(--line);
}

.hero-meta {
  display: flex;
  gap: 48px;
  flex-wrap: wrap;
}

.hero-meta-item .eyebrow { margin-bottom: 6px; }
.hero-meta-item .v { font-size: 16px; color: var(--ink); font-weight: 400; }

.hero-scroll {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.3em;
  color: var(--ink-dim);
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.hero-scroll-line {
  width: 1px;
  height: 32px;
  background: linear-gradient(to bottom, var(--amber), transparent);
}

@media (max-width: 700px) {
  .hero-meta { gap: 24px; }
  .hero-meta-bar { grid-template-columns: 1fr; }
  .hero-sub { margin-bottom: 40px; }
}

/* ================== MIRROR (AGITAÇÃO) ================== */
.mirror {
  background: var(--bg-raise);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.mirror-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
}

.mirror-list {
  list-style: none;
  display: flex;
  flex-direction: column;
}

.mirror-item {
  padding: 28px 0;
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 24px;
  align-items: start;
}

.mirror-item:last-child { border-bottom: 1px solid var(--line); }

.mirror-num {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--amber);
  letter-spacing: 0.1em;
  padding-top: 4px;
}

.mirror-text {
  font-size: clamp(18px, 1.5vw, 22px);
  line-height: 1.4;
  color: var(--ink);
  font-weight: 300;
}

.mirror-whisper {
  margin-top: 48px;
  padding: 32px;
  border-left: 2px solid var(--amber);
  background: rgba(245, 241, 234, 0.02);
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(22px, 2vw, 30px);
  line-height: 1.3;
  color: var(--ink);
  font-weight: 300;
}

@media (max-width: 900px) {
  .mirror-grid { grid-template-columns: 1fr; gap: 48px; }
}

/* ================== REVELATION ================== */
.revelation {
  text-align: left;
}

.revelation-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.revelation-left .display {
  font-size: clamp(44px, 6vw, 86px);
}

.revelation-insight {
  padding: 40px;
  background: var(--bg-raise);
  border: 1px solid var(--line);
  position: relative;
}

.revelation-insight::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 32px; height: 1px;
  background: var(--amber);
}

.revelation-insight p {
  font-size: 18px;
  line-height: 1.6;
  color: var(--ink-mute);
  margin-bottom: 20px;
}

.revelation-insight p:last-child { margin-bottom: 0; }
.revelation-insight strong { color: var(--ink); font-weight: 500; }

.revelation-name {
  margin-top: 32px;
  font-family: var(--font-display);
  font-size: clamp(28px, 3vw, 44px);
  font-weight: 300;
  line-height: 1.1;
}

.revelation-name em {
  font-style: italic;
  color: var(--amber);
}

@media (max-width: 900px) {
  .revelation-grid { grid-template-columns: 1fr; gap: 48px; }
}

/* ================== JOURNEY (3 FASES) ================== */
.journey-header {
  text-align: center;
  margin-bottom: 80px;
}

.journey-header .display {
  font-size: clamp(44px, 6vw, 86px);
  max-width: 14ch;
  margin: 0 auto;
}

.journey-phases {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.phase {
  padding: 56px 40px;
  border-left: 1px solid var(--line);
  position: relative;
  min-height: 420px;
  display: flex;
  flex-direction: column;
  transition: background 0.5s;
}

.phase:first-child { border-left: none; }

.phase:hover {
  background: var(--bg-raise);
}

.phase-num {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  color: var(--amber);
  margin-bottom: 32px;
}

.phase-glyph {
  width: 56px;
  height: 56px;
  margin-bottom: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.phase-title {
  font-family: var(--font-display);
  font-size: 42px;
  font-weight: 300;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
  line-height: 1;
}

.phase-subtitle {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-dim);
  margin-bottom: 24px;
}

.phase-body {
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink-mute);
  margin-top: auto;
}

.phase-duration {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-dim);
}

.phase-duration strong { color: var(--amber); font-weight: 400; }

@media (max-width: 900px) {
  .journey-phases { grid-template-columns: 1fr; }
  .phase { border-left: none; border-top: 1px solid var(--line); }
  .phase:first-child { border-top: none; }
}

/* ================== WALL OF LOVE ================== */
.wall-header {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  align-items: end;
  margin-bottom: 64px;
}

.wall-header .display {
  font-size: clamp(44px, 6vw, 86px);
  max-width: 12ch;
}

.wall-stat {
  text-align: right;
}

.wall-stat-num {
  font-family: var(--font-display);
  font-size: clamp(44px, 5vw, 72px);
  font-weight: 300;
  color: var(--amber);
  line-height: 1;
  letter-spacing: -0.03em;
}

.wall-stat-label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-dim);
  margin-top: 8px;
}

.wall-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.tcard {
  background: var(--bg-raise);
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  min-height: 340px;
  transition: border-color 0.4s, transform 0.4s;
  position: relative;
  overflow: hidden;
}

.tcard:hover {
  border-color: var(--line-strong);
  transform: translateY(-2px);
}

.tcard-body {
  padding: 32px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.tcard-result {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 300;
  letter-spacing: -0.015em;
  line-height: 1.15;
  color: var(--amber);
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line);
}

.tcard-quote {
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink);
  margin-bottom: 28px;
  font-weight: 300;
  flex: 1;
}

.tcard-quote::before { content: "“"; color: var(--amber); margin-right: 2px; }
.tcard-quote::after { content: "”"; color: var(--amber); margin-left: 2px; }

.tcard-attr {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

.tcard-attr-text {
  display: flex;
  flex-direction: column;
  gap: 3px;
  flex: 1;
  min-width: 0;
}

.tcard-avatar {
  width: 52px;
  height: 52px;
  flex-shrink: 0;
  border-radius: 50%;
  overflow: hidden;
  position: relative;
  background: oklch(0.2 0.02 60);
  border: 1px solid var(--line-strong);
}

.tcard-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: grayscale(0.15) contrast(1.02);
}

.tcard-avatar-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    repeating-linear-gradient(
      45deg,
      oklch(0.22 0.02 60) 0 6px,
      oklch(0.18 0.02 60) 6px 12px
    );
  color: var(--amber);
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.12em;
  font-weight: 500;
  flex-direction: column;
  gap: 2px;
}

.tcard-avatar-placeholder .tcard-avatar-note {
  font-size: 7px;
  letter-spacing: 0.22em;
  color: var(--ink-dim);
  text-transform: uppercase;
}

.tcard-name {
  font-size: 14px;
  color: var(--ink);
  font-weight: 500;
  letter-spacing: -0.005em;
}

.tcard-loc {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-dim);
}

/* Featured card with hero image */
.tcard-featured {
  grid-column: span 2;
  grid-row: span 1;
  border: 1px solid var(--amber);
  background: linear-gradient(180deg, oklch(0.22 0.03 60 / 0.4), var(--bg-raise));
  flex-direction: row;
}

.tcard-featured .tcard-hero-img {
  width: 46%;
  flex-shrink: 0;
  position: relative;
  background: oklch(0.15 0.02 60);
  min-height: 100%;
  overflow: hidden;
}

.tcard-featured .tcard-hero-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 60%, oklch(0.22 0.03 60 / 0.55) 100%);
  pointer-events: none;
}

.tcard-featured .tcard-hero-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: grayscale(0.1) contrast(1.03);
}

.tcard-featured .tcard-avatar-placeholder--lg {
  font-size: 36px;
  letter-spacing: 0.08em;
}

.tcard-featured .tcard-avatar-placeholder--lg .tcard-avatar-note {
  font-size: 9px;
}

.tcard-featured .tcard-body {
  padding: 40px;
  flex: 1;
}

.tcard-featured .tcard-result {
  font-size: 32px;
  color: var(--amber);
}

.tcard-featured .tcard-quote {
  font-size: 22px;
  line-height: 1.4;
}

@media (max-width: 900px) {
  .wall-grid { grid-template-columns: 1fr; }
  .tcard-featured { grid-column: span 1; flex-direction: column; }
  .tcard-featured .tcard-hero-img { width: 100%; aspect-ratio: 16/10; min-height: 0; }
  .tcard-featured .tcard-hero-img::after { background: linear-gradient(180deg, transparent 60%, oklch(0.22 0.03 60 / 0.55) 100%); }
  .tcard-featured .tcard-body { padding: 32px; }
  .wall-header { grid-template-columns: 1fr; }
  .wall-stat { text-align: left; }
}

/* ================== VANIA ================== */
.vania-section {
  background: var(--bg-raise);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.vania-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 80px;
  align-items: center;
}

.vania-portrait {
  aspect-ratio: 4/5;
  background:
    radial-gradient(ellipse 80% 70% at 50% 100%, oklch(0.34 0.07 55 / 0.6), transparent 65%),
    linear-gradient(180deg, oklch(0.16 0.02 60), oklch(0.11 0.015 50));
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  border: 1px solid var(--line);
  overflow: hidden;
}

.vania-portrait-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  filter: contrast(1.02) saturate(0.95);
}

.vania-portrait-label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-mute);
  background: var(--bg);
  padding: 8px 14px;
  border: 1px solid var(--line-strong);
}

.vania-eyebrow { margin-bottom: 20px; }

.vania-name {
  font-family: var(--font-display);
  font-size: clamp(44px, 5vw, 72px);
  font-weight: 300;
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 12px;
}

.vania-title {
  font-size: 16px;
  color: var(--ink-mute);
  margin-bottom: 40px;
  letter-spacing: 0.01em;
}

.vania-creds {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
  margin-bottom: 40px;
  padding: 24px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.vania-cred-num {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 300;
  color: var(--amber);
  letter-spacing: -0.02em;
  line-height: 1;
}

.vania-cred-label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-dim);
  margin-top: 8px;
  line-height: 1.4;
}

.vania-copy {
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink-mute);
}

.vania-copy p { margin-bottom: 16px; }
.vania-copy p:last-child { margin-bottom: 0; }
.vania-copy strong { color: var(--ink); font-weight: 500; }

@media (max-width: 900px) {
  .vania-grid { grid-template-columns: 1fr; gap: 48px; }
  .vania-portrait { max-width: 400px; }
}

/* ================== INCLUI ================== */
.includes-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 80px;
  align-items: start;
}

.includes-list {
  list-style: none;
  border-top: 1px solid var(--line);
}

.includes-item {
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: 48px 1fr auto;
  gap: 24px;
  align-items: baseline;
  transition: padding 0.4s;
}

.includes-item:hover { padding-left: 12px; }

.includes-mark {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--amber);
  letter-spacing: 0.1em;
}

.includes-title {
  font-size: 18px;
  color: var(--ink);
  font-weight: 400;
  letter-spacing: -0.01em;
}

.includes-desc {
  display: block;
  font-size: 14px;
  color: var(--ink-mute);
  margin-top: 4px;
  font-weight: 300;
}

.includes-value {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--ink-dim);
  letter-spacing: 0.1em;
  text-align: right;
}

@media (max-width: 900px) {
  .includes-grid { grid-template-columns: 1fr; gap: 48px; }
  .includes-item { grid-template-columns: 32px 1fr; }
  .includes-value { display: none; }
}

/* ================== PREÇO ================== */
.price-section {
  background:
    radial-gradient(ellipse 80% 60% at 50% 40%, oklch(0.22 0.04 60 / 0.6), transparent 70%),
    var(--bg);
}

.price-card {
  max-width: 780px;
  margin: 0 auto;
  border: 1px solid var(--line-strong);
  background: var(--bg-raise);
  padding: clamp(40px, 5vw, 72px);
  position: relative;
}

.price-card::before, .price-card::after {
  content: "";
  position: absolute;
  width: 24px;
  height: 24px;
  border-color: var(--amber);
  border-style: solid;
  border-width: 0;
}

.price-card::before { top: -1px; left: -1px; border-top-width: 1px; border-left-width: 1px; }
.price-card::after { bottom: -1px; right: -1px; border-bottom-width: 1px; border-right-width: 1px; }

.price-header {
  text-align: center;
  margin-bottom: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--line);
}

.price-eyebrow { margin-bottom: 20px; }

.price-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 300;
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 16px;
}

.price-title em {
  font-style: italic;
  color: var(--amber);
}

.price-amounts {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 32px;
  align-items: center;
  margin-bottom: 48px;
}

.price-option {
  text-align: center;
}

.price-label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-dim);
  margin-bottom: 12px;
}

.price-value {
  font-family: var(--font-display);
  font-size: clamp(48px, 5vw, 72px);
  font-weight: 300;
  color: var(--ink);
  letter-spacing: -0.03em;
  line-height: 1;
}

.price-value .cur {
  font-size: 0.5em;
  color: var(--amber);
  vertical-align: super;
  margin-right: 4px;
}

.price-note {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-dim);
  margin-top: 8px;
}

.price-divider {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.24em;
  color: var(--ink-dim);
}

.price-framing {
  text-align: center;
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(20px, 2vw, 26px);
  font-weight: 300;
  color: var(--amber);
  margin-bottom: 40px;
  line-height: 1.3;
}

.price-cta-row {
  text-align: center;
}

.price-cta-row .btn { padding: 22px 48px; font-size: 16px; }

.guarantee {
  margin-top: 40px;
  padding: 24px;
  border: 1px solid var(--line);
  background: rgba(245, 241, 234, 0.02);
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 20px;
  align-items: center;
}

.guarantee-seal {
  width: 48px; height: 48px;
  border: 1px solid var(--amber);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--amber);
  letter-spacing: 0.05em;
  flex: none;
}

.guarantee-text {
  font-size: 14px;
  line-height: 1.55;
  color: var(--ink-mute);
}

.guarantee-text strong { color: var(--ink); font-weight: 500; }

@media (max-width: 700px) {
  .price-amounts { grid-template-columns: 1fr; gap: 24px; }
  .price-divider { transform: rotate(90deg); padding: 8px 0; }
}

/* ================== FAQ ================== */
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1.8fr;
  gap: 80px;
  align-items: start;
}

.faq-left-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 4.5vw, 64px);
  font-weight: 300;
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 24px;
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-item {
  border-bottom: 1px solid var(--line);
}

.faq-q {
  width: 100%;
  background: none;
  border: none;
  color: var(--ink);
  padding: 28px 0;
  font-family: var(--font-body);
  font-size: clamp(17px, 1.4vw, 20px);
  text-align: left;
  cursor: pointer;
  display: grid;
  grid-template-columns: 32px 1fr 32px;
  gap: 20px;
  align-items: start;
  letter-spacing: -0.01em;
  font-weight: 400;
  transition: color 0.3s;
}

.faq-q:hover { color: var(--amber); }

.faq-q-num {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--ink-dim);
  letter-spacing: 0.1em;
  padding-top: 6px;
}

.faq-q-plus {
  width: 20px; height: 20px;
  position: relative;
  margin-top: 4px;
}

.faq-q-plus::before,
.faq-q-plus::after {
  content: "";
  position: absolute;
  background: var(--ink-mute);
  transition: transform 0.4s, background 0.3s;
}

.faq-q-plus::before {
  top: 50%; left: 0;
  width: 100%; height: 1px;
  transform: translateY(-0.5px);
}

.faq-q-plus::after {
  left: 50%; top: 0;
  width: 1px; height: 100%;
  transform: translateX(-0.5px);
}

.faq-item.open .faq-q-plus::after { transform: translateX(-0.5px) rotate(90deg); }
.faq-item.open .faq-q-plus::before { background: var(--amber); }

.faq-a {
  display: grid;
  grid-template-columns: 32px 1fr 32px;
  gap: 20px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.faq-a-inner {
  grid-column: 2;
  padding-bottom: 28px;
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink-mute);
  max-width: 58ch;
}

.faq-a-inner strong { color: var(--ink); font-weight: 500; }

.faq-item.open .faq-a { max-height: 300px; }

@media (max-width: 900px) {
  .faq-grid { grid-template-columns: 1fr; gap: 40px; }
}

/* ================== CTA FINAL ================== */
.final {
  padding: clamp(100px, 14vw, 200px) 0;
  text-align: center;
  background:
    radial-gradient(ellipse 60% 50% at 50% 50%, oklch(0.25 0.05 60 / 0.5), transparent 70%),
    var(--bg);
  position: relative;
}

.final-eyebrow { margin-bottom: 32px; }

.final-headline {
  font-family: var(--font-display);
  font-size: clamp(56px, 9vw, 144px);
  font-weight: 300;
  letter-spacing: -0.045em;
  line-height: 0.95;
  margin-bottom: 32px;
  max-width: 14ch;
  margin-left: auto;
  margin-right: auto;
}

.final-headline em { font-style: italic; color: var(--amber); }

.final-sub {
  font-size: clamp(18px, 1.4vw, 22px);
  color: var(--ink-mute);
  max-width: 46ch;
  margin: 0 auto 56px;
  line-height: 1.5;
  font-weight: 300;
}

.final-cta-row {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.final-wa {
  margin-top: 48px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-dim);
}

.final-wa a {
  color: var(--amber);
  text-decoration: none;
  border-bottom: 1px solid var(--amber);
  padding-bottom: 2px;
  margin-left: 8px;
}

/* ================== FOOTER ================== */
footer {
  padding: 48px 0;
  border-top: 1px solid var(--line);
}

.footer-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-dim);
}

/* ================== SCARCITY BAR ================== */
.scarcity-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 900;
  background: linear-gradient(180deg, #0A0908, oklch(0.13 0.02 60));
  border-bottom: 1px solid var(--line-strong);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.scarcity-bar-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 10px 32px 8px;
  display: flex;
  align-items: center;
  gap: 20px;
}

.scarcity-bar-label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink);
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.scarcity-bar-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--amber);
  box-shadow: 0 0 0 0 var(--amber);
  animation: scarcityDot 1.8s ease-out infinite;
}

@keyframes scarcityDot {
  0%   { box-shadow: 0 0 0 0 oklch(0.78 0.095 75 / 0.55); }
  70%  { box-shadow: 0 0 0 8px oklch(0.78 0.095 75 / 0); }
  100% { box-shadow: 0 0 0 0 oklch(0.78 0.095 75 / 0); }
}

.scarcity-bar-track {
  flex: 1;
  height: 3px;
  background: oklch(0.2 0.015 60);
  border-radius: 2px;
  position: relative;
  overflow: hidden;
  min-width: 0;
}

.scarcity-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--amber-deep), var(--amber));
  border-radius: 2px;
  position: relative;
  transition: width 1.2s cubic-bezier(0.2, 0.8, 0.2, 1);
  box-shadow: 0 0 10px oklch(0.78 0.095 75 / 0.4);
}

.scarcity-bar-pulse {
  position: absolute;
  right: -4px;
  top: 50%;
  width: 10px;
  height: 10px;
  margin-top: -5px;
  border-radius: 50%;
  background: var(--amber);
  box-shadow: 0 0 12px var(--amber), 0 0 0 0 oklch(0.78 0.095 75 / 0.6);
  animation: scarcityPulse 1.6s ease-out infinite;
}

@keyframes scarcityPulse {
  0%   { box-shadow: 0 0 12px var(--amber), 0 0 0 0 oklch(0.78 0.095 75 / 0.6); }
  70%  { box-shadow: 0 0 12px var(--amber), 0 0 0 12px oklch(0.78 0.095 75 / 0); }
  100% { box-shadow: 0 0 12px var(--amber), 0 0 0 0 oklch(0.78 0.095 75 / 0); }
}

/* Shimmer sweep on the fill */
.scarcity-bar-fill::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg,
    transparent 0%,
    oklch(1 0 0 / 0.35) 50%,
    transparent 100%
  );
  transform: translateX(-100%);
  animation: scarcityShimmer 3.4s ease-in-out infinite;
}

@keyframes scarcityShimmer {
  0%   { transform: translateX(-100%); }
  60%  { transform: translateX(100%); }
  100% { transform: translateX(100%); }
}

body.has-scarcity-bar { padding-top: 40px; }

@media (max-width: 760px) {
  /* legacy block — overridden by new scarcity block below */
  body.has-scarcity-bar { padding-top: 52px; }
}

@media (max-width: 520px) {
  .scarcity-bar-label { font-size: 9px; }
}

/* ================== CLOSING ================== */
.closing {
  padding: 120px 0;
  position: relative;
}

.closing::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 50% 50%, oklch(0.2 0.04 55 / 0.5), transparent 70%);
  pointer-events: none;
}

.closing-card {
  position: relative;
  text-align: center;
  padding: 72px 56px;
  border: 1px solid var(--amber);
  background:
    linear-gradient(180deg, oklch(0.16 0.025 55 / 0.7), oklch(0.12 0.015 50 / 0.7));
  overflow: hidden;
}

.closing-card::before,
.closing-card::after {
  content: "";
  position: absolute;
  width: 32px;
  height: 32px;
  border: 1px solid var(--amber);
}
.closing-card::before { top: -1px; left: -1px; border-right: none; border-bottom: none; }
.closing-card::after  { bottom: -1px; right: -1px; border-left: none; border-top: none; }

.closing-eyebrow { margin-bottom: 28px; }

.closing-headline {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(36px, 4.8vw, 64px);
  line-height: 1.08;
  letter-spacing: -0.025em;
  color: var(--ink);
  max-width: 18ch;
  margin: 0 auto 40px;
}

.closing-headline em {
  font-style: italic;
  color: var(--amber);
}

.closing-body {
  max-width: 56ch;
  margin: 0 auto 44px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.closing-body p {
  font-size: 18px;
  line-height: 1.6;
  color: var(--ink-mute);
  font-weight: 300;
}

.closing-emph {
  font-family: var(--font-display);
  font-size: 22px !important;
  line-height: 1.4 !important;
  color: var(--ink) !important;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

.closing-emph em {
  font-style: italic;
  color: var(--amber);
}

.closing-cta {
  display: flex;
  justify-content: center;
}

@media (max-width: 760px) {
  .closing { padding: 80px 0; }
  .closing-card { padding: 48px 24px; }
  .closing-body p { font-size: 16px; }
  .closing-emph { font-size: 19px !important; }
}

/* ================== FLOATING CTA ================== */
.floating-cta {
  position: fixed;
  bottom: 24px;
  right: 24px;
  padding: 14px 22px;
  background: var(--amber);
  color: #18140C;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.01em;
  text-decoration: none;
  z-index: 100;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s, transform 0.5s, background 0.3s;
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.floating-cta.show {
  opacity: 1;
  transform: translateY(0);
}

.floating-cta:hover { background: var(--cream); }

@media (max-width: 700px) {
  .floating-cta {
    left: 16px; right: 16px;
    text-align: center;
    justify-content: center;
  }
}

/* ================== MOBILE AUDIT OVERRIDES ================== */

/* Tablet down */
@media (max-width: 760px) {
  body { font-size: 17px; }

  section { padding: 64px 0; }

  .wrap, .wrap-narrow { padding: 0 20px; }

  /* Hero */
  .hero {
    min-height: auto;
    padding-top: 16px;
    padding-bottom: 40px;
    margin: 10px 6px 10px 6px;
    width: calc(100% - 12px);
  }

  .nav { padding-top: 30px !important; padding-bottom: 46px !important; }

  /* wordmark sizing handled in dedicated override below */

  /* Hide nav CTA entirely on mobile; keep just wordmark */
  .nav .btn-ghost {
    display: none !important;
  }

  .nav-cta-full { display: none; }
  .nav-cta-short { display: inline; }

  .mobile-only-br { display: inline; }

  /* Extra breathing room above hero eyebrow (separates MÉTODO DAC from eyebrow) */
  .hero-content { padding: 72px 0 24px; }
  .hero-copy > .eyebrow {
    display: block;
    padding-top: 32px;
    margin-bottom: 28px !important;
  }

  .hero-split { gap: 40px; }

  .hero-headline {
    font-size: clamp(48px, 13vw, 64px);
    line-height: 0.95;
    letter-spacing: -0.035em;
    margin-bottom: 24px;
  }

  .hero-sub {
    font-size: 18px;
    line-height: 1.4;
    margin-bottom: 32px;
  }

  .hero-sub br { display: none; }

  /* Full-width CTAs on mobile */
  .hero-copy .btn,
  .final-cta-row .btn,
  .closing-cta .btn,
  .price-cta-row .btn {
    width: 100%;
    justify-content: center;
    padding: 18px 24px;
    font-size: 14px;
  }

  .hero-copy > div[style*="display: flex"] {
    flex-direction: column;
    width: 100%;
  }

  /* Hero portrait caption back on mobile, centered under photo */
  .hero-portrait-caption {
    display: block !important;
    text-align: center !important;
    padding-top: 18px !important;
    margin: 0 auto !important;
    max-width: 320px;
  }

  /* Meta bar: more breathing room */
  .hero-meta-bar {
    padding-top: 56px !important;
    margin-top: 40px !important;
    border-top: 1px solid var(--line) !important;
  }
  .hero-meta {
    display: grid !important;
    grid-template-columns: 1fr 1fr;
    gap: 26px 20px !important;
  }

  .hero-meta-item .v { font-size: 17px; }
  .hero-meta-item .eyebrow { font-size: 12px !important; letter-spacing: 0.18em; }

  /* "2000+ vidas · 20 países" note its own row */
  .hero-meta-bar > div:last-child:not(.hero-meta) {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--line);
    text-align: center;
    font-size: 12px !important;
  }

  /* Section eyebrow (all .eyebrow mono labels grown) */
  section .eyebrow { font-size: 13px; letter-spacing: 0.18em; }

  /* Mirror */
  .mirror-grid { gap: 32px; }
  .mirror-item { padding: 20px 0; grid-template-columns: 32px 1fr; gap: 16px; }
  .mirror-num { font-size: 14px; }
  .mirror-text { font-size: 18px; line-height: 1.45; }
  .mirror-whisper {
    margin-top: 32px;
    padding: 24px 20px;
    font-size: 21px;
  }

  /* Revelation */
  .revelation-grid { gap: 36px; }
  .revelation-insight { padding: 28px 24px; }
  .revelation-insight p { font-size: 17px; line-height: 1.6; }
  .revelation-name { margin-top: 24px; font-size: 28px; }

  /* Journey */
  .journey-header { margin-bottom: 48px; }
  .phase { padding: 40px 24px; min-height: 0; }
  .phase-glyph { width: 48px; height: 48px; margin-bottom: 24px; }
  .phase-glyph svg { width: 48px; height: 48px; }
  .phase-title { font-size: 34px; }
  .phase-num { margin-bottom: 20px; font-size: 13px; }
  .phase-subtitle { font-size: 13px; letter-spacing: 0.14em; }
  .phase-body { font-size: 17px; line-height: 1.6; }
  .phase-duration { font-size: 13px; letter-spacing: 0.14em; }

  /* Wall of Love */
  .wall-header { margin-bottom: 40px; gap: 24px; }
  .wall-stat-num { font-size: 48px; }
  .wall-grid { gap: 16px; }

  .tcard-body { padding: 24px 22px; }
  .tcard-result { font-size: 21px; margin-bottom: 16px; padding-bottom: 16px; }
  .tcard-quote { font-size: 17px; line-height: 1.55; margin-bottom: 20px; }
  .tcard-attr { padding-top: 16px; gap: 12px; }
  .tcard-avatar { width: 48px; height: 48px; }
  .tcard-name { font-size: 16px; }
  .tcard-loc { font-size: 12px; letter-spacing: 0.14em; }

  .tcard-featured { min-height: 0; }
  .tcard-featured .tcard-hero-img {
    aspect-ratio: 4/3;
  }
  .tcard-featured .tcard-body { padding: 28px 22px; }
  .tcard-featured .tcard-result { font-size: 26px; }
  .tcard-featured .tcard-quote { font-size: 19px; line-height: 1.5; }

  /* Vania */
  .vania-grid { gap: 36px; }
  .vania-portrait { max-width: 320px; margin: 0 auto; aspect-ratio: 4/5; width: 100%; }
  .vania-portrait-img { width: 100% !important; }
  .vania-name { font-size: 46px; }
  .vania-title { font-size: 16px; margin-bottom: 28px; }
  .vania-creds { gap: 14px; padding: 20px 0; margin-bottom: 28px; }
  .vania-cred-num { font-size: 30px; }
  .vania-cred-label { font-size: 11px; margin-top: 6px; letter-spacing: 0.14em; }
  .vania-copy { font-size: 17px; }
  .vania-portrait-label { font-size: 13px; letter-spacing: 0.18em; }

  /* Includes */
  .includes-grid { gap: 32px; }
  .includes-grid > div:first-child { position: static !important; }
  .includes-grid .display { font-size: 40px !important; }
  .includes-item { padding: 20px 0; gap: 16px; }
  .includes-item:hover { padding-left: 0; }
  .includes-mark { font-size: 13px; padding-top: 2px; }
  .includes-title { font-size: 18px; }
  .includes-desc { font-size: 15px; margin-top: 4px; }

  /* Price */
  .price-card { padding: 36px 24px; }
  .price-header { margin-bottom: 32px; padding-bottom: 32px; }
  .price-title { font-size: 32px; }
  .price-eyebrow { font-size: 12px !important; letter-spacing: 0.16em !important; }
  .price-amounts { gap: 16px; margin-bottom: 32px; }
  .price-value { font-size: 56px; }
  .price-label { font-size: 12px; letter-spacing: 0.18em; }
  .price-note { font-size: 12px; letter-spacing: 0.14em; }
  .price-divider { padding: 0; transform: none !important; font-size: 13px; letter-spacing: 0.2em; }
  .price-framing { font-size: 19px; margin-bottom: 28px; }
  .price-framing br { display: none; }
  .guarantee { padding: 20px; gap: 14px; grid-template-columns: 44px 1fr; margin-top: 28px; }
  .guarantee-seal { width: 44px; height: 44px; font-size: 12px; }
  .guarantee-text { font-size: 15px; line-height: 1.55; }

  /* Closing */
  .closing { padding: 64px 0; }
  .closing-card { padding: 40px 22px; }
  .closing-headline { font-size: 32px; margin-bottom: 28px; }
  .closing-body { margin-bottom: 32px; gap: 20px; }
  .closing-body p { font-size: 17px; line-height: 1.6; }
  .closing-emph { font-size: 19px !important; padding-top: 16px; }

  /* FAQ */
  .faq-grid { gap: 28px; }
  .faq-left-title { font-size: 36px; margin-bottom: 16px; }
  .faq-q {
    padding: 22px 0;
    grid-template-columns: 28px 1fr 20px;
    gap: 12px;
    font-size: 17px;
  }
  .faq-q-num { font-size: 13px; padding-top: 4px; }
  .faq-a { grid-template-columns: 28px 1fr 20px; gap: 12px; }
  .faq-a-inner { padding-bottom: 22px; font-size: 16px; line-height: 1.65; }

  /* Final CTA */
  .final { padding: 80px 0; }
  .final-eyebrow { margin-bottom: 20px; font-size: 13px !important; }
  .final-headline {
    font-size: clamp(56px, 14vw, 84px);
    margin-bottom: 24px;
  }
  .final-sub { font-size: 18px; margin-bottom: 36px; }
  .final-sub br { display: none; }
  .final-cta-row { flex-direction: column; gap: 12px; }
  .final-wa { margin-top: 32px; font-size: 13px; letter-spacing: 0.16em; }
  .final-wa a { display: block; margin-top: 6px; margin-left: 0; }

  /* Proof band */
  .proof-band { padding: 22px 0; }
  .proof-band-inner { flex-wrap: wrap; gap: 10px; font-size: 12px; letter-spacing: 0.14em; }
  .proof-band-inner .big { font-size: 13px; }

  /* Footer */
  footer { padding: 32px 0; }
  .footer-row { flex-direction: column; gap: 14px; text-align: center; font-size: 12px; letter-spacing: 0.14em; }

  /* Floating CTA */
  .floating-cta { font-size: 14px; padding: 14px 18px; bottom: 12px; }
}

/* Phone small */
@media (max-width: 420px) {
  .wrap, .wrap-narrow { padding: 0 16px; }
  .hero-headline { font-size: clamp(44px, 12vw, 56px); }
  .final-headline { font-size: clamp(52px, 13vw, 72px); }
  .closing-card { padding: 36px 18px; }
  .price-card { padding: 32px 20px; }
  .tcard-body { padding: 22px 18px; }
  .vania-name { font-size: 38px; }
  .phase { padding: 36px 20px; }
  .phase-title { font-size: 30px; }
}

/* ==================================================
   SCARCITY BAR (top)
   ================================================== */
.scarcity-bar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  background: linear-gradient(180deg, oklch(0.13 0.02 60 / 0.95), oklch(0.10 0.015 55 / 0.92));
  border-bottom: 1px solid var(--line-strong);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.scarcity-bar-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 9px 32px 8px;
  display: flex;
  align-items: center;
  gap: 20px;
}
.scarcity-bar-label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink);
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.scarcity-bar-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--amber);
  flex-shrink: 0;
  animation: scarcityDotPulse 1.4s ease-out infinite;
}
@keyframes scarcityDotPulse {
  0%   { box-shadow: 0 0 0 0 oklch(0.78 0.095 75 / 0.7); transform: scale(1); }
  50%  { transform: scale(1.15); }
  70%  { box-shadow: 0 0 0 10px oklch(0.78 0.095 75 / 0); }
  100% { box-shadow: 0 0 0 0 oklch(0.78 0.095 75 / 0); transform: scale(1); }
}
.scarcity-bar-track {
  flex: 1;
  height: 6px;
  background: oklch(0.18 0.015 60);
  border-radius: 3px;
  position: relative;
  overflow: hidden;
  min-width: 0;
  border: 1px solid oklch(0.22 0.02 60);
  animation: trackBreath 2.8s ease-in-out infinite;
}
@keyframes trackBreath {
  0%, 100% { box-shadow: inset 0 0 0 oklch(0.78 0.095 75 / 0); }
  50%       { box-shadow: inset 0 0 8px oklch(0.78 0.095 75 / 0.18); }
}
.scarcity-bar-fill {
  height: 100%;
  background: linear-gradient(90deg,
    var(--amber-deep) 0%,
    var(--amber) 60%,
    oklch(0.88 0.08 80) 100%);
  border-radius: 2px;
  position: relative;
  transition: width 1.4s cubic-bezier(0.2, 0.8, 0.2, 1);
  box-shadow:
    0 0 14px oklch(0.78 0.095 75 / 0.55),
    inset 0 0 6px oklch(0.95 0.08 80 / 0.3);
  overflow: hidden;
}
.scarcity-bar-fill::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg,
    transparent 0%,
    oklch(1 0 0 / 0.55) 50%,
    transparent 100%);
  transform: translateX(-100%);
  animation: scarcityShimmer 2.2s ease-in-out infinite;
}
@keyframes scarcityShimmer {
  0%   { transform: translateX(-100%); }
  60%  { transform: translateX(250%); }
  100% { transform: translateX(250%); }
}
.scarcity-bar-pulse {
  position: absolute;
  right: -4px;
  top: 50%;
  width: 14px; height: 14px;
  margin-top: -7px;
  border-radius: 50%;
  background: oklch(0.92 0.08 80);
  box-shadow:
    0 0 14px var(--amber),
    0 0 24px oklch(0.78 0.095 75 / 0.8),
    0 0 0 0 oklch(0.78 0.095 75 / 0.65);
  animation: scarcityPulseGlow 1.4s ease-out infinite;
}
@keyframes scarcityPulseGlow {
  0%   { box-shadow: 0 0 14px var(--amber), 0 0 24px oklch(0.78 0.095 75 / 0.8), 0 0 0 0 oklch(0.78 0.095 75 / 0.65); transform: scale(1); }
  50%  { transform: scale(1.25); }
  70%  { box-shadow: 0 0 14px var(--amber), 0 0 24px oklch(0.78 0.095 75 / 0.4), 0 0 0 16px oklch(0.78 0.095 75 / 0); }
  100% { box-shadow: 0 0 14px var(--amber), 0 0 24px oklch(0.78 0.095 75 / 0.8), 0 0 0 0 oklch(0.78 0.095 75 / 0); transform: scale(1); }
}
body.has-scarcity-bar { padding-top: 42px; }
@media (max-width: 760px) {
  /* Override old column layout — keep row */
  .scarcity-bar-inner {
    flex-direction: column !important;
    align-items: stretch !important;
    padding: 8px 16px 10px !important;
    gap: 7px !important;
  }
  .scarcity-bar-label { font-size: 9.5px; letter-spacing: 0.14em; justify-content: flex-start; text-align: left; }
  .scarcity-bar-track { height: 5px; flex: none !important; width: 100% !important; }
  .scarcity-bar-pulse { width: 11px; height: 11px; margin-top: -5.5px; }
  body.has-scarcity-bar { padding-top: 52px; }
}

/* ==================================================
   SCARCITY EMBED (inside price card)
   ================================================== */
.scarcity-embed {
  margin: 0 auto 40px;
  padding: 20px 24px;
  border: 1px solid oklch(0.78 0.095 75 / 0.35);
  background: linear-gradient(180deg, oklch(0.22 0.04 60 / 0.25), oklch(0.15 0.02 55 / 0.15));
  border-radius: 2px;
  max-width: 520px;
}
.scarcity-embed-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 14px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-mute);
}
.scarcity-embed-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
}
.scarcity-embed-count {
  color: var(--ink-mute);
  letter-spacing: 0.12em;
}
.scarcity-embed-count strong {
  color: var(--ink);
  font-weight: 500;
}
.scarcity-embed-rest {
  color: var(--amber) !important;
  font-weight: 500;
}
.scarcity-embed-track {
  height: 7px;
}
@media (max-width: 520px) {
  .scarcity-embed { padding: 16px 18px; }
  .scarcity-embed-row { font-size: 10px; letter-spacing: 0.12em; }
}

/* ==================================================
   SOCIAL PROOF NOTIFICATIONS
   ================================================== */
.social-proof {
  position: fixed;
  left: 20px;
  bottom: 20px;
  z-index: 95;
  width: 320px;
  max-width: calc(100vw - 40px);
  padding: 14px 40px 14px 14px;
  display: flex;
  align-items: center;
  gap: 14px;
  background: linear-gradient(180deg, oklch(0.17 0.02 55 / 0.96), oklch(0.13 0.015 50 / 0.96));
  transition:
    opacity 0.55s cubic-bezier(0.2, 0.8, 0.2, 1),
    transform 0.55s cubic-bezier(0.2, 0.8, 0.2, 1),
    bottom 0.35s cubic-bezier(0.2, 0.8, 0.2, 1);
  border: 1px solid var(--line-strong);
  border-left: 2px solid var(--amber);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow:
    0 18px 40px rgba(0,0,0,0.55),
    0 2px 6px rgba(0,0,0,0.4);
  opacity: 0;
  transform: translateX(-24px) translateY(8px);
  transition:
    opacity 0.55s cubic-bezier(0.2, 0.8, 0.2, 1),
    transform 0.55s cubic-bezier(0.2, 0.8, 0.2, 1);
  pointer-events: none;
  font-family: var(--font-body);
}
.social-proof.show {
  opacity: 1;
  transform: translateX(0) translateY(0);
  pointer-events: auto;
}
.social-proof-avatar {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background:
    linear-gradient(135deg, oklch(0.32 0.06 55), oklch(0.24 0.04 50));
  border: 1px solid oklch(0.78 0.095 75 / 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--amber);
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.06em;
}
.social-proof-body {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.social-proof-top {
  display: flex;
  align-items: baseline;
  gap: 6px;
  font-size: 13px;
  color: var(--ink);
  font-weight: 500;
  letter-spacing: -0.005em;
}
.social-proof-name { color: var(--ink); }
.social-proof-dot { color: var(--ink-dim); }
.social-proof-city {
  color: var(--ink-mute);
  font-weight: 400;
  font-size: 12px;
}
.social-proof-action {
  font-size: 12.5px;
  color: var(--ink-mute);
  line-height: 1.35;
}
.social-proof-verb {
  color: var(--amber);
  font-weight: 500;
}
.social-proof-time {
  margin-top: 3px;
  font-family: var(--font-mono);
  font-size: 9.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-dim);
  display: flex;
  align-items: center;
  gap: 7px;
}
.social-proof-pulse {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.6);
  animation: socialProofPulse 1.6s ease-out infinite;
}
@keyframes socialProofPulse {
  0%   { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.6); }
  70%  { box-shadow: 0 0 0 8px rgba(34, 197, 94, 0); }
  100% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0); }
}
.social-proof-close {
  position: absolute;
  top: 6px;
  right: 6px;
  width: 24px; height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  color: var(--ink-dim);
  font-size: 18px;
  line-height: 1;
  cursor: pointer;
  padding: 0;
  transition: color 0.2s;
}
.social-proof-close:hover { color: var(--ink); }

/* When floating CTA is visible, push social proof above it */
body.floating-cta-visible .social-proof {
  bottom: 80px;
}
@media (max-width: 700px) {
  body.floating-cta-visible .social-proof {
    bottom: 76px;
  }
}

@media (max-width: 520px) {
  .social-proof {
    left: 12px;
    bottom: 12px;
    width: calc(100vw - 24px);
    padding: 12px 36px 12px 12px;
  }
  body.floating-cta-visible .social-proof {
    bottom: 76px;
  }
  .social-proof-avatar { width: 38px; height: 38px; font-size: 12px; }
  .social-proof-top { font-size: 12.5px; }
  .social-proof-action { font-size: 12px; }
}
