/* ─── Reset & Base ─────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg: #0A0A0A;
  --fg: #F5F5F0;
  --accent: #C8FF00;
  --accent-dim: #8AB300;
  --muted: #666666;
  --surface: #141414;
  --surface2: #1E1E1E;
  --border: #2A2A2A;
  --font-display: 'Bebas Neue', 'Arial Black', sans-serif;
  --font-body: 'DM Sans', 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

html { scroll-behavior: smooth; font-size: 16px; }

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

/* ─── Layout Helpers ───────────────────────────── */
.section-label {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 2rem;
}

/* ═══════════════════════════════════════════════════
   HERO
═══════════════════════════════════════════════════ */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 6rem 5vw 4rem;
  position: relative;
  background:
    radial-gradient(ellipse 60% 50% at 80% 50%, rgba(200,255,0,0.04) 0%, transparent 70%),
    var(--bg);
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(200,255,0,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(200,255,0,0.03) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 80%);
  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%;
}

/* Left */
.eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 1.5rem;
}

.headline {
  font-family: var(--font-display);
  font-size: clamp(4rem, 8vw, 7.5rem);
  line-height: 0.95;
  letter-spacing: 0.01em;
  color: var(--fg);
  margin-bottom: 2rem;
}

.line { display: block; }

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

.subhead {
  font-size: 1.1rem;
  color: #A0A0A0;
  max-width: 36ch;
  line-height: 1.65;
  margin-bottom: 2rem;
}

.hero-tagline {
  display: inline-block;
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 0.6rem 1.2rem;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--accent);
  letter-spacing: 0.04em;
}

/* Right — phone mockup */
.hero-right {
  display: flex;
  justify-content: center;
  align-items: center;
}

.phone-frame {
  width: 260px;
  height: 540px;
  background: #111;
  border-radius: 36px;
  padding: 12px;
  position: relative;
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.08),
    0 40px 80px rgba(0,0,0,0.6),
    0 0 80px rgba(200,255,0,0.05);
  animation: float 4s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.phone-notch {
  width: 80px;
  height: 24px;
  background: #111;
  border-radius: 0 0 16px 16px;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.phone-screen {
  width: 100%;
  height: 100%;
  background: #0C0C0C;
  border-radius: 28px;
  overflow: hidden;
}

.screen-content {
  height: 100%;
  padding: 36px 16px 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.platform-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.7rem;
  font-weight: 500;
  color: var(--fg);
  opacity: 0.7;
}

.p-icon { display: flex; align-items: center; }
.tiktok { color: #ff0050; }

.video-scene {
  flex: 1;
  background: #1A1A1A;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.scene-label {
  font-size: 0.6rem;
  color: var(--fg);
  opacity: 0.5;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 500;
}

.scene-bars {
  display: flex;
  align-items: flex-end;
  gap: 6px;
  height: 60px;
}

.bar {
  width: 14px;
  background: var(--accent);
  border-radius: 3px 3px 0 0;
  opacity: 0.6;
}

.bar:nth-child(2) { opacity: 0.8; }
.bar:nth-child(4) { opacity: 1; }
.bar:nth-child(6) { opacity: 0.9; }

.play-icon {
  position: absolute;
  bottom: 10px;
  right: 10px;
  width: 28px;
  height: 28px;
  background: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000;
}

.engagement-row {
  display: flex;
  gap: 8px;
  font-size: 0.6rem;
  font-weight: 500;
}

.stat { color: var(--fg); opacity: 0.4; }
.stat.accent { color: var(--accent); opacity: 1; }

.phone-border {
  position: absolute;
  inset: -1px;
  border-radius: 36px;
  background: linear-gradient(135deg, rgba(200,255,0,0.15), transparent 40%, transparent 60%, rgba(200,255,0,0.05));
  pointer-events: none;
  z-index: -1;
}

.scroll-hint {
  position: absolute;
  bottom: 2.5rem;
  left: 5vw;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

.scroll-line {
  width: 40px;
  height: 1px;
  background: var(--muted);
}

/* ═══════════════════════════════════════════════════
   MANIFESTO
═══════════════════════════════════════════════════ */
.manifesto {
  background: var(--bg);
  padding: 8rem 5vw;
  border-top: 1px solid var(--border);
}

.manifesto-inner {
  max-width: 900px;
  margin: 0 auto;
}

.manifesto-headline {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  line-height: 1.05;
  letter-spacing: 0.01em;
  margin-bottom: 3rem;
}

.manifesto-headline em {
  color: var(--accent);
  font-style: normal;
}

.manifesto-rule {
  width: 60px;
  height: 2px;
  background: var(--accent);
  margin-bottom: 3rem;
}

.manifesto-body {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.manifesto-body p {
  font-size: 1.05rem;
  color: #A0A0A0;
  line-height: 1.75;
  max-width: 60ch;
}

/* ═══════════════════════════════════════════════════
   PROCESS
═══════════════════════════════════════════════════ */
.process {
  background: #0D0D0D;
  padding: 8rem 5vw;
  border-top: 1px solid var(--border);
}

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

.process-headline {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1.05;
  letter-spacing: 0.01em;
  margin-bottom: 4rem;
}

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

.step {
  padding: 2rem;
  border: 1px solid var(--border);
  border-radius: 4px;
  background: var(--surface);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.step-num {
  font-family: var(--font-display);
  font-size: 3.5rem;
  color: var(--accent);
  opacity: 0.4;
  line-height: 1;
}

.step-title {
  font-size: 1rem;
  font-weight: 500;
  color: var(--fg);
  line-height: 1.3;
}

.step-desc {
  font-size: 0.85rem;
  color: #777;
  line-height: 1.6;
  flex: 1;
}

/* Audit visual */
.step-visual-1 { margin-top: 1rem; }

.audit-card {
  background: var(--surface2);
  border-radius: 8px;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.audit-row {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.7rem;
}

.audit-label {
  width: 55px;
  color: var(--fg);
  opacity: 0.5;
  font-weight: 500;
}

.audit-bar {
  flex: 1;
  height: 4px;
  background: var(--border);
  border-radius: 2px;
  overflow: hidden;
}

.audit-fill {
  height: 100%;
  background: var(--accent);
  border-radius: 2px;
  opacity: 0.7;
}

.audit-val {
  width: 30px;
  text-align: right;
  color: var(--fg);
  opacity: 0.4;
  font-size: 0.65rem;
}

/* Content stack visual */
.step-visual-2 { margin-top: 1rem; }

.content-stack {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.reel-card {
  background: var(--surface2);
  border-radius: 6px;
  padding: 8px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.reel-thumb {
  width: 36px;
  height: 36px;
  border-radius: 4px;
  background: linear-gradient(135deg, #222, #1a1a1a);
  border: 1px solid var(--border);
  flex-shrink: 0;
}

.reel-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.65rem;
  color: var(--fg);
  opacity: 0.4;
}

.reel-platform {
  font-size: 0.6rem;
  padding: 2px 6px;
  border-radius: 3px;
  font-weight: 500;
}

.reel-platform.tiktok { background: rgba(255,0,80,0.15); color: #ff0050; }
.reel-platform.insta { background: rgba(131,58,180,0.15); color: #833AB4; }
.reel-platform.shorts { background: rgba(255,0,0,0.15); color: #FF0000; }

/* Report visual */
.step-visual-3 { margin-top: 1rem; }

.report-card {
  background: var(--surface2);
  border-radius: 8px;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.report-title {
  font-size: 0.65rem;
  font-weight: 500;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.report-metric { display: flex; align-items: baseline; gap: 10px; }

.metric-num {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--fg);
  line-height: 1;
}

.metric-label {
  font-size: 0.7rem;
  color: var(--fg);
  opacity: 0.4;
}

.report-trend {
  font-size: 0.65rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 4px;
}

.report-trend.up { color: var(--accent); }

/* ═══════════════════════════════════════════════════
   OUTCOMES
═══════════════════════════════════════════════════ */
.outcomes {
  background: var(--bg);
  padding: 8rem 5vw;
  border-top: 1px solid var(--border);
}

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

.outcomes-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-bottom: 4rem;
}

.outcome {
  padding: 2rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: border-color 0.2s;
}

.outcome:hover { border-color: rgba(200,255,0,0.2); }

.outcome-icon { color: var(--accent); }

.outcome-title {
  font-size: 1rem;
  font-weight: 500;
  color: var(--fg);
}

.outcome-desc {
  font-size: 0.85rem;
  color: #777;
  line-height: 1.65;
}

/* Pricing */
.pricing-statement {
  display: flex;
  align-items: center;
  gap: 3rem;
  padding: 2.5rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 4px;
}

.price-tag {
  font-family: var(--font-display);
  font-size: 4rem;
  color: var(--accent);
  line-height: 1;
  flex-shrink: 0;
}

.price-unit {
  font-size: 1.5rem;
  opacity: 0.6;
}

.price-note {
  font-size: 0.85rem;
  color: #777;
  line-height: 1.6;
}

/* ═══════════════════════════════════════════════════
   CLOSING
═══════════════════════════════════════════════════ */
.closing {
  background: #0C0C0C;
  padding: 8rem 5vw;
  border-top: 1px solid var(--border);
}

.closing-inner { max-width: 800px; margin: 0 auto; }

.closing-quote {
  margin-bottom: 3rem;
}

.closing-quote blockquote {
  font-size: 1.3rem;
  color: #888;
  line-height: 1.6;
  font-style: italic;
  border-left: 2px solid var(--accent);
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}

.closing-quote cite {
  font-size: 0.75rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding-left: 1.5rem;
}

.closing-rule {
  width: 100%;
  height: 1px;
  background: var(--border);
  margin: 3rem 0;
}

.closing-headline {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1.1;
  letter-spacing: 0.01em;
  margin-bottom: 3rem;
}

.closing-footer {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.closing-footer p {
  font-size: 0.9rem;
  color: var(--muted);
  max-width: 50ch;
}

.brand-mark {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.brand-name {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--accent);
  letter-spacing: 0.05em;
}

.brand-sep {
  color: var(--border);
  font-size: 1.2rem;
}

.brand-sub {
  font-size: 0.75rem;
  color: var(--muted);
  letter-spacing: 0.05em;
}

/* ═══════════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════════ */
.site-footer {
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: 2rem 5vw;
}

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

.footer-brand {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--accent);
  letter-spacing: 0.05em;
}

.footer-meta {
  font-size: 0.75rem;
  color: var(--muted);
}

.footer-locations {
  font-size: 0.75rem;
  color: var(--muted);
}

/* ═══════════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════════ */
@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .hero-left { order: 2; }
  .hero-right { order: 1; }

  .headline { font-size: clamp(3.5rem, 12vw, 6rem); }

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

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

  .pricing-statement {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
  }

  .price-tag { font-size: 3rem; }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 600px) {
  .hero { padding: 5rem 6vw 3rem; }
  .manifesto, .process, .outcomes, .closing { padding: 5rem 6vw; }
  .headline { font-size: clamp(3rem, 14vw, 5rem); }
  .scroll-hint { display: none; }
}