:root {
  --bg: #0f0f0f;
  --bg-alt: #181818;
  --surface: #1f1f1f;
  --surface-2: #282828;
  --accent: #00d49a;
  --accent-dim: #00a873;
  --accent-glow: rgba(0, 212, 154, 0.15);
  --text: #f0ede6;
  --text-2: #a09a8f;
  --text-3: #6b6560;
  --border: rgba(255,255,255,0.07);
  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'DM Sans', system-ui, 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);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* Nav */
.nav { border-bottom: 1px solid var(--border); padding: 0; }
.nav-inner { max-width: 1100px; margin: 0 auto; padding: 1.5rem 2rem; display: flex; align-items: center; gap: 1rem; }
.nav-logo { font-family: var(--font-display); font-size: 1.5rem; font-weight: 700; color: var(--text); text-decoration: none; letter-spacing: -0.02em; }
.nav-tagline { font-size: 0.8rem; color: var(--text-3); font-weight: 400; }

/* Hero */
.hero { padding: 7rem 2rem 6rem; max-width: 1100px; margin: 0 auto; }
.hero-inner { max-width: 820px; }
.hero-label { font-size: 0.75rem; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; color: var(--accent); margin-bottom: 1.75rem; }
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--text);
  margin-bottom: 1.75rem;
}
.hero-headline em { font-style: italic; color: var(--accent); }
.hero-sub { font-size: 1.15rem; color: var(--text-2); max-width: 580px; line-height: 1.65; margin-bottom: 3.5rem; }

.hero-stat-row { display: flex; gap: 0; align-items: stretch; }
.hero-stat { flex: 1; padding: 1.5rem 2rem; background: var(--bg-alt); border: 1px solid var(--border); }
.hero-stat:first-child { border-radius: 8px 0 0 8px; }
.hero-stat:last-child { border-radius: 0 8px 8px 0; }
.hero-stat-num { display: block; font-family: var(--font-display); font-size: 2.5rem; font-weight: 800; color: var(--accent); line-height: 1; margin-bottom: 0.5rem; }
.hero-stat-label { display: block; font-size: 0.8rem; color: var(--text-3); line-height: 1.4; }
.hero-stat-div { width: 1px; background: var(--border); flex-shrink: 0; }

/* Problem */
.problem { background: var(--bg-alt); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 6rem 2rem; }
.problem-inner { max-width: 800px; margin: 0 auto; }
.problem-quote-mark { font-family: var(--font-display); font-size: 6rem; color: var(--accent); line-height: 0.5; margin-bottom: 1.5rem; opacity: 0.4; }
.problem-quote { font-family: var(--font-display); font-size: clamp(1.4rem, 3vw, 2rem); font-weight: 500; font-style: italic; color: var(--text); line-height: 1.4; margin-bottom: 2.5rem; border: none; padding: 0; }
.problem-body { font-size: 1.05rem; color: var(--text-2); line-height: 1.75; margin-bottom: 1.25rem; }
.problem-body--bold { color: var(--text); font-weight: 500; }

/* How */
.how { padding: 7rem 2rem; max-width: 1100px; margin: 0 auto; }
.how-title { font-family: var(--font-display); font-size: 2.5rem; font-weight: 700; letter-spacing: -0.02em; margin-bottom: 3rem; }
.how-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: var(--border); border: 1px solid var(--border); border-radius: 12px; overflow: hidden; }
.how-card { background: var(--bg-alt); padding: 2.5rem; }
.how-icon { color: var(--accent); margin-bottom: 1.25rem; }
.how-card-title { font-family: var(--font-display); font-size: 1.3rem; font-weight: 600; margin-bottom: 0.75rem; letter-spacing: -0.01em; }
.how-card-body { font-size: 0.95rem; color: var(--text-2); line-height: 1.65; }

/* Pricing */
.pricing { background: var(--bg-alt); border-top: 1px solid var(--border); padding: 7rem 2rem; }
.pricing-inner { max-width: 900px; margin: 0 auto; }
.pricing-title { font-family: var(--font-display); font-size: 2.5rem; font-weight: 700; letter-spacing: -0.02em; margin-bottom: 1rem; text-align: center; }
.pricing-sub { font-size: 1rem; color: var(--text-2); text-align: center; margin-bottom: 3rem; }
.pricing-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; margin-bottom: 2rem; }
.pricing-card { background: var(--surface); border: 1px solid var(--border); border-radius: 12px; padding: 2.5rem; }
.pricing-card--featured { border-color: var(--accent-dim); background: var(--accent-glow); }
.pricing-card-label { font-size: 0.7rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--accent); margin-bottom: 1rem; }
.pricing-card-price { font-family: var(--font-display); font-size: 2.75rem; font-weight: 800; letter-spacing: -0.03em; line-height: 1; margin-bottom: 1.25rem; color: var(--text); }
.pricing-card-period { font-size: 1rem; font-weight: 400; color: var(--text-3); }
.pricing-card-desc { font-size: 0.9rem; color: var(--text-2); line-height: 1.65; }
.pricing-note { text-align: center; font-size: 0.85rem; color: var(--text-3); padding: 1.5rem; border: 1px dashed var(--border); border-radius: 8px; }

/* Industries */
.industries { padding: 7rem 2rem; max-width: 1100px; margin: 0 auto; }
.industries-title { font-family: var(--font-display); font-size: 2rem; font-weight: 700; letter-spacing: -0.02em; max-width: 600px; margin-bottom: 3rem; }
.industries-list { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--border); border: 1px solid var(--border); border-radius: 12px; overflow: hidden; }
.industry-item { background: var(--bg-alt); padding: 2rem; }
.industry-name { font-family: var(--font-display); font-size: 1.15rem; font-weight: 600; color: var(--accent); margin-bottom: 0.5rem; letter-spacing: -0.01em; }
.industry-desc { font-size: 0.9rem; color: var(--text-2); line-height: 1.5; }

/* Closing */
.closing { background: var(--surface); border-top: 1px solid var(--border); padding: 7rem 2rem; }
.closing-inner { max-width: 800px; margin: 0 auto; text-align: center; }
.closing-headline { font-family: var(--font-display); font-size: clamp(2rem, 4vw, 3.5rem); font-weight: 700; letter-spacing: -0.02em; line-height: 1.15; margin-bottom: 1.5rem; }
.closing-body { font-size: 1.05rem; color: var(--text-2); line-height: 1.75; max-width: 580px; margin: 0 auto; }

/* Footer */
.footer { border-top: 1px solid var(--border); padding: 3rem 2rem; }
.footer-inner { max-width: 1100px; margin: 0 auto; }
.footer-logo { font-family: var(--font-display); font-size: 1.25rem; font-weight: 700; letter-spacing: -0.02em; margin-bottom: 0.5rem; }
.footer-tagline { font-size: 0.85rem; color: var(--text-3); }

/* Responsive */
@media (max-width: 768px) {
  .hero { padding: 4rem 1.5rem 4rem; }
  .hero-stat-row { flex-direction: column; gap: 1px; }
  .hero-stat { border-radius: 0 !important; }
  .hero-stat:first-child { border-radius: 8px 8px 0 0 !important; }
  .hero-stat:last-child { border-radius: 0 0 8px 8px !important; }
  .how-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .industries-list { grid-template-columns: 1fr 1fr; }
  .how, .pricing, .industries, .closing { padding: 5rem 1.5rem; }
  .problem { padding: 5rem 1.5rem; }
  .nav-inner { padding: 1.25rem 1.5rem; }
}

@media (max-width: 480px) {
  .industries-list { grid-template-columns: 1fr; }
  .hero-headline { font-size: 2.75rem; }
}