:root {
  --bg: #0a0a0f;
  --bg-elevated: #12121a;
  --bg-card: #1a1a26;
  --fg: #e8e6e3;
  --fg-muted: #8a8899;
  --accent: #c4ff54;
  --accent-dim: rgba(196, 255, 84, 0.15);
  --highlight: #ff6b4a;
  --border: rgba(255, 255, 255, 0.06);
  --radius: 16px;
  --font-display: 'Space Grotesk', sans-serif;
  --font-body: 'DM Sans', sans-serif;
}

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

html { scroll-behavior: smooth; }

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

/* ---- HERO ---- */
.hero {
  min-height: 90vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 32px 60px;
  max-width: 900px;
  margin: 0 auto;
}

.hero-badge {
  display: inline-block;
  width: fit-content;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-dim);
  border: 1px solid rgba(196, 255, 84, 0.25);
  padding: 8px 18px;
  border-radius: 100px;
  margin-bottom: 32px;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6vw, 4.8rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin-bottom: 28px;
}

.highlight {
  color: var(--accent);
}

.hero-sub {
  font-size: 1.15rem;
  color: var(--fg-muted);
  max-width: 600px;
  line-height: 1.7;
  margin-bottom: 36px;
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tag {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 500;
  padding: 6px 16px;
  border: 1px solid var(--border);
  border-radius: 100px;
  color: var(--fg-muted);
  background: var(--bg-elevated);
}

/* ---- PROBLEM ---- */
.problem {
  padding: 100px 32px;
  background: var(--bg-elevated);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.problem-grid {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.problem-text h2 {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.problem-text p {
  color: var(--fg-muted);
  margin-bottom: 16px;
}

.problem-text em {
  color: var(--fg);
  font-style: italic;
}

.problem-bold {
  color: var(--fg) !important;
  font-weight: 500;
}

.problem-visual {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.fragment {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--bg-card);
  padding: 14px 20px;
  border-radius: 10px;
  border: 1px solid var(--border);
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 500;
  color: var(--fg-muted);
}

.fragment .price {
  color: var(--highlight);
  font-weight: 600;
}

.fragment-total {
  text-align: center;
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 600;
  color: var(--highlight);
  padding: 18px 20px;
  border-top: 2px dashed rgba(255, 107, 74, 0.3);
  margin-top: 4px;
}

/* ---- WHAT'S INSIDE ---- */
.inside {
  padding: 100px 32px;
  max-width: 1100px;
  margin: 0 auto;
}

.inside h2 {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 48px;
  text-align: center;
}

.inside-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.inside-card {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: border-color 0.2s;
}

.inside-card:hover {
  border-color: rgba(196, 255, 84, 0.25);
}

.card-icon {
  font-size: 28px;
  margin-bottom: 16px;
}

.inside-card h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.inside-card p {
  font-size: 0.92rem;
  color: var(--fg-muted);
  line-height: 1.6;
}

/* ---- NUMBERS ---- */
.numbers {
  padding: 80px 32px;
  background: var(--bg-elevated);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.numbers-inner {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  text-align: center;
}

.stat-number {
  display: block;
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: -0.03em;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 0.9rem;
  color: var(--fg-muted);
  line-height: 1.5;
}

/* ---- CLOSING ---- */
.closing {
  padding: 120px 32px;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.closing h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 24px;
}

.closing-text {
  font-size: 1.1rem;
  color: var(--fg-muted);
  max-width: 580px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ---- FOOTER ---- */
.site-footer {
  padding: 40px 32px;
  border-top: 1px solid var(--border);
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.footer-brand {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 600;
  color: var(--fg);
}

.footer-divider {
  color: var(--fg-muted);
  opacity: 0.4;
}

.footer-tagline {
  font-size: 14px;
  color: var(--fg-muted);
}

/* ---- RESPONSIVE ---- */
@media (max-width: 768px) {
  .hero {
    padding: 60px 20px 40px;
    min-height: 80vh;
  }

  .problem {
    padding: 60px 20px;
  }

  .problem-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .inside {
    padding: 60px 20px;
  }

  .inside-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .numbers {
    padding: 60px 20px;
  }

  .numbers-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .closing {
    padding: 80px 20px;
  }

  .hero h1 {
    font-size: 2.2rem;
  }

  .inside h2 {
    font-size: 1.8rem;
  }

  .stat-number {
    font-size: 2.4rem;
  }
}

@media (max-width: 480px) {
  body {
    font-size: 16px;
  }

  .hero h1 {
    font-size: 1.9rem;
  }

  .inside-card {
    padding: 24px 20px;
  }
}

/* ---- HERO CTA BUTTONS ---- */
.hero-actions {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 12px;
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: #0a0a0f;
  background: var(--accent);
  padding: 14px 28px;
  border-radius: 100px;
  text-decoration: none;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  box-shadow: 0 0 0 0 rgba(196, 255, 84, 0);
}

.cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(196, 255, 84, 0.35);
  background: #d4ff6a;
}

.btn-arrow {
  transition: transform 0.15s ease;
}

.cta-btn:hover .btn-arrow {
  transform: translateX(3px);
}

.ghost-btn {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 500;
  color: var(--fg-muted);
  text-decoration: none;
  transition: color 0.15s ease;
}

.ghost-btn:hover {
  color: var(--fg);
}

/* ---- PRICING ---- */
.pricing {
  padding: 100px 32px;
  background: var(--bg);
}

.pricing-inner {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}

.pricing-badge {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg-muted);
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  padding: 7px 16px;
  border-radius: 100px;
  margin-bottom: 28px;
}

.pricing h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 16px;
}

.pricing-sub {
  color: var(--fg-muted);
  font-size: 1.05rem;
  margin-bottom: 48px;
  line-height: 1.6;
}

.pricing-card {
  background: var(--bg-card);
  border: 1px solid rgba(196, 255, 84, 0.2);
  border-radius: 24px;
  padding: 40px 36px;
  text-align: left;
}

.pricing-items {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 32px;
}

.pricing-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.97rem;
  color: var(--fg);
}

.pricing-check {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--accent-dim);
  color: var(--accent);
  font-size: 12px;
  font-weight: 700;
  flex-shrink: 0;
}

.pricing-divider {
  height: 1px;
  background: var(--border);
  margin-bottom: 28px;
}

.pricing-price-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 24px;
}

.pricing-was {
  font-size: 13px;
  color: var(--fg-muted);
  text-decoration: line-through;
  opacity: 0.7;
}

.pricing-now {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: -0.03em;
}

.pricing-once {
  font-size: 1rem;
  color: var(--fg-muted);
  font-weight: 400;
}

.pricing-card .cta-btn {
  width: 100%;
  justify-content: center;
  font-size: 16px;
  padding: 16px 32px;
  border-radius: 14px;
}

.pricing-guarantee {
  text-align: center;
  font-size: 12px;
  color: var(--fg-muted);
  margin-top: 16px;
  letter-spacing: 0.02em;
}

.preview-link {
  display: inline-block;
  margin-top: 32px;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 500;
  color: var(--fg-muted);
  text-decoration: none;
  transition: color 0.15s ease;
}

.preview-link:hover {
  color: var(--accent);
}

/* ---- PREVIEW PAGE ---- */
.preview-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 32px;
  border-bottom: 1px solid var(--border);
  background: var(--bg);
  position: sticky;
  top: 0;
  z-index: 10;
}

.nav-back {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 500;
  color: var(--fg-muted);
  text-decoration: none;
  transition: color 0.15s ease;
}

.nav-back:hover {
  color: var(--fg);
}

.nav-cta {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  color: #0a0a0f;
  background: var(--accent);
  padding: 10px 22px;
  border-radius: 100px;
  text-decoration: none;
  transition: background 0.15s ease, transform 0.15s ease;
}

.nav-cta:hover {
  background: #d4ff6a;
  transform: translateY(-1px);
}

.preview-section {
  padding: 80px 32px;
  max-width: 1100px;
  margin: 0 auto;
}

.preview-section--alt {
  background: var(--bg-elevated);
  max-width: 100%;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.preview-section--alt > * {
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}

.preview-header {
  margin-bottom: 48px;
}

.preview-label {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-dim);
  border: 1px solid rgba(196, 255, 84, 0.2);
  padding: 7px 16px;
  border-radius: 100px;
  margin-bottom: 20px;
}

.preview-section--alt .preview-header {
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 48px;
  padding: 0 32px;
}

.preview-section--alt .prompts-list {
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 32px 80px;
}

.preview-header h2 {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}

.preview-desc {
  color: var(--fg-muted);
  max-width: 560px;
  line-height: 1.65;
}

/* Hooks grid */
.hooks-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.hook-card {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  position: relative;
  transition: border-color 0.2s;
}

.hook-card:hover {
  border-color: rgba(196, 255, 84, 0.2);
}

.hook-card--locked {
  opacity: 0.6;
  pointer-events: none;
}

.hook-tag {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}

.hook-text {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--fg);
  margin-bottom: 16px;
}

.hook-text em {
  color: var(--accent);
  font-style: normal;
  font-weight: 500;
}

.hook-tip {
  font-size: 0.82rem;
  color: var(--fg-muted);
  padding-top: 16px;
  border-top: 1px solid var(--border);
}

.hook-blurred, .prompt-blurred, .cal-blurred {
  filter: blur(5px);
  user-select: none;
}

.hook-lock {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 600;
  color: var(--fg-muted);
  white-space: nowrap;
  background: var(--bg-elevated);
  padding: 8px 16px;
  border-radius: 100px;
  border: 1px solid var(--border);
}

.lock-icon {
  font-size: 14px;
}

/* Prompts */
.prompts-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.prompt-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 28px;
  position: relative;
  transition: border-color 0.2s;
}

.prompt-card:hover {
  border-color: rgba(196, 255, 84, 0.15);
}

.prompt-card--locked {
  opacity: 0.65;
  pointer-events: none;
}

.prompt-platform {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}

.prompt-text code {
  font-family: 'SF Mono', 'Fira Code', monospace;
  font-size: 0.88rem;
  color: var(--fg);
  line-height: 1.7;
  background: none;
  display: block;
}

/* Content calendar */
.calendar-grid {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.cal-header {
  display: grid;
  grid-template-columns: 80px 1.5fr 1.5fr 100px 1.5fr;
  gap: 0;
  background: var(--bg-elevated);
  border-bottom: 1px solid var(--border);
  padding: 12px 20px;
}

.cal-col-head {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--fg-muted);
}

.cal-row {
  display: grid;
  grid-template-columns: 80px 1.5fr 1.5fr 100px 1.5fr;
  gap: 0;
  padding: 16px 20px;
  border-bottom: 1px solid var(--border);
  align-items: center;
  position: relative;
  transition: background 0.15s ease;
}

.cal-row:last-child {
  border-bottom: none;
}

.cal-row:not(.cal-row--locked):hover {
  background: var(--bg-elevated);
}

.cal-row--locked {
  pointer-events: none;
}

.cal-day {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  color: var(--fg);
}

.cal-theme {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--fg);
}

.theme-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}

.theme-edu { background: #c4ff54; }
.theme-story { background: #ff6b4a; }
.theme-engage { background: #6b8aff; }
.theme-promo { background: #ffd166; }

.cal-format, .cal-time, .cal-platform {
  font-size: 14px;
  color: var(--fg-muted);
}

.cal-lock-overlay {
  position: absolute;
  right: 20px;
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 600;
  color: var(--fg-muted);
  background: var(--bg-card);
  padding: 6px 14px;
  border-radius: 100px;
  border: 1px solid var(--border);
}

/* Preview CTA */
.preview-cta {
  padding: 120px 32px;
  background: var(--bg-elevated);
  border-top: 1px solid var(--border);
  text-align: center;
}

.preview-cta-inner {
  max-width: 640px;
  margin: 0 auto;
}

.preview-cta h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 20px;
}

.preview-cta p {
  color: var(--fg-muted);
  font-size: 1.05rem;
  margin-bottom: 36px;
  line-height: 1.65;
}

.preview-cta .cta-btn {
  font-size: 16px;
  padding: 16px 36px;
  border-radius: 100px;
}

/* Success page */
.success-page {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 32px;
}

.success-inner {
  max-width: 560px;
  margin: 0 auto;
  text-align: center;
}

.success-icon {
  font-size: 56px;
  margin-bottom: 24px;
}

.success-badge {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-dim);
  border: 1px solid rgba(196, 255, 84, 0.25);
  padding: 7px 16px;
  border-radius: 100px;
  margin-bottom: 24px;
}

.success-inner h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  margin-bottom: 16px;
}

.success-sub {
  font-size: 1.05rem;
  color: var(--fg-muted);
  line-height: 1.65;
  margin-bottom: 40px;
}

.success-checklist {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  text-align: left;
  margin-bottom: 40px;
}

.success-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
}

.success-check {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--accent-dim);
  color: var(--accent);
  font-size: 11px;
  font-weight: 700;
  flex-shrink: 0;
}

.success-note {
  font-size: 13px;
  color: var(--fg-muted);
  margin-bottom: 24px;
}

/* Responsive additions */
@media (max-width: 768px) {
  .hooks-grid {
    grid-template-columns: 1fr;
  }

  .preview-section--alt .preview-header,
  .preview-section--alt .prompts-list {
    padding: 0 20px;
  }

  .preview-section--alt .prompts-list {
    padding-bottom: 60px;
  }

  .cal-header,
  .cal-row {
    grid-template-columns: 60px 1fr 1fr;
  }

  .cal-time, .cal-platform {
    display: none;
  }

  .pricing-card {
    padding: 28px 24px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .success-checklist {
    grid-template-columns: 1fr;
  }

  .preview-nav {
    padding: 16px 20px;
  }

  .preview-section {
    padding: 60px 20px;
  }
}