/* ==================== RESET & BASE ==================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg: #070710;
  --bg-2: #0d0d1a;
  --bg-card: #10101e;
  --bg-card-hover: #14142a;
  --fg: #e8e8f0;
  --fg-dim: #6b6b8a;
  --fg-muted: #3d3d5a;
  --accent: #BFFF00;
  --accent-dim: rgba(191, 255, 0, 0.12);
  --accent-border: rgba(191, 255, 0, 0.25);
  --border: rgba(255,255,255,0.07);
  --border-strong: rgba(255,255,255,0.12);
  --green: #00E887;
  --red: #FF4D6A;
  --font-head: 'Space Grotesk', sans-serif;
  --font-body: 'DM Sans', sans-serif;
}

html { font-size: 16px; scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ==================== TYPOGRAPHY ==================== */
h1, h2, h3, h4 { font-family: var(--font-head); font-weight: 700; line-height: 1.15; }

/* ==================== NAV ==================== */
.site-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(7,7,16,0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1200px; margin: 0 auto;
  padding: 0 24px;
  height: 60px;
  display: flex; align-items: center; justify-content: space-between;
}
.nav-logo {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-head); font-weight: 700; font-size: 1.1rem;
  color: var(--fg); text-decoration: none;
  letter-spacing: -0.01em;
}
.nav-status {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.78rem; color: var(--fg-dim);
  font-family: var(--font-head);
}
.status-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 8px var(--accent);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

/* ==================== HERO ==================== */
.hero {
  min-height: 100vh;
  padding: 120px 24px 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}
.hero-inner { display: flex; flex-direction: column; gap: 28px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--accent-dim);
  border: 1px solid var(--accent-border);
  border-radius: 100px;
  padding: 6px 14px;
  font-size: 0.8rem; font-family: var(--font-head);
  color: var(--accent);
  width: fit-content;
}
.badge-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--accent); }
.hero-headline {
  font-size: clamp(2.4rem, 4.5vw, 3.8rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.03em;
}
.headline-accent { color: var(--accent); }
.headline-outline {
  -webkit-text-stroke: 1.5px var(--fg);
  color: transparent;
}
.hero-lede {
  font-size: 1.1rem; line-height: 1.7;
  color: var(--fg-dim); max-width: 480px;
}
.hero-proof {
  display: flex; align-items: center; gap: 24px;
  padding-top: 8px;
}
.proof-item { display: flex; flex-direction: column; gap: 2px; }
.proof-num { font-family: var(--font-head); font-size: 1.5rem; font-weight: 700; color: var(--accent); }
.proof-label { font-size: 0.75rem; color: var(--fg-dim); text-transform: uppercase; letter-spacing: 0.08em; }
.proof-sep { width: 1px; height: 36px; background: var(--border-strong); }

/* ==================== TERMINAL MOCK ==================== */
.terminal-mock {
  background: var(--bg-card);
  border: 1px solid var(--border-strong);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 40px 80px rgba(0,0,0,0.5), 0 0 0 1px rgba(191,255,0,0.06);
}
.term-bar {
  background: #0f0f1e;
  padding: 12px 16px;
  display: flex; align-items: center; gap: 6px;
  border-bottom: 1px solid var(--border);
}
.term-dot { width: 11px; height: 11px; border-radius: 50%; }
.term-dot.red { background: #FF5F56; }
.term-dot.yellow { background: #FFBD2E; }
.term-dot.green { background: #27C93F; }
.term-title { font-size: 0.72rem; font-family: var(--font-head); color: var(--fg-dim); margin-left: 6px; }
.term-body {
  padding: 20px 20px 16px;
  display: flex; flex-direction: column; gap: 10px;
  font-family: 'Space Grotesk', monospace;
  font-size: 0.78rem;
  line-height: 1.4;
}
.term-line { display: flex; align-items: baseline; gap: 10px; }
.term-line.dim { opacity: 0.35; }
.ts { color: var(--fg-muted); flex-shrink: 0; font-size: 0.72rem; }
.ta { color: var(--accent); font-weight: 500; min-width: 120px; }
.term-active { display: flex; align-items: center; gap: 6px; color: var(--fg-dim); margin-top: 4px; }
.cursor-blink {
  width: 7px; height: 13px; background: var(--accent);
  border-radius: 1px;
  animation: blink 1s step-end infinite;
}
@keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: 0; } }

/* ==================== WHAT IT IS ==================== */
.what-it-is { background: var(--bg); padding: 100px 24px; }
.wi-inner { max-width: 1000px; margin: 0 auto; }
.wi-label {
  font-size: 0.75rem; font-family: var(--font-head); text-transform: uppercase;
  letter-spacing: 0.12em; color: var(--fg-dim);
  margin-bottom: 32px;
}
.wi-comparison { display: grid; grid-template-columns: 1fr auto 1fr; gap: 40px; align-items: center; }
.wi-tag { font-family: var(--font-head); font-weight: 700; font-size: 0.85rem; margin-bottom: 20px; }
.wi-tag.old { color: var(--fg-dim); text-decoration: line-through; }
.wi-tag.new { color: var(--accent); }
.wi-list { list-style: none; display: flex; flex-direction: column; gap: 12px; margin-bottom: 28px; }
.wi-list li { font-size: 0.95rem; color: var(--fg-dim); padding-left: 20px; position: relative; }
.wi-list li::before { content: ''; position: absolute; left: 0; top: 9px; width: 6px; height: 6px; border-radius: 50%; background: var(--fg-muted); }
.wi-new .wi-list li::before { background: var(--accent); }
.wi-cost { font-family: var(--font-head); font-size: 1.4rem; font-weight: 700; }
.wi-cost.accent { color: var(--accent); }
.wi-divider { display: flex; flex-direction: column; align-items: center; gap: 16px; }
.divider-line { width: 1px; height: 60px; background: var(--border-strong); }

/* ==================== AGENTS SECTION ==================== */
.agents-section { background: var(--bg-2); padding: 100px 24px; }
.agents-inner { max-width: 1200px; margin: 0 auto; }
.section-header { margin-bottom: 56px; }
.section-label {
  font-size: 0.75rem; font-family: var(--font-head);
  text-transform: uppercase; letter-spacing: 0.12em;
  color: var(--accent); margin-bottom: 16px;
}
.section-headline {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700; letter-spacing: -0.02em;
  line-height: 1.2;
}
.agent-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.agent-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px;
  display: flex; flex-direction: column; gap: 12px;
  transition: border-color 0.2s, background 0.2s;
}
.agent-card:hover { border-color: var(--accent-border); background: var(--bg-card-hover); }
.agent-card.featured { border-color: var(--accent-border); background: linear-gradient(135deg, var(--bg-card), rgba(191,255,0,0.03)); }
.agent-icon {
  width: 44px; height: 44px;
  background: var(--accent-dim);
  border: 1px solid var(--accent-border);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--accent);
  margin-bottom: 4px;
}
.agent-name { font-family: var(--font-head); font-size: 1.15rem; font-weight: 600; }
.agent-desc { font-size: 0.88rem; color: var(--fg-dim); line-height: 1.65; flex: 1; }
.agent-tags { display: flex; gap: 6px; flex-wrap: wrap; }
.agent-tags span {
  background: var(--bg);
  border: 1px solid var(--border-strong);
  border-radius: 6px;
  padding: 3px 10px;
  font-size: 0.72rem; font-family: var(--font-head);
  color: var(--fg-dim);
}
.agent-stat {
  font-family: var(--font-head); font-size: 0.78rem; font-weight: 500;
  color: var(--accent);
  padding-top: 8px;
  border-top: 1px solid var(--border);
}
.agents-pricing-note {
  text-align: center;
  font-size: 0.85rem; color: var(--fg-dim);
  margin-top: 32px;
  font-family: var(--font-head);
}

/* ==================== MANIFESTO ==================== */
.manifesto { background: var(--bg); padding: 100px 24px; }
.manifesto-inner { max-width: 860px; margin: 0 auto; text-align: center; }
.manifesto-quote {
  font-family: var(--font-head);
  font-size: clamp(1.3rem, 2.5vw, 2rem);
  font-weight: 500;
  line-height: 1.45;
  letter-spacing: -0.02em;
  color: var(--fg);
  margin-bottom: 20px;
  font-style: italic;
}
.manifesto-sub { font-size: 0.9rem; color: var(--accent); font-family: var(--font-head); margin-bottom: 48px; }
.manifesto-divider { width: 48px; height: 2px; background: var(--accent); margin: 0 auto 48px; }
.manifesto-facts { display: flex; justify-content: center; gap: 64px; flex-wrap: wrap; }
.fact { display: flex; flex-direction: column; gap: 6px; text-align: center; }
.fact-num { font-family: var(--font-head); font-size: 2.2rem; font-weight: 700; color: var(--accent); }
.fact-text { font-size: 0.82rem; color: var(--fg-dim); max-width: 160px; line-height: 1.5; }

/* ==================== DASHBOARD SECTION ==================== */
.dashboard-section { background: var(--bg-2); padding: 100px 24px; }
.db-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.db-label { font-size: 0.75rem; font-family: var(--font-head); text-transform: uppercase; letter-spacing: 0.12em; color: var(--accent); margin-bottom: 16px; }
.db-headline { font-size: clamp(1.8rem, 3vw, 2.6rem); font-weight: 700; letter-spacing: -0.02em; line-height: 1.2; margin-bottom: 20px; }
.db-body { font-size: 0.95rem; color: var(--fg-dim); line-height: 1.7; margin-bottom: 28px; }
.db-features { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.db-features li { display: flex; align-items: center; gap: 12px; font-size: 0.9rem; color: var(--fg-dim); }
.db-features svg { flex-shrink: 0; }

.db-card-stack { display: flex; flex-direction: column; gap: 12px; }
.db-card {
  background: var(--bg-card);
  border: 1px solid var(--border-strong);
  border-radius: 14px;
  padding: 20px;
}
.db-card.mini { padding: 16px 20px; }
.db-card-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 16px; }
.db-card-title { font-family: var(--font-head); font-size: 0.85rem; font-weight: 600; }
.db-card-badge {
  background: rgba(0, 232, 135, 0.12);
  border: 1px solid rgba(0, 232, 135, 0.25);
  color: var(--green);
  font-size: 0.7rem; font-family: var(--font-head);
  padding: 3px 10px; border-radius: 100px;
}
.db-agents { display: flex; flex-direction: column; gap: 10px; }
.db-agent-row { display: grid; grid-template-columns: 16px 1fr 1fr; align-items: center; gap: 10px; font-size: 0.8rem; }
.dot { width: 8px; height: 8px; border-radius: 50%; }
.dot.green { background: var(--green); box-shadow: 0 0 6px var(--green); }
.db-an { font-family: var(--font-head); font-weight: 500; color: var(--fg); }
.db-as { color: var(--fg-dim); }
.mini-label { font-size: 0.72rem; font-family: var(--font-head); color: var(--fg-dim); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 8px; }
.mini-stat { font-family: var(--font-head); font-size: 1.8rem; font-weight: 700; color: var(--fg); display: flex; align-items: baseline; gap: 4px; }
.mini-stat span { font-size: 0.75rem; color: var(--fg-dim); font-weight: 400; }
.mini-bar { height: 4px; background: var(--bg); border-radius: 4px; margin-top: 10px; overflow: hidden; }
.mini-fill { height: 100%; background: var(--accent); border-radius: 4px; }

/* ==================== CLOSING ==================== */
.closing { background: var(--bg); padding: 100px 24px 120px; }
.closing-inner { max-width: 680px; margin: 0 auto; text-align: center; }
.closing-headline { font-size: clamp(2rem, 4vw, 3rem); font-weight: 700; letter-spacing: -0.03em; line-height: 1.15; margin-bottom: 24px; }
.closing-body { font-size: 1rem; color: var(--fg-dim); line-height: 1.75; margin-bottom: 48px; }
.closing-cta { display: flex; flex-direction: column; align-items: center; gap: 12px; }
.cta-price { display: flex; align-items: baseline; gap: 4px; }
.cta-amount { font-family: var(--font-head); font-size: 4rem; font-weight: 700; color: var(--fg); }
.cta-period { font-size: 1.1rem; color: var(--fg-dim); }
.cta-note { font-size: 0.82rem; color: var(--fg-dim); font-family: var(--font-head); }

/* ==================== FOOTER ==================== */
.site-footer { background: var(--bg-2); border-top: 1px solid var(--border); padding: 40px 24px; }
.footer-inner { max-width: 1200px; margin: 0 auto; display: flex; flex-direction: column; gap: 24px; }
.footer-logo { display: flex; align-items: center; gap: 8px; font-family: var(--font-head); font-weight: 700; }
.footer-brand { display: flex; flex-direction: column; gap: 8px; }
.footer-tagline { font-size: 0.8rem; color: var(--fg-muted); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; font-size: 0.78rem; color: var(--fg-muted); border-top: 1px solid var(--border); padding-top: 20px; }
.footer-polia { color: var(--accent); font-family: var(--font-head); }

/* ==================== RESPONSIVE ==================== */
@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; gap: 48px; padding-top: 100px; }
  .hero-visual { order: -1; }
  .wi-comparison { grid-template-columns: 1fr; gap: 32px; }
  .wi-divider { flex-direction: row; }
  .divider-line { width: 60px; height: 1px; }
  .agent-grid { grid-template-columns: 1fr; }
  .db-inner { grid-template-columns: 1fr; gap: 48px; }
  .manifesto-facts { gap: 32px; }
}

@media (max-width: 480px) {
  .hero-headline { font-size: 2rem; }
  .section-headline { font-size: 1.6rem; }
  .closing-headline { font-size: 1.8rem; }
  .cta-amount { font-size: 3rem; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .hero-proof { gap: 16px; }
  .manifesto-quote { font-size: 1.1rem; }
}