:root {
  --bg: #0d0d0d;
  --bg-card: #161616;
  --bg-card-alt: #1e1e1e;
  --fg: #f5f0e8;
  --fg-muted: #9a9590;
  --accent: #e8a317;
  --accent-dim: rgba(232, 163, 23, 0.12);
  --border: rgba(245, 240, 232, 0.08);
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
  --max-w: 1100px;
}

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

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

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

/* ── NAV ── */
.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 2rem;
  max-width: var(--max-w);
  margin: 0 auto;
  border-bottom: 1px solid var(--border);
}
.nav-brand {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--accent);
}
.nav-tagline {
  font-size: 0.75rem;
  color: var(--fg-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* ── HERO ── */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 5rem 2rem 4rem;
  min-height: 88vh;
}

.hero-badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-dim);
  border: 1px solid rgba(232, 163, 23, 0.25);
  padding: 0.35rem 0.75rem;
  border-radius: 2rem;
  margin-bottom: 1.5rem;
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 5vw, 4rem);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
  color: var(--fg);
}
.hero-headline em {
  font-style: normal;
  color: var(--accent);
}

.hero-lede {
  font-size: 1.05rem;
  color: var(--fg-muted);
  line-height: 1.7;
  max-width: 440px;
  margin-bottom: 2.5rem;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}
.stat { display: flex; flex-direction: column; }
.stat-number {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
}
.stat-label { font-size: 0.7rem; color: var(--fg-muted); margin-top: 0.3rem; text-transform: uppercase; letter-spacing: 0.05em; }
.stat-divider { width: 1px; height: 2.5rem; background: var(--border); }

/* ── HERO VISUAL ── */
.hero-visual { display: flex; justify-content: center; }
.phone-frame {
  position: relative;
  width: 260px;
  background: #1a1a2e;
  border-radius: 2.5rem;
  padding: 14px;
  box-shadow: 0 40px 80px rgba(0,0,0,0.6), 0 0 0 1px rgba(255,255,255,0.06), inset 0 0 0 1px rgba(255,255,255,0.04);
}
.phone-screen {
  background: #0d0d0d;
  border-radius: 1.8rem;
  overflow: hidden;
  height: 460px;
}
.phone-content {
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  height: 100%;
}
.video-card {
  background: linear-gradient(135deg, #1a1a2e 0%, #2d1b4e 100%);
  border-radius: 1rem;
  padding: 1rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.vc-top { display: flex; align-items: center; gap: 0.5rem; }
.vc-icon { font-size: 0.9rem; color: #ff4757; }
.vc-text { font-size: 0.65rem; color: rgba(255,255,255,0.5); }
.vc-bottom { display: flex; justify-content: space-between; align-items: flex-end; }
.vc-caption { font-size: 0.7rem; color: rgba(255,255,255,0.85); font-weight: 500; }
.vc-platform { font-size: 0.6rem; color: rgba(255,255,255,0.4); text-transform: uppercase; letter-spacing: 0.05em; }

.post-card {
  background: var(--bg-card-alt);
  border-radius: 0.75rem;
  overflow: hidden;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.pc-bar { padding: 0.5rem 0.75rem; display: flex; justify-content: space-between; align-items: center; border-bottom: 1px solid var(--border); }
.pc-dots { display: flex; gap: 3px; }
.pc-dots::before, .pc-dots::after, span { width: 4px; height: 4px; border-radius: 50%; background: rgba(255,255,255,0.2); display: block; }
.pc-logo { font-size: 0.65rem; font-weight: 700; color: var(--accent); }
.pc-img { height: 40px; background: linear-gradient(135deg, #e8a317 0%, #f59e0b 50%, #fbbf24 100%); flex-shrink: 0; }
.pc-caption { padding: 0.5rem 0.75rem; font-size: 0.65rem; color: rgba(255,255,255,0.6); }

.flyer-card {
  background: linear-gradient(135deg, #1a1a2e 0%, #1a2e1a 100%);
  border-radius: 0.75rem;
  padding: 0.75rem;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.flyer-inner { text-align: center; }
.flyer-title { display: block; font-family: var(--font-display); font-size: 0.9rem; color: var(--accent); font-weight: 700; }
.flyer-sub { display: block; font-size: 0.6rem; color: rgba(255,255,255,0.5); text-transform: uppercase; letter-spacing: 0.08em; margin-top: 0.25rem; }

/* ── PROOF STRIP ── */
.proof { background: var(--bg-card); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.proof-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 2.5rem 2rem;
  flex-wrap: wrap;
}
.proof-stat { text-align: center; }
.proof-number { display: block; font-family: var(--font-display); font-size: 2rem; font-weight: 700; color: var(--accent); line-height: 1; }
.proof-desc { display: block; font-size: 0.75rem; color: var(--fg-muted); margin-top: 0.4rem; max-width: 160px; }
.proof-sep { width: 1px; height: 2.5rem; background: var(--border); }

/* ── SECTION SHARED ── */
.section-label {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.75rem;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--fg);
  margin-bottom: 3rem;
}

/* ── SERVICES ── */
.services {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 5rem 2rem;
}
.services-header { margin-bottom: 3rem; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 1rem;
  overflow: hidden;
}
.service-card {
  background: var(--bg-card);
  padding: 2rem 1.75rem;
  transition: background 0.2s;
}
.service-card:hover { background: var(--bg-card-alt); }
.service-card--primary { background: var(--accent-dim); }
.sc-icon { font-size: 1.75rem; margin-bottom: 1rem; display: block; }
.sc-title { font-size: 1rem; font-weight: 600; color: var(--fg); margin-bottom: 0.5rem; }
.sc-desc { font-size: 0.825rem; color: var(--fg-muted); line-height: 1.6; }

/* ── HOW ── */
.how {
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 5rem 2rem;
}
.how-header { max-width: var(--max-w); margin: 0 auto 3rem; }
.how-steps { max-width: var(--max-w); margin: 0 auto; display: flex; flex-direction: column; gap: 0; }
.step {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--border);
}
.step:last-child { border-bottom: none; }
.step-num {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 900;
  color: rgba(232, 163, 23, 0.2);
  line-height: 1;
  flex-shrink: 0;
  width: 4rem;
  text-align: right;
}
.step-body { flex: 1; }
.step-title { font-size: 1.15rem; font-weight: 600; color: var(--fg); margin-bottom: 0.75rem; }
.step-desc { font-size: 0.9rem; color: var(--fg-muted); line-height: 1.7; max-width: 560px; }

/* ── PRICING ── */
.pricing { max-width: var(--max-w); margin: 0 auto; padding: 5rem 2rem; }
.pricing-header { margin-bottom: 3rem; }
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin-bottom: 2rem; }
.price-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 2rem;
  position: relative;
}
.price-card--featured {
  background: var(--accent-dim);
  border-color: rgba(232, 163, 23, 0.3);
}
.pc-badge {
  position: absolute;
  top: -0.75rem;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #0d0d0d;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.25rem 0.75rem;
  border-radius: 2rem;
  white-space: nowrap;
}
.pc-tier { font-size: 0.75rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--fg-muted); margin-bottom: 0.75rem; }
.pc-amount { font-family: var(--font-display); font-size: 2.25rem; font-weight: 900; color: var(--fg); line-height: 1; margin-bottom: 1.5rem; }
.pc-period { font-size: 1rem; font-weight: 400; color: var(--fg-muted); }
.pc-features { list-style: none; margin-bottom: 1.5rem; }
.pc-features li { font-size: 0.825rem; color: var(--fg-muted); padding: 0.4rem 0; border-bottom: 1px solid var(--border); }
.pc-features li:last-child { border-bottom: none; }
.pc-fit { font-size: 0.75rem; color: var(--accent); font-weight: 500; }
.pricing-note { font-size: 0.8rem; color: var(--fg-muted); text-align: center; }

/* ── CLOSING ── */
.closing {
  background: linear-gradient(180deg, var(--bg-card) 0%, var(--bg) 100%);
  border-top: 1px solid var(--border);
  padding: 6rem 2rem;
}
.closing-inner { max-width: 680px; margin: 0 auto; text-align: center; }
.closing-headline { font-family: var(--font-display); font-size: clamp(1.75rem, 3vw, 2.75rem); font-weight: 900; letter-spacing: -0.02em; line-height: 1.15; margin-bottom: 1.5rem; color: var(--fg); }
.closing-body { font-size: 1rem; color: var(--fg-muted); line-height: 1.8; margin-bottom: 1rem; }
.closing-vibe { font-family: var(--font-display); font-size: 1.1rem; font-style: italic; color: var(--accent); margin-top: 2rem; }

/* ── FOOTER ── */
.footer { border-top: 1px solid var(--border); padding: 2.5rem 2rem; }
.footer-inner { max-width: var(--max-w); margin: 0 auto; text-align: center; }
.footer-brand { font-family: var(--font-display); font-size: 1.25rem; font-weight: 700; color: var(--accent); margin-bottom: 0.5rem; }
.footer-tagline { font-size: 0.85rem; color: var(--fg-muted); margin-bottom: 0.5rem; }
.footer-meta { font-size: 0.75rem; color: rgba(245, 240, 232, 0.25); letter-spacing: 0.05em; }

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .hero { grid-template-columns: 1fr; gap: 2.5rem; padding: 3rem 1.5rem 2.5rem; min-height: auto; }
  .hero-visual { order: -1; }
  .phone-frame { width: 200px; }
  .phone-screen { height: 360px; }
  .hero-headline { font-size: 2.25rem; }
  .hero-lede { max-width: 100%; }
  .hero-stats { gap: 1.25rem; }
  .services-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .proof-inner { gap: 1.5rem; }
  .proof-sep { display: none; }
  .step { flex-direction: column; gap: 0.75rem; }
  .step-num { font-size: 2rem; width: auto; text-align: left; }
  .nav { padding: 1rem 1.5rem; }
}

@media (max-width: 480px) {
  .phone-frame { width: 170px; }
  .phone-screen { height: 300px; }
  .hero-headline { font-size: 1.85rem; }
  .hero-stats { flex-direction: column; gap: 1rem; align-items: flex-start; }
  .stat-divider { display: none; }
  .proof-inner { flex-direction: column; gap: 1.5rem; }
  .proof-sep { display: none; }
}