:root {
  --bg: #F9F6F0;
  --fg: #1A1A1A;
  --accent: #1A3A2A;
  --accent-light: #2D5A42;
  --gold: #C9A84C;
  --gold-light: #E8CE8A;
  --muted: #7A7A7A;
  --border: #E0D9CF;
  --card-bg: #FFFFFF;
  --phone-bg: #1A3A2A;
}

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

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

/* NAV */
.nav {
  padding: 20px 48px;
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  display: flex;
  align-items: center;
  gap: 16px;
}
.nav-logo {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 20px;
  color: var(--accent);
  letter-spacing: -0.5px;
}
.nav-tagline {
  font-size: 13px;
  color: var(--muted);
  font-weight: 300;
}

/* HERO */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  padding: 80px 48px 64px;
  align-items: center;
  max-width: 1280px;
  margin: 0 auto;
}
.hero-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}
.hero-headline {
  font-family: 'Syne', sans-serif;
  font-size: clamp(42px, 5vw, 68px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -2px;
  color: var(--fg);
  margin-bottom: 24px;
}
.hero-headline em {
  font-style: normal;
  color: var(--accent);
}
.hero-sub {
  font-size: 18px;
  color: var(--muted);
  font-weight: 300;
  max-width: 480px;
  line-height: 1.65;
  margin-bottom: 48px;
}
.hero-proof {
  display: flex;
  gap: 0;
  align-items: center;
}
.hero-proof-item {
  display: flex;
  flex-direction: column;
  padding: 0 32px;
}
.hero-proof-item:first-child { padding-left: 0; }
.proof-number {
  font-family: 'Syne', sans-serif;
  font-size: 28px;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: -1px;
}
.proof-label {
  font-size: 12px;
  color: var(--muted);
  margin-top: 2px;
  font-weight: 400;
}
.hero-proof-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
}

/* Phone mockup */
.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.phone-mockup {
  background: var(--phone-bg);
  border-radius: 36px;
  padding: 12px;
  width: 280px;
  box-shadow: 0 32px 80px rgba(26, 58, 42, 0.25), 0 8px 24px rgba(0,0,0,0.15);
}
.phone-screen {
  background: #0F2318;
  border-radius: 28px;
  padding: 20px 16px;
  height: 340px;
  display: flex;
  flex-direction: column;
}
.phone-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 14px;
}
.phone-avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--gold);
}
.phone-name {
  font-family: 'Syne', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: white;
  flex: 1;
}
.phone-status {
  font-size: 11px;
  color: var(--gold);
}
.phone-msgs {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
  overflow: hidden;
}
.msg { display: flex; }
.msg.incoming { justify-content: flex-start; }
.msg.outgoing { justify-content: flex-end; }
.bubble {
  padding: 8px 12px;
  border-radius: 16px;
  font-size: 12px;
  line-height: 1.5;
  max-width: 200px;
}
.incoming .bubble {
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.7);
  border-bottom-left-radius: 4px;
}
.outgoing .bubble {
  background: var(--gold);
  color: #1A1A1A;
  border-bottom-right-radius: 4px;
}
.hero-badge {
  position: absolute;
  bottom: -16px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--fg);
  font-size: 11px;
  font-weight: 700;
  padding: 8px 16px;
  border-radius: 100px;
  white-space: nowrap;
  letter-spacing: 0.05em;
}

/* HOW */
.how {
  background: var(--accent);
  color: white;
  padding: 80px 48px;
}
.how-header {
  max-width: 1280px;
  margin: 0 auto 56px;
}
.section-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.how-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 700;
  letter-spacing: -1px;
  color: white;
  max-width: 600px;
}
.how-steps {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
}
.step-number {
  font-family: 'Syne', sans-serif;
  font-size: 56px;
  font-weight: 800;
  color: rgba(255,255,255,0.1);
  line-height: 1;
  margin-bottom: 16px;
}
.step-title {
  font-family: 'Syne', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: white;
  margin-bottom: 12px;
}
.step-body {
  font-size: 15px;
  color: rgba(255,255,255,0.65);
  line-height: 1.65;
  font-weight: 300;
}

/* INDUSTRIES */
.industries {
  background: var(--bg);
  padding: 80px 48px;
}
.industries-header {
  max-width: 1280px;
  margin: 0 auto 48px;
}
.industries-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(24px, 3vw, 38px);
  font-weight: 700;
  letter-spacing: -1px;
  color: var(--fg);
  max-width: 600px;
  line-height: 1.2;
}
.industry-grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--border);
  border: 2px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
}
.industry-card {
  background: var(--card-bg);
  padding: 36px 32px;
}
.industry-icon {
  color: var(--gold);
  font-size: 18px;
  margin-bottom: 14px;
}
.industry-card h3 {
  font-family: 'Syne', sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 10px;
}
.industry-card p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
  font-weight: 300;
}

/* MANIFESTO */
.manifesto {
  background: #0F2318;
  padding: 80px 48px;
}
.manifesto-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.manifesto-quote {
  font-family: 'Syne', sans-serif;
  font-size: clamp(22px, 2.5vw, 34px);
  font-weight: 700;
  color: white;
  line-height: 1.3;
  letter-spacing: -0.5px;
}
.manifesto-body {
  font-size: 17px;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
  font-weight: 300;
}

/* CLOSING */
.closing {
  background: var(--gold);
  padding: 80px 48px;
}
.closing-inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}
.closing-headline {
  font-family: 'Syne', sans-serif;
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 800;
  color: var(--fg);
  letter-spacing: -1.5px;
  line-height: 1.1;
  margin-bottom: 20px;
}
.closing-body {
  font-size: 17px;
  color: rgba(26,26,26,0.65);
  line-height: 1.65;
  font-weight: 400;
  margin-bottom: 40px;
}
.closing-vision {
  font-family: 'Syne', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: rgba(26,26,26,0.4);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* FOOTER */
.footer {
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: 40px 48px;
}
.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.footer-brand {
  font-family: 'Syne', sans-serif;
  font-size: 18px;
  font-weight: 800;
  color: var(--accent);
}
.footer-tagline {
  font-size: 13px;
  color: var(--muted);
}
.footer-legal {
  font-size: 12px;
  color: var(--muted);
  margin-top: 8px;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .nav, .hero, .how, .industries, .manifesto, .closing, .footer {
    padding-left: 24px;
    padding-right: 24px;
  }
  .hero {
    grid-template-columns: 1fr;
    gap: 48px;
    padding-top: 48px;
  }
  .hero-visual {
    order: -1;
  }
  .how-steps {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .industry-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .manifesto-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .hero-proof {
    flex-wrap: wrap;
    gap: 16px;
  }
  .hero-proof-divider {
    display: none;
  }
  .hero-proof-item {
    padding: 0;
  }
}
@media (max-width: 600px) {
  .industry-grid {
    grid-template-columns: 1fr;
  }
}