:root {
  --bg: #FAFAF8;
  --bg-alt: #F2F1EE;
  --fg: #1A1A1A;
  --fg-muted: #6B7280;
  --accent: #F59E0B;
  --accent-dark: #D97706;
  --slate: #1E2A3A;
  --slate-mid: #2D3B4F;
  --white: #FFFFFF;
  --border: #E5E4DF;
}

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

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

/* NAV */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(250, 250, 248, 0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 18px;
  color: var(--slate);
  letter-spacing: -0.5px;
}
.nav-tagline {
  font-size: 13px;
  color: var(--fg-muted);
  font-weight: 500;
  background: var(--bg-alt);
  padding: 4px 10px;
  border-radius: 20px;
}

/* HERO */
.hero {
  padding-top: 120px;
  padding-bottom: 80px;
}
.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.hero-eyebrow {
  font-family: 'Syne', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}
.hero-headline {
  font-family: 'Syne', sans-serif;
  font-size: clamp(36px, 4.5vw, 56px);
  font-weight: 800;
  line-height: 1.05;
  color: var(--slate);
  letter-spacing: -1.5px;
  margin-bottom: 24px;
}
.hero-lede {
  font-size: 17px;
  color: var(--fg-muted);
  line-height: 1.7;
  max-width: 460px;
  margin-bottom: 40px;
}
.hero-stat-row {
  display: flex;
  align-items: center;
  gap: 24px;
}
.hero-stat {}
.hero-stat-value {
  display: block;
  font-family: 'Syne', sans-serif;
  font-size: 28px;
  font-weight: 800;
  color: var(--slate);
}
.hero-stat-label {
  font-size: 12px;
  color: var(--fg-muted);
  display: block;
  margin-top: 2px;
}
.hero-stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
}

/* HERO CARD */
.hero-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(30, 42, 58, 0.08);
}
.hero-card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  background: var(--slate);
  color: white;
}
.hero-card-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), #FB923C);
  flex-shrink: 0;
}
.hero-card-meta {
  display: flex;
  flex-direction: column;
}
.hero-card-name {
  font-family: 'Syne', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: white;
}
.hero-card-status {
  font-size: 12px;
  color: #86EFAC;
  margin-top: 1px;
}
.hero-card-body {
  padding: 16px 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-height: 220px;
}
.hero-msg {
  font-size: 13px;
  line-height: 1.55;
  padding: 10px 14px;
  border-radius: 10px;
  max-width: 85%;
}
.hero-msg-in {
  background: var(--bg-alt);
  color: var(--fg);
  align-self: flex-start;
}
.hero-msg-out {
  background: var(--slate);
  color: white;
  align-self: flex-end;
}
.hero-card-footer {
  padding: 12px 20px 16px;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 10px;
}
.hero-card-input {
  flex: 1;
  font-size: 13px;
  color: var(--fg-muted);
  background: var(--bg-alt);
  padding: 10px 14px;
  border-radius: 8px;
  border: 1px solid var(--border);
}
.hero-card-send {
  width: 36px;
  height: 36px;
  background: var(--accent);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  flex-shrink: 0;
  cursor: pointer;
}

/* ROLES */
.roles {
  background: var(--bg-alt);
  padding: 80px 0;
}
.roles-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}
.section-label {
  font-family: 'Syne', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-bottom: 40px;
}
.roles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.role-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px;
}
.role-icon {
  width: 48px;
  height: 48px;
  background: var(--slate);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  margin-bottom: 20px;
}
.role-name {
  font-family: 'Syne', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--slate);
  margin-bottom: 10px;
}
.role-desc {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.6;
  margin-bottom: 20px;
}
.role-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.role-tag {
  font-size: 11px;
  font-weight: 600;
  color: var(--accent-dark);
  background: #FEF3C7;
  padding: 4px 10px;
  border-radius: 20px;
}

/* HOW */
.how {
  padding: 80px 0;
}
.how-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}
.steps-grid {
  display: flex;
  align-items: flex-start;
  gap: 0;
  margin-bottom: 60px;
}
.step {
  flex: 1;
  padding: 0 24px;
}
.step-number {
  font-family: 'Syne', sans-serif;
  font-size: 48px;
  font-weight: 800;
  color: var(--accent);
  display: block;
  line-height: 1;
  margin-bottom: 16px;
}
.step-title {
  font-family: 'Syne', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--slate);
  margin-bottom: 8px;
}
.step-desc {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.6;
}
.step-connector {
  width: 40px;
  height: 2px;
  background: var(--border);
  margin-top: 30px;
  flex-shrink: 0;
}
.how-pricing {
  background: var(--slate);
  border-radius: 16px;
  padding: 40px 48px;
}
.how-pricing-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.how-pricing-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: rgba(255,255,255,0.5);
  font-weight: 600;
  display: block;
  margin-bottom: 8px;
}
.how-pricing-value {
  font-family: 'Syne', sans-serif;
  font-size: 40px;
  font-weight: 800;
  color: white;
  display: block;
}
.how-pricing-period {
  font-size: 20px;
  font-weight: 400;
  color: rgba(255,255,255,0.5);
}
.how-pricing-note {
  font-size: 13px;
  color: rgba(255,255,255,0.4);
  display: block;
  margin-top: 6px;
}
.savings-badge {
  text-align: right;
}
.savings-number {
  font-family: 'Syne', sans-serif;
  font-size: 52px;
  font-weight: 800;
  color: var(--accent);
  display: block;
  line-height: 1;
}
.savings-label {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  display: block;
  margin-top: 4px;
}

/* MANIFESTO */
.manifesto {
  background: var(--slate);
  padding: 100px 0;
}
.manifesto-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}
.manifesto-headline {
  font-family: 'Syne', sans-serif;
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 800;
  color: white;
  line-height: 1.15;
  letter-spacing: -1px;
  margin-bottom: 32px;
}
.manifesto-body {
  font-size: 16px;
  color: rgba(255,255,255,0.6);
  line-height: 1.8;
  max-width: 720px;
  margin-bottom: 20px;
}
.manifesto-body:last-child { margin-bottom: 0; }

/* CLOSING */
.closing {
  padding: 100px 0;
  text-align: center;
}
.closing-inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 32px;
}
.closing-headline {
  font-family: 'Syne', sans-serif;
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 800;
  color: var(--slate);
  line-height: 1.2;
  letter-spacing: -1px;
  margin-bottom: 20px;
}
.closing-sub {
  font-size: 16px;
  color: var(--fg-muted);
}

/* FOOTER */
.footer {
  border-top: 1px solid var(--border);
  padding: 40px 0;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  gap: 24px;
}
.footer-logo {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 16px;
  color: var(--slate);
}
.footer-tagline {
  font-size: 13px;
  color: var(--fg-muted);
}
.footer-copy {
  margin-left: auto;
  font-size: 12px;
  color: var(--fg-muted);
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .roles-grid {
    grid-template-columns: 1fr;
  }
  .steps-grid {
    flex-direction: column;
    gap: 32px;
  }
  .step-connector {
    display: none;
  }
  .how-pricing-inner {
    flex-direction: column;
    gap: 32px;
    align-items: flex-start;
  }
  .savings-badge {
    text-align: left;
  }
  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
  .footer-copy {
    margin-left: 0;
  }
}
@media (max-width: 600px) {
  .hero-stat-row {
    gap: 16px;
  }
  .hero-stat-value {
    font-size: 22px;
  }
  .how-pricing {
    padding: 28px 24px;
  }
}