/* ============================================
   IMERSÃO DESTRAVE SUAS VENDAS — Sales Page
   Mobile-First · Editorial Premium
   ============================================ */

:root {
  --ink: #0E0B09;
  --ink-2: #1A1512;
  --ink-3: #2A211C;
  --paper: #F2E9D6;
  --paper-2: #E8DCC2;
  --paper-3: #D8C8A8;
  --brass: #C9A26B;
  --brass-deep: #A87F47;
  --wine: #5A2A2A;
  --sage: #7A8769;
  --muted: rgba(242, 233, 214, 0.55);
  --muted-ink: rgba(14, 11, 9, 0.55);
  --hairline: rgba(242, 233, 214, 0.18);
  --hairline-dark: rgba(14, 11, 9, 0.15);
  --serif: 'Cormorant Garamond', 'Times New Roman', serif;
  --sans: 'Manrope', system-ui, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  background: var(--ink);
  color: var(--paper);
  font-family: var(--sans);
  font-weight: 300;
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0.005em;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

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

/* ===== Typography ===== */
.eyebrow {
  font-family: var(--sans);
  font-weight: 500;
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--brass);
}
.eyebrow .dot {
  display: inline-block;
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--brass);
  margin: 0 10px 2px;
  vertical-align: middle;
}

.display {
  font-family: var(--serif);
  font-weight: 300;
  line-height: 0.95;
  letter-spacing: -0.018em;
  font-feature-settings: "liga", "dlig", "ss01";
}
.display em {
  font-style: italic;
  font-weight: 300;
  color: var(--brass);
}

.body-prose p { margin-bottom: 1.1em; max-width: 60ch; }
.body-prose p:last-child { margin-bottom: 0; }

/* ===== Layout helpers — MOBILE FIRST ===== */
.container,
.container-narrow {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 22px;
}

section {
  position: relative;
  padding: 72px 0;
}

.section-paper { background: var(--paper); color: var(--ink); }
.section-ink { background: var(--ink); color: var(--paper); }
.section-ink-2 { background: var(--ink-2); color: var(--paper); }

.section-paper .eyebrow { color: var(--brass-deep); }
.section-paper .display em { color: var(--brass-deep); }
.section-paper ::selection { background: var(--ink); color: var(--paper); }

/* ===== Top marquee ===== */
.topbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: var(--ink);
  border-bottom: 1px solid var(--hairline);
  overflow: hidden;
}
.marquee {
  display: flex;
  white-space: nowrap;
  padding: 9px 0;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--paper);
}
.marquee-track {
  display: flex;
  gap: 36px;
  padding-right: 36px;
  animation: marquee 34s linear infinite;
  flex-shrink: 0;
}
.marquee-track span {
  display: inline-flex;
  align-items: center;
  gap: 36px;
}
.marquee-track span::after {
  content: "✦";
  color: var(--brass);
  font-size: 9px;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ===== Nav ===== */
.nav {
  position: fixed;
  top: 30px; left: 0; right: 0;
  z-index: 99;
  padding: 14px 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  transition: background 400ms ease, padding 400ms ease, border 400ms ease;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(14, 11, 9, 0.88);
  backdrop-filter: blur(20px) saturate(140%);
  -webkit-backdrop-filter: blur(20px) saturate(140%);
  padding: 10px 22px;
  border-bottom: 1px solid var(--hairline);
}
.nav-mark {
  font-family: var(--serif);
  font-style: italic;
  font-size: 18px;
  letter-spacing: -0.01em;
  color: var(--paper);
  text-decoration: none;
}
.nav-mark span { color: var(--brass); }
.nav-cta {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink);
  background: var(--paper);
  padding: 10px 14px;
  border-radius: 999px;
  text-decoration: none;
  transition: all 240ms ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}
.nav-cta .nav-cta-long { display: none; }
.nav-cta:hover {
  background: var(--brass);
  transform: translateY(-1px);
}
.nav-cta .arrow {
  width: 12px; height: 12px;
  transition: transform 240ms ease;
}
.nav-cta:hover .arrow { transform: translateX(3px); }

/* ===== Buttons ===== */
.btn-primary {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink);
  background: var(--paper);
  padding: 18px 26px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  position: relative;
  overflow: hidden;
  transition: transform 280ms cubic-bezier(.2,.7,.3,1);
}
.btn-primary::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--brass);
  transform: translateY(100%);
  transition: transform 380ms cubic-bezier(.4,0,.2,1);
  z-index: 0;
}
.btn-primary:hover::before { transform: translateY(0); }
.btn-primary > * { position: relative; z-index: 1; }
.btn-primary:hover { transform: translateY(-2px); }

.btn-primary .arrow {
  width: 14px; height: 14px;
  transition: transform 280ms ease;
}
.btn-primary:hover .arrow { transform: translateX(4px); }

.btn-primary.btn-brass {
  background: var(--brass);
  color: var(--ink);
}
.btn-primary.btn-brass::before { background: var(--paper); }

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  padding: 130px 0 80px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.hero-grain {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.6;
  background-image:
    radial-gradient(ellipse 90% 60% at 50% 0%, rgba(201, 162, 107, 0.12), transparent 70%),
    radial-gradient(ellipse 70% 80% at 90% 100%, rgba(90, 42, 42, 0.18), transparent 70%);
  z-index: 0;
}
.hero-noise {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.05;
  mix-blend-mode: overlay;
  z-index: 1;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence baseFrequency='0.85' numOctaves='2'/><feColorMatrix values='0 0 0 0 1  0 0 0 0 1  0 0 0 0 1  0 0 0 0.5 0'/></filter><rect width='200' height='200' filter='url(%23n)'/></svg>");
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
}

.hero-label {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 26px;
}
.hero-label .rule {
  flex: 0 0 36px;
  height: 1px;
  background: var(--brass);
}

.hero-title {
  font-size: 56px;
  font-weight: 300;
  line-height: 0.95;
  letter-spacing: -0.022em;
  margin-bottom: 28px;
}
.hero-title .row {
  display: block;
  overflow: hidden;
}
.hero-title .row > span {
  display: inline-block;
  transform: translateY(110%);
  opacity: 0;
  animation: rise 1100ms cubic-bezier(.2,.7,.2,1) forwards;
}
.hero-title .r2 > span { animation-delay: 140ms; }
.hero-title .r3 > span { animation-delay: 280ms; }
.hero-title .r4 > span { animation-delay: 420ms; }

@keyframes rise { to { transform: translateY(0); opacity: 1; } }
@keyframes fadeUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

.hero-sub {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: 21px;
  line-height: 1.35;
  color: rgba(242, 233, 214, 0.78);
  margin-bottom: 24px;
  opacity: 0;
  animation: fadeUp 900ms ease 800ms forwards;
}

.hero-meta {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin: 24px 0 32px;
  font-size: 13px;
  letter-spacing: 0.02em;
  color: rgba(242, 233, 214, 0.7);
  opacity: 0;
  animation: fadeUp 900ms ease 1000ms forwards;
}
.hero-meta-item {
  display: flex;
  align-items: center;
  gap: 12px;
}
.hero-meta-item svg { width: 16px; height: 16px; color: var(--brass); flex-shrink: 0; }

.hero-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  opacity: 0;
  animation: fadeUp 900ms ease 1200ms forwards;
}
.hero-actions .btn-primary { width: 100%; justify-content: center; }
.hero-actions .price-pill {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  font-family: var(--serif);
  color: rgba(242, 233, 214, 0.85);
}
.hero-actions .price-pill .lbl {
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(242, 233, 214, 0.55);
}
.hero-actions .price-pill .num {
  font-size: 24px;
  color: var(--brass);
}

.hero-vagas {
  margin-top: 32px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(242, 233, 214, 0.55);
  opacity: 0;
  animation: fadeUp 900ms ease 1400ms forwards;
}
.pulse-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--brass);
  position: relative;
  flex-shrink: 0;
}
.pulse-dot::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: var(--brass);
  animation: pulse 1.8s ease-out infinite;
}
@keyframes pulse {
  0% { transform: scale(1); opacity: 0.7; }
  100% { transform: scale(3); opacity: 0; }
}

.hero-edge { display: none; }

/* Scroll cue */
.scroll-cue {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  font-size: 9px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(242, 233, 214, 0.4);
  opacity: 0;
  animation: fadeIn 1s ease 1800ms forwards;
}
.scroll-cue .line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--brass), transparent);
  animation: scrollLine 2.2s ease-in-out infinite;
}
@keyframes scrollLine {
  0%, 100% { transform: scaleY(0.3); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
}

/* ===== Section heading ===== */
.sec-head {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  margin-bottom: 48px;
}
.sec-head .eyebrow { margin-bottom: 6px; }
.sec-head h2 {
  font-family: var(--serif);
  font-weight: 300;
  font-size: 38px;
  line-height: 1;
  letter-spacing: -0.018em;
}
.sec-head h2 em { font-style: italic; color: var(--brass); }

/* ===== Reveal animation ===== */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 900ms cubic-bezier(.2,.7,.2,1),
              transform 900ms cubic-bezier(.2,.7,.2,1);
}
.reveal.in { opacity: 1; transform: translateY(0); }
.reveal.d1 { transition-delay: 80ms; }
.reveal.d2 { transition-delay: 160ms; }
.reveal.d3 { transition-delay: 240ms; }
.reveal.d4 { transition-delay: 320ms; }
.reveal.d5 { transition-delay: 400ms; }

/* ===== Imagine / WhatsApp ===== */
.imagine {
  background: var(--ink);
  position: relative;
  overflow: hidden;
}
.imagine-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 50px;
  align-items: center;
}
.imagine-prose h2 {
  font-family: var(--serif);
  font-weight: 300;
  font-size: 34px;
  line-height: 1.05;
  letter-spacing: -0.018em;
  margin: 16px 0 24px;
}
.imagine-prose h2 em { font-style: italic; color: var(--brass); }
.imagine-prose p {
  font-size: 16px;
  color: rgba(242, 233, 214, 0.72);
  margin-bottom: 14px;
}

/* Phone */
.phone-stage {
  display: flex;
  justify-content: center;
  position: relative;
  padding-top: 30px;
}
.phone {
  width: 100%;
  max-width: 300px;
  background: var(--paper);
  border-radius: 34px;
  padding: 14px 10px;
  box-shadow:
    0 40px 70px -20px rgba(0,0,0,0.6),
    0 24px 40px -30px rgba(201,162,107,0.3);
  position: relative;
  transform: rotate(-2deg);
}
.phone::before {
  content: "";
  position: absolute;
  top: 5px; left: 50%;
  transform: translateX(-50%);
  width: 100px; height: 24px;
  background: var(--ink);
  border-radius: 0 0 14px 14px;
}
.phone-screen {
  background: #ECE5D6;
  border-radius: 22px;
  padding: 38px 10px 14px;
  min-height: 420px;
}
.phone-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 6px 6px 12px;
  border-bottom: 1px solid rgba(14,11,9,0.08);
  margin-bottom: 12px;
}
.phone-avatar {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brass), var(--wine));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--paper);
  font-family: var(--serif);
  font-size: 14px;
  flex-shrink: 0;
}
.phone-name { font-size: 12px; font-weight: 600; color: var(--ink); }
.phone-status { font-size: 9px; color: rgba(14,11,9,0.5); }
.bubble {
  max-width: 80%;
  padding: 8px 12px;
  border-radius: 14px;
  font-size: 12px;
  line-height: 1.4;
  margin-bottom: 7px;
  color: var(--ink);
  position: relative;
}
.bubble.in {
  background: white;
  border-bottom-left-radius: 4px;
  margin-right: auto;
}
.bubble.out {
  background: #DCF8C6;
  border-bottom-right-radius: 4px;
  margin-left: auto;
  text-align: right;
}
.bubble .time {
  font-size: 9px;
  color: rgba(14,11,9,0.45);
  display: block;
  margin-top: 3px;
}
.bubble.in.highlight {
  background: white;
  color: var(--ink);
  font-size: 14px;
  font-weight: 600;
  padding: 10px 14px;
  border-bottom-left-radius: 4px;
  margin-right: auto;
  margin-left: 0;
  text-align: left;
  box-shadow: 0 8px 24px -10px rgba(201, 162, 107, 0.5);
}
.bubble.in.highlight::after {
  content: "";
  position: absolute;
  inset: -3px;
  border-radius: 16px;
  border-bottom-left-radius: 4px;
  border: 1px solid var(--brass);
  opacity: 0.6;
  pointer-events: none;
  animation: glowPulse 2.4s ease-in-out infinite;
}
@keyframes glowPulse {
  0%, 100% { opacity: 0.35; transform: scale(1); }
  50% { opacity: 0.7; transform: scale(1.015); }
}

.typing {
  display: inline-flex;
  gap: 3px;
  padding: 9px 12px;
  background: white;
  border-radius: 14px;
  border-bottom-left-radius: 4px;
  margin-bottom: 7px;
}
.typing span {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: rgba(14,11,9,0.3);
  animation: typing 1.2s infinite ease-in-out;
}
.typing span:nth-child(2) { animation-delay: 0.2s; }
.typing span:nth-child(3) { animation-delay: 0.4s; }
@keyframes typing {
  0%, 60%, 100% { transform: scale(1); opacity: 0.4; }
  30% { transform: scale(1.3); opacity: 1; }
}

.phone-deco {
  position: absolute;
  font-family: var(--sans);
  font-weight: 500;
  color: var(--brass);
  opacity: 0.5;
  font-size: 11px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
}
.phone-deco.top { top: 0; right: 5%; }

/* ===== Problem ===== */
.problem {
  background: var(--paper);
  color: var(--ink);
}
.problem-quote {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: 44px;
  line-height: 1.05;
  letter-spacing: -0.016em;
  margin: 0 0 40px;
  max-width: 18ch;
  position: relative;
  padding-left: 30px;
}
.problem-quote::before {
  content: "\201C";
  position: absolute;
  left: -8px;
  top: -0.2em;
  font-size: 1.6em;
  color: var(--brass);
  line-height: 1;
}
.problem-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 50px;
  align-items: start;
}
.problem-list { display: grid; gap: 0; }
.problem-list .compare-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid var(--hairline-dark);
  font-family: var(--serif);
  font-size: 19px;
}
.problem-list .compare-row:last-child { border-bottom: none; }
.problem-list .compare-row span:last-child {
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--brass-deep);
  text-align: right;
}
.problem-prose p {
  font-size: 16px;
  color: rgba(14,11,9,0.72);
  margin-bottom: 16px;
}
.problem-prose strong { font-weight: 600; color: var(--ink); }
.pull-out {
  margin-top: 30px;
  padding: 22px 24px;
  border-left: 2px solid var(--brass-deep);
  font-family: var(--serif);
  font-style: italic;
  font-size: 20px;
  line-height: 1.35;
  color: var(--ink);
}

/* ===== Checklist / For you ===== */
.for-you { background: var(--ink-2); }
.checklist {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border-top: 1px solid var(--hairline);
}
.check-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 26px 0;
  border-bottom: 1px solid var(--hairline);
}
.check-item .num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 13px;
  color: var(--brass);
  flex-shrink: 0;
  padding-top: 4px;
  min-width: 22px;
}
.check-item p {
  font-family: var(--serif);
  font-size: 19px;
  line-height: 1.35;
  color: rgba(242, 233, 214, 0.88);
}
.check-item p em { font-style: italic; color: var(--brass); }

/* ===== Pillars ===== */
.pillars { background: var(--ink); position: relative; }
.pillars-intro {
  font-family: var(--serif);
  font-style: italic;
  font-size: 22px;
  line-height: 1.3;
  color: rgba(242, 233, 214, 0.82);
  margin-bottom: 60px;
}

.pillar {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
  padding: 48px 0;
  border-top: 1px solid var(--hairline);
  align-items: start;
  position: relative;
}
.pillar:last-child { border-bottom: 1px solid var(--hairline); }
.pillar-num {
  font-family: var(--serif);
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--brass);
  display: flex;
  align-items: baseline;
  gap: 18px;
}
.pillar-num .big {
  font-family: var(--serif);
  font-style: italic;
  font-size: 62px;
  line-height: 0.9;
  font-weight: 300;
  color: var(--paper);
  letter-spacing: -0.04em;
}
.pillar-name {
  font-family: var(--serif);
  font-weight: 300;
  font-size: 32px;
  line-height: 1.02;
  letter-spacing: -0.018em;
  margin-bottom: 14px;
}
.pillar-name em {
  display: block;
  font-style: italic;
  color: var(--brass);
  font-size: 0.62em;
  margin-top: 10px;
  line-height: 1.2;
}
.pillar-body p {
  font-size: 15px;
  color: rgba(242, 233, 214, 0.72);
  margin-bottom: 12px;
}
.pillar-body p:last-child { margin-bottom: 0; }
.pillar-list { list-style: none; margin-top: 18px; }
.pillar-list li {
  padding: 6px 0;
  font-family: var(--serif);
  font-size: 17px;
  color: rgba(242, 233, 214, 0.85);
  display: flex;
  align-items: baseline;
  gap: 12px;
}
.pillar-list li::before { content: "—"; color: var(--brass); flex-shrink: 0; }

/* ===== Speaker ===== */
.speaker {
  background: var(--paper);
  color: var(--ink);
  overflow: hidden;
  padding: 0;
}
.speaker-grid {
  display: grid;
  grid-template-columns: 1fr;
  align-items: stretch;
}
.speaker-img-wrap {
  background: linear-gradient(180deg, #2A211C 0%, #1A1512 100%);
  position: relative;
  overflow: hidden;
  min-height: 480px;
  aspect-ratio: 3 / 4;
  max-height: 70vh;
}
.speaker-img-wrap::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 50% at 50% 100%, rgba(201,162,107,0.25), transparent 70%),
    radial-gradient(ellipse 50% 40% at 30% 30%, rgba(90,42,42,0.3), transparent 70%);
}
.speaker-img-wrap img {
  position: absolute;
  bottom: 0; left: 50%;
  transform: translateX(-50%);
  height: 100%;
  width: auto;
  object-fit: cover;
  object-position: bottom center;
  z-index: 2;
}
.speaker-mark {
  position: absolute;
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: 110px;
  color: var(--paper);
  opacity: 0.08;
  line-height: 0.85;
  z-index: 1;
  top: 6%;
  left: -2%;
}
.speaker-badge {
  position: absolute;
  bottom: 22px; left: 22px;
  z-index: 3;
  background: rgba(242, 233, 214, 0.92);
  backdrop-filter: blur(8px);
  padding: 10px 16px;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink);
  display: flex;
  align-items: center;
  gap: 8px;
}
.speaker-badge .dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--brass-deep);
}

.speaker-content {
  padding: 60px 22px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.speaker-content .eyebrow { color: var(--brass-deep); margin-bottom: 20px; }
.speaker-content h2 {
  font-family: var(--serif);
  font-weight: 300;
  font-size: 56px;
  line-height: 0.95;
  letter-spacing: -0.022em;
  margin-bottom: 10px;
}
.speaker-content h2 em { font-style: italic; color: var(--brass-deep); }
.speaker-role {
  font-family: var(--serif);
  font-style: italic;
  font-size: 20px;
  color: rgba(14,11,9,0.7);
  margin-bottom: 30px;
  line-height: 1.3;
}
.speaker-content p {
  font-size: 15px;
  color: rgba(14,11,9,0.78);
  margin-bottom: 14px;
}

.speaker-stats {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-top: 30px;
  padding-top: 28px;
  border-top: 1px solid var(--hairline-dark);
}
.stat .num {
  font-family: var(--serif);
  font-weight: 300;
  font-size: 42px;
  line-height: 1;
  color: var(--ink);
  letter-spacing: -0.02em;
}
.stat .num em { font-style: italic; color: var(--brass-deep); }
.stat .lbl {
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(14,11,9,0.55);
  margin-top: 8px;
  line-height: 1.3;
}

/* ===== Offer ===== */
.offer { background: var(--ink); position: relative; }
.offer-card {
  background: linear-gradient(180deg, var(--ink-2) 0%, var(--ink) 100%);
  border: 1px solid var(--hairline);
  border-radius: 20px;
  padding: 38px 22px;
  position: relative;
  overflow: hidden;
}
.offer-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--brass), transparent);
}
.offer-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 40% at 90% 0%, rgba(201,162,107,0.08), transparent 60%);
  pointer-events: none;
}
.offer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.offer-title {
  font-family: var(--serif);
  font-weight: 300;
  font-size: 32px;
  line-height: 1.02;
  letter-spacing: -0.018em;
  margin-bottom: 10px;
}
.offer-title em { font-style: italic; color: var(--brass); }
.offer-when {
  font-family: var(--serif);
  font-style: italic;
  font-size: 17px;
  color: rgba(242,233,214,0.7);
  margin-bottom: 28px;
  line-height: 1.3;
}
.includes-list { list-style: none; display: grid; gap: 12px; }
.includes-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 12px 0;
  border-bottom: 1px solid var(--hairline);
  font-size: 14px;
  color: rgba(242,233,214,0.85);
  line-height: 1.4;
}
.includes-list li:last-child { border-bottom: none; }
.includes-list .ico {
  flex-shrink: 0;
  width: 18px; height: 18px;
  color: var(--brass);
  margin-top: 1px;
}

.price-block { text-align: center; }
.price-strike {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(242,233,214,0.45);
  margin-bottom: 6px;
}
.price-strike span { text-decoration: line-through; }
.price-label {
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--brass);
  margin-bottom: 14px;
}
.price-main {
  font-family: var(--serif);
  font-weight: 300;
  font-size: 100px;
  line-height: 0.9;
  letter-spacing: -0.04em;
  color: var(--paper);
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 6px;
}
.price-main .currency {
  font-size: 0.32em;
  margin-top: 0.5em;
  color: var(--brass);
  font-style: italic;
}
.price-foot {
  font-family: var(--serif);
  font-style: italic;
  font-size: 15px;
  color: rgba(242,233,214,0.6);
  margin-top: 8px;
  margin-bottom: 26px;
  line-height: 1.4;
}
.price-foot strong { color: var(--paper); font-style: normal; font-weight: 500; }
.price-block .btn-primary { width: 100%; justify-content: center; }

/* ===== Guarantee ===== */
.guarantee { background: var(--paper); color: var(--ink); }
.guarantee-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}
.seal {
  width: 220px;
  height: 220px;
  position: relative;
  margin: 0 auto;
}
.seal-inner {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.seal-num {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: 72px;
  line-height: 1;
  color: var(--brass-deep);
  letter-spacing: -0.04em;
}
.seal-label {
  font-size: 10px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--ink);
  margin-top: 4px;
}
.seal svg {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  animation: spin 30s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

.guarantee h2 {
  font-family: var(--serif);
  font-weight: 300;
  font-size: 40px;
  line-height: 1.05;
  letter-spacing: -0.018em;
  margin-bottom: 20px;
}
.guarantee h2 em { font-style: italic; color: var(--brass-deep); }
.guarantee p {
  font-size: 16px;
  color: rgba(14,11,9,0.72);
  margin-bottom: 12px;
}

/* ===== FAQ ===== */
.faq { background: var(--ink); }
.faq-list { border-top: 1px solid var(--hairline); }
.faq-item { border-bottom: 1px solid var(--hairline); }
.faq-q {
  width: 100%;
  background: none;
  border: none;
  color: var(--paper);
  font-family: var(--serif);
  font-weight: 300;
  font-size: 21px;
  line-height: 1.2;
  letter-spacing: -0.008em;
  text-align: left;
  padding: 24px 0;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  transition: color 240ms ease;
}
.faq-q:hover { color: var(--brass); }
.faq-icon {
  flex-shrink: 0;
  width: 32px; height: 32px;
  border: 1px solid var(--hairline);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 280ms ease;
  position: relative;
}
.faq-icon::before, .faq-icon::after {
  content: "";
  position: absolute;
  background: var(--paper);
  transition: all 280ms ease;
}
.faq-icon::before { width: 10px; height: 1px; }
.faq-icon::after { width: 1px; height: 10px; }
.faq-item.open .faq-icon { background: var(--brass); border-color: var(--brass); }
.faq-item.open .faq-icon::before { background: var(--ink); }
.faq-item.open .faq-icon::after { transform: rotate(90deg); opacity: 0; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 600ms cubic-bezier(.2,.7,.2,1); }
.faq-a-inner {
  padding-bottom: 24px;
  padding-right: 0;
  font-family: var(--serif);
  font-style: italic;
  font-size: 17px;
  line-height: 1.5;
  color: rgba(242,233,214,0.72);
}
.faq-item.open .faq-a { max-height: 400px; }

/* ===== Final CTA ===== */
.final {
  background: var(--ink);
  padding: 90px 0;
  position: relative;
  overflow: hidden;
}
.final::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 100%, rgba(201,162,107,0.16), transparent 70%);
}
.final-inner { position: relative; z-index: 1; text-align: center; }
.final h2 {
  font-family: var(--serif);
  font-weight: 300;
  font-size: 48px;
  line-height: 0.95;
  letter-spacing: -0.022em;
  margin-bottom: 26px;
}
.final h2 em { font-style: italic; color: var(--brass); }
.final-sub {
  font-family: var(--serif);
  font-style: italic;
  font-size: 19px;
  color: rgba(242,233,214,0.75);
  margin: 0 auto 38px;
  line-height: 1.4;
}
.final-meta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  margin-bottom: 40px;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(242,233,214,0.6);
}
.final-meta-item { display: flex; align-items: center; gap: 12px; }
.final-meta-item svg { width: 16px; color: var(--brass); }
.final .btn-primary { width: 100%; justify-content: center; max-width: 380px; }

/* ===== Footer ===== */
footer {
  background: var(--ink);
  padding: 32px 0 50px;
  border-top: 1px solid var(--hairline);
  font-size: 11px;
  color: rgba(242,233,214,0.4);
  letter-spacing: 0.04em;
}
footer .container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

/* ============================================
   ▶ SMALL TABLET (≥ 600px)
   ============================================ */
@media (min-width: 600px) {
  body { font-size: 16px; }
  .container, .container-narrow { padding: 0 30px; }
  .nav, .nav.scrolled { padding-left: 30px; padding-right: 30px; }
  section { padding: 90px 0; }

  .hero-title { font-size: 80px; }
  .hero-sub { font-size: 24px; }
  .hero-meta { flex-direction: row; flex-wrap: wrap; gap: 24px; }
  .hero-actions { flex-direction: row; align-items: center; gap: 22px; }
  .hero-actions .btn-primary { width: auto; }

  .sec-head h2 { font-size: 56px; }
  .imagine-prose h2 { font-size: 44px; }
  .problem-quote { font-size: 58px; }
  .pillar-name { font-size: 38px; }
  .speaker-content h2 { font-size: 72px; }
  .offer-title { font-size: 40px; }
  .guarantee h2 { font-size: 48px; }
  .faq-q { font-size: 24px; padding: 28px 0; }
  .final h2 { font-size: 64px; }
  .final-meta { flex-direction: row; flex-wrap: wrap; justify-content: center; gap: 28px; }

  footer .container { flex-direction: row; justify-content: space-between; align-items: center; }
}

/* ============================================
   ▶ TABLET (≥ 768px)
   ============================================ */
@media (min-width: 768px) {
  body { font-size: 17px; }
  .container, .container-narrow { padding: 0 40px; }
  .nav, .nav.scrolled { padding-left: 40px; padding-right: 40px; }
  .nav-cta .nav-cta-long { display: inline; }
  .nav-cta .nav-cta-short { display: none; }
  .nav-cta { font-size: 11px; padding: 12px 20px; letter-spacing: 0.2em; }
  section { padding: 110px 0; }

  .hero { padding: 170px 0 100px; }
  .hero-title { font-size: 104px; }
  .hero-sub { font-size: 26px; max-width: 740px; }
  .hero-edge {
    display: block;
    position: absolute;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    writing-mode: vertical-rl;
    font-size: 10px;
    letter-spacing: 0.36em;
    text-transform: uppercase;
    color: rgba(242, 233, 214, 0.35);
    z-index: 3;
  }
  .scroll-cue { bottom: 32px; }
  .scroll-cue .line { height: 50px; }

  .sec-head { gap: 16px; margin-bottom: 60px; }
  .sec-head h2 { font-size: 68px; }

  .imagine-grid { grid-template-columns: 1fr 1fr; gap: 70px; }
  .imagine-prose h2 { font-size: 52px; }
  .phone { max-width: 320px; padding: 18px 14px; border-radius: 38px; }
  .phone::before { width: 110px; height: 28px; }
  .phone-screen { padding: 44px 14px 18px; min-height: 480px; border-radius: 24px; }
  .phone-avatar { width: 36px; height: 36px; font-size: 16px; }
  .phone-name { font-size: 13px; }
  .bubble { font-size: 13px; padding: 9px 13px; border-radius: 16px; }
  .bubble.in.highlight { font-size: 15px; padding: 10px 14px; }

  .problem-quote { font-size: 72px; padding-left: 0; }
  .problem-quote::before { left: -0.55em; font-size: 1.8em; }
  .problem-grid { grid-template-columns: 1fr 1fr; gap: 70px; }
  .problem-list .compare-row { font-size: 22px; padding: 18px 0; }
  .problem-list .compare-row span:last-child { font-size: 11px; letter-spacing: 0.24em; }
  .pull-out { font-size: 22px; padding: 28px 30px; margin-top: 40px; }

  .checklist { grid-template-columns: 1fr 1fr; }
  .check-item { padding: 34px 0; gap: 22px; }
  .check-item:nth-child(odd) { padding-right: 40px; border-right: 1px solid var(--hairline); }
  .check-item:nth-child(even) { padding-left: 40px; }
  .check-item p { font-size: 22px; }

  .pillars-intro { font-size: 30px; margin-bottom: 90px; max-width: 26ch; }
  .pillar { grid-template-columns: 180px 1fr 1fr; gap: 50px; padding: 64px 0; }
  .pillar-num { display: block; }
  .pillar-num .big { display: block; font-size: 78px; margin-top: 12px; }
  .pillar-name { font-size: 48px; }
  .pillar-name em { font-size: 0.58em; }
  .pillar-body p { font-size: 16px; }
  .pillar-list li { font-size: 18px; }

  .speaker-grid { grid-template-columns: 1fr 1fr; min-height: 88vh; }
  .speaker-img-wrap { aspect-ratio: auto; max-height: none; min-height: 0; }
  .speaker-mark { font-size: 180px; }
  .speaker-badge { bottom: 36px; left: 36px; padding: 12px 18px; font-size: 11px; letter-spacing: 0.22em; }
  .speaker-content { padding: 90px 60px; }
  .speaker-content h2 { font-size: 92px; }
  .speaker-role { font-size: 22px; }
  .speaker-content p { font-size: 16px; }
  .speaker-stats { grid-template-columns: 1fr 1fr 1fr; gap: 30px; }
  .stat .num { font-size: 48px; }
  .stat .lbl { font-size: 11px; letter-spacing: 0.18em; }

  .offer-card { padding: 60px 50px; border-radius: 24px; }
  .offer-grid { grid-template-columns: 1.2fr 1fr; gap: 70px; }
  .offer-title { font-size: 48px; }
  .offer-when { font-size: 20px; }
  .includes-list li { font-size: 15px; }
  .price-main { font-size: 130px; }
  .price-foot { font-size: 16px; }

  .guarantee-grid { grid-template-columns: 1fr 2fr; gap: 70px; }
  .seal { width: 260px; height: 260px; }
  .seal-num { font-size: 86px; }
  .seal-label { font-size: 11px; letter-spacing: 0.3em; }
  .guarantee h2 { font-size: 56px; }
  .guarantee p { font-size: 17px; max-width: 56ch; }

  .faq-q { font-size: 28px; padding: 32px 0; }
  .faq-icon { width: 36px; height: 36px; }
  .faq-icon::before { width: 12px; }
  .faq-icon::after { height: 12px; }
  .faq-a-inner { font-size: 19px; padding-right: 60px; }

  .final { padding: 140px 0; }
  .final h2 { font-size: 86px; }
  .final-sub { font-size: 26px; max-width: 50ch; }
  .final-meta { gap: 36px; font-size: 13px; letter-spacing: 0.18em; }
  .final .btn-primary { width: auto; max-width: none; }
}

/* ============================================
   ▶ DESKTOP (≥ 1024px)
   ============================================ */
@media (min-width: 1024px) {
  .marquee { padding: 11px 0; font-size: 11px; letter-spacing: 0.28em; }
  .marquee-track, .marquee-track span { gap: 64px; }
  .marquee-track { padding-right: 64px; }

  section { padding: 130px 0; }
  .sec-head h2 { font-size: 78px; }

  .hero-title { font-size: 132px; }
  .hero-sub { font-size: 28px; }

  .imagine-grid { gap: 100px; }
  .imagine-prose h2 { font-size: 60px; }

  .problem-quote { font-size: 78px; }
  .problem-grid { gap: 80px; }

  .check-item p { font-size: 22px; }
  .check-item:nth-child(odd) { padding-right: 50px; }
  .check-item:nth-child(even) { padding-left: 50px; }

  .pillar { grid-template-columns: 200px 1fr 1fr; gap: 60px; padding: 70px 0; }
  .pillar-name { font-size: 56px; }
  .pillar-num .big { font-size: 90px; }

  .speaker-content { padding: 100px 80px; }
  .speaker-content h2 { font-size: 110px; }
  .speaker-mark { font-size: 220px; }

  .offer-card { padding: 70px; }
  .offer-grid { gap: 80px; }
  .offer-title { font-size: 56px; }
  .price-main { font-size: 160px; }

  .seal { width: 280px; height: 280px; }
  .seal-num { font-size: 90px; }
  .guarantee h2 { font-size: 64px; }

  .faq-q { font-size: 32px; }

  .final h2 { font-size: 110px; }
  .final-sub { font-size: 30px; }
}

/* ============================================
   Reduce motion
   ============================================ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
