:root {
  --bg: #f5f0e8;
  --surface: #ffffff;
  --fg: #1a1a1a;
  --fg-muted: #6b6b6b;
  --accent: #1a3a2a;
  --accent-warm: #c85a1a;
  --amber: #f59e0b;
  --border: #e0dbd3;
  --radius: 4px;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* NAV */
.nav {
  padding: 24px 48px;
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  display: flex;
  align-items: baseline;
  gap: 16px;
  max-width: 1200px;
  margin: 0 auto;
}
.nav-logo {
  font-family: 'DM Serif Display', serif;
  font-size: 22px;
  color: var(--accent);
  letter-spacing: -0.5px;
}
.nav-tagline {
  font-size: 14px;
  color: var(--fg-muted);
  font-weight: 400;
}

/* HERO */
.hero {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 48px 64px;
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 64px;
  align-items: center;
}
.hero-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-warm);
  margin-bottom: 20px;
}
.hero-headline {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(40px, 5vw, 68px);
  line-height: 1.08;
  color: var(--accent);
  letter-spacing: -1px;
  margin-bottom: 24px;
}
.hero-lede {
  font-size: 18px;
  color: var(--fg-muted);
  max-width: 480px;
  line-height: 1.65;
  margin-bottom: 40px;
}
.hero-proof-row {
  display: flex;
  align-items: center;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  width: fit-content;
}
.hero-stat {
  padding: 18px 28px;
  text-align: center;
}
.hero-stat-num {
  display: block;
  font-family: 'DM Serif Display', serif;
  font-size: 22px;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 4px;
}
.hero-stat-label {
  font-size: 12px;
  color: var(--fg-muted);
  line-height: 1.3;
  max-width: 90px;
}
.hero-divider {
  width: 1px;
  height: 52px;
  background: var(--border);
}

/* hero visual */
.hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}
.clip-phone {
  width: 220px;
  height: 380px;
  background: var(--accent);
  border-radius: 32px;
  padding: 14px;
  box-shadow: 0 40px 80px rgba(26, 58, 42, 0.25);
}
.clip-screen {
  background: #0d2a1e;
  border-radius: 22px;
  height: 100%;
  padding: 20px 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.clip-bar {
  height: 80px;
  border-radius: 10px;
  background: linear-gradient(135deg, #1a4a35 0%, #0d2a1e 100%);
  border: 1px solid rgba(255,255,255,0.06);
}
.clip-bar-1 { flex: 1; }
.clip-bar-2 { flex: 1; border-left: 3px solid var(--amber); padding-left: 8px; }
.clip-bar-3 { flex: 0.6; }
.clip-caption-wave {
  display: flex;
  align-items: flex-end;
  gap: 3px;
  padding: 0 4px;
  height: 24px;
}
.wave-bar {
  flex: 1;
  background: var(--amber);
  border-radius: 2px;
  opacity: 0.7;
}
.wave-bar:nth-child(1) { height: 40%; }
.wave-bar:nth-child(2) { height: 70%; }
.wave-bar:nth-child(3) { height: 90%; }
.wave-bar:nth-child(4) { height: 60%; }
.wave-bar:nth-child(5) { height: 100%; }
.wave-bar:nth-child(6) { height: 55%; }
.wave-bar:nth-child(7) { height: 80%; }
.wave-bar:nth-child(8) { height: 45%; }

/* PROOF */
.proof {
  background: var(--accent);
  padding: 80px 48px;
}
.proof-inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}
.proof-headline {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(28px, 4vw, 44px);
  color: #fff;
  line-height: 1.2;
  letter-spacing: -0.5px;
  margin-bottom: 24px;
}
.proof-body {
  font-size: 16px;
  color: rgba(255,255,255,0.72);
  line-height: 1.7;
  margin-bottom: 16px;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}

/* SHARED section styles */
.section-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-warm);
  margin-bottom: 16px;
}
.section-headline {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(28px, 3.5vw, 42px);
  color: var(--accent);
  line-height: 1.2;
  letter-spacing: -0.5px;
  margin-bottom: 56px;
}

/* PROCESS */
.process { padding: 80px 48px; background: var(--bg); }
.process-inner { max-width: 1200px; margin: 0 auto; }
.process-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}
.process-step {
  padding: 40px 36px;
  border-right: 1px solid var(--border);
  position: relative;
}
.process-step:last-child { border-right: none; }
.step-num {
  font-family: 'DM Serif Display', serif;
  font-size: 48px;
  color: var(--border);
  line-height: 1;
  margin-bottom: 20px;
}
.step-title {
  font-size: 18px;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 12px;
  letter-spacing: -0.3px;
}
.step-body {
  font-size: 15px;
  color: var(--fg-muted);
  line-height: 1.65;
}

/* PRICING */
.pricing { padding: 80px 48px; background: var(--surface); }
.pricing-inner { max-width: 1200px; margin: 0 auto; }
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.pricing-card {
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 36px 32px;
}
.pricing-card-featured {
  background: var(--accent);
  border-color: var(--accent);
}
.pricing-card-featured .card-tier,
.pricing-card-featured .card-price {
  color: #fff;
}
.pricing-card-featured .card-period,
.pricing-card-featured .card-features li {
  color: rgba(255,255,255,0.7);
}
.card-tier {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-bottom: 12px;
}
.card-price {
  font-family: 'DM Serif Display', serif;
  font-size: 44px;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 28px;
}
.card-period {
  font-size: 18px;
  font-weight: 400;
  color: var(--fg-muted);
}
.card-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.card-features li {
  font-size: 14px;
  color: var(--fg-muted);
  padding-left: 20px;
  position: relative;
}
.card-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  background: var(--amber);
  border-radius: 50%;
}
.pricing-card-featured .card-features li::before {
  background: var(--amber);
}

/* CLIENTS */
.clients { padding: 80px 48px; background: var(--bg); }
.clients-inner { max-width: 1200px; margin: 0 auto; }
.client-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}
.client-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 32px 0;
  border-bottom: 1px solid var(--border);
}
.client-item:nth-child(odd) { padding-right: 48px; border-right: 1px solid var(--border); }
.client-item:nth-child(even) { padding-left: 48px; }
.client-item:nth-last-child(-n+2) { border-bottom: none; }
.client-icon {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  flex-shrink: 0;
}
.client-name {
  font-size: 16px;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 6px;
  letter-spacing: -0.2px;
}
.client-desc {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.6;
}

/* CLOSING */
.closing {
  background: var(--accent);
  padding: 96px 48px;
  text-align: center;
}
.closing-inner { max-width: 720px; margin: 0 auto; }
.closing-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 20px;
}
.closing-headline {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(28px, 4vw, 46px);
  color: #fff;
  line-height: 1.15;
  letter-spacing: -0.5px;
  margin-bottom: 24px;
}
.closing-body {
  font-size: 17px;
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
  margin-bottom: 16px;
}
.closing-vision {
  font-family: 'DM Serif Display', serif;
  font-size: 20px;
  color: rgba(255,255,255,0.85);
  line-height: 1.5;
  font-style: italic;
  margin-top: 32px;
}

/* FOOTER */
.footer {
  padding: 40px 48px;
  border-top: 1px solid var(--border);
  background: var(--surface);
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}
.footer-brand { display: flex; align-items: baseline; gap: 12px; }
.footer-name {
  font-family: 'DM Serif Display', serif;
  font-size: 18px;
  color: var(--accent);
}
.footer-tagline { font-size: 13px; color: var(--fg-muted); }
.footer-note { font-size: 13px; color: var(--fg-muted); }

/* RESPONSIVE */
@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; padding: 56px 32px 48px; }
  .hero-visual { display: none; }
  .process-steps { grid-template-columns: 1fr; }
  .process-step { border-right: none; border-bottom: 1px solid var(--border); padding: 28px 0; }
  .process-step:last-child { border-bottom: none; }
  .pricing-grid { grid-template-columns: 1fr; }
  .client-list { grid-template-columns: 1fr; }
  .client-item:nth-child(odd) { border-right: none; padding-right: 0; }
  .client-item:nth-child(even) { padding-left: 0; }
  .client-item:nth-last-child(-n+2) { border-bottom: 1px solid var(--border); }
  .client-item:last-child { border-bottom: none; }
}
@media (max-width: 600px) {
  .nav { padding: 20px 24px; }
  .hero { padding: 48px 24px 40px; }
  .proof, .process, .pricing, .clients, .closing { padding: 56px 24px; }
  .footer { padding: 32px 24px; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
  .hero-proof-row { flex-direction: column; width: 100%; }
  .hero-divider { width: 100%; height: 1px; }
}