/* Velox — AI Automation Agency */
:root {
  --bg: #0A0A0F;
  --surface: #111117;
  --surface-2: #1a1a24;
  --border: #222230;
  --lime: #B8FF00;
  --lime-dim: rgba(184, 255, 0, 0.12);
  --text: #f0f0f5;
  --text-muted: #8888a0;
  --text-dim: #555568;
  --font-head: 'Syne', system-ui, sans-serif;
  --font-mono: 'DM Mono', 'Courier New', monospace;
}

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

html {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-head);
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

/* ── NAV ─────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(10, 10, 15, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.nav-wordmark {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 18px;
  color: var(--text);
  letter-spacing: -0.02em;
}
.nav-links {
  display: flex;
  gap: 40px;
}
.nav-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--text); }

/* ── HERO ────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 120px 32px 80px;
  position: relative;
}
.hero-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 80px;
  align-items: start;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 6px 14px;
  margin-bottom: 28px;
}
.badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 8px var(--lime);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}
.hero-headline {
  font-size: clamp(40px, 5.5vw, 72px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--text);
  margin-bottom: 24px;
}
.headline-accent { color: var(--lime); }
.hero-lede {
  font-size: 17px;
  line-height: 1.65;
  color: var(--text-muted);
  max-width: 520px;
  margin-bottom: 48px;
}

/* Agent visualization */
.hero-agent-viz {
  display: flex;
  align-items: center;
  gap: 32px;
}
.agent-lines {
  display: flex;
  flex-direction: column;
  gap: 14px;
  flex: 1;
}
.agent-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 16px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  font-family: var(--font-mono);
  font-size: 12px;
}
.line-1 { border-left: 2px solid #4ADE80; }
.line-2 { border-left: 2px solid #60A5FA; }
.line-3 { border-left: 2px solid #A78BFA; }
.line-4 { border-left: 2px solid #FB923C; }
.line-label { color: var(--text); font-weight: 500; }
.line-status { color: var(--text-dim); }
.agent-core {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 80px;
  height: 80px;
}
.core-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1.5px solid var(--lime);
  opacity: 0.3;
  animation: spin 8s linear infinite;
}
.core-ring::after {
  content: '';
  position: absolute;
  inset: 10px;
  border-radius: 50%;
  border: 1px solid var(--lime);
  opacity: 0.15;
  animation: spin 6s linear infinite reverse;
}
@keyframes spin { to { transform: rotate(360deg); } }
.core-center {
  width: 72px;
  height: 72px;
  background: var(--surface);
  border: 1px solid var(--lime);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  box-shadow: 0 0 20px rgba(184, 255, 0, 0.15);
}
.core-center span {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.1em;
  color: var(--lime);
  text-transform: uppercase;
}

/* Stats panel */
.hero-stats {
  display: flex;
  flex-direction: column;
  gap: 2px;
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  background: var(--surface);
}
.stat-block {
  padding: 24px 28px;
  border-bottom: 1px solid var(--border);
}
.stat-block:last-child { border-bottom: none; }
.stat-block--accent .stat-value { color: var(--lime); }
.stat-value {
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--text);
  margin-bottom: 4px;
}
.stat-label {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.4;
}
.hero-scroll-cue {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  margin-top: 64px;
  opacity: 0.4;
}
.hero-scroll-cue span {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* ── SECTION SHARED ─────────────────────────────── */
.section-label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--lime);
  margin-bottom: 16px;
}

/* ── PROBLEM ─────────────────────────────────────── */
.problem { padding: 100px 32px; }
.problem-inner { max-width: 1200px; margin: 0 auto; }
.problem-headline {
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 700;
  letter-spacing: -0.02em;
  max-width: 600px;
  margin-bottom: 56px;
  line-height: 1.15;
}
.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 64px;
}
.problem-card {
  background: var(--surface);
  padding: 36px 32px;
}
.problem-icon {
  color: var(--lime);
  margin-bottom: 20px;
}
.problem-card h3 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}
.problem-card p {
  font-size: 14px;
  line-height: 1.65;
  color: var(--text-muted);
}
.problem-quote {
  border-left: 2px solid var(--lime);
  padding-left: 28px;
}
.problem-quote blockquote {
  font-size: 18px;
  line-height: 1.6;
  color: var(--text-muted);
  font-style: italic;
  max-width: 640px;
}

/* ── SOLUTION ────────────────────────────────────── */
.solution { padding: 100px 32px; background: var(--surface); }
.solution-inner { max-width: 1200px; margin: 0 auto; }
.solution-headline {
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 700;
  letter-spacing: -0.02em;
  max-width: 560px;
  margin-bottom: 64px;
  line-height: 1.15;
}
.approach-steps {
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: 48px;
  flex-wrap: wrap;
  gap: 16px;
}
.step {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 20px 24px;
  flex: 1;
  min-width: 180px;
}
.step-connector {
  display: flex;
  align-items: center;
  padding: 0 4px;
}
.step-number {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--lime);
  letter-spacing: 0.05em;
  margin-bottom: 8px;
}
.step h3 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 8px;
}
.step p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.55;
}
.solution-note {
  border-top: 1px solid var(--border);
  padding-top: 32px;
}
.solution-note p {
  font-size: 14px;
  color: var(--text-dim);
  font-family: var(--font-mono);
}

/* ── FEATURES ────────────────────────────────────── */
.features { padding: 100px 32px; }
.features-inner { max-width: 1200px; margin: 0 auto; }
.features-headline {
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 700;
  letter-spacing: -0.02em;
  max-width: 500px;
  margin-bottom: 56px;
  line-height: 1.15;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}
.feature-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 28px;
  transition: border-color 0.2s;
}
.feature-card:hover { border-color: var(--lime); }
.feature-icon { margin-bottom: 16px; }
.feature-card h3 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}
.feature-card p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
}
.features-pricing-note {
  text-align: center;
  font-size: 13px;
  color: var(--text-dim);
  font-family: var(--font-mono);
  padding-top: 32px;
  border-top: 1px solid var(--border);
}

/* ── OUTCOMES ────────────────────────────────────── */
.outcomes { padding: 100px 32px; background: var(--surface); }
.outcomes-inner { max-width: 1200px; margin: 0 auto; }
.outcomes-headline {
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 700;
  letter-spacing: -0.02em;
  max-width: 560px;
  margin-bottom: 56px;
  line-height: 1.15;
}
.outcomes-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 48px 80px;
  margin-bottom: 56px;
}
.outcome-item {
  display: flex;
  gap: 24px;
  align-items: flex-start;
}
.outcome-number {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background: var(--lime-dim);
  border: 1px solid rgba(184, 255, 0, 0.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 14px;
  font-weight: 500;
  color: var(--lime);
}
.outcome-text h3 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 8px;
}
.outcome-text p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}
.outcomes-cta {
  text-align: center;
  padding-top: 48px;
  border-top: 1px solid var(--border);
}
.cta-link {
  display: inline-block;
  padding: 14px 28px;
  background: var(--lime);
  color: #0A0A0F;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  border-radius: 8px;
  letter-spacing: -0.01em;
  transition: opacity 0.2s;
}
.cta-link:hover { opacity: 0.85; }

/* ── MANIFESTO ───────────────────────────────────── */
.manifesto { padding: 100px 32px; }
.manifesto-inner { max-width: 1200px; margin: 0 auto; }
.manifesto-content { max-width: 800px; }
.manifesto-quote {
  font-size: clamp(22px, 2.8vw, 34px);
  font-weight: 600;
  line-height: 1.45;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: 64px;
}
.manifesto-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.m-stat-val {
  display: block;
  font-size: 32px;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--lime);
  margin-bottom: 8px;
}
.m-stat-desc {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ── CLOSING ─────────────────────────────────────── */
.closing { padding: 100px 32px 120px; text-align: center; background: linear-gradient(to bottom, var(--bg), #0d0d14); }
.closing-inner { max-width: 700px; margin: 0 auto; }
.closing-headline {
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
  line-height: 1.1;
}
.closing-sub {
  font-size: 18px;
  color: var(--text-muted);
  margin-bottom: 48px;
}
.closing-pillars {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 32px;
}
.pillar {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--text-muted);
}

/* ── FOOTER ──────────────────────────────────────── */
.footer { padding: 48px 32px; border-top: 1px solid var(--border); }
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}
.footer-wordmark {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 16px;
  color: var(--text);
}
.footer-desc {
  font-size: 13px;
  color: var(--text-dim);
  max-width: 280px;
}
.footer-copy {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--text-dim);
  text-align: right;
  max-width: 300px;
}

/* ── RESPONSIVE ─────────────────────────────────── */
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-stats { display: grid; grid-template-columns: 1fr 1fr; }
  .problem-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr 1fr; }
  .outcomes-grid { grid-template-columns: 1fr; }
  .manifesto-stats { grid-template-columns: 1fr; gap: 24px; }
  .approach-steps { flex-direction: column; }
  .step-connector { transform: rotate(90deg); display: none; }
  .footer-inner { flex-direction: column; }
  .footer-copy { text-align: left; }
}
@media (max-width: 600px) {
  .hero { padding: 100px 20px 60px; }
  .features-grid { grid-template-columns: 1fr; }
  .hero-stats { grid-template-columns: 1fr; }
  .nav-links { display: none; }
  .nav-inner { padding: 0 20px; }
}