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

:root {
  --bg: #0C0C0E;
  --surface: #141416;
  --surface2: #1E1E22;
  --fg: #F0EDE8;
  --fg-muted: #9A9590;
  --accent: #F5A623;
  --accent-dim: rgba(245,166,35,0.12);
  --border: rgba(240,237,232,0.08);
  --font-display: 'Syne', sans-serif;
  --font-mono: 'DM Mono', monospace;
}

html { font-size: 16px; }
body { background: var(--bg); color: var(--fg); font-family: var(--font-display); line-height: 1.6; -webkit-font-smoothing: antialiased; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ---- NAV ---- */
.nav { position: fixed; top: 0; left: 0; right: 0; z-index: 100; backdrop-filter: blur(16px); background: rgba(12,12,14,0.85); border-bottom: 1px solid var(--border); }
.nav-inner { max-width: 1200px; margin: 0 auto; padding: 0 24px; height: 60px; display: flex; align-items: center; justify-content: space-between; }
.nav-logo { display: flex; align-items: center; gap: 10px; font-weight: 700; font-size: 1.1rem; letter-spacing: -0.02em; }
.nav-tagline { font-family: var(--font-mono); font-size: 0.72rem; color: var(--fg-muted); letter-spacing: 0.04em; }

/* ---- HERO ---- */
.hero { min-height: 100vh; display: flex; align-items: center; position: relative; overflow: hidden; padding: 120px 24px 80px; }
.hero-bg { position: absolute; inset: 0; pointer-events: none; }
.hero-grid { position: absolute; inset: 0; background-image: linear-gradient(rgba(240,237,232,0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(240,237,232,0.03) 1px, transparent 1px); background-size: 48px 48px; }
.hero-glow { position: absolute; top: -20%; right: -10%; width: 600px; height: 600px; background: radial-gradient(circle, rgba(245,166,35,0.08) 0%, transparent 70%); border-radius: 50%; }

.film-strip { position: absolute; bottom: 0; left: 0; right: 0; display: flex; gap: 4px; padding: 0 24px; height: 48px; opacity: 0.3; }
.film-frame { flex: 1; background: var(--accent); border-radius: 2px 2px 0 0; transform-origin: bottom; animation: filmWave 3s ease-in-out infinite; }
.film-frame:nth-child(2) { animation-delay: 0.2s; }
.film-frame:nth-child(3) { animation-delay: 0.4s; }
.film-frame:nth-child(4) { animation-delay: 0.1s; }
.film-frame:nth-child(5) { animation-delay: 0.6s; }
.film-frame:nth-child(6) { animation-delay: 0.3s; }
.film-frame:nth-child(7) { animation-delay: 0.5s; }
.film-frame:nth-child(8) { animation-delay: 0.15s; }
@keyframes filmWave {
  0%, 100% { transform: scaleY(1); }
  50% { transform: scaleY(0.4); }
}

.hero-content { max-width: 1200px; margin: 0 auto; width: 100%; position: relative; z-index: 1; }
.hero-label { display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-mono); font-size: 0.78rem; color: var(--fg-muted); letter-spacing: 0.05em; margin-bottom: 32px; text-transform: uppercase; }
.label-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--accent); animation: pulse 2s ease-in-out infinite; }
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}
.hero h1 { font-size: clamp(2.8rem, 7vw, 5.5rem); font-weight: 800; line-height: 1.05; letter-spacing: -0.03em; margin-bottom: 24px; }
.highlight { color: var(--accent); }
.hero-sub { font-size: 1.15rem; color: var(--fg-muted); max-width: 560px; line-height: 1.7; margin-bottom: 56px; font-weight: 400; }
.hero-stats { display: flex; align-items: center; gap: 0; flex-wrap: wrap; }
.stat { padding: 0 40px 0 0; }
.stat:first-child { padding-left: 0; }
.stat-value { display: block; font-size: 2rem; font-weight: 700; color: var(--accent); font-family: var(--font-mono); }
.stat-label { font-family: var(--font-mono); font-size: 0.72rem; color: var(--fg-muted); letter-spacing: 0.04em; text-transform: uppercase; }
.stat-divider { width: 1px; height: 40px; background: var(--border); margin-right: 40px; }

/* ---- PROOF ---- */
.proof { padding: 80px 24px; background: var(--surface); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.proof-inner { max-width: 1200px; margin: 0 auto; }
.proof-label { font-family: var(--font-mono); font-size: 0.78rem; color: var(--fg-muted); letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 48px; }
.proof-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--border); border: 1px solid var(--border); border-radius: 12px; overflow: hidden; }
.proof-card { background: var(--surface2); padding: 40px 36px; }
.proof-number { font-size: 2.8rem; font-weight: 800; color: var(--accent); font-family: var(--font-mono); margin-bottom: 12px; letter-spacing: -0.02em; }
.proof-text { font-size: 0.95rem; color: var(--fg-muted); line-height: 1.6; }

/* ---- HOW ---- */
.how { padding: 100px 24px; }
.how-inner { max-width: 1200px; margin: 0 auto; }
.section-label { font-family: var(--font-mono); font-size: 0.78rem; color: var(--accent); letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 16px; }
.how h2 { font-size: clamp(1.8rem, 3vw, 2.8rem); font-weight: 700; letter-spacing: -0.02em; margin-bottom: 64px; }
.steps { display: flex; align-items: stretch; gap: 0; }
.step { flex: 1; background: var(--surface); border: 1px solid var(--border); border-radius: 12px; padding: 36px; position: relative; }
.step-connector { width: 40px; flex-shrink: 0; display: flex; align-items: center; justify-content: center; }
.step-connector::after { content: ''; width: 100%; height: 1px; background: var(--border); }
.step-num { font-family: var(--font-mono); font-size: 0.72rem; color: var(--accent); letter-spacing: 0.06em; margin-bottom: 20px; }
.step-body h3 { font-size: 1.15rem; font-weight: 700; margin-bottom: 12px; letter-spacing: -0.01em; }
.step-body p { font-size: 0.92rem; color: var(--fg-muted); line-height: 1.65; }

/* ---- PACKAGES ---- */
.packages { padding: 100px 24px; background: var(--surface); border-top: 1px solid var(--border); }
.packages-inner { max-width: 1200px; margin: 0 auto; }
.packages-sub { font-size: 1.05rem; color: var(--fg-muted); margin-bottom: 56px; margin-top: 16px; max-width: 500px; }
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.pricing-card { background: var(--surface2); border: 1px solid var(--border); border-radius: 16px; padding: 40px 32px; transition: border-color 0.2s; }
.pricing-card.featured { border-color: var(--accent); background: var(--accent-dim); }
.pricing-tier { font-family: var(--font-mono); font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--accent); margin-bottom: 20px; }
.pricing-price { font-size: 3rem; font-weight: 800; letter-spacing: -0.03em; margin-bottom: 8px; font-family: var(--font-mono); }
.pricing-per { font-size: 1rem; font-weight: 400; color: var(--fg-muted); }
.pricing-desc { font-size: 0.88rem; color: var(--fg-muted); margin-bottom: 28px; line-height: 1.5; }
.pricing-features { display: flex; flex-direction: column; gap: 10px; }
.pricing-features li { font-size: 0.88rem; color: var(--fg-muted); display: flex; align-items: flex-start; gap: 10px; line-height: 1.5; }
.pricing-features li::before { content: '→'; color: var(--accent); flex-shrink: 0; font-family: var(--font-mono); }

/* ---- MANIFESTO ---- */
.manifesto { padding: 100px 24px; }
.manifesto-inner { max-width: 860px; margin: 0 auto; }
.manifesto-rule { height: 1px; background: var(--border); margin-bottom: 56px; }
.manifesto blockquote { font-size: clamp(1.3rem, 2.5vw, 1.8rem); font-weight: 600; line-height: 1.4; letter-spacing: -0.02em; margin-bottom: 32px; color: var(--fg); }
.manifesto-body { font-size: 1rem; color: var(--fg-muted); line-height: 1.7; max-width: 580px; }

/* ---- CLOSING ---- */
.closing { padding: 100px 24px; background: var(--surface); border-top: 1px solid var(--border); }
.closing-inner { max-width: 1200px; margin: 0 auto; }
.closing h2 { font-size: clamp(1.8rem, 3.5vw, 3rem); font-weight: 800; letter-spacing: -0.02em; max-width: 680px; line-height: 1.15; margin-bottom: 24px; }
.closing p { font-size: 1.05rem; color: var(--fg-muted); max-width: 520px; line-height: 1.7; }

/* ---- FOOTER ---- */
.footer { padding: 56px 24px; border-top: 1px solid var(--border); }
.footer-inner { max-width: 1200px; margin: 0 auto; }
.footer-logo { display: flex; align-items: center; gap: 10px; font-weight: 700; font-size: 1rem; margin-bottom: 12px; }
.footer-sub { font-size: 0.88rem; color: var(--fg-muted); margin-bottom: 8px; }
.footer-meta { font-family: var(--font-mono); font-size: 0.72rem; color: var(--fg-muted); opacity: 0.5; }

/* ---- RESPONSIVE ---- */
@media (max-width: 900px) {
  .proof-grid { grid-template-columns: 1fr; }
  .steps { flex-direction: column; gap: 12px; }
  .step-connector { width: 100%; height: 1px; }
  .step-connector::after { width: 40px; height: 1px; margin: 0 auto; }
  .pricing-grid { grid-template-columns: 1fr; }
  .hero-stats { gap: 24px; }
  .stat-divider { display: none; }
  .stat { padding: 0; }
}

@media (max-width: 600px) {
  .hero h1 { font-size: 2.4rem; }
  .hero-sub { font-size: 1rem; }
  .hero-stats { flex-direction: column; align-items: flex-start; gap: 20px; }
  .nav-tagline { display: none; }
}