:root {
  --bg: #F9F8F5;
  --fg: #0D0D0D;
  --fg-muted: #5A5A5A;
  --accent: #BFFF00;
  --accent-dark: #99CC00;
  --surface: #FFFFFF;
  --surface-alt: #F0EFE9;
  --border: rgba(13,13,13,0.1);
  --font-display: 'Syne', sans-serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;
  --radius: 8px;
  --radius-lg: 16px;
}

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

html { scroll-behavior: smooth; }

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

/* HEADER */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(249,248,245,0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 16px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.wordmark {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 20px;
  letter-spacing: -0.5px;
}
.site-header nav { display: flex; gap: 32px; }
.site-header nav a {
  text-decoration: none;
  color: var(--fg-muted);
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s;
}
.site-header nav a:hover { color: var(--fg); }

/* HERO */
.hero { padding: 80px 32px 64px; }
.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.hero-eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-bottom: 16px;
}
.hero-copy h1 {
  font-family: var(--font-display);
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -1.5px;
  margin-bottom: 24px;
}
.hero-sub {
  font-size: 17px;
  color: var(--fg-muted);
  line-height: 1.65;
  max-width: 460px;
  margin-bottom: 40px;
}
.hero-stats { display: flex; gap: 32px; }
.stat { display: flex; flex-direction: column; }
.stat-number {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--fg);
}
.stat-label { font-size: 11px; color: var(--fg-muted); margin-top: 2px; line-height: 1.3; max-width: 80px; }

/* HERO VISUAL */
.hero-visual { display: flex; justify-content: center; }
.video-card-stack { position: relative; width: 280px; height: 340px; }
.vcard {
  position: absolute;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0,0,0,0.08);
}
.vcard-thumb {
  width: 100%;
  height: 140px;
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  position: relative;
  overflow: hidden;
}
.vcard-thumb::after {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    90deg,
    transparent,
    transparent 10px,
    rgba(191,255,0,0.05) 10px,
    rgba(191,255,0,0.05) 11px
  );
}
.vcard-label {
  padding: 10px 14px;
  font-size: 12px;
  font-weight: 600;
  color: var(--fg-muted);
}
.vc1 { width: 200px; top: 0; left: 0; transform: rotate(-4deg); z-index: 1; }
.vc2 { width: 200px; top: 40px; left: 40px; transform: rotate(2deg); z-index: 2; }
.vc3 { width: 200px; top: 90px; left: 80px; transform: rotate(-2deg); z-index: 3; }

/* PROOF BAR */
.proof { background: var(--fg); color: var(--bg); padding: 48px 32px; }
.proof-inner { max-width: 1200px; margin: 0 auto; display: flex; align-items: center; gap: 48px; }
.proof-block { flex: 1; text-align: center; }
.proof-headline { display: block; font-family: var(--font-display); font-size: 40px; font-weight: 800; color: var(--accent); }
.proof-sub { display: block; font-size: 13px; color: rgba(249,248,245,0.6); margin-top: 4px; }
.proof-divider { width: 1px; height: 48px; background: rgba(249,248,245,0.15); }

/* SERVICES */
.services { padding: 96px 32px; }
.services-inner { max-width: 1200px; margin: 0 auto; }
.section-eyebrow { font-size: 12px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--fg-muted); margin-bottom: 12px; }
.section-heading { font-family: var(--font-display); font-size: clamp(28px, 4vw, 44px); font-weight: 700; letter-spacing: -1px; line-height: 1.1; max-width: 600px; margin-bottom: 56px; }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.service-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 32px; transition: box-shadow 0.3s, border-color 0.3s; }
.service-card:hover { box-shadow: 0 8px 32px rgba(0,0,0,0.06); border-color: rgba(13,13,13,0.2); }
.service-icon { width: 40px; height: 40px; background: var(--accent); border-radius: var(--radius); display: flex; align-items: center; justify-content: center; margin-bottom: 16px; color: var(--fg); }
.service-card h3 { font-family: var(--font-display); font-size: 16px; font-weight: 700; margin-bottom: 8px; }
.service-card p { font-size: 14px; color: var(--fg-muted); line-height: 1.55; }

/* PRICING */
.pricing { background: var(--surface-alt); padding: 96px 32px; }
.pricing-inner { max-width: 1200px; margin: 0 auto; }
.pricing-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; margin-bottom: 32px; }
.pricing-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 40px; position: relative; }
.pricing-card-featured { border-color: var(--fg); box-shadow: 6px 6px 0 var(--fg); }
.pricing-badge { position: absolute; top: -12px; left: 32px; background: var(--accent); color: var(--fg); font-size: 11px; font-weight: 700; padding: 4px 12px; border-radius: 100px; text-transform: uppercase; letter-spacing: 0.05em; }
.pricing-tier { font-family: var(--font-display); font-size: 14px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; color: var(--fg-muted); }
.pricing-price { display: flex; align-items: baseline; gap: 4px; margin: 12px 0 8px; }
.price-amount { font-family: var(--font-display); font-size: 48px; font-weight: 800; letter-spacing: -1px; }
.price-period { font-size: 16px; color: var(--fg-muted); }
.pricing-desc { font-size: 14px; color: var(--fg-muted); margin-bottom: 28px; }
.pricing-features { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.pricing-features li { font-size: 14px; display: flex; align-items: center; gap: 10px; }
.pricing-features li::before { content: ''; display: block; width: 16px; height: 16px; background: var(--accent); border-radius: 50%; flex-shrink: 0; }
.pricing-note { font-size: 13px; color: var(--fg-muted); text-align: center; }

/* PROCESS */
.process { padding: 96px 32px; }
.process-inner { max-width: 1200px; margin: 0 auto; }
.process-steps { display: flex; flex-direction: column; gap: 0; }
.step { display: grid; grid-template-columns: 80px 1fr; gap: 32px; align-items: start; padding: 32px 0; border-bottom: 1px solid var(--border); }
.step:last-child { border-bottom: none; }
.step-number { font-family: var(--font-display); font-size: 48px; font-weight: 800; color: var(--surface-alt); line-height: 1; padding-top: 4px; }
.step-content h3 { font-family: var(--font-display); font-size: 20px; font-weight: 700; margin-bottom: 8px; }
.step-content p { font-size: 15px; color: var(--fg-muted); }

/* CLOSING */
.closing { background: var(--fg); color: var(--bg); padding: 96px 32px; }
.closing-inner { max-width: 1200px; margin: 0 auto; text-align: center; }
.closing h2 { font-family: var(--font-display); font-size: clamp(32px, 5vw, 56px); font-weight: 800; letter-spacing: -1.5px; line-height: 1.05; margin-bottom: 24px; }
.closing p { font-size: 18px; color: rgba(249,248,245,0.65); max-width: 560px; margin: 0 auto; line-height: 1.6; }

/* FOOTER */
.site-footer { background: var(--fg); color: var(--bg); border-top: 1px solid rgba(249,248,245,0.1); padding: 48px 32px 32px; }
.footer-inner { max-width: 1200px; margin: 0 auto; display: flex; justify-content: space-between; align-items: start; margin-bottom: 48px; }
.footer-brand .wordmark { color: var(--bg); font-size: 18px; }
.footer-brand p { font-size: 13px; color: rgba(249,248,245,0.4); margin-top: 6px; }
.footer-links { display: flex; gap: 32px; }
.footer-links a { color: rgba(249,248,245,0.5); text-decoration: none; font-size: 14px; transition: color 0.2s; }
.footer-links a:hover { color: var(--bg); }
.footer-bottom { max-width: 1200px; margin: 0 auto; padding-top: 24px; border-top: 1px solid rgba(249,248,245,0.08); }
.footer-bottom p { font-size: 12px; color: rgba(249,248,245,0.25); }

/* RESPONSIVE */
@media (max-width: 768px) {
  .site-header nav { display: none; }
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual { display: none; }
  .hero-stats { gap: 20px; }
  .proof-inner { flex-direction: column; gap: 24px; }
  .proof-divider { display: none; }
  .services-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .step { grid-template-columns: 48px 1fr; gap: 16px; }
  .step-number { font-size: 32px; }
  .footer-inner { flex-direction: column; gap: 32px; }
  .header-inner { padding: 14px 20px; }
  .hero, .services, .pricing, .process, .closing { padding-left: 20px; padding-right: 20px; }
}