:root {
  --bg: #0a0f1e;
  --bg-2: #0f1525;
  --fg: #e8eaf0;
  --fg-muted: #6b7490;
  --accent: #00e5a0;
  --accent-dim: rgba(0, 229, 160, 0.08);
  --terminal-bg: #060a12;
  --border: rgba(255,255,255,0.07);
  --font-head: '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;
}

/* NAVBAR */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10, 15, 30, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 0 40px;
}
.navbar-inner {
  max-width: 1100px;
  margin: 0 auto;
  height: 64px;
  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.15rem;
  color: var(--fg);
  letter-spacing: -0.01em;
}
.nav-status {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  color: var(--fg-muted);
  font-family: 'Courier New', monospace;
}
.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 6px var(--accent);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

/* HERO */
.hero {
  padding: 100px 40px 80px;
  background: var(--bg);
}
.hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 80px;
  align-items: start;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent-dim);
  border: 1px solid rgba(0, 229, 160, 0.2);
  border-radius: 100px;
  padding: 6px 14px;
  font-size: 0.78rem;
  color: var(--accent);
  margin-bottom: 28px;
  font-weight: 500;
}
.badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
}
h1 {
  font-family: var(--font-head);
  font-size: clamp(2.6rem, 5vw, 4.2rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--fg);
  margin-bottom: 24px;
}
.hero-sub {
  font-size: 1.1rem;
  color: var(--fg-muted);
  max-width: 480px;
  line-height: 1.65;
}
.hero-meta {
  display: flex;
  flex-direction: column;
  gap: 28px;
  padding-top: 8px;
}
.meta-stat {}
.stat-num {
  display: block;
  font-family: var(--font-head);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 4px;
}
.stat-label {
  font-size: 0.8rem;
  color: var(--fg-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* TERMINAL */
.terminal-section {
  padding: 0 40px 100px;
  background: var(--bg);
}
.terminal-wrap {
  max-width: 1100px;
  margin: 0 auto;
  background: var(--terminal-bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 40px 80px rgba(0,0,0,0.4);
}
.terminal-bar {
  background: #0c1220;
  padding: 12px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid var(--border);
}
.term-dots { display: flex; gap: 7px; }
.td {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}
.td.red { background: #ff5f56; }
.td.yellow { background: #ffbd2e; }
.td.green { background: #27c93f; }
.term-title {
  font-size: 0.75rem;
  color: var(--fg-muted);
  font-family: 'Courier New', monospace;
  margin-left: 8px;
}
.terminal-body {
  padding: 28px 32px;
  font-family: 'Courier New', Courier, monospace;
  font-size: 0.85rem;
  line-height: 1.8;
}
.term-line { color: #7a8ba8; }
.term-line.branch { color: var(--fg-muted); }
.prompt { color: var(--accent); margin-right: 8px; }
.accent { color: #a0c4ff; }
.good { color: #27c93f; }
.pr-line { color: var(--fg); margin-top: 8px; }
.pr-line .prompt { color: #27c93f; }

/* HOW IT WORKS */
.howitworks {
  background: var(--bg-2);
  padding: 100px 40px;
}
.hiw-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.section-heading {
  font-family: var(--font-head);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 56px;
  letter-spacing: -0.02em;
}
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
}
.step {}
.step-num {
  font-family: var(--font-head);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.step h3 {
  font-family: var(--font-head);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 12px;
}
.step p {
  font-size: 0.9rem;
  color: var(--fg-muted);
  line-height: 1.65;
}

/* COMPARISON */
.comparison {
  background: var(--bg);
  padding: 100px 40px;
}
.comp-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.comp-table {
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  margin-bottom: 28px;
}
.comp-col {
  padding: 16px 20px;
  border-right: 1px solid var(--border);
  display: flex;
  align-items: center;
  font-size: 0.85rem;
}
.comp-col:last-child { border-right: none; }
.comp-col.comp-header {
  background: #0f1525;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--fg-muted);
}
.comp-col.comp-highlight {
  background: rgba(0, 229, 160, 0.05);
}
.comp-col:nth-child(n+5):nth-child(-n+8) {
  background: rgba(255,255,255,0.02);
}
.comp-col:nth-child(n+9):nth-child(-n+12) {
  background: rgba(255,255,255,0.02);
}
.comp-col:nth-child(n+13) {
  background: rgba(0, 229, 160, 0.04);
}
.tool-name { color: var(--fg-muted); }
.tool-name.depwatch { color: var(--accent); font-weight: 600; }
.check { color: #27c93f; font-weight: 600; }
.cross { color: #ff5f56; }
.comp-note {
  font-size: 0.85rem;
  color: var(--fg-muted);
  font-style: italic;
}

/* CLOSING */
.closing {
  background: var(--bg-2);
  padding: 100px 40px;
}
.closing-inner {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}
.closing-statement {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.03em;
  color: var(--fg);
}
.closing-statement em {
  font-style: normal;
  color: var(--accent);
}

/* FOOTER */
footer {
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: 48px 40px;
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1rem;
  color: var(--fg);
}
.footer-tagline {
  font-size: 0.85rem;
  color: var(--fg-muted);
}
.footer-copy {
  font-size: 0.75rem;
  color: #3a4258;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .navbar { padding: 0 20px; }
  .hero { padding: 60px 20px 50px; }
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-meta { flex-direction: row; flex-wrap: wrap; gap: 20px; }
  .terminal-section { padding: 0 20px 60px; }
  .terminal-body { font-size: 0.75rem; padding: 20px; }
  .howitworks { padding: 60px 20px; }
  .steps-grid { grid-template-columns: 1fr; gap: 32px; }
  .comparison { padding: 60px 20px; }
  .comp-table { grid-template-columns: 1fr 1fr; }
  .comp-col:nth-child(4n+1) { border-bottom: 1px solid var(--border); }
  .comp-col:nth-child(4n+2) { border-bottom: 1px solid var(--border); border-right: none; }
  .closing { padding: 60px 20px; }
  footer { padding: 40px 20px; }
  .closing-statement { font-size: 2rem; }
}
@media (max-width: 480px) {
  .comp-table { grid-template-columns: 1fr; }
  .comp-col { border-right: none; border-bottom: 1px solid var(--border); }
  .comp-col:last-child { border-bottom: none; }
  .comp-header { border-bottom: 1px solid var(--border); }
}