:root {
  --bg: #0c0c0e;
  --bg-2: #111114;
  --bg-card: #18181c;
  --fg: #f0ece4;
  --fg-muted: #8a8693;
  --accent: #ff4d00;
  --accent-dim: rgba(255, 77, 0, 0.12);
  --border: rgba(240, 236, 228, 0.08);
  --font-head: 'Syne', sans-serif;
  --font-body: 'DM Sans', sans-serif;
  --radius: 12px;
  --radius-sm: 6px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  font-size: 16px;
  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 {
  width: 32px;
  height: 32px;
  background: var(--accent);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 13px;
  color: #fff;
  letter-spacing: -0.5px;
}
.brand-name {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 17px;
  letter-spacing: -0.3px;
}
.nav-tagline {
  font-size: 13px;
  color: var(--fg-muted);
  font-weight: 300;
  letter-spacing: 0.3px;
}

/* HERO */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  padding: 80px 48px 96px;
  align-items: center;
  max-width: 1280px;
  margin: 0 auto;
}
.hero-badge {
  display: inline-block;
  background: var(--accent-dim);
  color: var(--accent);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 100px;
  margin-bottom: 28px;
}
.hero-headline {
  font-family: var(--font-head);
  font-size: clamp(48px, 6vw, 76px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -2px;
  margin-bottom: 24px;
}
.hero-headline .accent {
  color: var(--accent);
}
.hero-sub {
  font-size: 18px;
  color: var(--fg-muted);
  max-width: 480px;
  line-height: 1.65;
  margin-bottom: 40px;
  font-weight: 300;
}
.hero-pricing {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  max-width: 520px;
}
.pricing-block {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  position: relative;
}
.pricing-block.featured {
  border-color: var(--accent);
  background: rgba(255, 77, 0, 0.06);
}
.pricing-badge {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.5px;
  padding: 3px 10px;
  border-radius: 100px;
  white-space: nowrap;
}
.pricing-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--fg-muted);
  font-weight: 600;
  margin-bottom: 6px;
}
.pricing-amount {
  font-family: var(--font-head);
  font-size: 32px;
  font-weight: 800;
  letter-spacing: -1px;
  margin-bottom: 14px;
}
.pricing-period {
  font-size: 16px;
  font-weight: 400;
  color: var(--fg-muted);
}
.pricing-features {
  list-style: none;
  font-size: 13px;
  color: var(--fg-muted);
  line-height: 1.9;
}
.pricing-features li::before {
  content: '— ';
  color: var(--accent);
  margin-right: 4px;
}
.hero-cta-label {
  margin-top: 20px;
  font-size: 13px;
  color: var(--fg-muted);
  max-width: 520px;
}

/* HERO VISUAL */
.hero-visual {
  display: flex;
  justify-content: center;
}
.phone-mock {
  width: 280px;
  background: #1c1c22;
  border-radius: 36px;
  padding: 12px;
  box-shadow: 0 32px 80px rgba(0,0,0,0.6), 0 0 0 1px rgba(255,255,255,0.06);
}
.phone-screen {
  background: #0e0e12;
  border-radius: 28px;
  padding: 20px 16px;
  min-height: 420px;
}
.app-header {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--fg-muted);
  margin-bottom: 20px;
  font-weight: 500;
}
.app-logo {
  width: 22px;
  height: 22px;
  background: var(--accent);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 9px;
  font-weight: 800;
  color: #fff;
}
.app-stats {
  margin-bottom: 20px;
}
.stat-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  font-size: 12px;
}
.stat-label { color: var(--fg-muted); }
.stat-val { font-weight: 600; }
.stat-val.accent { color: var(--accent); }
.app-feed { display: flex; flex-direction: column; gap: 8px; }
.feed-item {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--bg-card);
  border-radius: 8px;
  padding: 10px 12px;
}
.feed-icon {
  font-size: 10px;
  font-weight: 700;
  padding: 3px 7px;
  border-radius: 4px;
  min-width: 38px;
  text-align: center;
}
.feed-icon.tik { background: rgba(255, 77, 240, 0.15); color: #ff4df0; }
.feed-icon.ig { background: rgba(255, 100, 50, 0.15); color: #ff6432; }
.feed-icon.yt { background: rgba(255, 50, 50, 0.15); color: #ff3232; }
.feed-title { font-size: 12px; font-weight: 500; }
.feed-time { font-size: 10px; color: var(--fg-muted); }

/* MANIFESTO */
.manifesto {
  padding: 80px 48px;
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.manifesto-inner { max-width: 900px; margin: 0 auto; }
.manifesto-eyebrow {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 20px;
}
.manifesto-statement {
  font-family: var(--font-head);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -1px;
  margin-bottom: 24px;
}
.manifesto-body {
  font-size: 17px;
  color: var(--fg-muted);
  line-height: 1.7;
  max-width: 680px;
  font-weight: 300;
}

/* PILLARS */
.pillars { padding: 80px 48px; }
.pillars-inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 1100px;
  margin: 0 auto;
}
.pillar {
  padding: 28px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.pillar-icon {
  width: 48px;
  height: 48px;
  background: var(--accent-dim);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  margin-bottom: 18px;
}
.pillar-title {
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: -0.3px;
}
.pillar-body {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.65;
}

/* PROCESS */
.process {
  padding: 80px 48px;
  background: var(--bg-2);
  border-top: 1px solid var(--border);
}
.process-inner { max-width: 900px; margin: 0 auto; }
.process-header { margin-bottom: 48px; }
.process-eyebrow {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 12px;
}
.process-title {
  font-family: var(--font-head);
  font-size: clamp(24px, 3.5vw, 36px);
  font-weight: 700;
  letter-spacing: -0.8px;
}
.steps { display: flex; flex-direction: column; gap: 0; }
.step {
  display: flex;
  gap: 32px;
  padding: 32px 0;
  border-bottom: 1px solid var(--border);
  align-items: flex-start;
}
.step:last-child { border-bottom: none; }
.step-num {
  font-family: var(--font-head);
  font-size: 48px;
  font-weight: 800;
  color: var(--accent);
  opacity: 0.3;
  line-height: 1;
  min-width: 64px;
  letter-spacing: -2px;
}
.step-title {
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
}
.step-body {
  font-size: 15px;
  color: var(--fg-muted);
  line-height: 1.65;
}

/* CLOSING */
.closing {
  padding: 96px 48px;
}
.closing-inner { max-width: 900px; margin: 0 auto; text-align: center; }
.closing-statement {
  font-family: var(--font-head);
  font-size: clamp(24px, 4vw, 40px);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -1px;
  margin-bottom: 20px;
}
.closing-sub {
  font-size: 17px;
  color: var(--fg-muted);
  line-height: 1.65;
  max-width: 560px;
  margin: 0 auto;
  font-weight: 300;
}

/* FOOTER */
.footer {
  padding: 32px 48px;
  border-top: 1px solid var(--border);
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.footer-brand { display: flex; align-items: center; gap: 8px; }
.footer-tagline {
  font-size: 13px;
  color: var(--fg-muted);
  flex: 1;
}
.footer-copy {
  font-size: 12px;
  color: var(--fg-muted);
  opacity: 0.5;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .nav { padding: 20px 24px; }
  .hero {
    grid-template-columns: 1fr;
    padding: 48px 24px 64px;
    gap: 48px;
  }
  .hero-visual { order: -1; }
  .phone-mock { width: 220px; }
  .hero-headline { font-size: 44px; }
  .hero-pricing { max-width: 100%; }
  .manifesto, .pillars, .process, .closing { padding: 64px 24px; }
  .pillars-inner { grid-template-columns: 1fr; }
  .footer { padding: 24px; }
  .footer-inner { flex-direction: column; align-items: flex-start; gap: 12px; }
}

@media (max-width: 480px) {
  .hero-pricing { grid-template-columns: 1fr; }
  .phone-mock { width: 180px; }
}