/* =====================
   TOKENS
   ===================== */
:root {
  --bg: #111110;
  --bg-alt: #1c1b18;
  --surface: #262420;
  --fg: #f7f4ef;
  --fg-dim: #a09a8f;
  --accent: #d97706;
  --accent-light: #fbbf24;
  --accent-dim: rgba(217, 119, 6, 0.12);
  --border: rgba(247, 244, 239, 0.08);
  --radius: 10px;
  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
}

/* =====================
   RESET + BASE
   ===================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* =====================
   TYPOGRAPHY UTILITIES
   ===================== */
.section-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.75rem;
}
.section-headline {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--fg);
  margin-bottom: 1.5rem;
}

/* =====================
   HERO
   ===================== */
.hero {
  min-height: 92vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 4rem 5vw 2rem;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -100px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(217, 119, 6, 0.08) 0%, transparent 70%);
  pointer-events: none;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}
.hero-content { max-width: 560px; }
.hero-label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-dim);
  padding: 0.35rem 0.75rem;
  border-radius: 100px;
  margin-bottom: 1.75rem;
}
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 800;
  line-height: 1.05;
  color: var(--fg);
  margin-bottom: 1.75rem;
  font-style: italic;
}
.hero-sub {
  font-size: 1.05rem;
  color: var(--fg-dim);
  max-width: 440px;
  margin-bottom: 0.75rem;
}
.hero-sub-sub {
  font-size: 0.9rem;
  color: var(--accent);
  font-weight: 500;
}

/* Hero Visual — card stack */
.hero-visual { display: flex; justify-content: center; }
.hero-card-stack {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.hero-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--fg);
  transition: transform 0.2s ease;
}
.hero-card:hover { transform: translateY(-3px); }
.card-tiktok { border-left: 3px solid #ff0050; }
.card-ig { border-left: 3px solid #e1306c; }
.card-google { border-left: 3px solid #4285f4; }
.card-chatbot { border-left: 3px solid var(--accent); }
.card-icon {
  width: 36px; height: 36px;
  background: var(--bg);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: var(--accent);
  flex-shrink: 0;
}

.hero-bottom {
  margin-top: 4rem;
  max-width: 1200px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}
.hero-tag {
  font-size: 0.72rem;
  color: var(--fg-dim);
  letter-spacing: 0.05em;
}

/* =====================
   HOW IT WORKS
   ===================== */
.how-it-works {
  padding: 6rem 5vw;
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.how-it-works .section-headline { max-width: 480px; }
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  max-width: 1200px;
  margin: 0 auto;
  margin-top: 3rem;
}
.step { padding-right: 1rem; }
.step-number {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 800;
  font-style: italic;
  color: var(--accent);
  opacity: 0.25;
  line-height: 1;
  margin-bottom: 1rem;
}
.step h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 0.6rem;
}
.step p { font-size: 0.9rem; color: var(--fg-dim); line-height: 1.65; }

/* =====================
   WHAT YOU GET
   ===================== */
.what-you-get { padding: 7rem 5vw; }
.wyg-inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 5rem;
  max-width: 1200px;
  margin: 0 auto;
  align-items: start;
}
.wyg-left .section-headline { margin-bottom: 1rem; }
.wyg-desc { font-size: 0.95rem; color: var(--fg-dim); line-height: 1.7; max-width: 380px; }
.feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}
.feature-item {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem;
  display: flex;
  gap: 0.9rem;
  align-items: flex-start;
}
.feature-icon {
  width: 34px; height: 34px;
  background: var(--accent-dim);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: var(--accent);
  flex-shrink: 0;
}
.feature-item strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 0.25rem;
}
.feature-item span {
  display: block;
  font-size: 0.8rem;
  color: var(--fg-dim);
  line-height: 1.5;
}

/* =====================
   NICHES
   ===================== */
.niches {
  padding: 7rem 5vw;
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.niches-header { text-align: center; margin-bottom: 4rem; }
.niches-header .section-headline { margin-bottom: 0.75rem; }
.niches-desc { font-size: 0.95rem; color: var(--fg-dim); }
.niches-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  max-width: 1200px;
  margin: 0 auto;
}
.niche-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
  transition: border-color 0.2s ease, transform 0.2s ease;
}
.niche-card:hover {
  border-color: var(--accent);
  transform: translateY(-4px);
}
.niche-icon {
  width: 44px; height: 44px;
  background: var(--accent-dim);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--accent);
  margin-bottom: 1rem;
}
.niche-card strong { display: block; font-size: 1rem; font-weight: 600; color: var(--fg); margin-bottom: 0.5rem; }
.niche-card span { font-size: 0.82rem; color: var(--fg-dim); line-height: 1.55; }

/* =====================
   PRICING
   ===================== */
.pricing { padding: 7rem 5vw; }
.pricing-inner { max-width: 680px; margin: 0 auto; text-align: center; }
.pricing-header { margin-bottom: 3rem; }
.pricing-card {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 3rem;
  text-align: left;
  position: relative;
  overflow: hidden;
}
.pricing-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--accent-light));
}
.pricing-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.75rem;
}
.pricing-price {
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 800;
  color: var(--fg);
  line-height: 1;
}
.pricing-price span {
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--fg-dim);
}
.pricing-hook {
  font-size: 0.85rem;
  color: var(--accent);
  margin-top: 0.5rem;
  font-weight: 500;
}
.pricing-divider {
  height: 1px;
  background: var(--border);
  margin: 1.75rem 0;
}
.pricing-features { display: flex; flex-direction: column; gap: 0.85rem; }
.pf-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: var(--fg);
}
.pf-item svg { color: var(--accent); flex-shrink: 0; }
.pricing-footer {
  margin-top: 1.75rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}
.pricing-footer p { font-size: 0.8rem; color: var(--fg-dim); line-height: 1.6; }

/* =====================
   CLOSE
   ===================== */
.close {
  padding: 8rem 5vw;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.close::before {
  content: '';
  position: absolute;
  bottom: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(217, 119, 6, 0.07) 0%, transparent 70%);
  pointer-events: none;
}
.close-inner { max-width: 760px; margin: 0 auto; position: relative; }
.close-deco {
  width: 60px; height: 3px;
  background: var(--accent);
  border-radius: 100px;
  margin: 0 auto 2.5rem;
}
.close-headline {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800;
  font-style: italic;
  color: var(--fg);
  line-height: 1.2;
  margin-bottom: 1.5rem;
}
.close-sub {
  font-size: 1rem;
  color: var(--fg-dim);
  line-height: 1.7;
  max-width: 520px;
  margin: 0 auto 2rem;
}
.close-tagline {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--accent);
  font-weight: 600;
}

/* =====================
   FOOTER
   ===================== */
footer {
  padding: 2rem 5vw;
  border-top: 1px solid var(--border);
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-name {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--fg);
  display: block;
  margin-bottom: 0.2rem;
}
.footer-tagline {
  font-size: 0.75rem;
  color: var(--fg-dim);
}
.footer-meta { font-size: 0.75rem; color: var(--fg-dim); }

/* =====================
   RESPONSIVE
   ===================== */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .hero-visual { display: none; }
  .steps { grid-template-columns: 1fr; gap: 2rem; }
  .wyg-inner { grid-template-columns: 1fr; gap: 2rem; }
  .niches-grid { grid-template-columns: 1fr 1fr; }
  .feature-grid { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .hero { min-height: 70vh; padding-top: 3rem; }
  .hero-headline { font-size: 2.6rem; }
  .how-it-works, .what-you-get, .niches, .pricing, .close { padding: 5rem 5vw; }
  .niches-grid { grid-template-columns: 1fr; }
  .pricing-card { padding: 2rem 1.5rem; }
  .pricing-price { font-size: 3rem; }
  .footer-inner { flex-direction: column; gap: 0.75rem; align-items: flex-start; }
}