/* Veloxa theme */
:root {
  --bg: #0C0C0E;
  --surface: #141416;
  --surface-2: #1C1C1F;
  --fg: #F2F0EB;
  --fg-dim: rgba(242,240,235,0.5);
  --fg-muted: rgba(242,240,235,0.25);
  --accent: #B8FF5A;
  --accent-dim: rgba(184,255,90,0.12);
  --border: rgba(242,240,235,0.08);
  --radius: 8px;
  --font-display: 'Syne', sans-serif;
  --font-body: 'DM Sans', sans-serif;
}

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

html { scroll-behavior: smooth; }

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 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 48px;
  border-bottom: 1px solid var(--border);
}
.nav-logo { display: flex; align-items: center; gap: 10px; }
.nav-name { font-family: var(--font-display); font-weight: 700; font-size: 18px; letter-spacing: -0.02em; }
.nav-status { display: flex; align-items: center; gap: 8px; }
.nav-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--accent); animation: pulse 2s infinite; }
.nav-status-text { font-size: 13px; color: var(--fg-dim); }
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

/* HERO */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  padding: 96px 48px 80px;
  align-items: center;
  border-bottom: 1px solid var(--border);
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  background: var(--accent-dim);
  border: 1px solid rgba(184,255,90,0.2);
  border-radius: 20px;
  font-size: 12px;
  font-weight: 500;
  color: var(--accent);
  margin-bottom: 28px;
  letter-spacing: 0.02em;
}
.badge-pulse {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse 2s infinite;
}
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(42px, 5vw, 64px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
}
.hero-lede {
  font-size: 18px;
  color: var(--fg-dim);
  line-height: 1.65;
  max-width: 520px;
  margin-bottom: 40px;
}
.hero-stats {
  display: flex;
  align-items: center;
  gap: 24px;
}
.stat { display: flex; flex-direction: column; gap: 2px; }
.stat-value { font-family: var(--font-display); font-size: 22px; font-weight: 700; color: var(--accent); }
.stat-label { font-size: 12px; color: var(--fg-muted); text-transform: uppercase; letter-spacing: 0.06em; }
.stat-divider { width: 1px; height: 36px; background: var(--border); }

/* AGENT CARD */
.agent-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 20px;
  font-size: 13px;
}
.agent-header { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }
.agent-avatar { flex-shrink: 0; }
.agent-info { flex: 1; }
.agent-name { display: block; font-family: var(--font-display); font-weight: 600; font-size: 14px; }
.agent-role { font-size: 11px; color: var(--fg-muted); }
.agent-live-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--accent); animation: pulse 2s infinite; }
.agent-activity { display: flex; flex-direction: column; gap: 10px; }
.activity-row { display: flex; align-items: flex-start; gap: 8px; }
.activity-icon { flex-shrink: 0; margin-top: 1px; }
.activity-text { color: var(--fg-dim); line-height: 1.4; }
.activity-text--dim { color: var(--fg-muted); }
.activity-row--complete .activity-text { color: var(--fg-dim); }
.activity-row--progress .activity-icon { animation: spin 4s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }

/* MANIFESTO */
.manifesto { padding: 80px 48px; border-bottom: 1px solid var(--border); background: var(--surface); }
.manifesto-inner { max-width: 760px; }
.manifesto-label { font-size: 11px; text-transform: uppercase; letter-spacing: 0.1em; color: var(--accent); margin-bottom: 16px; font-weight: 500; }
.manifesto-statement {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 20px;
}
.manifesto-statement--solution { color: var(--accent); }
.manifesto-body { font-size: 17px; color: var(--fg-dim); line-height: 1.7; max-width: 620px; }
.manifesto-divider { width: 48px; height: 1px; background: var(--border); margin: 40px 0; }

/* FEATURES */
.features { padding: 80px 48px; border-bottom: 1px solid var(--border); }
.features-header { margin-bottom: 56px; }
.section-label { font-size: 11px; text-transform: uppercase; letter-spacing: 0.1em; color: var(--fg-muted); margin-bottom: 12px; font-weight: 500; }
.features-title {
  font-family: var(--font-display);
  font-size: clamp(30px, 3.5vw, 46px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
}
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; }
.feature { background: var(--surface); border: 1px solid var(--border); padding: 32px; }
.feature--large { grid-column: span 2; }
.feature--wide { grid-column: span 2; }
.feature-icon { margin-bottom: 20px; }
.feature-title { font-family: var(--font-display); font-size: 18px; font-weight: 700; margin-bottom: 10px; }
.feature-desc { font-size: 14px; color: var(--fg-dim); line-height: 1.65; }

/* PLAYBOOK */
.playbook { padding: 80px 48px; border-bottom: 1px solid var(--border); }
.playbook-inner { max-width: 900px; }
.playbook-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin-bottom: 56px;
}
.playbook-steps { display: flex; align-items: flex-start; gap: 0; }
.step { flex: 1; }
.step-number { font-family: var(--font-display); font-size: 11px; font-weight: 700; color: var(--accent); letter-spacing: 0.05em; margin-bottom: 12px; }
.step-title { font-family: var(--font-display); font-size: 18px; font-weight: 700; margin-bottom: 10px; }
.step-desc { font-size: 14px; color: var(--fg-dim); line-height: 1.65; }
.step-connector { width: 48px; flex-shrink: 0; display: flex; align-items: flex-start; justify-content: center; padding-top: 24px; }
.step-connector::after {
  content: '';
  display: block;
  width: 100%;
  height: 1px;
  background: var(--border);
}

/* CLOSING */
.closing { padding: 96px 48px; text-align: center; }
.closing-inner { max-width: 700px; margin: 0 auto; }
.closing-statement {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.5vw, 34px);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.3;
  margin-bottom: 20px;
}
.closing-sub { font-size: 16px; color: var(--fg-dim); }

/* FOOTER */
.footer { padding: 32px 48px; border-top: 1px solid var(--border); display: flex; align-items: center; justify-content: space-between; }
.footer-logo { display: flex; align-items: center; gap: 8px; }
.footer-name { font-family: var(--font-display); 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; padding: 60px 24px 56px; }
  .hero-visual { display: none; }
  .features-grid { grid-template-columns: 1fr; }
  .feature--large, .feature--wide { grid-column: span 1; }
  .playbook-steps { flex-direction: column; gap: 32px; }
  .step-connector { display: none; }
  .nav { padding: 16px 24px; }
  .manifesto, .features, .playbook, .closing { padding: 56px 24px; }
  .footer { padding: 24px; }
}
@media (max-width: 480px) {
  .hero-stats { flex-wrap: wrap; gap: 16px; }
}

/* Custom scrollbar */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--surface-2); border-radius: 3px; }
