/* ─── TOKENS ──────────────────────────────────────────── */
:root {
  --bg:        #09090c;
  --surface:   #0f0f14;
  --surface-2: #16161e;
  --surface-3: #1d1d28;
  --border:    rgba(255,255,255,0.07);
  --border-2:  rgba(255,255,255,0.12);
  --text:      #f1f1f3;
  --text-2:    #a8a8bc;
  --text-3:    #8a8aa2;
  --teal:      #10b981;
  --teal-dim:  #059669;
  --teal-light: #34d399;
  --teal-glow: rgba(16,185,129,0.12);
  --teal-surf: rgba(16,185,129,0.06);
  --teal-border: rgba(16,185,129,0.25);
  --red:       #ef4444;
  --amber:     #f59e0b;
  --font-display: 'Plus Jakarta Sans', sans-serif;
  --font-body:    'Inter', sans-serif;
  --max:       1160px;
  --pad:       clamp(1.5rem, 5vw, 4rem);
  --section:   clamp(5rem, 10vw, 8rem);
  --radius:    10px;
}

/* ─── RESET ──────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  -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(9,9,12,0.8);
  backdrop-filter: blur(20px) saturate(1.5);
  -webkit-backdrop-filter: blur(20px) saturate(1.5);
  border-bottom: 1px solid var(--border);
  padding: 0 var(--pad);
  transition: border-color 0.3s, background 0.3s;
}
nav.scrolled {
  background: rgba(9,9,12,0.95);
  border-bottom-color: var(--border-2);
}
.nav-inner {
  max-width: var(--max); margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  height: 64px;
}
.logo { display: flex; align-items: center; gap: 10px; cursor: pointer; }
.logo-mark {
  width: 34px; height: 34px;
  background: var(--teal); color: #09090c;
  font-family: var(--font-display); font-weight: 800; font-size: 0.72rem;
  letter-spacing: 0.04em; display: flex; align-items: center;
  justify-content: center; border-radius: 8px; flex-shrink: 0;
}
.logo-name {
  font-family: var(--font-display); font-size: 0.88rem;
  font-weight: 700; letter-spacing: -0.01em; color: var(--text);
}
.logo-name span { color: var(--teal); }
.btn-nav {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--teal); color: #09090c;
  font-family: var(--font-body); font-weight: 600; font-size: 0.8rem;
  letter-spacing: 0.04em; text-transform: uppercase;
  padding: 9px 20px; border-radius: 6px;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  cursor: pointer;
}
.btn-nav:hover {
  background: var(--teal-light);
  transform: translateY(-1px);
  box-shadow: 0 4px 20px var(--teal-glow);
}

/* ─── HERO ───────────────────────────────────────────── */
#hero {
  position: relative;
  padding: clamp(5rem, 10vw, 9rem) var(--pad) clamp(4rem, 8vw, 7rem);
  overflow: hidden;
}
.hero-glow {
  position: absolute; pointer-events: none;
  top: -200px; right: -100px;
  width: 700px; height: 700px;
  background: radial-gradient(ellipse at center, rgba(16,185,129,0.08) 0%, transparent 70%);
  border-radius: 50%;
}
.hero-glow-2 {
  position: absolute; pointer-events: none;
  bottom: -100px; left: 10%;
  width: 400px; height: 400px;
  background: radial-gradient(ellipse at center, rgba(16,185,129,0.05) 0%, transparent 70%);
  border-radius: 50%;
}
.hero-inner {
  max-width: var(--max); margin: 0 auto; position: relative;
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: start;
}
.hero-text { min-width: 0; }
.badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--teal-surf);
  border: 1px solid var(--teal-border);
  color: var(--teal-light); font-size: 0.7rem; 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.4; transform: scale(0.75); }
}
#hero h1 {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7.5vw, 6rem);
  font-weight: 800; line-height: 1.0; letter-spacing: -0.03em;
  margin-bottom: 2rem; color: var(--text);
}
#hero h1 em {
  font-style: normal;
  color: var(--teal);
  display: block;
}
.hero-sub {
  font-size: clamp(1rem, 1.8vw, 1.15rem); font-weight: 400;
  line-height: 1.65; color: var(--text-2);
  max-width: 560px; margin-bottom: 2.5rem;
}
.hero-ctas {
  display: flex; flex-wrap: wrap; gap: 12px;
  margin-bottom: 1.5rem; align-items: center;
}
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--teal); color: #09090c;
  font-family: var(--font-body); font-weight: 600; font-size: 0.88rem;
  letter-spacing: 0.04em; text-transform: uppercase;
  padding: 15px 28px; border-radius: var(--radius);
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  cursor: pointer;
}
.btn-primary:hover {
  background: var(--teal-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px var(--teal-glow);
}
.btn-secondary {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: var(--text);
  font-family: var(--font-body); font-weight: 500; font-size: 0.88rem;
  letter-spacing: 0.03em; text-transform: uppercase;
  padding: 14px 24px; border-radius: var(--radius);
  border: 1px solid var(--border-2);
  transition: border-color 0.2s, color 0.2s, transform 0.15s, background 0.2s;
  cursor: pointer;
}
.btn-secondary:hover {
  border-color: var(--teal-border);
  color: var(--teal-light);
  background: var(--teal-surf);
  transform: translateY(-2px);
}
.guarantee-mini {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.78rem; color: var(--text-3); 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 16px; font-size: 0.78rem; font-weight: 400;
  color: var(--text-3); letter-spacing: 0.01em;
}
.hero-cred-sep {
  width: 3px; height: 3px; background: var(--teal);
  border-radius: 50%; flex-shrink: 0; opacity: 0.5;
}

/* ─── HERO PORTRAIT ──────────────────────────────────── */
.hero-portrait { padding-top: 0.5rem; }
.hero-portrait-frame {
  position: relative;
  border: 1px solid var(--border-2);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 0 0 1px var(--teal-border),
              0 0 60px rgba(16,185,129,0.06),
              inset 0 0 0 1px rgba(255,255,255,0.04);
}
.hero-portrait-img {
  width: 100%; aspect-ratio: 3/4;
  object-fit: cover; object-position: center top;
  display: block;
  filter: grayscale(15%);
}
.hero-portrait-caption {
  display: flex; justify-content: space-between; align-items: center;
  padding: 0.75rem 1rem;
  background: var(--surface-2);
  border-top: 1px solid var(--border);
  font-size: 0.68rem; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--text-3);
}
.hero-portrait-caption span:first-child { color: var(--text-2); font-weight: 500; }

/* ─── PAIN ───────────────────────────────────────────── */
#pain {
  background: var(--surface);
  padding: var(--section) var(--pad);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.pain-inner { max-width: var(--max); margin: 0 auto; }
.section-eyebrow {
  font-size: 0.7rem; font-weight: 600; letter-spacing: 0.14em;
  text-transform: uppercase; margin-bottom: 1.25rem;
  font-family: var(--font-body);
}
.eyebrow-teal { color: var(--teal); }
.eyebrow-muted { color: var(--text-3); }
#pain h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.8rem); font-weight: 800;
  letter-spacing: -0.03em; color: var(--text);
  margin-bottom: 3rem; max-width: 680px; line-height: 1.05;
}
#pain h2 em {
  font-style: normal;
  color: var(--teal);
}
.pain-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1px; background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 3rem;
}
.pain-card {
  background: var(--surface-2); padding: 2.5rem 2rem;
  position: relative; transition: background 0.2s;
}
.pain-card:hover { background: var(--surface-3); }
.pain-card-line {
  display: block; width: 28px; height: 2px;
  background: var(--teal); margin-bottom: 1.25rem;
  border-radius: 2px;
}
.pain-card p {
  font-weight: 500;
  font-size: clamp(1rem, 1.6vw, 1.15rem);
  line-height: 1.5; color: var(--text);
}
.pain-card p em {
  font-style: normal;
  color: var(--teal-light); display: block;
  margin-top: 0.75rem;
  font-size: clamp(1rem, 1.8vw, 1.3rem);
  font-weight: 300; line-height: 1.3;
}
.pain-close {
  font-size: clamp(1rem, 2vw, 1.4rem); font-weight: 400;
  color: var(--text-2); line-height: 1.55;
  border-left: 2px solid var(--teal); padding-left: 1.25rem;
  max-width: 720px;
}
.pain-close em {
  color: var(--text); font-style: normal; font-weight: 600;
}

/* ─── WHO ────────────────────────────────────────────── */
#who { background: var(--bg); 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-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem); font-weight: 800;
  letter-spacing: -0.03em; line-height: 1.1; color: var(--text);
}
.who-left h2 em { font-style: normal; color: var(--teal); }
.who-left p {
  margin-top: 1.5rem; font-size: 0.95rem; line-height: 1.75; color: var(--text-2);
}
.who-list { list-style: none; display: flex; flex-direction: column; gap: 0; }
.who-list li {
  display: flex; gap: 1rem; align-items: flex-start;
  font-size: 0.95rem; line-height: 1.6; color: var(--text-2);
  padding: 1rem 0; border-bottom: 1px solid var(--border);
}
.who-list li:first-child { padding-top: 0; }
.who-list li:last-child { border-bottom: none; }
.check {
  width: 22px; height: 22px; background: var(--teal-surf);
  border: 1px solid var(--teal-border);
  border-radius: 6px; display: flex; align-items: center;
  justify-content: center; flex-shrink: 0; margin-top: 2px;
}
.check svg { width: 11px; height: 11px; }

/* not-for block */
.not-for {
  max-width: var(--max); margin: 3rem auto 0;
  border-top: 1px solid var(--border); padding-top: 3rem;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 4vw, 4rem); align-items: start;
}
.not-for-label {
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--text-3); margin-bottom: 0.75rem;
}
.not-for-text {
  font-size: clamp(0.95rem, 1.4vw, 1.05rem); font-weight: 400;
  line-height: 1.65; color: var(--text-2);
}
.not-for-list { list-style: none; display: flex; flex-direction: column; gap: 0.65rem; }
.not-for-list li {
  display: flex; gap: 0.75rem; align-items: flex-start;
  font-size: 0.9rem; line-height: 1.55; color: var(--text-2);
}
.cross {
  width: 20px; height: 20px;
  background: rgba(239,68,68,0.08);
  border: 1px solid rgba(239,68,68,0.2);
  border-radius: 6px; display: flex; align-items: center;
  justify-content: center; flex-shrink: 0; margin-top: 2px;
}
.cross svg { width: 10px; height: 10px; }

/* ─── ASSESSMENT ─────────────────────────────────────── */
#assessment {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: var(--section) var(--pad);
}
.assessment-inner { max-width: 640px; margin: 0 auto; text-align: center; }
#assessment h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.4rem); font-weight: 800;
  letter-spacing: -0.03em; margin-bottom: 1rem; line-height: 1.1;
  color: var(--text);
}
#assessment h2 em { font-style: normal; color: var(--teal); }
#assessment p {
  font-size: 0.98rem; line-height: 1.7; color: var(--text-2); margin-bottom: 2rem;
}
.btn-teal {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--teal); color: #09090c;
  font-family: var(--font-body); font-weight: 600; font-size: 0.88rem;
  letter-spacing: 0.04em; text-transform: uppercase;
  padding: 15px 30px; border-radius: var(--radius);
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  cursor: pointer;
}
.btn-teal:hover {
  background: var(--teal-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px var(--teal-glow);
}
.assessment-note {
  margin-top: 1rem; font-size: 0.78rem; color: var(--text-3);
}

/* ─── 4R METHOD ──────────────────────────────────────── */
#method { background: var(--bg); 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-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem); font-weight: 800;
  letter-spacing: -0.03em; margin-bottom: 1rem; line-height: 1.05;
  color: var(--text);
}
.method-header h2 em { font-style: normal; color: var(--teal); }
.method-header p {
  font-size: 0.98rem; color: var(--text-2); max-width: 480px; margin: 0 auto; line-height: 1.65;
}
.method-cards {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1px; background: var(--border);
  border: 1px solid var(--border); border-radius: var(--radius);
  overflow: hidden; margin-bottom: 1.5rem;
}
.method-card {
  background: var(--surface-2); padding: 2rem 1.5rem;
  position: relative; overflow: hidden;
  transition: background 0.2s;
  cursor: default;
}
.method-card:hover { background: var(--surface-3); }
.method-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 2px; background: var(--teal);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.3s ease;
}
.method-card:hover::before { transform: scaleX(1); }
.method-num {
  position: absolute; bottom: -0.1em; right: -0.02em;
  font-family: var(--font-display);
  font-size: clamp(5rem, 9vw, 8rem);
  font-weight: 800; letter-spacing: -0.04em;
  color: var(--teal); opacity: 0.05;
  line-height: 1; pointer-events: none; user-select: none;
}
.method-tag {
  display: inline-block;
  font-size: 0.65rem; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--teal);
  margin-bottom: 1rem;
}
.method-title {
  font-family: var(--font-display);
  font-size: 1.05rem; font-weight: 700; letter-spacing: -0.01em;
  margin-bottom: 0.75rem; color: var(--text); position: relative; z-index: 1;
}
.method-desc {
  font-size: 0.86rem; line-height: 1.65; color: var(--text-2);
  position: relative; z-index: 1;
}
.method-sauce {
  background: var(--surface-2);
  border: 1px solid var(--teal-border);
  border-radius: var(--radius); padding: 1.75rem 2rem;
  display: flex; align-items: center; gap: 1.5rem;
  position: relative; overflow: hidden;
}
.method-sauce::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(ellipse at top left, var(--teal-glow) 0%, transparent 60%);
  pointer-events: none;
}
.sauce-icon {
  font-size: 1.2rem; flex-shrink: 0; color: var(--teal);
  position: relative; z-index: 1;
}
.sauce-text {
  font-size: clamp(0.92rem, 1.5vw, 1.05rem); font-weight: 400;
  color: var(--text-2); line-height: 1.55; position: relative; z-index: 1;
}
.sauce-text strong { font-weight: 700; color: var(--text); }

/* ─── VALUE STACK ────────────────────────────────────── */
#value { background: var(--surface); padding: var(--section) var(--pad); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.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-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.4rem); font-weight: 800;
  letter-spacing: -0.03em; line-height: 1.1; margin-bottom: 1rem; color: var(--text);
}
.value-left h2 em { font-style: normal; color: var(--teal); }
.value-left p { font-size: 0.95rem; line-height: 1.75; color: var(--text-2); margin-bottom: 2rem; }
.price-anchor {
  background: var(--teal-surf);
  border: 1px solid var(--teal-border);
  border-radius: var(--radius); padding: 1.5rem 1.75rem; margin-bottom: 1.5rem;
  position: relative; overflow: hidden;
}
.price-anchor::before {
  content: '';
  position: absolute; top: 0; left: 0; bottom: 0; width: 3px;
  background: var(--teal); border-radius: 3px 0 0 3px;
}
.price-anchor-label {
  font-size: 0.7rem; font-weight: 600; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--teal); margin-bottom: 0.5rem;
}
.price-big {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 4vw, 3.2rem); font-weight: 800;
  letter-spacing: -0.04em; color: var(--text); line-height: 1; margin-bottom: 0.4rem;
}
.price-big span { font-size: 1.1rem; font-weight: 500; color: var(--teal); }
.price-note { font-size: 0.82rem; color: var(--text-3); line-height: 1.55; }
.price-note strong { color: var(--text-2); font-weight: 600; }
.value-table { width: 100%; border-collapse: collapse; }
.value-table tr { border-bottom: 1px solid var(--border); transition: background 0.15s; }
.value-table tr:hover { background: var(--surface-2); }
.value-table td { padding: 0.9rem 0.5rem; font-size: 0.9rem; line-height: 1.45; vertical-align: middle; }
.value-table td:first-child { color: var(--text-2); padding-left: 0; }
.value-table td:last-child { text-align: right; font-weight: 600; color: var(--text); padding-right: 0; white-space: nowrap; }
.value-table tr.bonus td:first-child { color: var(--teal-light); }
.value-table tr.bonus td:last-child { color: var(--teal); }
.bonus-tag {
  display: inline-block; background: var(--teal-surf);
  border: 1px solid var(--teal-border);
  color: var(--teal); font-size: 0.6rem; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  padding: 2px 7px; border-radius: 4px; margin-right: 6px;
  vertical-align: middle;
}
.value-table tr.total-row td {
  padding-top: 1.25rem; font-weight: 700; font-size: 0.95rem;
  color: var(--text); border-bottom: none; border-top: 1px solid var(--border-2);
}
.value-table tr.founding-row td {
  padding-top: 0.75rem;
  font-family: var(--font-display);
  font-size: 1.4rem; font-weight: 800;
  color: var(--teal); border-bottom: none;
}
.value-cta-btn {
  display: block; text-align: center;
  background: var(--teal); color: #09090c;
  font-family: var(--font-body); font-weight: 600; font-size: 0.88rem;
  letter-spacing: 0.04em; text-transform: uppercase;
  padding: 15px 24px; border-radius: var(--radius);
  margin-top: 1.75rem;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  cursor: pointer;
}
.value-cta-btn:hover {
  background: var(--teal-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px var(--teal-glow);
}
.value-guarantee-mini {
  display: flex; align-items: center; gap: 6px; justify-content: center;
  font-size: 0.76rem; color: var(--text-3); margin-top: 0.75rem;
}
.value-guarantee-mini strong { color: var(--teal); font-weight: 600; }

/* ─── CREDIBILITY ────────────────────────────────────── */
#credibility { background: var(--bg); 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-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem); font-weight: 800;
  letter-spacing: -0.03em; line-height: 1.1; color: var(--text); margin-bottom: 2rem;
}
.cred-left h2 em { font-style: normal; color: var(--teal); }
.ben-photo {
  width: 100%; max-width: 280px; aspect-ratio: 3/4;
  object-fit: cover; object-position: center top;
  border-radius: var(--radius);
  margin-bottom: 1.5rem; display: block;
  border: 1px solid var(--border-2);
  box-shadow: 0 0 0 1px var(--teal-border),
              0 20px 60px rgba(16,185,129,0.08);
  filter: grayscale(10%);
}
.stats { display: flex; flex-direction: column; gap: 0; }
.stat {
  padding: 1rem 0;
  border-bottom: 1px solid var(--border);
}
.stat:last-child { border-bottom: none; padding-bottom: 0; }
.stat:first-child { padding-top: 0; }
.stat-num {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 3.8rem); font-weight: 800;
  letter-spacing: -0.04em; color: var(--teal); line-height: 1;
  margin-bottom: 0.2rem;
}
.stat-label {
  font-size: 0.76rem; font-weight: 500; color: var(--text-3);
  letter-spacing: 0.04em; text-transform: uppercase;
}
.cred-right { padding-top: 0.5rem; }
.cred-quote {
  font-size: clamp(1.05rem, 1.8vw, 1.3rem); font-weight: 400;
  line-height: 1.7; color: var(--text-2);
  margin-bottom: 2.5rem; padding-left: 1.5rem;
  border-left: 2px solid var(--teal);
}
.cred-items { display: flex; flex-direction: column; gap: 0; }
.cred-item {
  display: flex; gap: 12px; align-items: flex-start;
  padding: 1rem 0; border-bottom: 1px solid var(--border);
}
.cred-item:last-child { border-bottom: none; }
.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.9rem; line-height: 1.6; color: var(--text-2); }
.cred-item p strong { color: var(--text); 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-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem); font-weight: 800;
  letter-spacing: -0.03em; color: #09090c; margin-bottom: 1.25rem; line-height: 1.05;
}
#scarcity > .scarcity-inner > p {
  font-size: clamp(0.95rem, 1.5vw, 1.05rem); color: rgba(9,9,12,0.75);
  max-width: 540px; margin: 0 auto 2rem; line-height: 1.65;
}
.spots-tracker {
  display: flex; justify-content: center; align-items: center;
  gap: 10px; margin-bottom: 2rem;
}
.spots-tracker-label {
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.08em;
  text-transform: uppercase; color: rgba(9,9,12,0.6);
}
.spots-dots { display: flex; gap: 8px; }
.spot-dot {
  width: 12px; height: 12px; border-radius: 50%;
  border: 2px solid rgba(9,9,12,0.4);
  background: rgba(9,9,12,0.8);
  transition: all 0.2s;
}
.spot-dot.taken { background: transparent; border-color: rgba(9,9,12,0.2); }
.urgency-pills {
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: 10px; margin-bottom: 2.5rem;
}
.urgency-pill {
  background: rgba(9,9,12,0.12); border: 1px solid rgba(9,9,12,0.2);
  color: #09090c; font-size: 0.7rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 7px 16px; border-radius: 100px;
}
.btn-dark {
  display: inline-flex; align-items: center; gap: 8px;
  background: #09090c; color: var(--teal);
  font-family: var(--font-body); font-weight: 700; font-size: 0.88rem;
  letter-spacing: 0.05em; text-transform: uppercase;
  padding: 16px 34px; border-radius: var(--radius);
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
  cursor: pointer;
}
.btn-dark:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.25);
  background: #0f0f14;
}

/* ─── GUARANTEE ──────────────────────────────────────── */
#guarantee {
  background: var(--surface);
  padding: var(--section) var(--pad);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.guarantee-inner { max-width: 720px; margin: 0 auto; text-align: center; }
.guarantee-icon {
  width: 54px; height: 54px;
  background: var(--teal-surf);
  border: 1px solid var(--teal-border);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.5rem;
}
.guarantee-icon svg { width: 26px; height: 26px; }
#guarantee h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.4rem); font-weight: 800;
  letter-spacing: -0.03em; margin-bottom: 2rem; color: var(--text);
}
.guarantee-quote {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-left: 2px solid var(--teal);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 1.75rem 2rem; text-align: left; margin-bottom: 1.5rem;
}
.guarantee-quote p {
  font-size: clamp(1rem, 1.6vw, 1.15rem); font-weight: 400;
  line-height: 1.7; color: var(--text-2);
}
.guarantee-sub {
  font-size: 0.88rem; font-weight: 500; color: var(--text-3); letter-spacing: 0.01em;
}
.guarantee-sub strong { color: var(--teal); font-weight: 700; }

/* ─── FAQ ────────────────────────────────────────────── */
#faq { background: var(--bg); padding: var(--section) var(--pad); }
.faq-inner { max-width: 740px; margin: 0 auto; }
.faq-header { text-align: center; margin-bottom: 3rem; }
.faq-header h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem); font-weight: 800;
  letter-spacing: -0.03em; line-height: 1.1; color: var(--text);
}
.faq-header h2 em { font-style: normal; color: var(--teal); }
.faq-header p { margin-top: 0.75rem; font-size: 0.95rem; color: var(--text-2); }
.faq-list { display: flex; flex-direction: column; }
.faq-item { border-top: 1px solid var(--border); }
.faq-item:last-child { border-bottom: 1px solid var(--border); }
.faq-q {
  width: 100%; background: none; border: none; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center;
  gap: 1rem; padding: 1.35rem 0; text-align: left;
  font-family: var(--font-body); font-size: 0.95rem; font-weight: 500;
  color: var(--text); transition: color 0.2s;
}
.faq-q:hover { color: var(--teal); }
.faq-icon {
  width: 22px; height: 22px;
  background: var(--surface-2);
  border: 1px solid var(--border-2);
  border-radius: 6px;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  transition: transform 0.3s, background 0.2s, border-color 0.2s;
}
.faq-item.open .faq-icon {
  transform: rotate(45deg);
  background: var(--teal-surf);
  border-color: var(--teal-border);
}
.faq-icon svg { width: 10px; height: 10px; }
.faq-item.open .faq-icon svg path { stroke: var(--teal); }
.faq-a {
  font-size: 0.9rem; line-height: 1.75; color: var(--text-2);
  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(--text); font-weight: 600; }

/* ─── FINAL CTA ──────────────────────────────────────── */
#apply {
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: var(--section) var(--pad);
  position: relative; overflow: hidden;
}
#apply::before {
  content: '';
  position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: 800px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--teal), transparent);
}
.apply-inner { max-width: var(--max); margin: 0 auto; text-align: center; position: relative; }
#apply h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 3rem); font-weight: 800;
  letter-spacing: -0.03em; color: var(--text);
  margin-bottom: 1rem; line-height: 1.1;
  max-width: 680px; margin-left: auto; margin-right: auto;
}
#apply h2 em { font-style: normal; color: var(--teal); }
.apply-meta {
  font-size: 0.82rem; font-weight: 500; color: var(--text-3);
  letter-spacing: 0.08em; 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: #09090c;
  font-family: var(--font-body); font-weight: 700; font-size: 1rem;
  letter-spacing: 0.04em; text-transform: uppercase;
  padding: 20px 44px; border-radius: var(--radius);
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  cursor: pointer;
}
.btn-cta-large:hover {
  background: var(--teal-light);
  transform: translateY(-3px);
  box-shadow: 0 16px 48px var(--teal-glow);
}
.process-steps {
  display: flex; justify-content: center; flex-wrap: wrap;
  gap: 0; margin-top: 4rem;
  border-top: 1px solid var(--border); 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: 0.8rem;
  transform: translateX(-50%);
  color: var(--teal); font-size: 0.9rem; opacity: 0.5;
}
.step-num {
  width: 34px; height: 34px;
  background: var(--teal-surf);
  border: 1px solid var(--teal-border);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-size: 0.78rem; font-weight: 800; color: var(--teal);
  margin: 0 auto 0.75rem;
}
.step-title {
  font-size: 0.78rem; font-weight: 700; color: var(--text);
  margin-bottom: 0.4rem; text-transform: uppercase; letter-spacing: 0.06em;
}
.step-desc { font-size: 0.78rem; line-height: 1.55; color: var(--text-3); }
.process-label {
  width: 100%; text-align: center; font-size: 0.68rem; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-3);
  margin-bottom: 2rem;
}

/* ─── FOOTER ─────────────────────────────────────────── */
footer {
  background: var(--bg); padding: 1.75rem var(--pad);
  border-top: 1px solid var(--border);
}
.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.76rem; color: var(--text-3); letter-spacing: 0.04em; }
.footer-copy { font-size: 0.76rem; color: var(--text-3); }

/* ─── RESPONSIVE ─────────────────────────────────────── */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-portrait { display: none; }
  .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: 0 2rem; }
  .stat { border-bottom: 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.2rem; left: 50%; }
  .process-step { max-width: 100%; }
  .section-eyebrow { text-align: center; }
  #hero h1 { font-size: clamp(2.2rem, 9vw, 3rem); }
  .badge { font-size: 0.6rem; letter-spacing: 0.06em; padding: 5px 10px; }
}

/* ─── MODAL ──────────────────────────────────────────── */
.modal-overlay {
  position: fixed; inset: 0; z-index: 1000;
  background: rgba(0,0,0,0.75);
  backdrop-filter: blur(8px);
  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(--surface-2);
  border: 1px solid var(--border-2);
  border-radius: 14px;
  max-width: 440px; width: 100%; padding: 2.5rem;
  position: relative;
  transform: translateY(24px); transition: transform 0.25s ease;
  box-shadow: 0 0 0 1px var(--border), 0 40px 80px rgba(0,0,0,0.5);
}
.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: 6px;
  display: flex; align-items: center; justify-content: center;
  color: var(--text-2); transition: color 0.2s, background 0.2s;
}
.modal-close:hover { color: var(--text); background: var(--surface-3); }
.modal-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--teal-surf);
  border: 1px solid var(--teal-border);
  color: var(--teal); font-size: 0.66rem; 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.4rem, 3vw, 1.8rem);
  font-weight: 800; letter-spacing: -0.02em;
  line-height: 1.15; margin-bottom: 0.6rem; color: var(--text);
}
.modal-intro {
  font-size: 0.86rem; color: var(--text-2);
  line-height: 1.65; margin-bottom: 1.75rem;
}
.form-group { display: flex; flex-direction: column; gap: 0.4rem; margin-bottom: 1rem; }
.form-group label {
  font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.06em; text-transform: uppercase; color: var(--text-2);
}
.form-group input {
  font-family: var(--font-body); font-size: 0.95rem; color: var(--text);
  background: var(--surface);
  border: 1px solid var(--border-2); border-radius: 8px;
  padding: 11px 14px; outline: none; transition: border-color 0.2s;
  width: 100%;
}
.form-group input:focus { border-color: var(--teal-border); }
.form-group input::placeholder { color: var(--text-3); }
.btn-modal-submit {
  width: 100%; margin-top: 0.5rem;
  background: var(--teal); color: #09090c;
  font-family: var(--font-body); font-weight: 600;
  font-size: 0.88rem; letter-spacing: 0.04em; text-transform: uppercase;
  border: none; border-radius: 8px; padding: 14px;
  cursor: pointer; transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
}
.btn-modal-submit:hover {
  background: var(--teal-light);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px var(--teal-glow);
}
.btn-modal-submit:disabled { opacity: 0.5; cursor: not-allowed; transform: none; box-shadow: none; }
.modal-note {
  text-align: center; font-size: 0.73rem;
  color: var(--text-3); margin-top: 0.75rem;
  display: flex; align-items: center; justify-content: center; gap: 5px;
}
.modal-error {
  font-size: 0.82rem; color: var(--red);
  margin-top: 0.5rem; text-align: center; line-height: 1.5;
}
.modal-success { text-align: center; padding: 0.5rem 0; }
.modal-success-icon {
  width: 54px; height: 54px;
  background: var(--teal-surf);
  border: 1px solid var(--teal-border);
  border-radius: 14px; display: flex; align-items: center;
  justify-content: center; margin: 0 auto 1.25rem;
}
.modal-success h3 {
  font-family: var(--font-display);
  font-size: 1.5rem; font-weight: 800;
  letter-spacing: -0.02em; margin-bottom: 0.6rem; color: var(--text);
}
.modal-success p { font-size: 0.88rem; color: var(--text-2); line-height: 1.65; }

/* ─── ANIMATIONS ─────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes glowPulse {
  0%, 100% { opacity: 0.08; transform: scale(1); }
  50%       { opacity: 0.14; transform: scale(1.08); }
}
@keyframes glowPulse2 {
  0%, 100% { opacity: 0.05; transform: scale(1); }
  50%       { opacity: 0.1;  transform: scale(1.12); }
}
@keyframes ctaGlow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(16,185,129,0); }
  50%       { box-shadow: 0 0 24px 4px rgba(16,185,129,0.25); }
}
@keyframes lineGrow {
  from { transform: scaleX(0); }
  to   { transform: scaleX(1); }
}

/* Hero orb breathing */
.hero-glow  { animation: glowPulse  8s ease-in-out infinite; }
.hero-glow-2 { animation: glowPulse2 10s ease-in-out infinite 2s; }

/* CTA glow pulse on the big button */
.btn-cta-large { animation: ctaGlow 3s ease-in-out infinite 1s; }

/* Scroll-reveal base state — set by JS */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.65s cubic-bezier(0.16,1,0.3,1),
              transform 0.65s cubic-bezier(0.16,1,0.3,1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger delays for child reveals */
.reveal-stagger > .reveal:nth-child(1) { transition-delay: 0s; }
.reveal-stagger > .reveal:nth-child(2) { transition-delay: 0.08s; }
.reveal-stagger > .reveal:nth-child(3) { transition-delay: 0.16s; }
.reveal-stagger > .reveal:nth-child(4) { transition-delay: 0.24s; }
.reveal-stagger > .reveal:nth-child(5) { transition-delay: 0.32s; }
.reveal-stagger > .reveal:nth-child(6) { transition-delay: 0.4s; }

/* Teal accent line draw-in */
.line-reveal {
  transform-origin: left;
  transform: scaleX(0);
  transition: transform 0.6s cubic-bezier(0.16,1,0.3,1);
}
.line-reveal.visible { transform: scaleX(1); }

.fade-up { opacity: 0; animation: fadeUp 0.65s 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.62s; }

/* ─── FOCUS STATES ───────────────────────────────────── */
:focus-visible {
  outline: 2px solid var(--teal);
  outline-offset: 3px;
}

/* ─── REDUCED MOTION ─────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
}
