/* === BASE === */
:root {
  --bg: #080C14;
  --bg-2: #0D1420;
  --bg-3: #111927;
  --fg: #E8F0FE;
  --fg-dim: #8899AA;
  --cyan: #00E5FF;
  --violet: #8B5CF6;
  --violet-dim: rgba(139,92,246,0.15);
  --cyan-dim: rgba(0,229,255,0.08);
  --border: rgba(0,229,255,0.12);
  --font-display: 'Syne', system-ui, sans-serif;
  --font-body: 'DM Sans', system-ui, 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;
  overflow-x: hidden;
}

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--violet); border-radius: 3px; }

.container { max-width: 1100px; margin: 0 auto; padding: 0 28px; }

/* === HERO === */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 120px 0 80px;
}

.hero-grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0,229,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,229,255,0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
}
.hero-glow-1 {
  width: 600px; height: 600px;
  background: rgba(0,229,255,0.07);
  top: -100px; left: -200px;
}
.hero-glow-2 {
  width: 500px; height: 500px;
  background: rgba(139,92,246,0.08);
  bottom: 0; right: -100px;
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--cyan-dim);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 6px 14px 6px 10px;
  font-size: 12px;
  font-weight: 500;
  color: var(--cyan);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 28px;
  width: fit-content;
}
.badge-dot {
  width: 8px; height: 8px;
  background: var(--cyan);
  border-radius: 50%;
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(52px, 6vw, 80px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
}

.gradient-text {
  background: linear-gradient(135deg, var(--cyan) 0%, var(--violet) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-lede {
  font-size: 18px;
  color: var(--fg-dim);
  line-height: 1.7;
  max-width: 420px;
  margin-bottom: 32px;
}

.hero-ctas {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--cyan);
  color: var(--bg);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  padding: 12px 28px;
  border-radius: 8px;
  text-decoration: none;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  box-shadow: 0 0 24px rgba(0,229,255,0.25);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 32px rgba(0,229,255,0.4);
}
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--fg-dim);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  padding: 12px 28px;
  border-radius: 8px;
  border: 1px solid var(--border);
  text-decoration: none;
  transition: border-color 0.15s ease, color 0.15s ease;
}
.btn-secondary:hover {
  border-color: var(--cyan);
  color: var(--fg);
}

/* Terminal block */
.hero-terminal {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  font-family: 'Courier New', monospace;
  font-size: 13px;
  box-shadow: 0 0 40px rgba(0,229,255,0.05), 0 20px 60px rgba(0,0,0,0.5);
}
.terminal-header {
  background: var(--bg-3);
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 6px;
  border-bottom: 1px solid var(--border);
}
.terminal-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
}
.terminal-dot.red { background: #FF5F57; }
.terminal-dot.yellow { background: #FEBC2E; }
.terminal-dot.green { background: #28C840; }
.terminal-title {
  color: var(--fg-dim);
  font-size: 11px;
  margin-left: 8px;
  font-family: var(--font-body);
}
.terminal-body { padding: 16px 20px; }
.terminal-line {
  padding: 4px 0;
  color: var(--fg-dim);
}
.t-cyan { color: var(--cyan); }
.t-green { color: #28C840; }
.t-dim { color: var(--fg-dim); }

/* Stats row */
.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
  margin-top: 48px;
}
.stat { padding: 0 24px; }
.stat:first-child { padding-left: 0; }
.stat-num {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  color: var(--fg);
  display: block;
}
.stat-label {
  font-size: 12px;
  color: var(--fg-dim);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
}

/* === SHARED SECTION STYLES === */
.section-label {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--cyan);
  margin-bottom: 16px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 56px;
}

/* === HOW IT WORKS === */
.how-it-works { padding: 120px 0; }
.pipeline {
  display: flex;
  align-items: flex-start;
  gap: 0;
  margin-bottom: 48px;
  flex-wrap: wrap;
  gap: 32px;
}
.pipeline-step {
  flex: 1;
  min-width: 200px;
}
.pipeline-connector {
  display: flex;
  align-items: center;
  padding-top: 16px;
}
.pipeline-icon {
  margin-bottom: 16px;
}
.pipeline-content h3 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
}
.pipeline-content p {
  color: var(--fg-dim);
  font-size: 14px;
  line-height: 1.6;
}

.time-saved {
  display: flex;
  justify-content: center;
  padding-top: 16px;
}
.time-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--violet-dim);
  border: 1px solid rgba(139,92,246,0.25);
  border-radius: 100px;
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 500;
  color: var(--fg);
}

/* === THE AGENTS === */
.the-agents {
  background: var(--bg-2);
  padding: 120px 0;
}
.agents-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}
.agent-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px 28px;
  position: relative;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.agent-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}
.agent-card-1 { border-top: 2px solid var(--cyan); }
.agent-card-2 { border-top: 2px solid var(--violet); }
.agent-card-3 { border-top: 2px solid var(--cyan); }
.agent-emoji { margin-bottom: 20px; }
.agent-card h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
}
.agent-card p {
  color: var(--fg-dim);
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 20px;
}
.agent-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.agent-features li {
  font-size: 13px;
  color: var(--fg-dim);
  padding-left: 16px;
  position: relative;
}
.agent-features li::before {
  content: '›';
  position: absolute;
  left: 0;
  color: var(--cyan);
  font-size: 14px;
}

.vs-row {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: center;
}
.vs-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--fg-dim);
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 8px 16px;
}
.vs-cross { color: #FF5F57; font-size: 16px; }

/* === PHILOSOPHY === */
.philosophy {
  padding: 120px 0;
  background: var(--bg);
}
.philosophy-inner { max-width: 780px; }
.philosophy-quote {
  font-family: var(--font-display);
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 500;
  line-height: 1.5;
  color: var(--fg);
  margin-bottom: 32px;
  font-style: normal;
  border-left: 3px solid var(--violet);
  padding-left: 28px;
}
.philosophy-body {
  color: var(--fg-dim);
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 64px;
  padding-left: 28px;
}
.philosophy-stats {
  display: flex;
  gap: 64px;
  padding-top: 48px;
  border-top: 1px solid var(--border);
  flex-wrap: wrap;
}
.p-stat-num {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 800;
  color: var(--cyan);
  display: block;
  margin-bottom: 4px;
}
.p-stat-desc {
  font-size: 13px;
  color: var(--fg-dim);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* === MANIFESTO === */
.manifesto {
  padding: 120px 0;
  background: var(--bg-2);
  position: relative;
  overflow: hidden;
}
.manifesto-bg-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(139,92,246,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.manifesto-inner { max-width: 720px; position: relative; z-index: 1; }
.manifesto-title {
  font-family: var(--font-display);
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 28px;
}
.manifesto-body {
  color: var(--fg-dim);
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 20px;
}
.manifesto-cta {
  margin-top: 48px;
  padding-top: 40px;
  border-top: 1px solid var(--border);
}
.cta-code {
  font-family: 'Courier New', monospace;
  font-size: 18px;
  color: var(--cyan);
  background: var(--cyan-dim);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 14px 24px;
  display: inline-block;
  margin-bottom: 12px;
}
.cta-dim { color: var(--fg-dim); margin-right: 4px; }
.cta-sub { font-size: 13px; color: var(--fg-dim); }

/* === FOOTER === */
.site-footer {
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: 60px 0 32px;
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand {}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}
.footer-name {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
}
.footer-tagline {
  color: var(--fg-dim);
  font-size: 14px;
  max-width: 240px;
}
.footer-links {
  display: flex;
  gap: 64px;
}
.footer-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-col-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--fg-dim);
  font-weight: 600;
  margin-bottom: 4px;
}
.footer-col span:not(.footer-col-label) {
  font-size: 14px;
  color: var(--fg-dim);
  cursor: pointer;
  transition: color 0.2s;
}
.footer-col span:not(.footer-col-label):hover { color: var(--fg); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: var(--fg-dim);
  padding-top: 24px;
  border-top: 1px solid var(--border);
}

/* === PRICING === */
.pricing {
  padding: 120px 0;
  background: var(--bg-2);
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 32px;
  align-items: start;
}
.pricing-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px 28px;
  position: relative;
}
.pricing-card-featured {
  border-color: var(--cyan);
  box-shadow: 0 0 40px rgba(0,229,255,0.08);
}
.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--cyan);
  color: var(--bg);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 4px 14px;
  border-radius: 100px;
}
.pricing-header { margin-bottom: 24px; }
.pricing-tier {
  display: block;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--cyan);
  margin-bottom: 8px;
}
.pricing-price { display: flex; align-items: baseline; gap: 4px; margin-bottom: 8px; }
.price-amount {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 800;
  color: var(--fg);
}
.price-period { font-size: 16px; color: var(--fg-dim); }
.pricing-desc { font-size: 13px; color: var(--fg-dim); line-height: 1.5; }
.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 28px;
}
.pricing-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--fg-dim);
}
.check-icon { color: var(--cyan); font-size: 14px; flex-shrink: 0; }
.pricing-cta {
  display: block;
  text-align: center;
  padding: 12px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  border: 1px solid var(--border);
  color: var(--fg-dim);
  transition: border-color 0.15s ease, color 0.15s ease, background 0.15s ease;
}
.pricing-cta:hover { border-color: var(--fg); color: var(--fg); }
.pricing-cta-primary {
  background: var(--cyan);
  color: var(--bg);
  border-color: var(--cyan);
}
.pricing-cta-primary:hover { background: #00ccee; border-color: #00ccee; color: var(--bg); }
.pricing-footnote { text-align: center; font-size: 13px; color: var(--fg-dim); }

/* === SOCIAL PROOF === */
.social-proof {
  padding: 80px 0;
  background: var(--bg);
}
.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.proof-card {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 28px 24px;
}
.proof-quote {
  font-size: 15px;
  color: var(--fg-dim);
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}
.proof-quote::before { content: '\u201C'; }
.proof-quote::after  { content: '\u201D'; }
.proof-author { display: flex; align-items: center; gap: 12px; }
.proof-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--violet-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  color: var(--violet);
}
.proof-name { font-size: 14px; font-weight: 600; color: var(--fg); display: block; }
.proof-role { font-size: 12px; color: var(--fg-dim); }

/* === RESPONSIVE === */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .agents-grid { grid-template-columns: 1fr; }
  .pipeline { flex-direction: column; }
  .pipeline-connector { transform: rotate(90deg); }
  .footer-inner { flex-direction: column; }
  .footer-links { flex-wrap: wrap; gap: 32px; }
}
@media (max-width: 600px) {
  .hero { padding: 80px 0 60px; }
  .hero-stats { flex-wrap: wrap; gap: 16px; }
  .stat-divider { display: none; }
  .philosophy-stats { gap: 32px; }
  .manifesto-title br { display: none; }
  .footer-bottom { flex-direction: column; gap: 8px; }
}