:root {
  --bg: #0D0D0D;
  --surface: #161616;
  --surface-2: #1E1E1E;
  --border: #2A2A2A;
  --amber: #FFB224;
  --amber-dim: rgba(255, 178, 36, 0.12);
  --text: #F5F5F0;
  --text-muted: #888;
  --text-dim: #555;
}

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

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

h1, h2, h3, h4 { font-family: 'Syne', sans-serif; }

/* NAV */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid var(--border);
  background: rgba(13,13,13,0.85);
  backdrop-filter: blur(12px);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: var(--amber);
  letter-spacing: -0.02em;
}
.nav-links {
  display: flex;
  gap: 32px;
}
.nav-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--text); }

/* HERO */
.hero { padding: 100px 0 80px; }
.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.hero-eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--amber);
  border: 1px solid rgba(255,178,36,0.3);
  background: var(--amber-dim);
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 28px;
}
.hero-headline {
  font-size: clamp(38px, 5vw, 64px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--text);
  margin-bottom: 24px;
}
.hero-sub {
  font-size: 18px;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 460px;
  margin-bottom: 40px;
}
.hero-pricing {
  display: flex;
  align-items: baseline;
  gap: 8px;
}
.price-starting { font-size: 14px; color: var(--text-muted); }
.price-amount {
  font-family: 'Syne', sans-serif;
  font-size: 40px;
  font-weight: 700;
  color: var(--text);
}
.price-unit { font-size: 14px; color: var(--text-muted); }

/* AGENT WIDGET */
.agent-widget {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 24px;
  font-size: 14px;
}
.widget-header {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  margin-bottom: 20px;
}
.widget-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #555;
}
.widget-dot.live {
  background: #22c55e;
  box-shadow: 0 0 8px rgba(34,197,94,0.5);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.6; }
}
.widget-metrics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 20px;
}
.metric-card {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 14px;
}
.metric-label { font-size: 11px; color: var(--text-muted); margin-bottom: 6px; text-transform: uppercase; letter-spacing: 0.06em; }
.metric-value { font-family: 'Syne', sans-serif; font-size: 22px; font-weight: 700; color: var(--amber); }
.widget-channels { display: flex; flex-direction: column; gap: 8px; }
.channel-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 13px;
  color: var(--text-muted);
}
.channel-icon { color: var(--amber); display: flex; align-items: center; flex-shrink: 0; }
.channel-row span:nth-child(2) { flex: 1; }
.status-ok {
  font-size: 11px;
  font-weight: 600;
  color: #22c55e;
  background: rgba(34,197,94,0.12);
  padding: 2px 8px;
  border-radius: 100px;
}

/* PROOF */
.proof { padding: 60px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.proof-inner { max-width: 1200px; margin: 0 auto; padding: 0 40px; }
.proof-label { font-size: 12px; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-dim); margin-bottom: 32px; text-align: center; }
.proof-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; text-align: center; }
.stat-number { font-family: 'Syne', sans-serif; font-size: 48px; font-weight: 800; color: var(--amber); line-height: 1; margin-bottom: 8px; }
.stat-desc { font-size: 14px; color: var(--text-muted); line-height: 1.4; }

/* CAPABILITIES */
.capabilities { padding: 100px 0; }
.cap-inner { max-width: 1200px; margin: 0 auto; padding: 0 40px; }
.section-header { margin-bottom: 64px; }
.section-eyebrow { font-size: 12px; text-transform: uppercase; letter-spacing: 0.1em; color: var(--amber); margin-bottom: 16px; }
.section-title { font-size: clamp(28px, 4vw, 48px); font-weight: 700; line-height: 1.1; letter-spacing: -0.025em; }
.cap-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--border); border: 1px solid var(--border); border-radius: 16px; overflow: hidden; }
.cap-card { background: var(--surface); padding: 32px; }
.cap-icon { color: var(--amber); margin-bottom: 16px; }
.cap-title { font-family: 'Syne', sans-serif; font-size: 17px; font-weight: 700; margin-bottom: 10px; }
.cap-desc { font-size: 14px; color: var(--text-muted); line-height: 1.6; }

/* INDUSTRIES */
.industries { padding: 100px 0; background: var(--surface); }
.ind-inner { max-width: 1200px; margin: 0 auto; padding: 0 40px; }
.ind-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.ind-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 24px;
  position: relative;
}
.ind-card.ind-featured {
  grid-column: span 2;
  border-color: rgba(255,178,36,0.3);
  background: linear-gradient(135deg, var(--bg) 0%, rgba(255,178,36,0.05) 100%);
}
.ind-badge {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #22c55e;
  background: rgba(34,197,94,0.12);
  padding: 3px 8px;
  border-radius: 100px;
  margin-bottom: 12px;
}
.ind-name { font-family: 'Syne', sans-serif; font-size: 18px; font-weight: 700; margin-bottom: 10px; }
.ind-desc { font-size: 13px; color: var(--text-muted); line-height: 1.6; margin-bottom: 12px; }
.ind-metric { font-size: 12px; color: var(--amber); font-weight: 600; }

/* HOW */
.how { padding: 100px 0; }
.how-inner { max-width: 1200px; margin: 0 auto; padding: 0 40px; }
.how-steps { display: flex; align-items: flex-start; gap: 0; margin: 64px 0 48px; }
.step { flex: 1; }
.step-number { font-family: 'Syne', sans-serif; font-size: 13px; font-weight: 700; color: var(--amber); letter-spacing: 0.05em; margin-bottom: 12px; }
.step-title { font-family: 'Syne', sans-serif; font-size: 18px; font-weight: 700; margin-bottom: 10px; }
.step-desc { font-size: 14px; color: var(--text-muted); line-height: 1.6; }
.step-connector {
  width: 60px;
  height: 1px;
  background: var(--border);
  margin: 32px 24px 0;
  flex-shrink: 0;
}
.how-footer { font-size: 14px; color: var(--text-muted); border-top: 1px solid var(--border); padding-top: 32px; }

/* CLOSING */
.closing { padding: 120px 0; }
.closing-inner { max-width: 1200px; margin: 0 auto; padding: 0 40px; }
.closing-eyebrow { font-size: 12px; text-transform: uppercase; letter-spacing: 0.1em; color: var(--amber); margin-bottom: 24px; }
.closing-headline { font-size: clamp(32px, 4vw, 56px); font-weight: 800; line-height: 1.1; letter-spacing: -0.03em; margin-bottom: 28px; }
.closing-sub { font-size: 18px; color: var(--text-muted); line-height: 1.7; max-width: 620px; }

/* FOOTER */
.footer { border-top: 1px solid var(--border); padding: 40px 0; }
.footer-inner { max-width: 1200px; margin: 0 auto; padding: 0 40px; display: flex; justify-content: space-between; align-items: center; }
.footer-logo { font-family: 'Syne', sans-serif; font-weight: 700; font-size: 16px; color: var(--amber); display: block; margin-bottom: 4px; }
.footer-tagline { font-size: 13px; color: var(--text-dim); }
.footer-right { font-size: 14px; color: var(--text-muted); display: flex; align-items: center; gap: 12px; }
.footer-right a { color: var(--text-muted); text-decoration: none; }
.footer-right a:hover { color: var(--text); }
.footer-sep { color: var(--text-dim); }

/* MOBILE */
@media (max-width: 768px) {
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-right { order: -1; }
  .proof-grid { grid-template-columns: repeat(2, 1fr); }
  .cap-grid { grid-template-columns: 1fr; }
  .ind-grid { grid-template-columns: 1fr; }
  .ind-card.ind-featured { grid-column: span 1; }
  .how-steps { flex-direction: column; gap: 32px; }
  .step-connector { width: 40px; height: 40px; margin: 0; background: none; }
  .step-connector::before { content: '↓'; display: block; font-size: 20px; color: var(--text-dim); }
  .nav-links { display: none; }
  .nav-inner { padding: 0 20px; }
  .hero-inner, .cap-inner, .ind-inner, .how-inner, .closing-inner, .proof-inner, .footer-inner { padding: 0 20px; }
  .hero { padding: 60px 0 48px; }
  .proof, .capabilities, .industries, .how, .closing { padding: 64px 0; }
  .footer-inner { flex-direction: column; gap: 20px; text-align: center; }
}