:root {
  --bg: #0f1117;
  --bg-2: #16181f;
  --bg-3: #1c1f28;
  --fg: #e8e8ec;
  --fg-2: #9999a8;
  --fg-3: #5c5c6e;
  --accent: #f59e0b;
  --accent-dim: rgba(245, 158, 11, 0.12);
  --green: #22c55e;
  --border: rgba(255,255,255,0.07);
  --radius: 12px;
}

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

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--bg);
  color: var(--fg);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  line-height: 1.15;
}

/* NAV */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(15, 17, 23, 0.85);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  padding: 0 40px;
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}
.nav-logo {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 18px;
  color: var(--accent);
  letter-spacing: -0.5px;
}
.nav-links {
  display: flex;
  gap: 32px;
}
.nav-links a {
  color: var(--fg-2);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--fg); }

/* HERO */
.hero {
  position: relative;
  overflow: hidden;
  padding: 80px 40px 100px;
}
.hero-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(245,158,11,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(245,158,11,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}
.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.hero-eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}
.hero-headline {
  font-size: 52px;
  font-weight: 800;
  line-height: 1.08;
  margin-bottom: 20px;
  letter-spacing: -2px;
}
.hero-headline span { color: var(--accent); }
.hero-sub {
  color: var(--fg-2);
  font-size: 17px;
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 460px;
}
.hero-visual {
  display: flex;
  gap: 12px;
}
.metric-card {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 16px 20px;
  flex: 1;
  text-align: center;
}
.metric-card.highlight {
  border-color: rgba(245,158,11,0.3);
  background: var(--accent-dim);
}
.metric-label {
  font-size: 11px;
  color: var(--fg-3);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 6px;
}
.metric-value {
  font-family: 'Syne', sans-serif;
  font-size: 22px;
  font-weight: 800;
  color: var(--fg);
}
.metric-card.highlight .metric-value { color: var(--accent); }

/* CODE WINDOW */
.code-window {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(0,0,0,0.4);
}
.code-window-bar {
  background: var(--bg-3);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.dot { width: 12px; height: 12px; border-radius: 50%; }
.dot.red { background: #ff5f57; }
.dot.yellow { background: #ffbd2e; }
.dot.green { background: #28ca42; }
.code-window-title {
  margin-left: 12px;
  font-size: 12px;
  color: var(--fg-3);
  font-family: 'DM Sans', monospace;
}
.code-body {
  padding: 24px;
  font-family: 'DM Sans', monospace;
  font-size: 13px;
  line-height: 1.8;
}
.code-line { display: flex; align-items: center; gap: 8px; }
.c-dim { color: var(--fg-3); }
.c-cmd { color: var(--fg); }
.c-ok { color: var(--green); font-weight: 700; }

/* STATS */
.stats {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg-2);
  padding: 48px 40px;
}
.stats-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.stat { text-align: center; }
.stat-num {
  font-family: 'Syne', sans-serif;
  font-size: 36px;
  font-weight: 800;
  color: var(--accent);
  margin-bottom: 4px;
}
.stat-desc {
  font-size: 13px;
  color: var(--fg-2);
}
.stat-divider {
  width: 1px;
  height: 48px;
  background: var(--border);
}

/* SERVICES */
.services { padding: 100px 40px; }
.services-inner { max-width: 1200px; margin: 0 auto; }
.section-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  display: block;
  margin-bottom: 16px;
}
.section-title {
  font-size: 38px;
  font-weight: 800;
  margin-bottom: 56px;
  letter-spacing: -1px;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
}
.service-card {
  background: var(--bg);
  padding: 36px;
  transition: background 0.2s;
}
.service-card:hover { background: var(--bg-2); }
.service-icon {
  font-family: 'Syne', sans-serif;
  font-size: 12px;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 20px;
  letter-spacing: 1px;
}
.service-card h3 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 12px;
}
.service-card p {
  font-size: 14px;
  color: var(--fg-2);
  line-height: 1.65;
}

/* PROOF */
.proof { padding: 80px 40px; background: var(--bg-2); }
.proof-inner { max-width: 1200px; margin: 0 auto; }
.proof-header { text-align: center; margin-bottom: 56px; }
.proof-sub {
  font-size: 16px;
  color: var(--fg-2);
  margin-top: 16px;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
}
.proof-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 16px;
}
.proof-card {
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px;
  transition: border-color 0.2s;
}
.proof-card:hover { border-color: rgba(245,158,11,0.2); }
.proof-card.large { grid-column: 1 / -1; }
.proof-card-badge {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-dim);
  display: inline-block;
  padding: 4px 10px;
  border-radius: 4px;
  margin-bottom: 16px;
}
.proof-card h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
}
.proof-card p {
  font-size: 14px;
  color: var(--fg-2);
  line-height: 1.65;
  margin-bottom: 20px;
}
.proof-tags { display: flex; gap: 8px; flex-wrap: wrap; }
.proof-tag {
  font-size: 11px;
  color: var(--fg-3);
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 4px 10px;
}

/* MANIFESTO */
.manifesto { padding: 100px 40px; }
.manifesto-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.manifesto-headline {
  font-size: 40px;
  font-weight: 800;
  letter-spacing: -1px;
  line-height: 1.15;
  position: sticky;
  top: 80px;
}
.manifesto-point {
  display: flex;
  gap: 24px;
  padding: 28px 0;
  border-bottom: 1px solid var(--border);
}
.manifesto-point:last-child { border-bottom: none; }
.manifesto-num {
  font-family: 'Syne', sans-serif;
  font-size: 12px;
  font-weight: 800;
  color: var(--accent);
  margin-top: 4px;
  flex-shrink: 0;
  width: 28px;
}
.manifesto-text h4 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 8px;
}
.manifesto-text p {
  font-size: 14px;
  color: var(--fg-2);
  line-height: 1.65;
}

/* CLOSING */
.closing { padding: 100px 40px; background: var(--bg-2); }
.closing-inner { max-width: 1200px; margin: 0 auto; text-align: center; position: relative; }
.closing-bg-accent {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 300px;
  background: radial-gradient(ellipse at center, rgba(245,158,11,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.closing-headline {
  font-size: 38px;
  font-weight: 800;
  letter-spacing: -1px;
  max-width: 700px;
  margin: 0 auto 20px;
  line-height: 1.18;
}
.closing-sub {
  font-size: 16px;
  color: var(--fg-2);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.7;
}

/* FOOTER */
.footer { border-top: 1px solid var(--border); padding: 60px 40px 40px; }
.footer-inner { max-width: 1200px; margin: 0 auto; }
.footer-top {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 64px;
  margin-bottom: 48px;
}
.footer-logo {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 20px;
  color: var(--accent);
  margin-bottom: 12px;
}
.footer-brand p {
  font-size: 14px;
  color: var(--fg-2);
  max-width: 260px;
}
.footer-cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.footer-col h4 {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--fg-3);
  margin-bottom: 16px;
}
.footer-col a {
  display: block;
  font-size: 14px;
  color: var(--fg-2);
  text-decoration: none;
  margin-bottom: 10px;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--fg); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  font-size: 13px;
  color: var(--fg-3);
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-right { display: none; }
  .hero-headline { font-size: 38px; }
  .stats-inner { flex-wrap: wrap; gap: 32px; justify-content: center; }
  .stat-divider { display: none; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .proof-grid { grid-template-columns: 1fr; }
  .proof-card.large { grid-column: 1; }
  .manifesto-inner { grid-template-columns: 1fr; }
  .manifesto-headline { position: static; }
  .footer-top { grid-template-columns: 1fr; }
  .nav-links { display: none; }
}
@media (max-width: 600px) {
  .hero { padding: 60px 20px 80px; }
  .hero-headline { font-size: 30px; }
  .section-title { font-size: 28px; }
  .services-grid { grid-template-columns: 1fr; }
  .closing-headline { font-size: 26px; }
  .footer-cols { grid-template-columns: 1fr; }
  .hero-visual { flex-wrap: wrap; }
}