/* ===== TOKENS ===== */
:root {
  --bg: #0D0D0D;
  --bg-2: #141414;
  --bg-3: #1a1a1a;
  --fg: #F5F5F0;
  --fg-muted: #888;
  --accent: #FFB800;
  --accent-dim: rgba(255,184,0,0.12);
  --accent-glow: rgba(255,184,0,0.25);
  --border: rgba(255,255,255,0.06);
  --radius: 8px;
  --font-display: 'Syne', sans-serif;
  --font-body: 'DM Sans', sans-serif;
}

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

/* ===== NAV ===== */
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 48px;
  border-bottom: 1px solid var(--border);
}
.nav-brand { display: flex; align-items: center; gap: 10px; }
.brand-mark { display: flex; }
.brand-name { font-family: var(--font-display); font-weight: 700; font-size: 18px; letter-spacing: -0.3px; }
.nav-tagline { font-size: 13px; color: var(--fg-muted); font-family: var(--font-body); }

/* ===== HERO ===== */
.hero {
  min-height: 92vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  position: relative;
  overflow: hidden;
}
.hero-grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,184,0,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,184,0,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}
.hero::before {
  content: '';
  position: absolute;
  top: -20%;
  left: -10%;
  width: 60%;
  height: 120%;
  background: radial-gradient(ellipse at center, rgba(255,184,0,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.hero-content {
  padding: 80px 64px 80px 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 1;
}
.hero-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 500;
  color: var(--accent);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 28px;
}
.label-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(40px, 5.5vw, 72px);
  font-weight: 800;
  line-height: 1.0;
  letter-spacing: -2px;
  margin-bottom: 28px;
}
.headline-accent { color: var(--accent); }
.hero-lede {
  font-size: 17px;
  color: #aaa;
  max-width: 420px;
  line-height: 1.7;
  margin-bottom: 48px;
}
.hero-stats {
  display: flex;
  align-items: center;
  gap: 32px;
}
.stat { display: flex; flex-direction: column; gap: 4px; }
.stat-number {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 700;
  color: var(--fg);
}
.stat-label { font-size: 11px; color: var(--fg-muted); text-transform: uppercase; letter-spacing: 0.06em; }
.stat-divider { width: 1px; height: 40px; background: var(--border); }

/* Funnel visual */
.hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 80px 80px 48px;
  position: relative;
  z-index: 1;
}
.funnel-stack { width: 100%; max-width: 380px; }
.funnel-tier {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px 20px;
  margin-bottom: 10px;
}
.tier-label { font-size: 13px; font-weight: 500; margin-bottom: 10px; }
.tier-bar { height: 4px; background: rgba(255,255,255,0.06); border-radius: 4px; overflow: hidden; margin-bottom: 6px; }
.tier-fill { height: 100%; border-radius: 4px; }
.fill-ads { width: 88%; background: #4ade80; }
.fill-seo { width: 72%; background: #60a5fa; }
.fill-bot { width: 80%; background: var(--accent); }
.fill-crm { width: 95%; background: #c084fc; }
.tier-count { font-size: 11px; color: var(--fg-muted); }

/* ===== PROBLEM ===== */
.problem { background: var(--bg-2); }
.problem-inner { padding: 120px 80px; }
.section-eyebrow {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -1px;
  margin-bottom: 64px;
}
.problem-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
}
.problem-card {
  background: var(--bg-3);
  padding: 36px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  transition: border-color 0.2s;
}
.problem-card:hover { border-color: rgba(255,184,0,0.3); }
.problem-icon { margin-bottom: 20px; }
.problem-card h3 { font-family: var(--font-display); font-size: 18px; font-weight: 700; margin-bottom: 12px; }
.problem-card p { font-size: 14px; color: #999; line-height: 1.7; }

/* ===== SERVICES ===== */
.services { background: var(--bg); }
.services-inner { padding: 120px 80px; }
.services-title { margin-bottom: 64px; }
.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2px;
  margin-bottom: 64px;
}
.service-card {
  background: var(--bg-2);
  padding: 32px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  transition: border-color 0.2s, transform 0.2s;
}
.service-card:hover { border-color: rgba(255,184,0,0.3); transform: translateY(-2px); }
.service-number {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.08em;
  margin-bottom: 16px;
}
.service-name { font-family: var(--font-display); font-size: 17px; font-weight: 700; margin-bottom: 12px; }
.service-desc { font-size: 13px; color: #999; line-height: 1.7; }

.services-pricing-note {
  border-top: 1px solid var(--border);
  padding-top: 48px;
}
.pricing-callout {
  display: flex;
  align-items: baseline;
  gap: 16px;
  flex-wrap: wrap;
}
.pricing-from { font-size: 14px; color: var(--fg-muted); }
.pricing-amount {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 800;
  color: var(--accent);
}
.pricing-per { font-size: 16px; color: var(--fg-muted); font-weight: 400; margin-left: 4px; }
.pricing-note { font-size: 14px; color: var(--fg-muted); }

/* ===== HOW (TIMELINE) ===== */
.how { background: var(--bg-2); }
.how-inner { padding: 120px 80px; }
.timeline { max-width: 700px; }
.timeline-item { display: flex; gap: 32px; }
.timeline-marker { display: flex; flex-direction: column; align-items: center; padding-top: 4px; }
.timeline-dot {
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
  box-shadow: 0 0 12px var(--accent-glow);
}
.timeline-line { width: 1px; flex: 1; min-height: 80px; background: var(--border); margin: 8px 0; }
.timeline-item:last-child .timeline-line { display: none; }
.timeline-content { padding-bottom: 48px; }
.timeline-phase {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 8px;
}
.timeline-content h3 { font-family: var(--font-display); font-size: 20px; font-weight: 700; margin-bottom: 10px; }
.timeline-content p { font-size: 14px; color: #999; line-height: 1.7; }

/* ===== MANIFESTO ===== */
.manifesto { background: var(--bg); }
.manifesto-inner { padding: 120px 80px; }
.manifesto-quote { position: relative; margin-bottom: 64px; }
.quote-mark {
  font-family: var(--font-display);
  font-size: 120px;
  line-height: 1;
  color: var(--accent);
  opacity: 0.2;
  position: absolute;
  top: -30px; left: -20px;
  pointer-events: none;
}
blockquote {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.8vw, 36px);
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: -0.5px;
  color: var(--fg);
  position: relative;
  z-index: 1;
  padding-left: 40px;
}
.quote-attribution { padding-left: 40px; margin-top: 24px; display: flex; flex-direction: column; gap: 4px; }
.quote-name { font-family: var(--font-display); font-weight: 700; color: var(--accent); }
.quote-role { font-size: 13px; color: var(--fg-muted); }
.manifesto-outro { max-width: 600px; }
.manifesto-outro p { font-size: 16px; color: #888; line-height: 1.8; margin-bottom: 20px; }

/* ===== CLOSING ===== */
.closing { background: linear-gradient(135deg, #111 0%, #1a1200 100%); }
.closing-inner { padding: 120px 80px; text-align: center; }
.closing-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 56px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -1.5px;
  margin-bottom: 24px;
}
.closing-sub {
  font-size: 18px;
  color: #aaa;
  max-width: 540px;
  margin: 0 auto 48px;
}
.closing-sub em { color: var(--accent); font-style: normal; }
.closing-niche { display: flex; flex-direction: column; align-items: center; gap: 20px; }
.niche-label { font-size: 12px; color: var(--fg-muted); text-transform: uppercase; letter-spacing: 0.08em; }
.niche-list { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }
.niche-tag {
  background: var(--accent-dim);
  color: var(--accent);
  border: 1px solid rgba(255,184,0,0.2);
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 500;
}

/* ===== FOOTER ===== */
.footer { border-top: 1px solid var(--border); }
.footer-inner { padding: 48px 80px; display: flex; flex-direction: column; gap: 12px; }
.footer-brand { display: flex; align-items: center; gap: 10px; }
.footer-brand-mark { display: flex; }
.footer-brand-name { font-family: var(--font-display); font-weight: 700; font-size: 16px; }
.footer-tagline { font-size: 13px; color: var(--fg-muted); }
.footer-bottom { font-size: 12px; color: #555; margin-top: 8px; }

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .nav { padding: 20px 24px; }
  .nav-tagline { display: none; }
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .hero-content { padding: 64px 24px 40px; }
  .hero-visual { padding: 0 24px 64px; }
  .funnel-stack { max-width: 100%; }
  .problem-inner, .services-inner, .how-inner, .manifesto-inner, .closing-inner, .footer-inner { padding: 80px 24px; }
  .problem-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .section-title { font-size: 28px; margin-bottom: 40px; }
  .hero-stats { flex-wrap: wrap; gap: 20px; }
  .pricing-callout { flex-direction: column; gap: 8px; }
}

@media (max-width: 480px) {
  .hero-headline { font-size: 36px; letter-spacing: -1px; }
  .services-grid { gap: 0; }
  .service-card { border-radius: 0; border-left: none; border-right: none; }
}
