:root {
  --bg: #0d0f12;
  --bg-2: #13161b;
  --bg-3: #1a1e25;
  --fg: #f5f3ef;
  --fg-muted: #7a8799;
  --accent: #e8a838;
  --accent-dim: rgba(232, 168, 56, 0.15);
  --red: #e05c5c;
  --green: #5cc490;
  --border: rgba(255,255,255,0.07);
  --font-head: 'Syne', system-ui, sans-serif;
  --font-body: 'Figtree', system-ui, sans-serif;
}

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

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

/* NAV */
.nav {
  padding: 28px 48px;
  border-bottom: 1px solid var(--border);
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: -0.02em;
  color: var(--fg);
}

/* SECTION SHARED */
.section-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}

/* HERO */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  padding: 96px 48px 80px;
  max-width: 1200px;
  margin: 0 auto;
}
.hero-kicker {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}
.hero-headline {
  font-family: var(--font-head);
  font-size: clamp(42px, 5vw, 68px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--fg);
  margin-bottom: 24px;
}
.hero-sub {
  font-size: 18px;
  color: var(--fg-muted);
  max-width: 440px;
  margin-bottom: 40px;
  line-height: 1.6;
}
.hero-callout {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 10px 16px;
  font-size: 13px;
}
.callout-label { color: var(--fg-muted); }
.callout-time { font-weight: 600; color: var(--fg); font-family: var(--font-head); }
.callout-divider { color: var(--border); }
.callout-note { color: var(--accent); font-weight: 500; }

/* CALL WIDGET */
.hero-visual {
  display: flex;
  justify-content: flex-end;
}
.call-widget {
  width: 100%;
  max-width: 380px;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 32px 64px rgba(0,0,0,0.4);
}
.cw-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  background: var(--bg-3);
  border-bottom: 1px solid var(--border);
}
.cw-dots {
  display: flex;
  gap: 6px;
}
.cw-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
}
.cw-dots span:first-child { background: #e05c5c; }
.cw-dots span:nth-child(2) { background: #e8a838; }
.cw-dots span:nth-child(3) { background: #5cc490; }
.cw-title { font-size: 11px; color: var(--fg-muted); }
.cw-participants {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 16px 18px;
  border-bottom: 1px solid var(--border);
}
.cw-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 600;
  color: #fff;
  font-family: var(--font-head);
}
.cw-grain-badge {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-left: auto;
  font-size: 11px;
  font-weight: 600;
  color: var(--accent);
  background: var(--accent-dim);
  padding: 4px 10px;
  border-radius: 20px;
}
.cw-transcript {
  padding: 16px 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.cw-line {
  font-size: 12.5px;
  line-height: 1.55;
  padding: 10px 12px;
  border-radius: 8px;
}
.cw-line-a { background: var(--bg-3); }
.cw-line-b { background: rgba(232,168,56,0.07); border-left: 2px solid var(--accent); }
.speaker { font-weight: 600; color: var(--fg); font-size: 11px; margin-right: 6px; }
.cw-ai-actions {
  display: flex;
  gap: 8px;
  padding: 14px 18px;
  border-top: 1px solid var(--border);
  flex-wrap: wrap;
}
.action-tag {
  font-size: 10px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 20px;
  background: rgba(92,196,144,0.15);
  color: var(--green);
}
.action-red {
  background: rgba(224,92,92,0.15) !important;
  color: var(--red) !important;
}

/* QUOTES */
.quotes {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 80px 48px;
}
.quotes-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.quote-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.quote-card {
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 24px;
}
.quote-card-alt {
  border-color: rgba(232,168,56,0.2);
}
.qc-context {
  font-size: 11px;
  color: var(--fg-muted);
  font-weight: 500;
  margin-bottom: 12px;
}
blockquote {
  font-size: 15px;
  line-height: 1.5;
  color: var(--fg);
  font-style: italic;
  margin-bottom: 16px;
}
.qc-action {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 12px;
  color: var(--fg-muted);
}
.qc-badge {
  display: inline-block;
  font-weight: 600;
  color: var(--accent);
  font-size: 11px;
}

/* LOOP */
.loop {
  padding: 96px 48px;
  max-width: 1200px;
  margin: 0 auto;
}
.loop-headline {
  font-family: var(--font-head);
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--fg);
  margin-bottom: 56px;
}
.loop-steps {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px 64px;
}
.step {
  display: flex;
  gap: 20px;
}
.step-num {
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 700;
  color: var(--accent);
  margin-top: 3px;
  flex-shrink: 0;
}
.step-body h3 {
  font-family: var(--font-head);
  font-size: 17px;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 6px;
}
.step-body p {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.6;
}

/* INTEGRATIONS */
.integrations {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  padding: 80px 48px;
}
.integrations-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.int-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
  margin-top: 8px;
}
.int-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 20px 16px;
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: 12px;
  font-size: 12px;
  font-weight: 600;
  color: var(--fg-muted);
}

/* CLOSING */
.closing {
  padding: 120px 48px;
  text-align: center;
}
.closing-inner {
  max-width: 640px;
  margin: 0 auto;
}
.closing-icon {
  color: var(--accent);
  margin-bottom: 32px;
  display: flex;
  justify-content: center;
}
.closing-headline {
  font-family: var(--font-head);
  font-size: clamp(36px, 4vw, 54px);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--fg);
  margin-bottom: 20px;
}
.closing-body {
  font-size: 18px;
  color: var(--fg-muted);
  line-height: 1.6;
}

/* FOOTER */
.footer {
  border-top: 1px solid var(--border);
  padding: 32px 48px;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 15px;
}
.footer-tagline {
  font-size: 13px;
  color: var(--fg-muted);
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; gap: 48px; padding: 64px 32px; }
  .hero-visual { justify-content: flex-start; }
  .call-widget { max-width: 100%; }
  .quote-grid { grid-template-columns: 1fr; }
  .loop-steps { grid-template-columns: 1fr; }
  .int-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-inner { flex-direction: column; gap: 12px; text-align: center; }
  .nav { padding: 20px 32px; }
  .quotes, .loop, .integrations, .closing { padding: 64px 32px; }
}