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

:root {
  --bg: #faf9f6;
  --bg-alt: #f0efe9;
  --fg: #1a1a1a;
  --fg-muted: #6b6b6b;
  --accent: #e8920a;
  --accent-hover: #d18409;
  --surface: #ffffff;
  --border: #e2e0d9;
  --font-display: 'Bebas Neue', sans-serif;
  --font-body: 'DM Sans', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* === NAV === */
.nav {
  padding: 20px 32px;
  border-bottom: 1px solid var(--border);
  background: var(--bg);
  position: sticky;
  top: 0;
  z-index: 100;
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: 0.08em;
  color: var(--fg);
  text-decoration: none;
}
.nav-right { display: flex; align-items: center; gap: 24px; }
.nav-link {
  font-size: 13px;
  font-weight: 500;
  color: var(--accent);
  text-decoration: none;
  border: 1px solid var(--accent);
  padding: 7px 16px;
  border-radius: 6px;
  transition: background 0.2s, color 0.2s;
}
.nav-link:hover { background: var(--accent); color: #fff; }
.nav-tag {
  font-size: 13px;
  color: var(--fg-muted);
  font-weight: 400;
}

/* === HERO === */
.hero {
  padding: 80px 32px 60px;
  max-width: 1200px;
  margin: 0 auto;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.hero-eyebrow {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 16px;
}
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(56px, 6vw, 88px);
  line-height: 0.95;
  color: var(--fg);
  margin-bottom: 24px;
  letter-spacing: 0.02em;
}
.hero-sub {
  font-size: 18px;
  color: var(--fg-muted);
  max-width: 460px;
  line-height: 1.65;
  margin-bottom: 40px;
  font-weight: 300;
}
.hero-proof-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.proof-chip {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 12px 18px;
  display: flex;
  flex-direction: column;
}
.proof-num {
  font-family: var(--font-display);
  font-size: 28px;
  color: var(--accent);
  letter-spacing: 0.04em;
}
.proof-label {
  font-size: 11px;
  color: var(--fg-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 2px;
}

/* === PHONE MOCKUP === */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}
.phone-mockup {
  background: var(--fg);
  border-radius: 40px;
  padding: 14px;
  width: 280px;
  box-shadow: 0 40px 80px rgba(0,0,0,0.15), 0 8px 24px rgba(0,0,0,0.1);
}
.phone-screen {
  background: #fff;
  border-radius: 30px;
  overflow: hidden;
  min-height: 540px;
}
.screen-header {
  background: #f5f5f5;
  padding: 14px 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid #eee;
}
.screen-dots {
  display: flex;
  gap: 5px;
}
.screen-dots::before, .screen-dots::after, .screen-dots span {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ddd;
  display: block;
}
.screen-dots::after { background: #ccc; }
.screen-app {
  font-size: 12px;
  font-weight: 600;
  color: var(--fg);
  margin-left: 4px;
}
.screen-content {
  padding: 16px;
}
.post-card {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}
.post-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}
.post-meta { display: flex; flex-direction: column; gap: 2px; }
.post-handle { font-size: 13px; font-weight: 600; color: var(--fg); }
.post-time { font-size: 11px; color: var(--fg-muted); }
.post-image-placeholder {
  background: linear-gradient(135deg, #f0efe9 0%, #e8e6df 100%);
  border-radius: 12px;
  height: 180px;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.post-image-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.image-icon {
  width: 32px;
  height: 32px;
  background: #ccc;
  border-radius: 50%;
}
.image-lines { display: flex; flex-direction: column; gap: 6px; width: 120px; }
.img-line {
  height: 8px;
  background: #bbb;
  border-radius: 4px;
}
.l1 { width: 100%; }
.l2 { width: 75%; }
.l3 { width: 50%; }
.post-caption { display: flex; flex-direction: column; gap: 6px; margin-bottom: 12px; }
.caption-line {
  height: 10px;
  background: #e0ded8;
  border-radius: 5px;
}
.c1 { width: 95%; }
.c2 { width: 85%; }
.c3 { width: 70%; }
.short { width: 45%; }
.post-actions {
  display: flex;
  gap: 16px;
  padding-top: 10px;
  border-top: 1px solid #f0f0f0;
}
.action-icon {
  width: 22px;
  height: 22px;
  background: #e0ded8;
  border-radius: 50%;
}

/* === PROOF STRIP === */
.proof-strip {
  background: var(--fg);
  padding: 36px 32px;
}
.proof-strip-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}
.strip-stat { text-align: center; }
.strip-num {
  font-family: var(--font-display);
  font-size: 42px;
  color: var(--accent);
  letter-spacing: 0.04em;
}
.strip-desc {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  margin-top: 4px;
  font-weight: 300;
}
.strip-divider {
  width: 1px;
  height: 48px;
  background: rgba(255,255,255,0.15);
}

/* === SECTION SHARED === */
.section-eyebrow {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 12px;
}
.section-headline {
  font-family: var(--font-display);
  font-size: clamp(36px, 4vw, 58px);
  line-height: 1;
  color: var(--fg);
  letter-spacing: 0.02em;
}

/* === FEATURES === */
.features {
  padding: 100px 32px;
  max-width: 1200px;
  margin: 0 auto;
}
.features-header { margin-bottom: 64px; }
.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
}
.feature-card {
  background: var(--surface);
  padding: 48px 40px;
  transition: background 0.2s;
}
.feature-card:hover { background: var(--bg); }
.feature-icon {
  width: 48px;
  height: 48px;
  background: var(--accent);
  border-radius: 12px;
  margin-bottom: 20px;
  position: relative;
  overflow: hidden;
}
.fi-social::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 24px;
  height: 24px;
  background: white;
  border-radius: 6px;
  opacity: 0.9;
}
.fi-client::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 18px;
  height: 22px;
  background: white;
  border-radius: 3px;
  opacity: 0.9;
}
.fi-cal::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border: 3px solid white;
  border-radius: 50%;
  width: 22px;
  height: 22px;
  opacity: 0.9;
}
.fi-grow::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-left: 8px solid white;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  opacity: 0.9;
}
.feature-title {
  font-family: var(--font-display);
  font-size: 26px;
  letter-spacing: 0.04em;
  color: var(--fg);
  margin-bottom: 12px;
}
.feature-desc {
  font-size: 15px;
  color: var(--fg-muted);
  line-height: 1.65;
  margin-bottom: 20px;
  font-weight: 300;
}
.feature-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.tag {
  font-size: 11px;
  padding: 4px 10px;
  background: var(--bg-alt);
  color: var(--fg-muted);
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 500;
}

/* === TESTIMONIALS === */
.testimonials {
  padding: 80px 32px 100px;
  background: var(--bg-alt);
}
.testimonials-header {
  max-width: 1200px;
  margin: 0 auto 56px;
}
.testimonials-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial-card {
  background: var(--surface);
  border-radius: 16px;
  padding: 32px;
  border: 1px solid var(--border);
}
.testimonial-quote {
  font-size: 15px;
  color: var(--fg);
  line-height: 1.65;
  margin-bottom: 24px;
  font-style: italic;
  font-weight: 300;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.author-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  flex-shrink: 0;
}
.a1 { background: #c4a882; }
.a2 { background: #82a8c4; }
.a3 { background: #a8c482; }
.author-name { font-size: 14px; font-weight: 600; color: var(--fg); }
.author-title { font-size: 12px; color: var(--fg-muted); margin-top: 2px; }

/* === CLOSING === */
.closing {
  padding: 100px 32px;
  max-width: 1200px;
  margin: 0 auto;
}
.closing-inner { text-align: center; max-width: 680px; margin: 0 auto; }
.closing-eyebrow {
  font-size: 15px;
  color: var(--fg-muted);
  margin-bottom: 20px;
  font-weight: 300;
}
.closing-headline {
  font-family: var(--font-display);
  font-size: clamp(40px, 5vw, 68px);
  line-height: 1;
  color: var(--fg);
  letter-spacing: 0.02em;
  margin-bottom: 24px;
}
.closing-body {
  font-size: 17px;
  color: var(--fg-muted);
  line-height: 1.7;
  margin-bottom: 48px;
  font-weight: 300;
}
.closing-products {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-bottom: 20px;
  flex-wrap: wrap;
}
.product-pill {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--fg);
  color: white;
  padding: 14px 24px;
  border-radius: 100px;
}
.pill-name { font-size: 14px; font-weight: 500; }
.pill-price {
  font-family: var(--font-display);
  font-size: 20px;
  color: var(--accent);
  letter-spacing: 0.04em;
}
.closing-note {
  font-size: 12px;
  color: var(--fg-muted);
  font-weight: 300;
}

/* === FOOTER === */
.footer {
  background: var(--fg);
  color: white;
  padding: 64px 32px 32px;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  margin-bottom: 48px;
}
.footer-logo {
  font-family: var(--font-display);
  font-size: 20px;
  letter-spacing: 0.08em;
  display: block;
  margin-bottom: 12px;
}
.footer-tagline {
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  font-weight: 300;
  line-height: 1.6;
}
.footer-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.footer-col-head {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.4);
  margin-bottom: 14px;
  font-weight: 500;
}
.footer-link {
  display: block;
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  margin-bottom: 8px;
  transition: color 0.2s;
}
.footer-link:hover { color: var(--accent); }
.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px;
}
.footer-bottom p {
  font-size: 12px;
  color: rgba(255,255,255,0.3);
}

/* === STARTER PACK — HERO === */
.sp-hero {
  padding: 80px 32px 64px;
  max-width: 1200px;
  margin: 0 auto;
}
.sp-hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.sp-eyebrow {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 16px;
}
.sp-eyebrow-sm {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--fg-muted);
  font-weight: 600;
  margin-bottom: 12px;
}
.sp-headline {
  font-family: var(--font-display);
  font-size: clamp(40px, 5vw, 64px);
  line-height: 0.95;
  color: var(--fg);
  letter-spacing: 0.02em;
  margin-bottom: 20px;
}
.sp-sub {
  font-size: 17px;
  color: var(--fg-muted);
  line-height: 1.65;
  font-weight: 300;
  margin-bottom: 36px;
}
.sp-cta {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  font-size: 15px;
  padding: 16px 32px;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.2s;
  margin-bottom: 12px;
}
.sp-cta:hover { background: var(--accent-hover); }
.sp-fine {
  font-size: 12px;
  color: var(--fg-muted);
  font-weight: 300;
}

/* Hero card */
.sp-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}
.sp-card-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--fg-muted);
  font-weight: 600;
  margin-bottom: 20px;
}
.sp-list { display: flex; flex-direction: column; gap: 16px; margin-bottom: 28px; }
.sp-item { display: flex; align-items: center; gap: 16px; }
.sp-num {
  font-family: var(--font-display);
  font-size: 28px;
  color: var(--accent);
  letter-spacing: 0.04em;
  width: 48px;
  flex-shrink: 0;
}
.sp-item-label { font-size: 14px; color: var(--fg); font-weight: 400; }
.sp-price-row { display: flex; align-items: baseline; gap: 8px; border-top: 1px solid var(--border); padding-top: 20px; }
.sp-price { font-family: var(--font-display); font-size: 40px; color: var(--fg); letter-spacing: 0.04em; }
.sp-price-note { font-size: 13px; color: var(--fg-muted); font-weight: 300; }

/* === PROBLEM === */
.sp-problem { background: var(--fg); padding: 80px 32px; }
.sp-problem-inner { max-width: 1200px; margin: 0 auto; }
.sp-problem .sp-eyebrow-sm { color: var(--accent); }
.sp-problem .sp-section-headline { color: white; }
.sp-three-col { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 56px; }
.sp-problem-card { padding: 32px; background: rgba(255,255,255,0.05); border-radius: 12px; }
.sp-problem-icon {
  width: 40px; height: 40px;
  border-radius: 10px;
  margin-bottom: 16px;
  position: relative;
  overflow: hidden;
}
.sp-pi-1 { background: var(--accent); }
.sp-pi-1::after {
  content: ''; position: absolute;
  top: 50%; left: 50%; transform: translate(-50%,-50%);
  width: 18px; height: 18px;
  border: 3px solid white; border-radius: 50%;
}
.sp-pi-2 { background: #2a9d8f; }
.sp-pi-2::after {
  content: ''; position: absolute;
  top: 50%; left: 50%; transform: translate(-50%,-50%);
  width: 16px; height: 20px; background: white; border-radius: 4px;
}
.sp-pi-3 { background: #e76f51; }
.sp-pi-3::after {
  content: ''; position: absolute;
  top: 50%; left: 50%; transform: translate(-50%,-50%);
  border-left: 8px solid white; border-top: 5px solid transparent; border-bottom: 5px solid transparent;
}
.sp-problem-title { font-family: var(--font-display); font-size: 20px; letter-spacing: 0.04em; color: white; margin-bottom: 10px; }
.sp-problem-desc { font-size: 14px; color: rgba(255,255,255,0.6); line-height: 1.65; font-weight: 300; }

/* === WHAT'S INSIDE === */
.sp-whats-inside { padding: 80px 32px; }
.sp-inside-inner { max-width: 1200px; margin: 0 auto; }
.sp-section-headline {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1;
  color: var(--fg);
  letter-spacing: 0.02em;
  margin-bottom: 56px;
}
.sp-prompt-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; background: var(--border); border: 1px solid var(--border); border-radius: 16px; overflow: hidden; margin-bottom: 48px; }
.sp-prompt-section { background: var(--surface); padding: 40px; }
.sp-prompt-header { display: flex; align-items: center; gap: 16px; margin-bottom: 16px; }
.sp-prompt-icon { width: 44px; height: 44px; border-radius: 10px; flex-shrink: 0; position: relative; overflow: hidden; }
.sp-si-1 { background: #9b5de5; }
.sp-si-1::after {
  content: ''; position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  width: 20px; height: 20px; background: white; border-radius: 5px;
}
.sp-si-2 { background: #f72585; }
.sp-si-2::after {
  content: ''; position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  width: 16px; height: 20px; background: white; border-radius: 3px;
}
.sp-si-3 { background: #e63946; }
.sp-si-3::after {
  content: ''; position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  border: 3px solid white; border-radius: 50%; width: 18px; height: 18px;
}
.sp-si-4 { background: #2a9d8f; }
.sp-si-4::after {
  content: ''; position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  border-left: 8px solid white; border-top: 5px solid transparent; border-bottom: 5px solid transparent;
}
.sp-prompt-platform { font-family: var(--font-display); font-size: 18px; letter-spacing: 0.04em; color: var(--fg); margin-bottom: 2px; }
.sp-prompt-count { font-size: 12px; color: var(--fg-muted); font-weight: 500; text-transform: uppercase; letter-spacing: 0.08em; }
.sp-prompt-desc { font-size: 14px; color: var(--fg-muted); line-height: 1.65; font-weight: 300; }

.sp-docs-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.sp-doc-card { background: var(--surface); border: 1px solid var(--border); border-radius: 12px; padding: 28px; }
.sp-doc-dot { width: 12px; height: 12px; border-radius: 50%; background: var(--accent); margin-bottom: 12px; }
.sp-doc-dot-2 { background: #9b5de5; }
.sp-doc-dot-3 { background: #2a9d8f; }
.sp-doc-name { font-family: var(--font-display); font-size: 18px; letter-spacing: 0.04em; color: var(--fg); margin-bottom: 8px; }
.sp-doc-desc { font-size: 13px; color: var(--fg-muted); line-height: 1.6; font-weight: 300; }

/* === HOW IT WORKS === */
.sp-how-it-works { background: var(--bg-alt); padding: 80px 32px; }
.sp-hiw-inner { max-width: 1200px; margin: 0 auto; }
.sp-steps { display: flex; flex-direction: column; gap: 0; }
.sp-step { display: flex; align-items: flex-start; gap: 32px; padding: 32px 0; border-bottom: 1px solid var(--border); }
.sp-step:last-child { border-bottom: none; }
.sp-step-num { font-family: var(--font-display); font-size: 36px; color: var(--accent); letter-spacing: 0.04em; width: 56px; flex-shrink: 0; padding-top: 4px; }
.sp-step-title { font-family: var(--font-display); font-size: 22px; letter-spacing: 0.04em; color: var(--fg); margin-bottom: 8px; }
.sp-step-desc { font-size: 14px; color: var(--fg-muted); line-height: 1.65; font-weight: 300; }

/* === PRICING === */
.sp-pricing { padding: 80px 32px; }
.sp-pricing-inner { max-width: 1200px; margin: 0 auto; }
.sp-price-card { display: grid; grid-template-columns: 1fr 1fr; gap: 0; border: 1px solid var(--border); border-radius: 16px; overflow: hidden; margin-top: 48px; }
.sp-price-card-left { padding: 48px; background: var(--surface); }
.sp-price-card-name { font-family: var(--font-display); font-size: 26px; letter-spacing: 0.04em; color: var(--fg); margin-bottom: 28px; }
.sp-price-card-features { display: flex; flex-direction: column; gap: 14px; }
.sp-price-feature { font-size: 15px; color: var(--fg); font-weight: 400; padding-left: 20px; position: relative; }
.sp-price-feature::before {
  content: ''; position: absolute; left: 0; top: 50%; transform: translateY(-50%);
  width: 8px; height: 8px; border-radius: 50%; background: var(--accent);
}
.sp-price-card-right { padding: 48px; background: var(--fg); display: flex; flex-direction: column; align-items: flex-start; justify-content: center; }
.sp-price-big { font-family: var(--font-display); font-size: 64px; color: var(--accent); letter-spacing: 0.04em; line-height: 1; }
.sp-price-once { font-size: 14px; color: rgba(255,255,255,0.5); margin: 8px 0 28px; font-weight: 300; }
.sp-cta-large {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  font-size: 16px;
  padding: 18px 36px;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.2s;
  margin-bottom: 12px;
  width: 100%;
  text-align: center;
}
.sp-cta-large:hover { background: var(--accent-hover); }
.sp-fine-center { font-size: 12px; color: rgba(255,255,255,0.4); font-weight: 300; }
.sp-faq-note { text-align: center; font-size: 13px; color: var(--fg-muted); margin-top: 24px; }
.sp-email-link { color: var(--accent); text-decoration: none; }
.sp-email-link:hover { text-decoration: underline; }

/* === FOOTER CTA === */
.sp-footer-cta { background: var(--bg-alt); padding: 80px 32px; text-align: center; }
.sp-footer-cta-inner { max-width: 600px; margin: 0 auto; }
.sp-footer-tag { font-family: var(--font-display); font-size: 14px; letter-spacing: 0.12em; color: var(--fg-muted); margin-bottom: 16px; }
.sp-footer-headline { font-family: var(--font-display); font-size: clamp(36px, 5vw, 58px); line-height: 1; color: var(--fg); letter-spacing: 0.02em; margin-bottom: 36px; }
.sp-footer-cta .sp-cta { font-size: 16px; padding: 18px 40px; }
.sp-back-link { display: block; margin-top: 20px; font-size: 14px; color: var(--fg-muted); text-decoration: none; }
.sp-back-link:hover { color: var(--accent); }

/* === THANK YOU === */
.ty-wrap { min-height: calc(100vh - 200px); display: flex; align-items: center; justify-content: center; padding: 80px 32px; }
.ty-inner { max-width: 480px; text-align: center; }
.ty-check { margin-bottom: 28px; display: flex; justify-content: center; }
.ty-headline { font-family: var(--font-display); font-size: 48px; color: var(--fg); letter-spacing: 0.04em; margin-bottom: 16px; line-height: 1; }
.ty-sub { font-size: 17px; color: var(--fg-muted); line-height: 1.65; font-weight: 300; margin-bottom: 12px; }
.ty-sub-2 { font-size: 14px; color: var(--fg-muted); line-height: 1.65; font-weight: 300; margin-bottom: 36px; }
.ty-link { color: var(--accent); text-decoration: none; }
.ty-link:hover { text-decoration: underline; }
.ty-home { display: inline-block; font-size: 14px; color: var(--fg-muted); text-decoration: none; }
.ty-home:hover { color: var(--accent); }

/* === MOBILE === */
@media (max-width: 768px) {
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual { display: none; }
  .hero-headline { font-size: 52px; }
  .proof-strip-inner { gap: 24px; }
  .strip-divider { display: none; }
  .features-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 40px; }
  .closing-products { gap: 12px; }
  .product-pill { padding: 12px 18px; }
  .sp-hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .sp-headline { font-size: 40px; }
  .sp-three-col { grid-template-columns: 1fr; }
  .sp-prompt-grid { grid-template-columns: 1fr; }
  .sp-docs-grid { grid-template-columns: 1fr; }
  .sp-price-card { grid-template-columns: 1fr; }
  .sp-step { gap: 20px; }
}

/* ===================================================
   STARTER PACK REDESIGN — dark editorial theme
   =================================================== */

:root {
  --sp-bg: #0b0b0d;
  --sp-bg-alt: #111116;
  --sp-surface: #16161c;
  --sp-surface-2: #1e1e26;
  --sp-fg: #f0ede6;
  --sp-fg-muted: #8a8a96;
  --sp-accent: #e8a020;
  --sp-accent-2: #c4881a;
  --sp-border: #2a2a35;
  --sp-border-light: #38384a;
  --sp-font-display: 'Bebas Neue', sans-serif;
  --sp-font-body: 'DM Sans', sans-serif;
}

/* Override landing page vars inside starter-pack pages */
body { background: var(--sp-bg); }

/* NAV — match dark theme */
.nav {
  background: var(--sp-bg);
  border-bottom-color: var(--sp-border);
}
.nav-logo { color: var(--sp-fg); }
.nav-link { color: var(--sp-accent); border-color: var(--sp-accent); }
.nav-link:hover { background: var(--sp-accent); color: #000; }
.nav-tag { color: var(--sp-fg-muted); }

/* SECTION SHARED */
.sp-eyebrow {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--sp-accent);
  font-weight: 600;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.sp-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--sp-accent);
  display: inline-block;
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(0.85); }
}
.sp-eyebrow-sm {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--sp-fg-muted);
  font-weight: 600;
  margin-bottom: 14px;
}
.sp-section-headline {
  font-family: var(--sp-font-display);
  font-size: clamp(36px, 4.5vw, 60px);
  line-height: 1;
  color: var(--sp-fg);
  letter-spacing: 0.02em;
  margin-bottom: 64px;
}

/* HERO */
.sp-hero {
  padding: 80px 32px 64px;
  max-width: 1200px;
  margin: 0 auto;
}
.sp-hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  min-height: 70vh;
}
.sp-hero-left { position: relative; }
.sp-headline {
  font-family: var(--sp-font-display);
  font-size: clamp(56px, 7vw, 96px);
  line-height: 0.92;
  color: var(--sp-fg);
  letter-spacing: 0.02em;
  margin-bottom: 28px;
}
.sp-sub {
  font-size: 18px;
  color: var(--sp-fg-muted);
  line-height: 1.7;
  font-weight: 300;
  margin-bottom: 40px;
  max-width: 420px;
}
.sp-proof-strip {
  display: inline-flex;
  align-items: baseline;
  gap: 10px;
  background: var(--sp-surface);
  border: 1px solid var(--sp-border);
  border-radius: 100px;
  padding: 12px 22px;
}
.sp-proof-num {
  font-family: var(--sp-font-display);
  font-size: 28px;
  color: var(--sp-accent);
  letter-spacing: 0.04em;
}
.sp-proof-label {
  font-size: 13px;
  color: var(--sp-fg-muted);
  font-weight: 300;
}

/* PRICING CARD */
.sp-pricing-card {
  background: var(--sp-surface);
  border: 1px solid var(--sp-border-light);
  border-radius: 20px;
  padding: 36px;
  position: relative;
  box-shadow: 0 24px 64px rgba(0,0,0,0.5), 0 0 0 1px rgba(232,160,32,0.08) inset;
}
.sp-tier-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}
.sp-tier-badge {
  background: var(--sp-accent);
  color: #000;
  font-family: var(--sp-font-display);
  font-size: 16px;
  letter-spacing: 0.08em;
  padding: 5px 14px;
  border-radius: 6px;
}
.sp-tier-tag {
  font-size: 12px;
  color: var(--sp-fg-muted);
  font-weight: 500;
}
.sp-tier-price {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 16px;
}
.sp-price-early {
  font-family: var(--sp-font-display);
  font-size: 72px;
  color: var(--sp-fg);
  letter-spacing: 0.02em;
  line-height: 1;
}
.sp-price-was {
  font-size: 18px;
  color: var(--sp-fg-muted);
  text-decoration: line-through;
  font-weight: 300;
}
.sp-tier-availability {
  margin-bottom: 28px;
}
.sp-availability-bar {
  width: 100%;
  height: 4px;
  background: var(--sp-border);
  border-radius: 2px;
  overflow: hidden;
  margin-bottom: 8px;
}
.sp-availability-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--sp-accent-2), var(--sp-accent));
  border-radius: 2px;
  transition: width 1s ease;
}
.sp-availability-label {
  font-size: 12px;
  color: var(--sp-fg-muted);
}
.sp-tier-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 24px 0;
  border-top: 1px solid var(--sp-border);
  border-bottom: 1px solid var(--sp-border);
  margin-bottom: 28px;
}
.sp-tier-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: var(--sp-fg);
  font-weight: 400;
}

/* BUY BUTTON — prominent purchase CTA */
.sp-buy-btn-wrap { margin-bottom: 20px; }
.sp-buy-btn {
  display: block;
  width: 100%;
  background: var(--sp-accent);
  color: #000;
  font-family: var(--sp-font-body);
  font-size: 16px;
  font-weight: 700;
  padding: 16px 24px;
  border: none;
  border-radius: 10px;
  text-decoration: none;
  text-align: center;
  cursor: pointer;
  transition: background 0.2s, transform 0.1s;
  letter-spacing: 0.01em;
}
.sp-buy-btn:hover { background: #f0b030; }
.sp-buy-btn:active { transform: scale(0.98); }
.sp-buy-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  color: var(--sp-fg-muted);
  font-size: 12px;
  font-weight: 400;
}
.sp-buy-divider::before,
.sp-buy-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--sp-border);
}
.sp-buy-divider span { white-space: nowrap; }

/* EMAIL CAPTURE */
.sp-email-capture { margin-bottom: 16px; }
.sp-email-label {
  font-size: 13px;
  color: var(--sp-fg-muted);
  font-weight: 500;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.sp-form { display: flex; gap: 10px; margin-bottom: 10px; }
.sp-form input {
  flex: 1;
  background: var(--sp-bg-alt);
  border: 1px solid var(--sp-border-light);
  border-radius: 8px;
  padding: 14px 18px;
  color: var(--sp-fg);
  font-family: var(--sp-font-body);
  font-size: 15px;
  transition: border-color 0.2s;
  outline: none;
}
.sp-form input::placeholder { color: var(--sp-fg-muted); }
.sp-form input:focus { border-color: var(--sp-accent); }
.sp-submit-btn {
  background: var(--sp-accent);
  color: #000;
  font-family: var(--sp-font-body);
  font-size: 15px;
  font-weight: 600;
  padding: 14px 24px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.2s, transform 0.1s;
  white-space: nowrap;
}
.sp-submit-btn:hover { background: #f0b030; }
.sp-submit-btn:active { transform: scale(0.98); }
.sp-submit-btn:disabled { opacity: 0.6; cursor: not-allowed; }
.sp-email-note {
  font-size: 12px;
  color: var(--sp-fg-muted);
  font-weight: 300;
}
.sp-success-msg {
  font-size: 14px;
  color: var(--sp-fg);
  font-weight: 400;
  background: var(--sp-surface-2);
  border: 1px solid var(--sp-border);
  border-radius: 8px;
  padding: 14px 18px;
}
.sp-error-msg {
  font-size: 13px;
  color: #e05a5a;
  margin-top: 8px;
}
.sp-tier-footer {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--sp-fg-muted);
  font-weight: 300;
}

/* STANDARD PRICING STRIP */
.sp-standard-pricing {
  background: var(--sp-bg-alt);
  border-top: 1px solid var(--sp-border);
  border-bottom: 1px solid var(--sp-border);
  padding: 48px 32px;
  text-align: center;
}
.sp-std-inner { max-width: 600px; margin: 0 auto; }
.sp-std-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--sp-fg-muted);
  font-weight: 600;
  margin-bottom: 12px;
}
.sp-std-price {
  font-family: var(--sp-font-display);
  font-size: 80px;
  color: var(--sp-fg);
  letter-spacing: 0.02em;
  line-height: 1;
  margin-bottom: 12px;
}
.sp-std-desc {
  font-size: 15px;
  color: var(--sp-fg-muted);
  font-weight: 300;
  margin-bottom: 28px;
}
.sp-std-cta {
  display: inline-block;
  background: transparent;
  color: var(--sp-accent);
  font-weight: 600;
  font-size: 15px;
  padding: 12px 28px;
  border: 1px solid var(--sp-accent);
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}
.sp-std-cta:hover { background: var(--sp-accent); color: #000; }

/* WHAT'S INSIDE */
.sp-whats-inside {
  padding: 100px 32px;
  background: var(--sp-bg);
}
.sp-inside-inner { max-width: 1200px; margin: 0 auto; }
.sp-prompt-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: var(--sp-border);
  border: 1px solid var(--sp-border);
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 56px;
}
.sp-prompt-section {
  background: var(--sp-surface);
  padding: 36px 40px;
  transition: background 0.2s;
}
.sp-prompt-section:hover { background: var(--sp-surface-2); }
.sp-prompt-header { display: flex; align-items: center; gap: 16px; margin-bottom: 16px; }
.sp-platform-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  flex-shrink: 0;
}
.sp-pi-instagram { background: linear-gradient(135deg, #833ab4 0%, #fd1d1d 50%, #fcb045 100%); position: relative; }
.sp-pi-instagram::after { content: ''; position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); width: 18px; height: 18px; background: white; border-radius: 50%; }
.sp-pi-tiktok { background: #000; border: 1px solid #333; position: relative; }
.sp-pi-tiktok::after { content: ''; position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); width: 14px; height: 18px; background: #fff; border-radius: 3px 3px 0 0; }
.sp-pi-youtube { background: #e63946; position: relative; }
.sp-pi-youtube::after { content: ''; position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); width: 0; height: 0; border-left: 10px solid white; border-top: 7px solid transparent; border-bottom: 7px solid transparent; }
.sp-pi-dm { background: #1a8cd8; position: relative; }
.sp-pi-dm::after { content: ''; position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); width: 18px; height: 14px; border: 2px solid white; border-radius: 3px; }
.sp-prompt-platform { font-family: var(--sp-font-display); font-size: 18px; letter-spacing: 0.04em; color: var(--sp-fg); margin-bottom: 3px; }
.sp-prompt-count { font-size: 11px; color: var(--sp-fg-muted); font-weight: 500; text-transform: uppercase; letter-spacing: 0.1em; }
.sp-prompt-desc { font-size: 14px; color: var(--sp-fg-muted); line-height: 1.65; font-weight: 300; }

/* DOCS */
.sp-docs-section { padding-top: 0; }
.sp-docs-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.sp-doc-card {
  background: var(--sp-surface);
  border: 1px solid var(--sp-border);
  border-radius: 12px;
  padding: 28px;
  transition: border-color 0.2s;
}
.sp-doc-card:hover { border-color: var(--sp-border-light); }
.sp-doc-dot { width: 10px; height: 10px; border-radius: 50%; margin-bottom: 14px; }
.sp-dd-1 { background: var(--sp-accent); }
.sp-dd-2 { background: #9b5de5; }
.sp-dd-3 { background: #2a9d8f; }
.sp-doc-name { font-family: var(--sp-font-display); font-size: 18px; letter-spacing: 0.04em; color: var(--sp-fg); margin-bottom: 8px; }
.sp-doc-desc { font-size: 13px; color: var(--sp-fg-muted); line-height: 1.6; font-weight: 300; }

/* PROBLEM */
.sp-problem {
  background: var(--sp-fg);
  padding: 80px 32px;
}
.sp-problem-inner { max-width: 1200px; margin: 0 auto; }
.sp-problem-headline {
  font-family: var(--sp-font-display);
  font-size: clamp(32px, 4vw, 54px);
  line-height: 1;
  color: #111;
  letter-spacing: 0.02em;
  margin-bottom: 56px;
}
.sp-problem .sp-eyebrow-sm { color: #8a6a30; }
.sp-three-col { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.sp-problem-card { padding: 32px; background: #fff; border: 1px solid #e8e6e1; border-radius: 12px; }
.sp-problem-title { font-family: var(--sp-font-display); font-size: 20px; letter-spacing: 0.04em; color: #111; margin-bottom: 10px; }
.sp-problem-desc { font-size: 14px; color: #555; line-height: 1.65; font-weight: 300; }

/* HOW IT WORKS */
.sp-how-it-works {
  background: var(--sp-bg-alt);
  padding: 80px 32px;
}
.sp-hiw-inner { max-width: 1200px; margin: 0 auto; }
.sp-steps { display: flex; flex-direction: column; gap: 0; }
.sp-step {
  display: flex;
  align-items: flex-start;
  gap: 32px;
  padding: 32px 0;
  border-bottom: 1px solid var(--sp-border);
}
.sp-step:last-child { border-bottom: none; }
.sp-step-num {
  font-family: var(--sp-font-display);
  font-size: 36px;
  color: var(--sp-accent);
  letter-spacing: 0.04em;
  width: 56px;
  flex-shrink: 0;
  padding-top: 4px;
}
.sp-step-title {
  font-family: var(--sp-font-display);
  font-size: 22px;
  letter-spacing: 0.04em;
  color: var(--sp-fg);
  margin-bottom: 8px;
}
.sp-step-desc { font-size: 14px; color: var(--sp-fg-muted); line-height: 1.65; font-weight: 300; }

/* FAQ */
.sp-faq { padding: 80px 32px; background: var(--sp-bg); }
.sp-faq-inner { max-width: 1200px; margin: 0 auto; }
.sp-faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px 64px;
}
.sp-faq-item {}
.sp-faq-q {
  font-family: var(--sp-font-display);
  font-size: 20px;
  letter-spacing: 0.04em;
  color: var(--sp-fg);
  margin-bottom: 10px;
}
.sp-faq-a { font-size: 14px; color: var(--sp-fg-muted); line-height: 1.65; font-weight: 300; }

/* FOOTER CTA */
.sp-footer-cta { background: var(--sp-bg-alt); padding: 80px 32px; text-align: center; border-top: 1px solid var(--sp-border); }
.sp-footer-cta-inner { max-width: 600px; margin: 0 auto; }
.sp-footer-tag {
  font-family: var(--sp-font-display);
  font-size: 13px;
  letter-spacing: 0.15em;
  color: var(--sp-fg-muted);
  margin-bottom: 16px;
}
.sp-footer-headline {
  font-family: var(--sp-font-display);
  font-size: clamp(40px, 5vw, 64px);
  line-height: 1;
  color: var(--sp-fg);
  letter-spacing: 0.02em;
  margin-bottom: 16px;
}
.sp-footer-sub { font-size: 16px; color: var(--sp-fg-muted); margin-bottom: 36px; font-weight: 300; }
.sp-footer-count { font-family: var(--sp-font-display); font-size: 22px; color: var(--sp-accent); }
.sp-footer-cta-btn {
  display: inline-block;
  background: var(--sp-accent);
  color: #000;
  font-weight: 600;
  font-size: 16px;
  padding: 18px 40px;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.2s;
  margin-bottom: 24px;
}
.sp-footer-cta-btn:hover { background: #f0b030; }
.sp-back-link {
  display: inline-block;
  font-size: 14px;
  color: var(--sp-fg-muted);
  text-decoration: none;
}
.sp-back-link:hover { color: var(--sp-accent); }

/* EMAIL GATE (Variant A) */
.sp-pricing-card.gated { display: none; }
.sp-email-gate-msg {
  font-size: 15px;
  color: var(--sp-fg-muted);
  line-height: 1.6;
  margin-bottom: 16px;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .sp-hero-inner { gap: 48px; }
}
@media (max-width: 768px) {
  .sp-hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .sp-headline { font-size: 52px; }
  .sp-prompt-grid { grid-template-columns: 1fr; }
  .sp-docs-grid { grid-template-columns: 1fr; }
  .sp-three-col { grid-template-columns: 1fr; }
  .sp-faq-grid { grid-template-columns: 1fr; }
  .sp-form { flex-direction: column; }
}
@media (max-width: 480px) {
  .sp-hero { padding: 60px 20px 48px; }
  .sp-whats-inside { padding: 64px 20px; }
  .sp-problem { padding: 64px 20px; }
  .sp-how-it-works { padding: 64px 20px; }
  .sp-faq { padding: 64px 20px; }
  .sp-footer-cta { padding: 64px 20px; }
  .sp-pricing-card { padding: 24px; }
  .sp-price-early { font-size: 56px; }
}

@media (max-width: 480px) {
  .hero { padding: 60px 20px 48px; }
  .features { padding: 64px 20px; }
  .testimonials { padding: 64px 20px; }
  .closing { padding: 64px 20px; }
  .footer { padding: 48px 20px 24px; }
  .nav { padding: 16px 20px; }
}