/* ─── RESET & BASE ─────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:          #0D0D0D;
  --bg-card:     #171717;
  --bg-card-2:   #1F1F1F;
  --accent:      #FF6B35;
  --accent-dim:  #C4501F;
  --amber:       #FFD166;
  --text:        #F0EDE8;
  --text-muted:  #8A8680;
  --border:      rgba(240,237,232,0.08);
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'DM Sans', system-ui, sans-serif;
}

html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--accent-dim); border-radius: 3px; }

/* ─── TYPOGRAPHY ───────────────────────────────────── */
h1, h2, h3 { font-family: var(--font-display); font-weight: 700; line-height: 1.1; }

/* ─── NAV ──────────────────────────────────────────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 0 clamp(1.5rem, 5vw, 4rem);
  height: 64px;
  display: flex; align-items: center;
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(12px);
  background: rgba(13,13,13,0.85);
}
.nav__inner { display: flex; align-items: center; gap: 1.25rem; }
.nav__logo {
  font-family: var(--font-display);
  font-size: 1.25rem; font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--text);
}
.nav__tagline {
  font-size: 0.75rem; color: var(--text-muted);
  padding-left: 1.25rem; border-left: 1px solid var(--border);
}

/* ─── SECTION HELPERS ───────────────────────────────── */
.section-label {
  display: inline-block;
  font-size: 0.7rem; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.25rem;
}
.section-heading {
  font-size: clamp(2rem, 5vw, 3.25rem);
  color: var(--text);
  margin-bottom: 4rem;
}

/* ─── HERO ──────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex; flex-direction: column; justify-content: center;
  padding: clamp(5rem, 12vh, 8rem) clamp(1.5rem, 5vw, 4rem) 4rem;
  position: relative; overflow: hidden;
}

.hero__bg { position: absolute; inset: 0; pointer-events: none; }
.hero__bg-shape {
  position: absolute; border-radius: 50%; filter: blur(80px); opacity: 0.12;
}
.hero__bg-shape--1 {
  width: 600px; height: 600px;
  background: var(--accent);
  top: -100px; right: -100px;
}
.hero__bg-shape--2 {
  width: 400px; height: 400px;
  background: var(--amber);
  bottom: 0; left: 10%;
}
.hero__bg-shape--3 {
  width: 300px; height: 300px;
  background: #FF6B35;
  top: 40%; left: -80px;
  opacity: 0.06;
}

.hero__content {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 4rem; align-items: center;
  position: relative; z-index: 1;
}

.hero__badge {
  display: inline-block;
  font-size: 0.7rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--bg); background: var(--accent);
  padding: 0.35rem 0.85rem; border-radius: 2rem;
  margin-bottom: 2rem;
}

.hero__headline {
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 900; line-height: 1.0;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: 2rem;
}
.hero__headline em {
  font-style: italic; color: var(--accent);
}

.hero__sub {
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  color: var(--text-muted);
  max-width: 460px;
  line-height: 1.7;
}

/* hero CTA row */
.hero__cta-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
}

/* buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 1.6rem;
  border-radius: 6px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.15s, box-shadow 0.15s, background 0.15s, border-color 0.15s;
  cursor: pointer;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn--primary {
  background: var(--accent);
  color: #0D0D0D;
  border: 2px solid var(--accent);
  box-shadow: 0 4px 20px rgba(255,107,53,0.25);
}
.btn--primary:hover {
  background: #ff7d4d;
  box-shadow: 0 8px 28px rgba(255,107,53,0.35);
}

.btn--ghost {
  background: transparent;
  color: var(--text);
  border: 2px solid rgba(240,237,232,0.2);
}
.btn--ghost:hover {
  border-color: rgba(240,237,232,0.5);
  background: rgba(240,237,232,0.05);
}

/* A/B variant: Results — warm amber accent, distinct from speed/primary */
.btn--results {
  background: transparent;
  color: var(--amber);
  border: 2px solid var(--amber);
  box-shadow: 0 0 16px rgba(255,209,102,0.12);
}
.btn--results:hover {
  background: rgba(255,209,102,0.08);
  box-shadow: 0 4px 24px rgba(255,209,102,0.2);
  transform: translateY(-2px);
}

/* CTA row with variant badge */
.hero__cta-row { position: relative; }
.hero__cta-row .cta-tag {
  position: absolute;
  top: -1.6rem;
  left: 0;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.2rem 0.6rem;
  border-radius: 2rem;
}
.hero__cta-row[data-variant="speed"] .cta-tag {
  background: rgba(255,107,53,0.15);
  color: var(--accent);
  border: 1px solid rgba(255,107,53,0.3);
}
.hero__cta-row[data-variant="results"] .cta-tag {
  background: rgba(255,209,102,0.12);
  color: var(--amber);
  border: 1px solid rgba(255,209,102,0.25);
}

/* phone mock */
.hero__phone-mock {
  display: flex; justify-content: center; align-items: center;
}
.phone-frame {
  width: 260px; height: 420px;
  background: #1A1A1A;
  border-radius: 36px;
  border: 2px solid rgba(255,255,255,0.1);
  padding: 16px;
  box-shadow: 0 40px 80px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,255,255,0.05) inset;
}
.phone-screen {
  width: 100%; height: 100%;
  background: var(--bg-card);
  border-radius: 26px;
  padding: 1.25rem;
  display: flex; flex-direction: column; gap: 1rem;
}
.video-label {
  display: flex; align-items: center; gap: 0.6rem;
  font-size: 0.72rem; color: var(--text-muted);
  font-family: var(--font-body);
  background: var(--bg-card-2);
  padding: 0.6rem 0.85rem;
  border-radius: 8px;
  border: 1px solid var(--border);
}

/* stats */
.hero__stats {
  display: flex; gap: 3rem;
  padding-top: 4rem; padding-bottom: 2rem;
  border-top: 1px solid var(--border);
  margin-top: 4rem;
  position: relative; z-index: 1;
}
.stat { display: flex; flex-direction: column; gap: 0.25rem; }
.stat__number {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 700; color: var(--accent);
}
.stat__label { font-size: 0.8rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.08em; }

/* ─── MANIFESTO ─────────────────────────────────────── */
.manifesto {
  padding: clamp(5rem, 10vh, 8rem) clamp(1.5rem, 5vw, 4rem);
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.manifesto__inner { max-width: 860px; }
.manifesto__label {
  display: inline-block;
  font-size: 0.7rem; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 2rem;
}
.manifesto__heading {
  font-size: clamp(2rem, 5vw, 3.75rem);
  line-height: 1.1; margin-bottom: 2.5rem;
  letter-spacing: -0.02em;
}
.manifesto__body {
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  max-width: 640px;
  line-height: 1.75;
}
.manifesto__body--accent {
  color: var(--text);
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  font-weight: 500;
}

/* ─── PROCESS ───────────────────────────────────────── */
.process {
  padding: clamp(5rem, 10vh, 8rem) clamp(1.5rem, 5vw, 4rem);
}
.process__inner { max-width: 1100px; }
.process__grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.step {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px; padding: 2.5rem 2rem;
}
.step__num {
  font-family: var(--font-display);
  font-size: 0.85rem; font-weight: 700;
  color: var(--accent); margin-bottom: 1.5rem;
  letter-spacing: 0.05em;
}
.step__icon { margin-bottom: 1.25rem; }
.step__title {
  font-family: var(--font-display);
  font-size: 1.35rem; font-weight: 700;
  color: var(--text); margin-bottom: 0.85rem;
}
.step__body {
  font-size: 0.875rem; color: var(--text-muted);
  line-height: 1.65;
}

/* ─── NICHES ────────────────────────────────────────── */
.niches {
  padding: clamp(5rem, 10vh, 8rem) clamp(1.5rem, 5vw, 4rem);
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.niches__inner { max-width: 1100px; }
.niches__grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.niche {
  padding: 1.75rem 1.5rem;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--bg-card-2);
  transition: border-color 0.2s;
}
.niche:hover { border-color: rgba(255,107,53,0.3); }
.niche__icon { margin-bottom: 1.25rem; }
.niche__name {
  font-family: var(--font-display);
  font-size: 1.15rem; font-weight: 700;
  color: var(--text); margin-bottom: 0.6rem;
}
.niche__desc { font-size: 0.82rem; color: var(--text-muted); line-height: 1.6; }

/* ─── PRICING ───────────────────────────────────────── */
.pricing { padding: clamp(5rem, 10vh, 8rem) clamp(1.5rem, 5vw, 4rem); }
.pricing__inner { max-width: 1100px; }
.pricing__cards {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem; margin-bottom: 3rem;
}
.pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px; padding: 2.5rem 2rem;
  position: relative; transition: transform 0.2s, box-shadow 0.2s;
}
.pricing-card:hover { transform: translateY(-4px); }
.pricing-card--featured {
  border-color: rgba(255,107,53,0.4);
  box-shadow: 0 0 40px rgba(255,107,53,0.08);
}
.pricing-card__badge {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  font-size: 0.7rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase;
  background: var(--accent); color: var(--bg);
  padding: 0.3rem 1rem; border-radius: 2rem;
}
.pricing-card__label {
  font-size: 0.7rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--text-muted); margin-bottom: 1rem;
}
.pricing-card__price {
  font-family: var(--font-display);
  font-size: 3rem; font-weight: 900; color: var(--text);
  margin-bottom: 2rem;
  line-height: 1;
}
.pricing-card__price span { font-size: 1.25rem; color: var(--text-muted); font-family: var(--font-body); font-weight: 400; }
.pricing-card__features { list-style: none; margin-bottom: 1.5rem; }
.pricing-card__features li {
  font-size: 0.875rem; color: var(--text-muted);
  padding: 0.4rem 0; border-bottom: 1px solid var(--border);
  display: flex; align-items: center; gap: 0.6rem;
}
.pricing-card__features li::before {
  content: ''; display: inline-block;
  width: 14px; height: 14px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 14 14'%3E%3Ccircle cx='7' cy='7' r='7' fill='%23FF6B35' fill-opacity='0.15'/%3E%3Cpath d='M4.5 7 L6 8.5 L9.5 5' stroke='%23FF6B35' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round' fill='none'/%3E%3C/svg%3E") no-repeat center;
  flex-shrink: 0;
}
.pricing-card__note { font-size: 0.78rem; color: var(--text-muted); font-style: italic; }
.pricing__bottom { font-size: 0.85rem; color: var(--text-muted); max-width: 500px; line-height: 1.6; }

/* ─── CLOSING ───────────────────────────────────────── */
.closing {
  padding: clamp(5rem, 10vh, 8rem) clamp(1.5rem, 5vw, 4rem);
  background: var(--bg-card);
  border-top: 1px solid var(--border);
}
.closing__inner { max-width: 860px; }
.closing__video {
  margin-bottom: 3rem;
}
.closing__video-inner {
  display: flex; align-items: center; gap: 2rem;
}
.closing__play {
  flex-shrink: 0; opacity: 0.7;
  filter: drop-shadow(0 0 20px rgba(255,107,53,0.4));
}
.closing__video-label {
  font-size: 1.1rem; color: var(--text-muted); line-height: 1.6;
}
.closing__heading {
  font-size: clamp(2rem, 5vw, 3.5rem);
  line-height: 1.1; margin-bottom: 2rem;
  letter-spacing: -0.02em;
}
.closing__body {
  font-size: clamp(0.95rem, 1.5vw, 1.05rem);
  color: var(--text-muted);
  max-width: 640px; line-height: 1.75;
  margin-bottom: 1.5rem;
}
.closing__body--accent {
  color: var(--text); font-weight: 500;
}

/* ─── FOOTER ────────────────────────────────────────── */
.footer {
  padding: 3rem clamp(1.5rem, 5vw, 4rem);
  border-top: 1px solid var(--border);
}
.footer__inner { max-width: 860px; }
.footer__logo {
  font-family: var(--font-display);
  font-size: 1.25rem; font-weight: 700;
  display: block; margin-bottom: 0.5rem;
}
.footer__tagline { font-size: 0.875rem; color: var(--text-muted); margin-bottom: 0.5rem; }
.footer__legal { font-size: 0.75rem; color: rgba(138,134,128,0.6); }

/* ─── RESPONSIVE ─────────────────────────────────────── */
@media (max-width: 900px) {
  .hero__content { grid-template-columns: 1fr; }
  .hero__phone-mock { display: none; }
  .process__grid { grid-template-columns: 1fr; }
  .niches__grid { grid-template-columns: 1fr 1fr; }
  .pricing__cards { grid-template-columns: 1fr; }
  .nav__tagline { display: none; }
  .hero__stats { gap: 2rem; }
}
@media (max-width: 640px) {
  .hero__headline { font-size: 3rem; }
  .niches__grid { grid-template-columns: 1fr; }
  .hero__stats { flex-wrap: wrap; gap: 2rem; }
  .stat { min-width: 120px; }
  .closing__video-inner { flex-direction: column; align-items: flex-start; gap: 1rem; }
}