:root {
  --bg: #0a0a0f;
  --bg-elevated: #12121a;
  --fg: #e8e6e1;
  --fg-muted: #8a8880;
  --accent: #d4a853;
  --accent-glow: rgba(212, 168, 83, 0.15);
  --accent-bright: #f0c96e;
  --border: rgba(255, 255, 255, 0.06);
  --font-display: 'Syne', sans-serif;
  --font-body: 'DM Sans', sans-serif;
  --max-w: 1100px;
}

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

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ============ HERO ============ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 6rem 2rem 4rem;
  overflow: hidden;
}

.hero-grain {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 1;
}

.hero-glow {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
}

.hero-badge {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid rgba(212, 168, 83, 0.3);
  padding: 0.4rem 1.2rem;
  border-radius: 100px;
  margin-bottom: 2.5rem;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: #fff;
  margin-bottom: 1.5rem;
}

.hero-accent {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-bright) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-lede {
  font-size: clamp(1rem, 2.2vw, 1.25rem);
  color: var(--fg-muted);
  max-width: 560px;
  margin: 0 auto 2rem;
  line-height: 1.7;
}

.hero-price {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.02em;
}

/* ============ TOOLS ============ */
.tools {
  padding: 6rem 2rem;
  border-top: 1px solid var(--border);
}

.tools-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

.section-label {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}

.tools-intro {
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-family: var(--font-display);
  font-weight: 700;
  color: #fff;
  max-width: 600px;
  line-height: 1.3;
  margin-bottom: 3rem;
}

.tools-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
}

.tool-group {
  background: var(--bg-elevated);
  padding: 1.8rem 1.5rem;
}

.tool-category {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  display: block;
  margin-bottom: 0.6rem;
}

.tool-names {
  font-size: 0.95rem;
  color: var(--fg);
  line-height: 1.5;
}

/* ============ FEATURES ============ */
.features {
  padding: 6rem 2rem;
  border-top: 1px solid var(--border);
}

.features-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.feature-card {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2.5rem 2rem;
  transition: border-color 0.3s;
}

.feature-card:hover {
  border-color: rgba(212, 168, 83, 0.2);
}

.feature-number {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 0.8rem;
}

.feature-card h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.6rem;
}

.feature-card p {
  font-size: 0.9rem;
  color: var(--fg-muted);
  line-height: 1.65;
}

/* ============ WORKFLOW ============ */
.workflow {
  padding: 6rem 2rem;
  border-top: 1px solid var(--border);
}

.workflow-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

.workflow-intro {
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-family: var(--font-display);
  font-weight: 700;
  color: #fff;
  max-width: 600px;
  line-height: 1.3;
  margin-bottom: 3.5rem;
}

.workflow-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.workflow-step {
  display: flex;
  gap: 2rem;
  align-items: flex-start;
  padding: 2rem 0;
  border-bottom: 1px solid var(--border);
}

.workflow-step:first-child {
  border-top: 1px solid var(--border);
}

.step-marker {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--accent);
  min-width: 40px;
  padding-top: 0.1rem;
}

.step-content h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.4rem;
}

.step-content p {
  font-size: 0.9rem;
  color: var(--fg-muted);
  line-height: 1.6;
  max-width: 500px;
}

/* ============ CLOSING ============ */
.closing {
  padding: 8rem 2rem;
  text-align: center;
  border-top: 1px solid var(--border);
  position: relative;
}

.closing::before {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.closing-inner {
  position: relative;
  max-width: 700px;
  margin: 0 auto;
}

.closing h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 1.2rem;
}

.closing p {
  font-size: 1.05rem;
  color: var(--fg-muted);
  line-height: 1.7;
  margin-bottom: 2.5rem;
}

.closing-platforms {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  flex-wrap: wrap;
  font-size: 0.85rem;
  color: var(--fg-muted);
}

.dot {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--accent);
  display: inline-block;
}

/* ============ FOOTER ============ */
.site-footer {
  padding: 3rem 2rem;
  border-top: 1px solid var(--border);
  text-align: center;
}

.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

.footer-brand {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.3rem;
}

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

/* ============ HERO CTA ============ */
.hero-cta-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 3.5rem;
}

.btn-buy {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-bright) 100%);
  color: #0a0a0f;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  padding: 0.9rem 2.2rem;
  border-radius: 100px;
  text-decoration: none;
  transition: opacity 0.2s, transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 0 32px rgba(212, 168, 83, 0.25);
}

.btn-buy:hover {
  opacity: 0.92;
  transform: translateY(-1px);
  box-shadow: 0 0 48px rgba(212, 168, 83, 0.4);
}

.btn-buy--large {
  font-size: 1.15rem;
  padding: 1.1rem 2.8rem;
}

.btn-buy--sm {
  font-size: 0.85rem;
  padding: 0.6rem 1.4rem;
}

.btn-arrow {
  flex-shrink: 0;
}

.hero-subtext {
  font-size: 0.8rem;
  color: var(--fg-muted);
  letter-spacing: 0.03em;
}

/* ============ HERO SOCIAL PROOF ============ */
.hero-social-proof {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  justify-content: center;
}

.proof-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
}

.proof-num {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
}

.proof-label {
  font-size: 0.7rem;
  color: var(--fg-muted);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.proof-divider {
  width: 1px;
  height: 36px;
  background: var(--border);
}

/* ============ PROMPTS ============ */
.prompts {
  padding: 6rem 2rem;
  border-top: 1px solid var(--border);
}

.prompts-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

.prompts-intro {
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-family: var(--font-display);
  font-weight: 700;
  color: #fff;
  max-width: 600px;
  line-height: 1.3;
  margin-bottom: 3rem;
}

.prompts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.prompt-card {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  transition: border-color 0.25s;
}

.prompt-card:hover {
  border-color: rgba(212, 168, 83, 0.2);
}

.prompt-mood {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
}

.prompt-text {
  font-size: 0.8rem;
  color: var(--fg-muted);
  line-height: 1.6;
  font-family: 'DM Sans', monospace;
  flex: 1;
}

.prompt-copy {
  align-self: flex-start;
  background: transparent;
  border: 1px solid var(--border);
  color: var(--fg-muted);
  font-size: 0.7rem;
  font-family: var(--font-body);
  padding: 0.3rem 0.8rem;
  border-radius: 100px;
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s;
}

.prompt-copy:hover,
.prompt-copy.copied {
  border-color: var(--accent);
  color: var(--accent);
}

.prompts-cta-note {
  margin-top: 2rem;
  font-size: 0.85rem;
  color: var(--fg-muted);
  font-style: italic;
}

/* ============ VOICEOVER ============ */
.voiceover {
  padding: 6rem 2rem;
  border-top: 1px solid var(--border);
}

.voiceover-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

.voiceover-intro {
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-family: var(--font-display);
  font-weight: 700;
  color: #fff;
  max-width: 600px;
  line-height: 1.3;
  margin-bottom: 2rem;
}

.vo-tabs {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 2rem;
  border-bottom: 1px solid var(--border);
  padding-bottom: 0;
}

.vo-tab {
  background: transparent;
  border: none;
  border-bottom: 2px solid transparent;
  color: var(--fg-muted);
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  padding: 0.6rem 1rem;
  cursor: pointer;
  transition: color 0.2s, border-color 0.2s;
  margin-bottom: -1px;
}

.vo-tab.active,
.vo-tab:hover {
  color: var(--accent);
  border-bottom-color: var(--accent);
}

.vo-panel {
  display: none;
}

.vo-panel.active {
  display: block;
}

.vo-script {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 2rem 2.5rem;
  margin-bottom: 1rem;
}

.vo-line {
  font-size: 1rem;
  color: var(--fg);
  line-height: 1.9;
}

.vo-beat {
  font-size: 0.75rem;
  color: var(--accent);
  font-style: italic;
  letter-spacing: 0.03em;
}

.vo-placeholder {
  color: var(--accent);
  font-weight: 600;
  margin-top: 0.5rem;
  border-left: 2px solid var(--accent);
  padding-left: 0.8rem;
}

.vo-note {
  font-size: 0.8rem;
  color: var(--fg-muted);
  font-style: italic;
}

/* ============ CLOSING UPGRADE ============ */
.closing-guarantee {
  font-size: 0.8rem;
  color: var(--fg-muted);
  margin-top: 1rem;
  letter-spacing: 0.03em;
}

/* ============ STICKY BAR ============ */
.sticky-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(10, 10, 15, 0.95);
  backdrop-filter: blur(12px);
  border-top: 1px solid var(--border);
  padding: 0.9rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transform: translateY(100%);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.sticky-bar--visible {
  transform: translateY(0);
}

.sticky-bar-title {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 700;
  color: #fff;
}

/* ============ SUCCESS PAGE ============ */
.success-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4rem 2rem;
}

.success-card {
  background: var(--bg-elevated);
  border: 1px solid rgba(212, 168, 83, 0.2);
  border-radius: 20px;
  padding: 4rem 3rem;
  max-width: 520px;
  width: 100%;
  text-align: center;
}

.success-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(212, 168, 83, 0.12);
  border: 1px solid rgba(212, 168, 83, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
  font-size: 1.8rem;
}

.success-card h1 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 1rem;
}

.success-card p {
  color: var(--fg-muted);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 0.6rem;
}

.success-email {
  color: var(--accent);
  font-weight: 600;
}

.success-back {
  display: inline-block;
  margin-top: 2rem;
  font-size: 0.85rem;
  color: var(--fg-muted);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}

.success-back:hover {
  color: var(--accent);
  border-bottom-color: var(--accent);
}

/* ============ RESPONSIVE ============ */
@media (max-width: 768px) {
  .features-grid {
    grid-template-columns: 1fr;
  }

  .tools-grid {
    grid-template-columns: 1fr;
  }

  .prompts-grid {
    grid-template-columns: 1fr;
  }

  .workflow-step {
    flex-direction: column;
    gap: 0.6rem;
  }

  .hero {
    min-height: 90vh;
    padding: 4rem 1.5rem 3rem;
  }

  .hero-social-proof {
    gap: 1.5rem;
  }

  .closing-platforms {
    flex-direction: column;
    gap: 0.4rem;
  }

  .dot {
    display: none;
  }

  .sticky-bar-title {
    display: none;
  }

  .sticky-bar {
    justify-content: center;
  }

  .vo-script {
    padding: 1.5rem;
  }
}