:root {
  --bg: #0e0e0e;
  --surface: #1a1a1a;
  --surface-2: #242424;
  --accent: #f59e0b;
  --accent-dim: rgba(245, 158, 11, 0.12);
  --text: #f5f5f0;
  --text-muted: #999990;
  --border: rgba(245, 245, 240, 0.08);
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
}

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

html { scroll-behavior: smooth; }

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

/* NAVBAR */
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 48px;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  background: rgba(14, 14, 14, 0.92);
  backdrop-filter: blur(12px);
  z-index: 100;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.brand-mark {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 18px;
  color: var(--accent);
  letter-spacing: -1px;
}

.brand-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  color: var(--text);
}

.nav-tagline {
  font-size: 12px;
  color: var(--text-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* SECTION COMMONS */
.section-eyebrow {
  display: block;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
  font-weight: 600;
}

.section-heading {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  line-height: 1.15;
  color: var(--text);
  margin-bottom: 48px;
}

/* HERO */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 80px 48px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 50% at 70% 50%, rgba(245, 158, 11, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.hero-label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  color: var(--text-muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 28px;
}

.label-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  display: inline-block;
  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, 7vw, 96px);
  font-weight: 900;
  line-height: 1.0;
  color: var(--text);
  letter-spacing: -2px;
}

.hero-aside {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.hero-body {
  font-size: 18px;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 440px;
}

.hero-stat {
  display: flex;
  align-items: baseline;
  gap: 16px;
}

.stat-number {
  font-family: var(--font-display);
  font-size: 72px;
  font-weight: 900;
  color: var(--accent);
  line-height: 1;
}

.stat-label {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.5;
}

/* PROBLEM */
.problem {
  padding: 120px 48px;
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.problem-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.problem-header {
  margin-bottom: 64px;
}

.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

.problem-card {
  background: var(--surface-2);
  padding: 40px 36px;
  border: 1px solid var(--border);
}

.problem-card + .problem-card {
  border-left: 1px solid var(--border);
}

.problem-icon {
  color: var(--accent);
  margin-bottom: 24px;
}

.problem-card h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 12px;
}

.problem-card p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* SOLUTION */
.solution {
  padding: 120px 48px;
}

.solution-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.solution-body {
  font-size: 17px;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 32px;
}

.solution-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tag {
  padding: 6px 14px;
  background: var(--accent-dim);
  border: 1px solid rgba(245, 158, 11, 0.25);
  border-radius: 2px;
  font-size: 12px;
  font-weight: 500;
  color: var(--accent);
  letter-spacing: 0.04em;
}

/* MOCK REEL */
.mock-reel {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.5);
}

.mock-reel-top {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  border-bottom: 1px solid var(--border);
}

.mock-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), #d97706);
}

.mock-lines { flex: 1; }

.mock-name {
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
}

.mock-handle {
  font-size: 11px;
  color: var(--text-muted);
}

.mock-video-block {
  aspect-ratio: 9/16;
  background: linear-gradient(160deg, #1a1a1a 0%, #2a2a2a 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 24px;
  position: relative;
}

.mock-play {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(245, 158, 11, 0.2);
  border: 2px solid var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
}

.mock-caption {
  font-size: 13px;
  color: var(--text-muted);
  text-align: center;
  max-width: 200px;
  font-style: italic;
}

.mock-stats {
  display: flex;
  justify-content: center;
  gap: 28px;
  padding: 14px 20px;
  border-top: 1px solid var(--border);
}

.mock-stats span {
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 500;
}

/* PRICING */
.pricing {
  padding: 120px 48px;
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.pricing-inner { max-width: 1200px; margin: 0 auto; }

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}

.pricing-card {
  background: var(--surface-2);
  border: 1px solid var(--border);
  padding: 40px 32px;
  position: relative;
  border-radius: 2px;
}

.pricing-card.featured {
  border-color: var(--accent);
  background: linear-gradient(180deg, rgba(245, 158, 11, 0.05) 0%, var(--surface-2) 60%);
}

.card-badge {
  position: absolute;
  top: -12px;
  left: 32px;
  background: var(--accent);
  color: #0e0e0e;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 12px;
}

.card-label {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 16px;
  font-weight: 600;
}

.card-price {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 900;
  color: var(--text);
  line-height: 1;
  margin-bottom: 32px;
}

.per-mo {
  font-size: 16px;
  font-weight: 400;
  color: var(--text-muted);
}

.card-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card-features li {
  font-size: 14px;
  color: var(--text-muted);
  padding-left: 20px;
  position: relative;
}

.card-features li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-size: 12px;
}

/* PROCESS */
.process {
  padding: 120px 48px;
}

.process-inner { max-width: 1200px; margin: 0 auto; }

.process-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
}

.step {}

.step-num {
  font-family: var(--font-display);
  font-size: 64px;
  font-weight: 900;
  color: var(--border);
  line-height: 1;
  margin-bottom: 20px;
}

.step h3 {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 12px;
}

.step p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* CLOSING */
.closing {
  padding: 140px 48px;
  background: var(--surface);
  border-top: 1px solid var(--border);
  text-align: center;
}

.closing-inner { max-width: 900px; margin: 0 auto; }

.closing-stat {
  font-family: var(--font-display);
  font-size: clamp(80px, 15vw, 160px);
  font-weight: 900;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 16px;
  letter-spacing: -4px;
}

.closing-label {
  font-size: 20px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 64px;
}

.closing-heading {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 700;
  margin-bottom: 20px;
}

.closing-sub {
  font-size: 16px;
  color: var(--text-muted);
  max-width: 540px;
  margin: 0 auto;
  line-height: 1.7;
}

/* FOOTER */
.footer {
  padding: 48px;
  border-top: 1px solid var(--border);
}

.footer-inner { max-width: 1200px; margin: 0 auto; }

.footer-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
}

.brand-mark-sm {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 14px;
  color: var(--accent);
}

.footer-name {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
}

.footer-tagline {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.footer-copy {
  font-size: 11px;
  color: rgba(153, 153, 144, 0.5);
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .navbar, .hero, .problem, .solution, .pricing, .process, .closing, .footer {
    padding-left: 24px;
    padding-right: 24px;
  }
  .hero-inner,
  .solution-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .hero-headline { font-size: 48px; letter-spacing: -1px; }
  .problem-grid { grid-template-columns: 1fr; }
  .problem-card + .problem-card { border-left: none; border-top: 1px solid var(--border); }
  .pricing-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; }
  .stat-number { font-size: 48px; }
}

@media (max-width: 480px) {
  .navbar { padding: 16px 24px; }
  .hero { padding: 60px 24px; }
  .hero-headline { font-size: 40px; }
}