:root {
  --bg: #F8F6F1;
  --bg-alt: #F0EDE5;
  --surface: #FFFFFF;
  --fg: #111110;
  --fg-muted: #6B6860;
  --fg-subtle: #9C9A95;
  --amber: #E8621A;
  --amber-light: #FFF0E8;
  --teal: #1A8F7A;
  --teal-light: #E6F5F2;
  --charcoal: #1C1C1A;
  --border: #E0DDD6;
  --border-dark: #3A3A36;
  --frame-bg: #FFFFFF;
  --frame-border: #E8E5DE;
  --font-display: 'Syne', system-ui, sans-serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
  --radius: 12px;
  --radius-sm: 8px;
}

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

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

/* NAV */
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 40px;
  border-bottom: 1px solid var(--border);
}
.nav-brand { display: flex; align-items: center; gap: 10px; }
.nav-logo {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 14px;
  background: var(--fg);
  color: var(--bg);
  width: 30px; height: 30px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 6px;
}
.nav-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  letter-spacing: -0.02em;
}
.nav-tagline { font-size: 13px; color: var(--fg-muted); }

/* HERO */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  padding: 80px 40px 80px;
  min-height: 80vh;
  align-items: center;
  border-bottom: 1px solid var(--border);
}
.hero-content { display: flex; flex-direction: column; gap: 32px; }
.hero-eyebrow {
  display: flex; align-items: center; gap: 8px;
  font-size: 12px; font-weight: 500; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--fg-muted);
}
.eyebrow-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--amber); animation: pulse 2s infinite;
}
@keyframes pulse { 0%,100% { opacity:1; } 50% { opacity: 0.4; } }
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(48px, 6vw, 80px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--fg);
}
.hero-headline em { font-style: normal; color: var(--amber); }
.hero-sub {
  font-size: 18px; color: var(--fg-muted); max-width: 420px;
  line-height: 1.7;
}
.hero-stats { display: flex; align-items: center; gap: 24px; }
.stat { display: flex; flex-direction: column; gap: 4px; }
.stat-number {
  font-family: var(--font-display);
  font-size: 28px; font-weight: 700; color: var(--fg);
}
.stat-label { font-size: 12px; color: var(--fg-muted); line-height: 1.4; }
.stat-divider { width: 1px; height: 40px; background: var(--border); }

/* FRAME STACK */
.hero-visual { display: flex; justify-content: flex-end; }
.frame-stack { position: relative; width: 100%; max-width: 520px; }
.frame {
  background: var(--surface);
  border: 1px solid var(--frame-border);
  border-radius: 14px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.06);
  overflow: hidden;
  position: absolute;
}
.frame-1 { width: 260px; top: 0; left: 0; z-index: 3; transform: rotate(-3deg); }
.frame-2 { width: 260px; top: 20px; left: 60px; z-index: 2; transform: rotate(2deg); }
.frame-3 { width: 260px; top: 60px; left: 110px; z-index: 1; transform: rotate(-1deg); }
.frame-inner { padding: 14px; }
.frame-header { display: flex; align-items: center; gap: 8px; margin-bottom: 10px; }
.app-icon { width: 22px; height: 22px; border-radius: 5px; }
.tiktok-icon { background: #010101; }
.reels-icon { background: linear-gradient(135deg, #833AB4, #FD1D1D, #FCAF45); }
.fb-icon { background: #1877F2; }
.frame-meta { display: flex; flex-direction: column; gap: 1px; }
.account-name { font-size: 11px; font-weight: 600; color: var(--fg); }
.post-time { font-size: 10px; color: var(--fg-subtle); }
.frame-video-area {
  background: var(--bg-alt);
  border-radius: 8px;
  height: 120px;
  margin-bottom: 10px;
  overflow: hidden;
  position: relative;
}
.video-placeholder { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; }
.vp-chef {
  width: 40px; height: 50px;
  background: linear-gradient(180deg, #C9B99A 0%, #8B7355 100%);
  border-radius: 50% 50% 40% 40%;
  position: relative;
}
.vp-chef::before {
  content: ''; position: absolute; top: -12px; left: 4px;
  width: 32px; height: 18px;
  background: #F0EDE5; border-radius: 50% 50% 0 0;
  border: 2px solid #C9B99A;
}
.vp-gym {
  width: 40px; height: 45px;
  background: linear-gradient(180deg, #3D5A4C 0%, #2D4A3C 100%);
  border-radius: 6px;
  position: relative;
}
.vp-gym::after {
  content: ''; position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  width: 20px; height: 4px;
  background: #fff;
  box-shadow: 0 0 0 3px #2D4A3C;
}
.vp-barber {
  width: 36px; height: 46px;
  background: linear-gradient(180deg, #4A3728 0%, #2C1F14 100%);
  border-radius: 4px 4px 8px 8px;
  position: relative;
}
.vp-barber::before {
  content: ''; position: absolute; top: -6px; left: 50%; transform: translateX(-50%);
  width: 12px; height: 8px;
  background: #A0522D; border-radius: 3px;
}
.frame-caption { font-size: 10px; color: var(--fg-muted); margin-bottom: 8px; line-height: 1.5; }
.hashtag { color: #1A8F7A; font-weight: 500; }
.frame-stats { display: flex; gap: 10px; }
.fs-heart, .fs-comment, .fs-share {
  font-size: 10px; color: var(--fg-muted);
  font-family: var(--font-display);
}

/* PROOF */
.proof {
  padding: 20px 40px;
  border-bottom: 1px solid var(--border);
  display: flex; justify-content: center;
}
.proof-badge {
  display: flex; align-items: center; gap: 8px;
  font-size: 12px; color: var(--fg-muted);
  text-transform: uppercase; letter-spacing: 0.06em;
  font-weight: 500;
}
.badge-dot {
  width: 5px; height: 5px; border-radius: 50%;
  background: var(--teal);
}

/* HOW */
.how { padding: 80px 40px; border-bottom: 1px solid var(--border); }
.section-label {
  font-size: 11px; text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--amber); font-weight: 600; margin-bottom: 16px;
}
.section-heading {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 700; line-height: 1.15;
  letter-spacing: -0.02em; margin-bottom: 60px;
  max-width: 500px;
}
.steps {
  display: flex; align-items: flex-start; gap: 20px;
  flex-wrap: wrap;
}
.step { flex: 1; min-width: 220px; }
.step-number {
  font-family: var(--font-display);
  font-size: 40px; font-weight: 800;
  color: var(--border); margin-bottom: 16px;
  letter-spacing: -0.04em;
}
.step-title {
  font-family: var(--font-display);
  font-size: 20px; font-weight: 700; margin-bottom: 10px;
}
.step-body { font-size: 14px; color: var(--fg-muted); line-height: 1.7; }
.step-connector { display: flex; align-items: center; padding-top: 20px; }

/* FEATURES */
.features { padding: 80px 40px; background: var(--charcoal); }
.features .section-label { color: #9C9A95; }
.features .section-heading { color: var(--bg); }
.features-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; }
.feature-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  padding: 40px;
}
.feature-icon { margin-bottom: 24px; }
.feature-title {
  font-family: var(--font-display);
  font-size: 18px; font-weight: 700;
  color: var(--bg); margin-bottom: 12px;
}
.feature-body { font-size: 14px; color: #9C9A95; line-height: 1.7; }

/* PRICING */
.pricing { padding: 80px 40px; border-bottom: 1px solid var(--border); }
.pricing-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; max-width: 700px; }
.price-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 40px;
  position: relative;
}
.price-card-featured {
  background: var(--fg); color: var(--bg);
  border-color: var(--fg);
}
.pc-badge {
  position: absolute; top: -12px; right: 24px;
  background: var(--amber); color: #fff;
  font-size: 11px; font-weight: 600; padding: 4px 12px;
  border-radius: 20px; text-transform: uppercase; letter-spacing: 0.06em;
}
.pc-label {
  font-size: 12px; text-transform: uppercase; letter-spacing: 0.08em;
  font-weight: 600; color: var(--fg-muted); margin-bottom: 16px;
}
.price-card-featured .pc-label { color: #9C9A95; }
.pc-price {
  font-family: var(--font-display);
  font-size: 48px; font-weight: 800; letter-spacing: -0.04em;
  margin-bottom: 28px;
}
.pc-price span { font-size: 18px; font-weight: 500; color: var(--fg-muted); }
.price-card-featured .pc-price span { color: #9C9A95; }
.pc-features { list-style: none; display: flex; flex-direction: column; gap: 12px; margin-bottom: 28px; }
.pc-features li { font-size: 14px; color: var(--fg-muted); 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(--teal); }
.price-card-featured .pc-features li { color: #C0BDB8; }
.price-card-featured .pc-features li::before { background: var(--teal); }
.pc-note { font-size: 12px; color: var(--fg-subtle); }
.price-card-featured .pc-note { color: #6B6860; }
.pricing-proof { display: flex; align-items: center; gap: 16px; margin-top: 40px; }
.pp-item { display: flex; flex-direction: column; gap: 2px; }
.pp-number { font-family: var(--font-display); font-size: 20px; font-weight: 700; color: var(--amber); }
.pp-label { font-size: 12px; color: var(--fg-muted); }
.pp-sep { font-size: 20px; color: var(--border); }

/* MANIFESTO */
.manifesto { padding: 80px 40px; background: var(--bg-alt); border-bottom: 1px solid var(--border); }
.manifesto-content { max-width: 620px; }
.manifesto-kicker {
  font-size: 11px; text-transform: uppercase; letter-spacing: 0.1em;
  font-weight: 600; color: var(--amber); margin-bottom: 20px; margin-top: 40px;
}
.manifesto-kicker:first-child { margin-top: 0; }
.manifesto-solution { color: var(--teal) !important; }
.manifesto-statement { font-size: 18px; color: var(--fg); line-height: 1.8; margin-bottom: 16px; }
.manifesto-answer { font-size: 20px; font-weight: 500; }

/* CLOSING */
.closing { padding: 80px 40px; text-align: center; }
.closing-headline {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 60px);
  font-weight: 800; line-height: 1.1;
  letter-spacing: -0.03em; margin-bottom: 20px;
}
.closing-headline em { font-style: normal; color: var(--amber); }
.closing-sub { font-size: 18px; color: var(--fg-muted); }

/* FOOTER */
.footer { padding: 40px; border-top: 1px solid var(--border); }
.footer-brand { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; }
.footer-logo {
  font-family: var(--font-display); font-weight: 800; font-size: 13px;
  background: var(--fg); color: var(--bg);
  width: 28px; height: 28px; display: flex; align-items: center; justify-content: center;
  border-radius: 5px;
}
.footer-name { font-family: var(--font-display); font-weight: 700; font-size: 15px; }
.footer-tagline { font-size: 13px; color: var(--fg-muted); margin-bottom: 12px; }
.footer-meta { font-size: 11px; color: var(--fg-subtle); }

/* RESPONSIVE */
@media (max-width: 768px) {
  .nav { padding: 16px 20px; }
  .nav-tagline { display: none; }
  .hero { grid-template-columns: 1fr; padding: 48px 20px; gap: 48px; min-height: auto; }
  .hero-visual { justify-content: center; }
  .frame-stack { max-width: 300px; }
  .frame-1, .frame-2, .frame-3 { width: 200px; }
  .frame-1 { left: 0; }
  .frame-2 { left: 40px; }
  .frame-3 { left: 70px; top: 50px; }
  .hero-stats { flex-direction: column; align-items: flex-start; gap: 16px; }
  .stat-divider { display: none; }
  .how, .features, .pricing, .manifesto, .closing { padding: 60px 20px; }
  .features-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .steps { flex-direction: column; }
  .step-connector { display: none; }
  .pricing-proof { flex-wrap: wrap; }
}