:root {
  --bg: #0A0A0F;
  --surface: #111118;
  --surface-2: #1A1A22;
  --accent: #C8FF4D;
  --accent-dim: rgba(200, 255, 77, 0.12);
  --text: #F5F0E8;
  --text-muted: #8A8A9A;
  --border: rgba(245, 240, 232, 0.08);
  --radius: 12px;
  --font-display: 'Syne', sans-serif;
  --font-body: 'DM Sans', sans-serif;
}

* { 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 {
  padding: 20px 40px;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
}
.nav-logo {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: -0.5px;
  color: var(--accent);
}

/* Section label */
.section-label {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--accent);
  display: block;
  margin-bottom: 24px;
}

/* Hero */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  padding: 100px 40px 80px;
  max-width: 1200px;
  margin: 0 auto;
  align-items: center;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--text-muted);
  background: var(--accent-dim);
  border: 1px solid rgba(200, 255, 77, 0.2);
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 32px;
  font-weight: 400;
}
.badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(52px, 6vw, 80px);
  font-weight: 800;
  line-height: 1.0;
  letter-spacing: -2px;
  color: var(--text);
  margin-bottom: 28px;
}
.headline-accent {
  color: var(--accent);
}
.hero-sub {
  font-size: 18px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 48px;
  font-weight: 300;
}
.hero-meta {
  display: flex;
  align-items: center;
  gap: 32px;
}
.meta-item {
  display: flex;
  flex-direction: column;
}
.meta-num {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  color: var(--text);
  line-height: 1;
  margin-bottom: 4px;
}
.meta-label {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.4;
}
.meta-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
}

/* Hero Visual */
.hero-visual { position: relative; }
.video-card-stack { position: relative; height: 360px; }
.video-card {
  position: absolute;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  width: 220px;
}
.card-1 { top: 0; left: 0; transform: rotate(-4deg); z-index: 1; }
.card-2 { top: 60px; left: 70px; z-index: 2; }
.card-3 { top: 130px; left: 40px; transform: rotate(3deg); z-index: 3; }
.card-thumb {
  height: 130px;
  background: linear-gradient(135deg, var(--surface-2), var(--bg));
  position: relative;
  overflow: hidden;
}
.card-thumb::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(45deg, transparent 40%, rgba(200, 255, 77, 0.05) 100%);
}
.card-body { padding: 14px; }
.card-line {
  height: 8px;
  border-radius: 4px;
  background: var(--surface-2);
  margin-bottom: 8px;
}
.card-line.long { width: 90%; }
.card-line.medium { width: 65%; }
.card-line.short { width: 50%; }
.card-tag {
  font-size: 10px;
  color: var(--accent);
  font-weight: 500;
  letter-spacing: 0.5px;
  margin-top: 6px;
}

/* Proof */
.proof {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 80px 40px;
}
.proof-inner { max-width: 1200px; margin: 0 auto; }
.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.proof-card {
  background: var(--surface);
  padding: 36px;
  transition: background 0.2s;
}
.proof-card:hover { background: var(--surface-2); }
.proof-icon {
  color: var(--accent);
  margin-bottom: 16px;
}
.proof-card h3 {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 10px;
}
.proof-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* How */
.how { padding: 80px 40px; }
.how-inner { max-width: 900px; margin: 0 auto; }
.how-steps { display: flex; align-items: flex-start; gap: 24px; }
.step { flex: 1; }
.step-connector {
  width: 40px;
  height: 1px;
  background: var(--border);
  margin-top: 28px;
  flex-shrink: 0;
}
.step-num {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--accent);
  display: block;
  margin-bottom: 12px;
}
.step h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
}
.step p { font-size: 14px; color: var(--text-muted); line-height: 1.7; }

/* Pricing */
.pricing {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 80px 40px;
}
.pricing-inner { max-width: 1200px; margin: 0 auto; }
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 32px;
}
.pricing-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px;
  position: relative;
}
.pricing-card.featured {
  border-color: var(--accent);
  background: var(--accent-dim);
}
.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: var(--bg);
  font-size: 11px;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 999px;
  letter-spacing: 0.5px;
}
.pricing-header { margin-bottom: 16px; }
.tier-name {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-muted);
  display: block;
  margin-bottom: 12px;
}
.pricing-price { display: flex; align-items: baseline; gap: 2px; }
.currency {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  color: var(--text-muted);
}
.amount {
  font-family: var(--font-display);
  font-size: 52px;
  font-weight: 800;
  line-height: 1;
}
.period { font-size: 16px; color: var(--text-muted); margin-left: 2px; }
.tier-desc {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 24px;
  line-height: 1.6;
}
.tier-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.tier-features li {
  font-size: 14px;
  color: var(--text);
  padding-left: 20px;
  position: relative;
}
.tier-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
}
.pricing-note {
  font-size: 13px;
  color: var(--text-muted);
  text-align: center;
  font-style: italic;
}

/* Closing */
.closing { padding: 100px 40px; }
.closing-inner { max-width: 800px; margin: 0 auto; text-align: center; }
.closing-statement {
  font-family: var(--font-display);
  font-size: clamp(24px, 4vw, 42px);
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: -0.5px;
  color: var(--text-muted);
}
.closing-statement strong {
  color: var(--accent);
}

/* Footer */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 32px 40px;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-brand {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  color: var(--accent);
}
.footer-tagline { font-size: 14px; color: var(--text-muted); }

/* Responsive */
@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; gap: 60px; padding: 60px 24px 60px; }
  .hero-visual { display: none; }
  .proof-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .how-steps { flex-direction: column; }
  .step-connector { display: none; }
  .navbar { padding: 16px 24px; }
  .footer-inner { flex-direction: column; gap: 12px; text-align: center; }
  .br-desk { display: none; }
  .hero-meta { flex-wrap: wrap; gap: 20px; }
  .meta-divider { display: none; }
}

@media (max-width: 480px) {
  .hero-headline { font-size: 42px; }
  .amount { font-size: 40px; }
}