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

:root {
  --bg: #09090F;
  --surface: #0F0F1A;
  --surface-2: #15152A;
  --border: #1C1C32;
  --cyan: #00F5D4;
  --cyan-dim: #00F5D420;
  --amber: #FFB800;
  --red: #FF4D6A;
  --green: #3DFF92;
  --text: #F0F0FA;
  --text-dim: #7A7A9A;
  --text-muted: #3A3A5A;
  --font-head: 'Space Grotesk', system-ui, sans-serif;
  --font-mono: 'IBM Plex Mono', 'Fira Code', monospace;
}

html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-head);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

/* ===== NAV ===== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 0 40px;
  height: 56px;
  display: flex;
  align-items: center;
  background: rgba(9,9,15,0.85);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  display: flex;
  align-items: center;
  gap: 16px;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}
.nav-logo {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--cyan);
  letter-spacing: -0.02em;
}
.nav-tagline {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--text-dim);
  letter-spacing: 0.04em;
  padding-left: 16px;
  border-left: 1px solid var(--border);
}

/* ===== HERO ===== */
.hero {
  padding: 120px 40px 80px;
}
.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.hero-content { max-width: 520px; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--cyan);
  background: var(--cyan-dim);
  border: 1px solid rgba(0,245,212,0.2);
  padding: 5px 12px;
  border-radius: 100px;
  margin-bottom: 28px;
}
.badge-dot {
  width: 6px; height: 6px;
  background: var(--cyan);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

.hero-headline {
  font-size: clamp(2.6rem, 5vw, 3.8rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.035em;
  color: var(--text);
  margin-bottom: 24px;
}
.hero-sub {
  font-size: 1.05rem;
  color: var(--text-dim);
  line-height: 1.7;
  max-width: 480px;
  margin-bottom: 48px;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 24px;
}
.stat { display: flex; flex-direction: column; gap: 3px; }
.stat-value {
  font-family: var(--font-mono);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--cyan);
}
.stat-label {
  font-size: 0.7rem;
  color: var(--text-dim);
  max-width: 100px;
  line-height: 1.4;
}
.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
}

/* Terminal */
.hero-terminal { position: relative; }
.terminal-window {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 40px 80px rgba(0,0,0,0.5), 0 0 0 1px rgba(0,245,212,0.06);
}
.terminal-bar {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: var(--surface-2);
  border-bottom: 1px solid var(--border);
}
.terminal-dots { display: flex; gap: 6px; }
.dot { width: 10px; height: 10px; border-radius: 50%; }
.dot-red { background: #FF5F57; }
.dot-yellow { background: #FFBD2E; }
.dot-green { background: #28CA41; }
.terminal-title {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--text-dim);
}
.terminal-body {
  padding: 20px 20px 24px;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  line-height: 1.7;
  min-height: 320px;
}
.terminal-line { color: var(--text-dim); }
.terminal-line.indent { padding-left: 20px; }
.t-cyan { color: var(--cyan); }
.t-green { color: var(--green); }
.t-amber { color: var(--amber); }
.t-red { color: var(--red); }
.t-dim { color: var(--text-muted); }
.terminal-spacer { height: 16px; }
.cursor-line { color: var(--cyan); }
.hero-terminal-note {
  text-align: center;
  margin-top: 16px;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--text-muted);
}

/* ===== HOW IT WORKS ===== */
.howitworks {
  padding: 100px 40px;
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.howitworks-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.section-headline {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: var(--text);
  margin-bottom: 72px;
  text-align: center;
}
.steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
  justify-content: center;
}
.step {
  max-width: 260px;
  flex: 1;
}
.step-connector {
  padding: 0 24px;
  color: var(--text-muted);
  flex-shrink: 0;
  padding-top: 8px;
}
.step-num {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--cyan);
  margin-bottom: 16px;
  letter-spacing: 0.1em;
}
.step h3 {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 10px;
}
.step p {
  font-size: 0.88rem;
  color: var(--text-dim);
  line-height: 1.65;
}

/* ===== FEATURES ===== */
.features { padding: 100px 40px; }
.features-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 24px;
}
.feature-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px;
  transition: border-color 0.2s;
}
.feature-card:hover { border-color: rgba(0,245,212,0.2); }
.feature-icon {
  width: 48px; height: 48px;
  background: var(--cyan-dim);
  border: 1px solid rgba(0,245,212,0.15);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cyan);
  margin-bottom: 20px;
}
.feature-card h3 {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 10px;
}
.feature-card p {
  font-size: 0.88rem;
  color: var(--text-dim);
  line-height: 1.65;
}

/* ===== MANIFESTO ===== */
.manifesto {
  padding: 100px 40px;
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.manifesto-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.manifesto-quote .quote-text {
  font-size: 1.1rem;
  color: var(--text-dim);
  line-height: 1.75;
  margin-bottom: 20px;
  font-style: italic;
}
.manifesto-aside p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 16px;
}

/* ===== CLOSING / PRICING ===== */
.closing { padding: 100px 40px 80px; }
.closing-inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}
.closing-headline {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--text);
  margin-bottom: 16px;
}
.closing-sub {
  font-size: 1rem;
  color: var(--text-dim);
  margin-bottom: 64px;
}
.closing-pricing {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-bottom: 64px;
  flex-wrap: wrap;
}
.price-tier {
  flex: 1;
  min-width: 200px;
  max-width: 260px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px 24px;
  text-align: left;
}
.price-tier-pro {
  border-color: rgba(0,245,212,0.3);
  background: linear-gradient(135deg, rgba(0,245,212,0.05) 0%, transparent 60%);
}
.price-tier-label {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--text-dim);
  letter-spacing: 0.1em;
  margin-bottom: 12px;
}
.price-tier-pro .price-tier-label { color: var(--cyan); }
.price-tier-price {
  font-family: var(--font-mono);
  font-size: 2rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 8px;
}
.price-per {
  font-size: 0.85rem;
  color: var(--text-dim);
}
.price-tier-desc {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.5;
}
.closing-final {
  font-size: 0.9rem;
  color: var(--text-muted);
  font-style: italic;
}

/* ===== FOOTER ===== */
.footer {
  padding: 40px;
  border-top: 1px solid var(--border);
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-brand {
  font-weight: 700;
  color: var(--cyan);
  font-size: 0.95rem;
}
.footer-tagline {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--text-dim);
  padding-left: 16px;
  border-left: 1px solid var(--border);
}
.footer-copy {
  margin-left: auto;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--text-muted);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-terminal { order: -1; }
  .hero-content { max-width: 100%; }
  .manifesto-inner { grid-template-columns: 1fr; gap: 40px; }
  .feature-row { grid-template-columns: 1fr; }
  .steps { flex-direction: column; gap: 40px; align-items: center; }
  .step-connector { display: none; }
  .step { max-width: 360px; text-align: center; }
  .hero-stats { justify-content: center; flex-wrap: wrap; }
  .stat-label { max-width: 140px; }
  .closing-pricing { flex-direction: column; align-items: center; }
  .price-tier { max-width: 340px; width: 100%; }
}

@media (max-width: 600px) {
  .hero { padding: 100px 24px 60px; }
  .howitworks, .features, .manifesto, .closing, .footer { padding-left: 24px; padding-right: 24px; }
  .nav { padding: 0 24px; }
  .hero-stats { gap: 16px; }
  .stat-value { font-size: 1.2rem; }
  .terminal-body { font-size: 0.72rem; }
  .footer-inner { gap: 8px; }
  .footer-copy { margin-left: 0; }
}