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

:root {
  --bg:        #0D0D0F;
  --surface:   #161619;
  --border:    #2A2A2E;
  --fg:        #F0EEE8;
  --fg-muted:  #8A8A8E;
  --accent:    #F5A623;
  --accent-dim:#3D2E0E;

  --font-head: 'Syne', 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;
}

/* === LAYOUT === */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

/* === HERO === */
.hero {
  position: relative;
  padding: 100px 24px 80px;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}

.hero-inner {
  max-width: 860px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 28px;
}

.eyebrow-dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.hero-headline {
  font-family: var(--font-head);
  font-size: clamp(42px, 6vw, 76px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--fg);
  margin-bottom: 28px;
}

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

.hero-sub {
  font-size: clamp(16px, 2vw, 20px);
  color: var(--fg-muted);
  max-width: 620px;
  line-height: 1.6;
  margin-bottom: 56px;
}

.hero-stat-row {
  display: flex;
  align-items: center;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  background: var(--surface);
}

.hero-stat {
  flex: 1;
  padding: 24px 28px;
  text-align: center;
}

.hero-stat-divider {
  width: 1px;
  height: 60px;
  background: var(--border);
}

.stat-number {
  display: block;
  font-family: var(--font-head);
  font-size: 36px;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 6px;
}

.stat-label {
  font-size: 12px;
  color: var(--fg-muted);
  line-height: 1.4;
  display: block;
}

.hero-glow {
  position: absolute;
  bottom: -120px;
  right: -80px;
  width: 600px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(245, 166, 35, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

/* === PROOF === */
.proof {
  padding: 64px 24px;
  border-bottom: 1px solid var(--border);
}

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

.proof-label {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--fg-muted);
  margin-bottom: 28px;
}

.proof-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px 32px;
  margin-bottom: 36px;
}

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

.proof-tagline {
  font-size: 15px;
  color: var(--fg-muted);
  font-style: italic;
}

/* === FEATURES === */
.features {
  padding: 100px 24px;
  border-bottom: 1px solid var(--border);
}

.features-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.section-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  margin-bottom: 20px;
}

.section-headline {
  font-family: var(--font-head);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--fg);
  margin-bottom: 64px;
}

.feature-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(--bg);
  padding: 40px 36px;
}

.feature-icon {
  margin-bottom: 20px;
}

.feature-title {
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 12px;
}

.feature-desc {
  font-size: 15px;
  color: var(--fg-muted);
  line-height: 1.6;
}

/* === NICHES === */
.niches {
  padding: 80px 24px;
  border-bottom: 1px solid var(--border);
  background: var(--surface);
}

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

.niche-chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 36px;
}

.niche-chip {
  padding: 8px 18px;
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 14px;
  color: var(--fg-muted);
  background: var(--bg);
}

.niches-note {
  font-size: 15px;
  color: var(--fg-muted);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.6;
}

/* === PRICING === */
.pricing {
  padding: 100px 24px;
  border-bottom: 1px solid var(--border);
}

.pricing-inner {
  max-width: 860px;
  margin: 0 auto;
}

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 40px;
}

.pricing-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 36px;
}

.pricing-card--pro {
  border-color: var(--accent);
  background: linear-gradient(135deg, #1a1508 0%, var(--surface) 100%);
}

.pricing-tier {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}

.pricing-setup {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 4px;
}

.pricing-dollar {
  font-family: var(--font-head);
  font-size: 32px;
  font-weight: 800;
  color: var(--fg);
}

.pricing-setup-label {
  font-size: 13px;
  color: var(--fg-muted);
}

.pricing-monthly {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 28px;
}

.pricing-mo-amount {
  font-family: var(--font-head);
  font-size: 48px;
  font-weight: 800;
  color: var(--fg);
}

.pricing-mo-label {
  font-size: 16px;
  color: var(--fg-muted);
}

.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.pricing-features li {
  font-size: 14px;
  color: var(--fg-muted);
  padding-left: 20px;
  position: relative;
}

.pricing-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 7px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
}

.pricing-proof {
  font-size: 15px;
  color: var(--fg-muted);
  text-align: center;
  padding: 24px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--surface);
}

.pricing-proof strong {
  color: var(--accent);
}

/* === CLOSING === */
.closing {
  padding: 120px 24px;
}

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

.closing-headline {
  font-family: var(--font-head);
  font-size: clamp(28px, 4vw, 46px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--fg);
  margin-bottom: 28px;
}

.closing-sub {
  font-size: 17px;
  color: var(--fg-muted);
  line-height: 1.65;
  margin-bottom: 56px;
}

.closing-vibe {
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 700;
  color: var(--accent);
}

/* === FOOTER === */
.footer {
  border-top: 1px solid var(--border);
  padding: 36px 24px;
}

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

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.footer-name {
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 700;
  color: var(--fg);
}

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

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

/* === RESPONSIVE === */
@media (max-width: 768px) {
  .hero {
    padding: 72px 20px 60px;
  }
  .hero-stat-row {
    flex-direction: column;
  }
  .hero-stat-divider {
    width: 100%;
    height: 1px;
  }
  .hero-stat {
    padding: 20px 24px;
  }
  .feature-grid {
    grid-template-columns: 1fr;
  }
  .pricing-grid {
    grid-template-columns: 1fr;
  }
  .footer-inner {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
  .closing {
    padding: 80px 20px;
  }
}

@media (max-width: 480px) {
  .hero-headline { font-size: 36px; }
  .section-headline { font-size: 28px; }
  .stat-number { font-size: 28px; }
  .pricing-mo-amount { font-size: 36px; }
}