:root {
  --bg: #0c0c0e;
  --bg-alt: #141416;
  --fg: #f0ede6;
  --fg-muted: #8a8680;
  --accent: #f5a623;
  --accent-dim: rgba(245, 166, 35, 0.12);
  --border: rgba(240, 237, 230, 0.08);
  --font-display: 'Syne', sans-serif;
  --font-body: 'DM Sans', sans-serif;
}

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

html {
  scroll-behavior: smooth;
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

body { background: var(--bg); }

/* ===== NAV ===== */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  background: rgba(12, 12, 14, 0.85);
}

.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 14px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--fg);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: -0.02em;
}

.nav-tagline {
  font-size: 0.8rem;
  color: var(--fg-muted);
  letter-spacing: 0.03em;
}

.nav-demo-link {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--accent);
  text-decoration: none;
  padding: 7px 16px;
  border: 1px solid rgba(245, 166, 35, 0.3);
  border-radius: 6px;
  transition: background 0.2s, border-color 0.2s;
}

.nav-demo-link:hover {
  background: var(--accent-dim);
  border-color: var(--accent);
}

/* ===== HERO ===== */
.hero {
  padding: 80px 28px 64px;
  border-bottom: 1px solid var(--border);
}

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

.hero-eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4vw, 3.8rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
  color: var(--fg);
}

.hero-lede {
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--fg-muted);
  max-width: 460px;
  margin-bottom: 40px;
  font-weight: 300;
}

.hero-proof {
  display: flex;
  align-items: center;
  gap: 28px;
}

.proof-stat {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.proof-number {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
}

.proof-label {
  font-size: 0.72rem;
  color: var(--fg-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.proof-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
}

/* VIDEO STACK */
.hero-visual { position: relative; }

.video-stack {
  display: flex;
  flex-direction: column;
  gap: 14px;
  transform: rotate(-1.5deg);
}

.video-card {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 16px 18px;
  position: relative;
  overflow: hidden;
}

.video-card::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 60px; height: 100%;
  background: linear-gradient(to left, var(--accent-dim), transparent);
  border-radius: 0 14px 14px 0;
}

.video-card-inner { display: flex; flex-direction: column; gap: 10px; }

.video-badge {
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  background: var(--accent-dim);
  padding: 3px 8px;
  border-radius: 4px;
  display: inline-block;
  width: fit-content;
}

.video-content-area { display: flex; flex-direction: column; gap: 8px; }

.fake-video-lines { display: flex; flex-direction: column; gap: 5px; }

.fv-line {
  height: 7px;
  border-radius: 4px;
  background: var(--border);
}

.fv-long { width: 70%; }
.fv-medium { width: 50%; }
.fv-short { width: 35%; }

.fake-caption {
  font-size: 0.8rem;
  color: var(--fg-muted);
  font-style: italic;
  padding-top: 4px;
}

.video-card-1 { transform: translateX(-8px) rotate(0.8deg); }
.video-card-2 { transform: translateX(0px) rotate(-0.3deg); }
.video-card-3 { transform: translateX(8px) rotate(1deg); }

/* ===== PROBLEM ===== */
.problem {
  padding: 80px 28px;
  border-bottom: 1px solid var(--border);
  background: var(--bg-alt);
}

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

.problem-label {
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  margin-bottom: 20px;
}

.problem-headline {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.1;
  margin-bottom: 40px;
  max-width: 640px;
}

.problem-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.problem-text {
  font-size: 0.97rem;
  line-height: 1.7;
  color: var(--fg-muted);
  margin-bottom: 16px;
}

.problem-text strong { color: var(--fg); }

/* ===== WHAT ===== */
.what {
  padding: 80px 28px;
  border-bottom: 1px solid var(--border);
}

.what-inner { max-width: 1100px; margin: 0 auto; }

.what-label {
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  margin-bottom: 20px;
}

.what-headline {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  margin-bottom: 48px;
}

.what-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.what-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 24px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--bg-alt);
}

.what-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: var(--accent-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.what-content h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 6px;
  letter-spacing: -0.01em;
}

.what-content p {
  font-size: 0.85rem;
  line-height: 1.6;
  color: var(--fg-muted);
}

/* ===== VERTICALS ===== */
.verticals {
  padding: 80px 28px;
  border-bottom: 1px solid var(--border);
  background: var(--bg-alt);
}

.verticals-inner { max-width: 1100px; margin: 0 auto; }

.verticals-label {
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  margin-bottom: 20px;
}

.verticals-headline {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  margin-bottom: 48px;
}

.verticals-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.vertical-card {
  padding: 28px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: var(--bg);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.vertical-icon { margin-bottom: 4px; }

.vertical-card h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.vertical-card p {
  font-size: 0.85rem;
  line-height: 1.6;
  color: var(--fg-muted);
  flex: 1;
}

.vertical-price {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--accent);
  margin-top: 8px;
}

/* ===== PRICING ===== */
.pricing {
  padding: 80px 28px;
  border-bottom: 1px solid var(--border);
}

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

.pricing-label {
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  margin-bottom: 20px;
}

.pricing-headline {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  margin-bottom: 40px;
}

.pricing-table {
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
}

.pricing-row {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1.5fr;
  padding: 18px 24px;
  border-bottom: 1px solid var(--border);
  font-size: 0.88rem;
}

.pricing-row:last-child { border-bottom: none; }

.pricing-header-row {
  background: var(--bg-alt);
  font-weight: 600;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--fg-muted);
}

.pricing-col-name { color: var(--fg); font-weight: 500; }
.pricing-col { color: var(--fg-muted); }
.pricing-col-price { color: var(--accent); font-weight: 600; }

.pricing-note {
  margin-top: 16px;
  font-size: 0.82rem;
  color: var(--fg-muted);
}

/* ===== PROCESS ===== */
.process {
  padding: 80px 28px;
  border-bottom: 1px solid var(--border);
  background: var(--bg-alt);
}

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

.process-label {
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  margin-bottom: 20px;
}

.process-headline {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  margin-bottom: 48px;
}

.process-steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
}

.step {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 0 24px;
}

.step:first-child { padding-left: 0; }
.step:last-child { padding-right: 0; }

.step-number {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
  letter-spacing: -0.04em;
}

.step-content h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}

.step-content p {
  font-size: 0.88rem;
  line-height: 1.65;
  color: var(--fg-muted);
}

.step-connector {
  width: 48px;
  height: 1px;
  background: var(--border);
  margin-top: 24px;
  flex-shrink: 0;
}

/* ===== CLOSING ===== */
.closing {
  padding: 96px 28px;
  border-bottom: 1px solid var(--border);
  background: var(--bg-alt);
  text-align: center;
}

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

.closing-headline {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 24px;
}

.closing-body {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--fg-muted);
  margin-bottom: 40px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

.closing-cta { display: flex; flex-direction: column; gap: 12px; align-items: center; }

.closing-cta-text {
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--fg-muted);
}

.cta-link {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--bg);
  background: var(--accent);
  padding: 14px 32px;
  border-radius: 8px;
  text-decoration: none;
  letter-spacing: -0.01em;
  transition: opacity 0.2s;
}

.cta-link:hover { opacity: 0.85; }

/* ===== FOOTER ===== */
.site-footer {
  padding: 40px 28px;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
}

.footer-copy {
  font-size: 0.8rem;
  color: var(--fg-muted);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-visual { display: none; }

  .problem-body,
  .what-grid,
  .verticals-grid {
    grid-template-columns: 1fr;
  }

  .pricing-row {
    grid-template-columns: 2fr 1.5fr;
    gap: 8px;
  }

  .pricing-row > .pricing-col:nth-child(2),
  .pricing-row > .pricing-col:nth-child(3),
  .pricing-row > .pricing-col:nth-child(4) {
    display: none;
  }

  .process-steps {
    flex-direction: column;
  }

  .step-connector {
    width: 1px;
    height: 32px;
    margin: 0 auto;
    margin-top: 0;
  }

  .step { padding: 0 0 32px 0; }

  .footer-inner { flex-direction: column; align-items: flex-start; }

  .nav-tagline { display: none; }
}