/* ─── TOKENS ──────────────────────────────────────────── */
:root {
  --ink:        #1a1a1a;
  --ink-mid:    #2c2c2a;
  --ink-soft:   #4a4a45;
  --teal:       #1D9E75;
  --teal-light: #5DCAA5;
  --teal-pale:  #E1F5EE;
  --teal-deep:  #156d51;
  --white:      #ffffff;
  --off-white:  #f8f8f6;
  --rule:       #e4e4e0;
  --font-sans:  'Space Grotesk', sans-serif;
  --font-edit:  'Cormorant Garamond', Georgia, serif;
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --max:        1160px;
  --pad:        clamp(1.5rem, 5vw, 4rem);
  --section:    clamp(5rem, 10vw, 8rem);
}

/* ─── RESET ──────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-sans);
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

/* ─── NAV ────────────────────────────────────────────── */
nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--rule);
  padding: 0 var(--pad);
  transition: box-shadow 0.3s;
}
nav.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,0.06); }
.nav-inner {
  max-width: var(--max); margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  height: 68px;
}
.logo { display: flex; align-items: center; gap: 10px; }
.logo-mark {
  width: 36px; height: 36px;
  background: var(--ink); color: var(--teal-light);
  font-family: var(--font-sans); font-weight: 700; font-size: 0.75rem;
  letter-spacing: 0.05em; display: flex; align-items: center;
  justify-content: center; border-radius: 4px; flex-shrink: 0;
}
.logo-name { font-size: 0.9rem; font-weight: 600; letter-spacing: -0.01em; color: var(--ink); }
.logo-name span { font-style: italic; font-family: var(--font-edit); font-weight: 400; }
.btn-nav {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--teal); color: var(--white);
  font-weight: 600; font-size: 0.8rem; letter-spacing: 0.06em;
  text-transform: uppercase; padding: 10px 22px; border-radius: 100px;
  transition: background 0.2s, transform 0.15s;
}
.btn-nav:hover { background: var(--teal-deep); transform: translateY(-1px); }

/* ─── HERO ───────────────────────────────────────────── */
#hero {
  position: relative;
  padding: clamp(5rem, 10vw, 9rem) var(--pad) clamp(4rem, 8vw, 7rem);
  overflow: hidden;
}
.hero-bg-shape {
  position: absolute; top: -80px; right: -120px;
  width: 520px; height: 520px;
  background: var(--teal-pale); border-radius: 50%;
  opacity: 0.55; pointer-events: none;
}
.hero-bg-line {
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 1px; background: var(--rule);
}
.hero-inner { max-width: var(--max); margin: 0 auto; position: relative; }
.badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--teal-pale); border: 1px solid var(--teal-light);
  color: var(--teal-deep); font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 6px 14px; border-radius: 100px; margin-bottom: 2rem;
}
.badge-dot {
  width: 6px; height: 6px; background: var(--teal); border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}
#hero h1 {
  font-family: var(--font-display);
  font-size: clamp(3rem, 6.5vw, 5.2rem);
  font-weight: 700; line-height: 1.05; letter-spacing: -0.01em;
  max-width: 780px; margin-bottom: 2.5rem;
}
#hero h1 em {
  font-family: var(--font-edit); font-style: italic;
  font-weight: 300; color: var(--teal);
}
.hero-sub {
  font-size: clamp(1rem, 2vw, 1.2rem); font-weight: 400;
  line-height: 1.6; color: var(--ink-soft);
  max-width: 580px; margin-bottom: 2.5rem;
}
.hero-ctas {
  display: flex; flex-wrap: wrap; gap: 14px;
  margin-bottom: 1.5rem; align-items: center;
}
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--teal); color: var(--white);
  font-weight: 600; font-size: 0.88rem; letter-spacing: 0.04em;
  text-transform: uppercase; padding: 16px 32px; border-radius: 4px;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
}
.btn-primary:hover {
  background: var(--teal-deep); transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(29,158,117,0.25);
}
.btn-secondary {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: var(--ink);
  font-weight: 500; font-size: 0.88rem; letter-spacing: 0.04em;
  text-transform: uppercase; padding: 15px 28px; border-radius: 4px;
  border: 1.5px solid var(--ink);
  transition: border-color 0.2s, color 0.2s, transform 0.15s;
}
.btn-secondary:hover { border-color: var(--teal); color: var(--teal); transform: translateY(-2px); }
.guarantee-mini {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.8rem; color: var(--ink-soft); margin-bottom: 2rem;
}
.guarantee-mini svg { flex-shrink: 0; }
.guarantee-mini strong { color: var(--teal); font-weight: 600; }
.hero-cred {
  display: flex; flex-wrap: wrap; align-items: center;
  gap: 6px 18px; font-size: 0.8rem; font-weight: 500;
  color: var(--ink-soft); letter-spacing: 0.01em;
}
.hero-cred-sep {
  width: 4px; height: 4px; background: var(--teal-light);
  border-radius: 50%; flex-shrink: 0;
}

/* ─── PAIN ───────────────────────────────────────────── */
#pain { background: var(--ink); padding: var(--section) var(--pad); }
.pain-inner { max-width: var(--max); margin: 0 auto; }
.section-eyebrow {
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.12em;
  text-transform: uppercase; margin-bottom: 1.2rem;
}
.eyebrow-teal { color: var(--teal-light); }
.eyebrow-ink  { color: var(--ink-soft); }
#pain h2 {
  font-size: clamp(1.8rem, 4vw, 3rem); font-weight: 700;
  letter-spacing: -0.03em; color: var(--white);
  margin-bottom: 3rem; max-width: 600px; line-height: 1.15;
}
#pain h2 em { font-family: var(--font-edit); font-style: italic; font-weight: 300; color: var(--teal-light); }
.pain-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1px; background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.08); margin-bottom: 3rem;
}
.pain-card { background: var(--ink-mid); padding: 2.5rem 2rem; position: relative; }
.pain-card::before {
  content: ''; display: block; width: 32px; height: 2px;
  background: var(--teal); margin-bottom: 1.25rem;
}
.pain-card p {
  font-family: var(--font-sans); font-weight: 600;
  font-size: clamp(1rem, 1.5vw, 1.1rem);
  line-height: 1.45; color: var(--white);
}
.pain-card p em {
  font-family: var(--font-edit); font-style: italic;
  font-weight: 300; color: var(--teal-light); display: block;
  margin-top: 0.5rem; font-size: 0.9em;
}
.pain-close {
  font-size: clamp(1rem, 1.8vw, 1.2rem); font-weight: 600;
  color: var(--white); line-height: 1.5;
  border-left: 3px solid var(--teal); padding-left: 1.25rem;
  max-width: 680px;
}
.pain-close em { color: var(--teal-light); font-style: italic; font-family: var(--font-edit); font-weight: 300; }

/* ─── WHO ────────────────────────────────────────────── */
#who { background: var(--white); padding: var(--section) var(--pad); }
.who-inner {
  max-width: var(--max); margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 6rem); align-items: start;
}
.who-left h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 700;
  letter-spacing: -0.03em; line-height: 1.15;
}
.who-left h2 em { font-family: var(--font-edit); font-style: italic; font-weight: 300; color: var(--teal); }
.who-left p { margin-top: 1.5rem; font-size: 0.95rem; line-height: 1.7; color: var(--ink-soft); }
.who-list { list-style: none; display: flex; flex-direction: column; gap: 1.1rem; }
.who-list li {
  display: flex; gap: 1rem; align-items: flex-start;
  font-size: 0.98rem; line-height: 1.55; color: var(--ink-soft);
  padding-bottom: 1.1rem; border-bottom: 1px solid var(--rule);
}
.who-list li:last-child { border-bottom: none; padding-bottom: 0; }
.check {
  width: 22px; height: 22px; background: var(--teal-pale);
  border-radius: 50%; display: flex; align-items: center;
  justify-content: center; flex-shrink: 0; margin-top: 1px;
}
.check svg { width: 11px; height: 11px; }

/* not-for block */
.not-for {
  max-width: var(--max); margin: 3rem auto 0;
  border-top: 1px solid var(--rule); padding-top: 3rem;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 4vw, 4rem); align-items: start;
}
.not-for-label {
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--ink-soft); margin-bottom: 0.75rem;
}
.not-for-text {
  font-family: var(--font-edit); font-style: italic;
  font-size: clamp(1rem, 1.5vw, 1.1rem); font-weight: 300;
  line-height: 1.6; color: var(--ink-soft);
}
.not-for-list { list-style: none; display: flex; flex-direction: column; gap: 0.7rem; }
.not-for-list li {
  display: flex; gap: 0.75rem; align-items: flex-start;
  font-size: 0.9rem; line-height: 1.5; color: var(--ink-soft);
}
.cross {
  width: 20px; height: 20px; background: #fef2f2;
  border-radius: 50%; display: flex; align-items: center;
  justify-content: center; flex-shrink: 0; margin-top: 1px;
}
.cross svg { width: 10px; height: 10px; }

/* ─── ASSESSMENT ─────────────────────────────────────── */
#assessment { background: var(--teal-pale); padding: var(--section) var(--pad); }
.assessment-inner { max-width: 680px; margin: 0 auto; text-align: center; }
#assessment h2 {
  font-size: clamp(1.6rem, 3vw, 2.4rem); font-weight: 700;
  letter-spacing: -0.03em; margin-bottom: 1rem; line-height: 1.15;
}
#assessment h2 em { font-family: var(--font-edit); font-style: italic; font-weight: 300; color: var(--teal); }
#assessment p { font-size: 1rem; line-height: 1.65; color: var(--ink-soft); margin-bottom: 2rem; }
.btn-teal {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--teal); color: var(--white);
  font-weight: 600; font-size: 0.88rem; letter-spacing: 0.05em;
  text-transform: uppercase; padding: 16px 34px; border-radius: 4px;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
}
.btn-teal:hover {
  background: var(--teal-deep); transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(29,158,117,0.25);
}
.assessment-note { margin-top: 1rem; font-size: 0.8rem; color: var(--ink-soft); }

/* ─── 4R METHOD ──────────────────────────────────────── */
#method { background: var(--off-white); padding: var(--section) var(--pad); }
.method-inner { max-width: var(--max); margin: 0 auto; }
.method-header { text-align: center; margin-bottom: 3.5rem; }
.method-header h2 {
  font-size: clamp(2rem, 4vw, 3.2rem); font-weight: 700;
  letter-spacing: -0.03em; margin-bottom: 1rem; line-height: 1.1;
}
.method-header h2 em { font-family: var(--font-edit); font-style: italic; font-weight: 300; color: var(--teal); }
.method-header p { font-size: 1rem; color: var(--ink-soft); max-width: 520px; margin: 0 auto; line-height: 1.6; }
.method-cards {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem; margin-bottom: 2.5rem;
}
.method-card {
  background: var(--white); border-radius: 6px; padding: 2rem 1.5rem;
  border: 1px solid var(--rule);
  transition: transform 0.2s, box-shadow 0.2s; position: relative; overflow: hidden;
}
.method-card::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 3px; background: var(--teal); transform: scaleX(0);
  transform-origin: left; transition: transform 0.3s;
}
.method-card:hover { transform: translateY(-4px); box-shadow: 0 12px 36px rgba(0,0,0,0.07); }
.method-card:hover::after { transform: scaleX(1); }
.method-num { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.1em; color: var(--teal-light); margin-bottom: 1rem; }
.method-title { font-size: 1.1rem; font-weight: 700; letter-spacing: -0.01em; margin-bottom: 0.75rem; }
.method-desc { font-size: 0.88rem; line-height: 1.6; color: var(--ink-soft); }
.method-sauce {
  background: var(--ink); border-radius: 6px; padding: 2rem 2.5rem;
  display: flex; align-items: center; gap: 1.5rem;
}
.sauce-icon { font-size: 1.4rem; flex-shrink: 0; }
.sauce-text {
  font-family: var(--font-edit); font-style: italic;
  font-size: clamp(1rem, 1.8vw, 1.2rem); font-weight: 300;
  color: var(--teal-light); line-height: 1.4;
}
.sauce-text strong { font-weight: 600; color: var(--white); font-style: normal; font-family: var(--font-sans); }

/* ─── VALUE STACK ────────────────────────────────────── */
#value { background: var(--white); padding: var(--section) var(--pad); }
.value-inner {
  max-width: var(--max); margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1.1fr;
  gap: clamp(3rem, 6vw, 6rem); align-items: start;
}
.value-left h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem); font-weight: 700;
  letter-spacing: -0.03em; line-height: 1.15; margin-bottom: 1rem;
}
.value-left h2 em { font-family: var(--font-edit); font-style: italic; font-weight: 500; color: var(--teal); }
.value-left p { font-size: 0.95rem; line-height: 1.7; color: var(--ink-soft); margin-bottom: 2rem; }
.price-anchor {
  background: var(--teal-pale); border-left: 4px solid var(--teal);
  border-radius: 0 6px 6px 0; padding: 1.5rem 1.75rem; margin-bottom: 1.5rem;
}
.price-anchor-label {
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--teal-deep); margin-bottom: 0.5rem;
}
.price-big {
  font-size: clamp(2.5rem, 4vw, 3.5rem); font-weight: 700;
  letter-spacing: -0.04em; color: var(--teal); line-height: 1; margin-bottom: 0.4rem;
}
.price-note { font-size: 0.82rem; color: var(--ink-soft); line-height: 1.5; }
.price-note strong { color: var(--ink); font-weight: 600; }
.value-cta-wrap { display: flex; flex-direction: column; gap: 0.75rem; }
.value-table { width: 100%; border-collapse: collapse; }
.value-table tr { border-bottom: 1px solid var(--rule); transition: background 0.15s; }
.value-table tr:hover { background: var(--off-white); }
.value-table td { padding: 1rem 0.5rem; font-size: 0.92rem; line-height: 1.45; vertical-align: middle; }
.value-table td:first-child { color: var(--ink-soft); padding-left: 0; }
.value-table td:last-child { text-align: right; font-weight: 600; color: var(--ink); padding-right: 0; white-space: nowrap; }
.value-table tr.bonus td:first-child { color: var(--teal-deep); }
.value-table tr.bonus td:last-child { color: var(--teal); }
.bonus-tag {
  display: inline-block; background: var(--teal-pale); color: var(--teal-deep);
  font-size: 0.62rem; font-weight: 700; letter-spacing: 0.08em;
  text-transform: uppercase; padding: 2px 7px; border-radius: 100px;
  margin-right: 6px; vertical-align: middle;
}
.value-table tr.total-row td {
  padding-top: 1.25rem; font-weight: 700; font-size: 1rem;
  color: var(--ink); border-bottom: none; border-top: 2px solid var(--ink);
}
.value-table tr.founding-row td {
  padding-top: 0.75rem; font-size: 1.3rem; font-weight: 700;
  color: var(--teal); border-bottom: none;
}
.value-cta-btn {
  display: block; text-align: center;
  background: var(--teal); color: var(--white);
  font-weight: 600; font-size: 0.88rem; letter-spacing: 0.05em;
  text-transform: uppercase; padding: 16px 24px; border-radius: 4px;
  margin-top: 1.75rem;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
}
.value-cta-btn:hover {
  background: var(--teal-deep); transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(29,158,117,0.25);
}
.value-guarantee-mini {
  display: flex; align-items: center; gap: 6px; justify-content: center;
  font-size: 0.78rem; color: var(--ink-soft); margin-top: 0.75rem;
}
.value-guarantee-mini strong { color: var(--teal); font-weight: 600; }

/* ─── CREDIBILITY ────────────────────────────────────── */
#credibility { background: var(--ink-mid); padding: var(--section) var(--pad); }
.cred-inner {
  max-width: var(--max); margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1.5fr;
  gap: clamp(3rem, 6vw, 6rem); align-items: center;
}
.cred-left h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 700;
  letter-spacing: -0.03em; line-height: 1.15; color: var(--white); margin-bottom: 2.5rem;
}
.cred-left h2 em { font-family: var(--font-edit); font-style: italic; font-weight: 300; color: var(--teal-light); }
.ben-photo {
  width: 100%; max-width: 260px; aspect-ratio: 3/4;
  object-fit: cover; object-position: center top;
  border-radius: 6px; border: 1px solid rgba(255,255,255,0.1);
  margin-bottom: 1.5rem; display: block;
}
.photo-placeholder {
  width: 100%; aspect-ratio: 3/4; max-width: 260px;
  background: linear-gradient(135deg, #2a2a28 0%, #1a1a1a 100%);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 6px; display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 0.75rem;
  margin-bottom: 1.5rem;
}
.photo-initials {
  width: 64px; height: 64px; background: var(--teal);
  border-radius: 50%; display: flex; align-items: center;
  justify-content: center; font-size: 1.4rem; font-weight: 700; color: var(--white);
}
.photo-placeholder p { font-size: 0.72rem; color: rgba(255,255,255,0.25); letter-spacing: 0.08em; text-transform: uppercase; text-align: center; }
.stats { display: flex; flex-direction: column; gap: 1.25rem; }
.stat { padding-bottom: 1.25rem; border-bottom: 1px solid rgba(255,255,255,0.08); }
.stat:last-child { border-bottom: none; padding-bottom: 0; }
.stat-num { font-size: clamp(2rem, 3.5vw, 2.8rem); font-weight: 700; letter-spacing: -0.04em; color: var(--teal-light); line-height: 1; margin-bottom: 0.25rem; }
.stat-label { font-size: 0.78rem; font-weight: 500; color: rgba(255,255,255,0.45); letter-spacing: 0.04em; text-transform: uppercase; }
.cred-right { padding-top: 0.5rem; }
.cred-quote {
  font-family: var(--font-edit); font-style: italic;
  font-size: clamp(1.1rem, 2vw, 1.3rem); font-weight: 300;
  line-height: 1.65; color: rgba(255,255,255,0.88);
  margin-bottom: 2rem; padding-left: 1.75rem;
  border-left: 3px solid var(--teal);
}
.cred-items { display: flex; flex-direction: column; gap: 1rem; }
.cred-item { display: flex; gap: 12px; align-items: flex-start; }
.cred-item-dot { width: 6px; height: 6px; background: var(--teal); border-radius: 50%; margin-top: 7px; flex-shrink: 0; }
.cred-item p { font-size: 0.92rem; line-height: 1.55; color: rgba(255,255,255,0.6); }
.cred-item p strong { color: var(--white); font-weight: 600; }

/* ─── SCARCITY ───────────────────────────────────────── */
#scarcity { background: var(--teal); padding: var(--section) var(--pad); }
.scarcity-inner { max-width: var(--max); margin: 0 auto; text-align: center; }
#scarcity h2 {
  font-size: clamp(2rem, 4vw, 3.2rem); font-weight: 700;
  letter-spacing: -0.03em; color: var(--white); margin-bottom: 1.25rem; line-height: 1.1;
}
#scarcity > .scarcity-inner > p {
  font-size: clamp(0.95rem, 1.6vw, 1.1rem); color: rgba(255,255,255,0.88);
  max-width: 560px; margin: 0 auto 2rem; line-height: 1.6;
}
.spots-tracker {
  display: flex; justify-content: center; align-items: center;
  gap: 10px; margin-bottom: 2rem;
}
.spots-tracker-label { font-size: 0.78rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(255,255,255,0.7); }
.spots-dots { display: flex; gap: 8px; }
.spot-dot {
  width: 14px; height: 14px; border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.6);
  background: rgba(255,255,255,0.9);
  transition: all 0.2s;
}
.spot-dot.taken { background: transparent; border-color: rgba(255,255,255,0.3); }
.urgency-pills {
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: 12px; margin-bottom: 2.5rem;
}
.urgency-pill {
  background: rgba(255,255,255,0.15); border: 1.5px solid rgba(255,255,255,0.35);
  color: var(--white); font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase; padding: 8px 18px; border-radius: 100px;
}
.btn-white {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--white); color: var(--ink);
  font-weight: 700; font-size: 0.88rem; letter-spacing: 0.05em;
  text-transform: uppercase; padding: 18px 38px; border-radius: 4px;
  transition: transform 0.2s, box-shadow 0.2s;
}
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 10px 30px rgba(0,0,0,0.15); }

/* ─── GUARANTEE ──────────────────────────────────────── */
#guarantee { background: var(--white); padding: var(--section) var(--pad); border-bottom: 1px solid var(--rule); }
.guarantee-inner { max-width: 760px; margin: 0 auto; text-align: center; }
.guarantee-icon {
  width: 56px; height: 56px; background: var(--teal-pale); border-radius: 50%;
  display: flex; align-items: center; justify-content: center; margin: 0 auto 1.5rem;
}
.guarantee-icon svg { width: 26px; height: 26px; }
#guarantee h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); font-weight: 700; letter-spacing: -0.03em; margin-bottom: 2rem; }
.guarantee-quote {
  background: var(--off-white); border-left: 4px solid var(--teal);
  border-radius: 0 8px 8px 0; padding: 2rem 2.5rem; text-align: left; margin-bottom: 1.5rem;
}
.guarantee-quote p {
  font-family: var(--font-edit); font-style: italic;
  font-size: clamp(1.05rem, 1.8vw, 1.25rem); font-weight: 300;
  line-height: 1.65; color: var(--ink);
}
.guarantee-sub { font-size: 0.9rem; font-weight: 500; color: var(--ink-soft); letter-spacing: 0.02em; }
.guarantee-sub strong { color: var(--teal); font-weight: 700; }

/* ─── FAQ ────────────────────────────────────────────── */
#faq { background: var(--off-white); padding: var(--section) var(--pad); }
.faq-inner { max-width: 780px; margin: 0 auto; }
.faq-header { text-align: center; margin-bottom: 3rem; }
.faq-header h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); font-weight: 700; letter-spacing: -0.03em; line-height: 1.15; }
.faq-header h2 em { font-family: var(--font-edit); font-style: italic; font-weight: 300; color: var(--teal); }
.faq-header p { margin-top: 0.75rem; font-size: 1rem; color: var(--ink-soft); }
.faq-list { display: flex; flex-direction: column; }
.faq-item { border-top: 1px solid var(--rule); }
.faq-item:last-child { border-bottom: 1px solid var(--rule); }
.faq-q {
  width: 100%; background: none; border: none; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center;
  gap: 1rem; padding: 1.4rem 0; text-align: left;
  font-family: var(--font-sans); font-size: 0.98rem; font-weight: 600;
  color: var(--ink); transition: color 0.2s;
}
.faq-q:hover { color: var(--teal); }
.faq-icon {
  width: 22px; height: 22px; background: var(--teal-pale); border-radius: 50%;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  transition: transform 0.3s, background 0.2s;
}
.faq-item.open .faq-icon { transform: rotate(45deg); background: var(--teal); }
.faq-icon svg { width: 10px; height: 10px; }
.faq-item.open .faq-icon svg path { stroke: white; }
.faq-a {
  font-size: 0.93rem; line-height: 1.7; color: var(--ink-soft);
  max-height: 0; overflow: hidden; transition: max-height 0.35s ease, padding 0.35s ease;
}
.faq-a-inner { padding-bottom: 1.5rem; }
.faq-a-inner strong { color: var(--ink); font-weight: 600; }

/* ─── FINAL CTA ──────────────────────────────────────── */
#apply { background: var(--ink); padding: var(--section) var(--pad); }
.apply-inner { max-width: var(--max); margin: 0 auto; text-align: center; }
#apply h2 {
  font-size: clamp(1.8rem, 4vw, 3.2rem); font-weight: 700;
  letter-spacing: -0.03em; color: var(--white);
  margin-bottom: 1rem; line-height: 1.15;
  max-width: 700px; margin-left: auto; margin-right: auto;
}
#apply h2 em { font-family: var(--font-edit); font-style: italic; font-weight: 300; color: var(--teal-light); }
.apply-meta {
  font-size: 0.9rem; font-weight: 500; color: rgba(255,255,255,0.5);
  letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 2.5rem;
}
.apply-meta span { color: var(--teal-light); }
.btn-cta-large {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--teal); color: var(--white);
  font-weight: 700; font-size: 1rem; letter-spacing: 0.05em;
  text-transform: uppercase; padding: 22px 48px; border-radius: 4px;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
}
.btn-cta-large:hover {
  background: var(--teal-deep); transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(29,158,117,0.3);
}
.process-steps {
  display: flex; justify-content: center; flex-wrap: wrap;
  gap: 0; margin-top: 3.5rem;
  border-top: 1px solid rgba(255,255,255,0.08); padding-top: 3rem;
}
.process-step { flex: 1; min-width: 180px; max-width: 260px; text-align: center; padding: 0 1.5rem; position: relative; }
.process-step + .process-step::before {
  content: '→';
  position: absolute; left: 0; top: 1rem;
  transform: translateX(-50%);
  color: var(--teal); font-size: 1rem;
}
.step-num {
  width: 36px; height: 36px; background: rgba(29,158,117,0.15);
  border: 1px solid rgba(29,158,117,0.3); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.8rem; font-weight: 700; color: var(--teal-light);
  margin: 0 auto 0.75rem;
}
.step-title { font-size: 0.82rem; font-weight: 700; color: var(--white); margin-bottom: 0.4rem; text-transform: uppercase; letter-spacing: 0.06em; }
.step-desc { font-size: 0.8rem; line-height: 1.5; color: rgba(255,255,255,0.4); }
.process-label {
  width: 100%; text-align: center; font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.3);
  margin-bottom: 2rem;
}

/* ─── FOOTER ─────────────────────────────────────────── */
footer {
  background: #111110; padding: 2rem var(--pad);
  border-top: 1px solid rgba(255,255,255,0.06);
}
.footer-inner {
  max-width: var(--max); margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 1rem;
}
.footer-meta { font-size: 0.78rem; color: rgba(255,255,255,0.3); letter-spacing: 0.04em; }
.footer-copy { font-size: 0.78rem; color: rgba(255,255,255,0.2); }

/* ─── RESPONSIVE ─────────────────────────────────────── */
@media (max-width: 900px) {
  .pain-grid { grid-template-columns: 1fr; }
  .method-cards { grid-template-columns: repeat(2, 1fr); }
  .who-inner { grid-template-columns: 1fr; }
  .not-for { grid-template-columns: 1fr; }
  .value-inner { grid-template-columns: 1fr; }
  .cred-inner { grid-template-columns: 1fr; }
  .stats { flex-direction: row; flex-wrap: wrap; gap: 2rem; }
  .stat { border-bottom: none; padding-bottom: 0; }
  .photo-placeholder { display: none; }
}
@media (max-width: 640px) {
  .method-cards { grid-template-columns: 1fr; }
  .hero-ctas { flex-direction: column; align-items: stretch; }
  .btn-primary, .btn-secondary { text-align: center; justify-content: center; }
  .method-sauce { flex-direction: column; text-align: center; }
  .footer-inner { flex-direction: column; text-align: center; }
  .logo-name { display: none; }
  .stats { flex-direction: column; }
  .process-steps { flex-direction: column; align-items: center; }
  .process-step + .process-step::before { content: '↓'; top: -1.25rem; left: 50%; }
  .process-step { max-width: 100%; }
  .section-eyebrow { text-align: center; }
  #pain h2, #who .who-left h2, #assessment h2, #method .method-header h2,
  #value .value-left h2, #credibility .cred-left h2, #scarcity h2,
  #guarantee h2, #faq .faq-header h2, #apply h2 { text-align: center; }
  .pain-card { text-align: center; }
  .pain-card::before { margin-left: auto; margin-right: auto; }
  .cred-left { text-align: center; }
  .ben-photo { margin-left: auto; margin-right: auto; }
  .stat-num, .stat-label { text-align: center; }
}

/* ─── MODAL ──────────────────────────────────────────── */
.modal-overlay {
  position: fixed; inset: 0; z-index: 1000;
  background: rgba(0,0,0,0.55);
  backdrop-filter: blur(4px);
  display: flex; align-items: center; justify-content: center;
  padding: 1.5rem;
  opacity: 0; transition: opacity 0.25s ease;
}
.modal-overlay.open { opacity: 1; }
.modal-overlay[hidden] { display: none; }
.modal-box {
  background: var(--white); border-radius: 8px;
  max-width: 460px; width: 100%; padding: 2.5rem;
  position: relative;
  transform: translateY(24px); transition: transform 0.25s ease;
}
.modal-overlay.open .modal-box { transform: translateY(0); }
.modal-close {
  position: absolute; top: 1rem; right: 1rem;
  background: none; border: none; cursor: pointer;
  width: 32px; height: 32px; border-radius: 4px;
  display: flex; align-items: center; justify-content: center;
  color: var(--ink-soft); transition: color 0.2s, background 0.2s;
}
.modal-close:hover { color: var(--ink); background: var(--off-white); }
.modal-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--teal-pale); border: 1px solid var(--teal-light);
  color: var(--teal-deep); font-size: 0.68rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 5px 12px; border-radius: 100px; margin-bottom: 1.25rem;
}
.modal-box h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 1.9rem);
  font-weight: 700; letter-spacing: -0.02em;
  line-height: 1.15; margin-bottom: 0.6rem;
}
.modal-intro {
  font-size: 0.88rem; color: var(--ink-soft);
  line-height: 1.6; margin-bottom: 1.75rem;
}
.form-group { display: flex; flex-direction: column; gap: 0.4rem; margin-bottom: 1rem; }
.form-group label {
  font-size: 0.75rem; font-weight: 600;
  letter-spacing: 0.05em; text-transform: uppercase; color: var(--ink);
}
.form-group input {
  font-family: var(--font-sans); font-size: 0.95rem; color: var(--ink);
  border: 1.5px solid var(--rule); border-radius: 4px;
  padding: 12px 14px; outline: none; transition: border-color 0.2s;
  width: 100%;
}
.form-group input:focus { border-color: var(--teal); }
.form-group input::placeholder { color: var(--ink-soft); opacity: 0.55; }
.btn-modal-submit {
  width: 100%; margin-top: 0.5rem;
  background: var(--teal); color: var(--white);
  font-family: var(--font-sans); font-weight: 600;
  font-size: 0.88rem; letter-spacing: 0.05em; text-transform: uppercase;
  border: none; border-radius: 4px; padding: 16px;
  cursor: pointer; transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
}
.btn-modal-submit:hover { background: var(--teal-deep); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(29,158,117,0.25); }
.btn-modal-submit:disabled { opacity: 0.6; cursor: not-allowed; transform: none; box-shadow: none; }
.modal-note {
  text-align: center; font-size: 0.75rem;
  color: var(--ink-soft); margin-top: 0.75rem;
  display: flex; align-items: center; justify-content: center; gap: 5px;
}
.modal-error {
  font-size: 0.82rem; color: #dc2626;
  margin-top: 0.5rem; text-align: center; line-height: 1.5;
}
.modal-success { text-align: center; padding: 0.5rem 0; }
.modal-success-icon {
  width: 56px; height: 56px; background: var(--teal-pale);
  border-radius: 50%; display: flex; align-items: center;
  justify-content: center; margin: 0 auto 1.25rem;
}
.modal-success h3 {
  font-family: var(--font-display);
  font-size: 1.6rem; font-weight: 700;
  letter-spacing: -0.02em; margin-bottom: 0.6rem;
}
.modal-success p { font-size: 0.9rem; color: var(--ink-soft); line-height: 1.65; }

/* ─── ANIMATIONS ─────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
.fade-up { opacity: 0; animation: fadeUp 0.7s ease forwards; }
.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.22s; }
.delay-3 { animation-delay: 0.36s; }
.delay-4 { animation-delay: 0.5s; }
.delay-5 { animation-delay: 0.64s; }
