/* === RESET & BASE === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --bg: #0D0D14;
  --bg-alt: #13131F;
  --fg: #F0EDE6;
  --fg-dim: #8A8A9A;
  --accent: #F59E0B;
  --accent-dim: rgba(245, 158, 11, 0.12);
  --card: #16161F;
  --border: rgba(240, 237, 230, 0.08);
  --font-display: 'Plus Jakarta Sans', sans-serif;
  --font-body: 'DM Sans', sans-serif;
}
html { font-size: 16px; }
body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
}
/* === NAV === */
.nav {
  padding: 24px 0;
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: baseline;
  gap: 20px;
}
.nav-logo {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--fg);
  letter-spacing: -0.02em;
}
.nav-tagline {
  font-size: 0.875rem;
  color: var(--fg-dim);
}
/* === HERO === */
.hero {
  padding: 80px 0 100px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(245,158,11,0.07) 0%, transparent 70%);
  pointer-events: none;
}
.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero-eyebrow {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--fg);
  margin-bottom: 24px;
}
.hero-sub {
  font-size: 1.1rem;
  color: var(--fg-dim);
  line-height: 1.7;
  max-width: 480px;
}
/* Hero Visual */
.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  height: 360px;
}
.phone-mockup {
  width: 160px;
  height: 320px;
  background: var(--card);
  border-radius: 24px;
  border: 1.5px solid var(--border);
  padding: 12px;
  flex-shrink: 0;
  box-shadow: 0 24px 64px rgba(0,0,0,0.4);
}
.phone-screen {
  width: 100%;
  height: 100%;
  background: #1E1E2E;
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.video-placeholder {
  flex: 1;
  background: linear-gradient(135deg, #1a1a2e 0%, #252545 50%, #1a1a2e 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  position: relative;
  overflow: hidden;
}
.video-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(0deg, transparent, transparent 18px, rgba(255,255,255,0.02) 18px, rgba(255,255,255,0.02) 19px),
    repeating-linear-gradient(90deg, transparent, transparent 18px, rgba(255,255,255,0.02) 18px, rgba(255,255,255,0.02) 19px);
}
.play-btn {
  width: 40px;
  height: 40px;
  background: var(--accent);
  border-radius: 50%;
  position: relative;
  z-index: 1;
}
.play-btn::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 55%;
  transform: translate(-50%, -50%);
  width: 0;
  height: 0;
  border-left: 10px solid #0D0D14;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
}
.scroll-indicator {
  display: flex;
  gap: 8px;
  z-index: 1;
}
.scroll-indicator span {
  font-size: 0.6rem;
  color: var(--fg-dim);
  background: rgba(255,255,255,0.06);
  padding: 2px 8px;
  border-radius: 20px;
  font-family: var(--font-display);
}
.phone-footer {
  padding: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  border-top: 1px solid var(--border);
}
.pf-avatar {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}
.pf-lines { display: flex; flex-direction: column; gap: 4px; flex: 1; }
.pf-line { height: 5px; background: rgba(255,255,255,0.1); border-radius: 3px; }
.pf-line.long { width: 80%; }
.pf-line.short { width: 55%; }
/* Video cards stack */
.video-cards-stack {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.vcard {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 12px;
  width: 200px;
}
.vcard-thumb {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  flex-shrink: 0;
}
.vc1 .vcard-thumb { background: linear-gradient(135deg, #F59E0B, #D97706); }
.vc2 .vcard-thumb { background: linear-gradient(135deg, #6366F1, #4338CA); }
.vc3 .vcard-thumb { background: linear-gradient(135deg, #10B981, #059669); }
.vcard-label {
  font-size: 0.7rem;
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--fg-dim);
  line-height: 1.3;
}
/* === MANIFESTO === */
.manifesto {
  padding: 80px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg-alt);
}
.manifesto-inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 32px;
  text-align: center;
}
.manifesto-mark {
  font-family: var(--font-display);
  font-size: 5rem;
  color: var(--accent);
  line-height: 0.5;
  margin-bottom: 24px;
}
.manifesto-quote {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  font-weight: 600;
  line-height: 1.5;
  color: var(--fg);
  letter-spacing: -0.01em;
  margin-bottom: 24px;
}
.manifesto-source {
  font-size: 0.875rem;
  color: var(--fg-dim);
  font-style: italic;
}
/* === PILLARS === */
.pillars { padding: 100px 0; }
.pillars-inner { max-width: 1200px; margin: 0 auto; padding: 0 32px; }
.pillars-label {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 48px;
}
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
}
.pillar {}
.pillar-icon {
  width: 52px;
  height: 52px;
  background: var(--accent-dim);
  border: 1px solid rgba(245,158,11,0.2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.pillar-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 12px;
}
.pillar-body {
  font-size: 0.9rem;
  color: var(--fg-dim);
  line-height: 1.7;
}
/* === OUTCOMES === */
.outcomes {
  padding: 80px 0;
  background: var(--bg-alt);
}
.outcomes-inner { max-width: 1200px; margin: 0 auto; padding: 0 32px; }
.outcomes-label {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 40px;
}
.outcomes-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 40px;
}
.outcome-row {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.outcome-bullet {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
  margin-top: 8px;
}
.outcome-text {
  font-size: 0.95rem;
  color: var(--fg);
  line-height: 1.6;
}
.outcomes-note {
  font-size: 0.85rem;
  color: var(--fg-dim);
  border-left: 2px solid var(--accent);
  padding-left: 16px;
}
/* === PRICING === */
.pricing { padding: 100px 0; }
.pricing-inner { max-width: 1200px; margin: 0 auto; padding: 0 32px; }
.pricing-label {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.pricing-headline {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--fg);
  margin-bottom: 56px;
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}
.pricing-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px;
  position: relative;
}
.pricing-card.featured {
  border-color: var(--accent);
  background: rgba(245,158,11,0.04);
}
.pc-badge {
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-dim);
  padding: 3px 10px;
  border-radius: 20px;
  display: inline-block;
  margin-bottom: 12px;
}
.pc-tier {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--fg-dim);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.pc-price {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--fg);
  letter-spacing: -0.03em;
  margin-bottom: 32px;
}
.pc-price span {
  font-size: 1rem;
  font-weight: 500;
  color: var(--fg-dim);
}
.pc-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.pc-features li {
  font-size: 0.875rem;
  color: var(--fg-dim);
  padding-left: 20px;
  position: relative;
}
.pc-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
}
.pricing-clarity {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--fg-dim);
  text-align: center;
  padding: 24px;
  border: 1px solid var(--border);
  border-radius: 12px;
}
/* === CLOSING === */
.closing {
  padding: 100px 0;
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
}
.closing-inner { max-width: 1200px; margin: 0 auto; padding: 0 32px; }
.closing-label {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.closing-headline {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: var(--fg);
  max-width: 700px;
  margin-bottom: 24px;
}
.closing-body {
  font-size: 1rem;
  color: var(--fg-dim);
  line-height: 1.8;
  max-width: 620px;
  margin-bottom: 64px;
}
.closing-proof {
  display: flex;
  align-items: center;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  background: var(--card);
}
.cp-stat {
  flex: 1;
  padding: 32px;
  text-align: center;
}
.cp-number {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: -0.04em;
  margin-bottom: 8px;
}
.cp-desc {
  font-size: 0.8rem;
  color: var(--fg-dim);
  line-height: 1.5;
}
.cp-divider {
  width: 1px;
  height: 80px;
  background: var(--border);
}
/* === FOOTER === */
.footer {
  padding: 60px 0;
  border-top: 1px solid var(--border);
}
.footer-inner { max-width: 1200px; margin: 0 auto; padding: 0 32px; }
.footer-brand {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--fg);
  margin-bottom: 12px;
}
.footer-desc {
  font-size: 0.9rem;
  color: var(--fg-dim);
  margin-bottom: 8px;
}
.footer-note {
  font-size: 0.8rem;
  color: rgba(138,138,154,0.5);
}
/* === RESPONSIVE === */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .pillars-grid { grid-template-columns: 1fr; gap: 32px; }
  .outcomes-list { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .closing-proof { flex-direction: column; }
  .cp-divider { width: 100%; height: 1px; }
}
@media (max-width: 600px) {
  .hero { padding: 48px 0 64px; }
  .manifesto { padding: 60px 0; }
  .pillars, .pricing, .closing { padding: 64px 0; }
  .outcomes { padding: 60px 0; }
  .nav-inner { padding: 0 20px; }
  .manifesto-inner, .pillars-inner, .outcomes-inner, .pricing-inner, .closing-inner, .footer-inner { padding: 0 20px; }
}