:root {
  --bg: #0f1117;
  --surface: #1a1d26;
  --surface2: #22262f;
  --fg: #f5f0e8;
  --fg-muted: #9a9488;
  --accent: #f59e0b;
  --accent-dim: rgba(245,158,11,0.12);
  --border: rgba(255,255,255,0.08);
}

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

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

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

/* NAV */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 0 40px;
  height: 60px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--border);
  background: rgba(15,17,23,0.92);
  backdrop-filter: blur(12px);
}
.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-family: 'DM Mono', monospace;
  font-weight: 500;
  font-size: 1rem;
  letter-spacing: 0.15em;
  color: var(--fg);
}
.nav-tag {
  font-size: 0.75rem;
  color: var(--fg-muted);
  font-family: 'DM Mono', monospace;
  letter-spacing: 0.05em;
}

/* HERO */
.hero {
  min-height: 88vh;
  display: flex;
  align-items: center;
  padding: 80px 40px 60px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(245,158,11,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.hero-content {
  max-width: 1280px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero-label {
  font-family: 'DM Mono', monospace;
  font-size: 0.75rem;
  color: var(--accent);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.hero-headline {
  font-family: 'DM Mono', monospace;
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  font-weight: 500;
  line-height: 1.15;
  margin-bottom: 24px;
  color: var(--fg);
}
.hero-headline .accent { color: var(--accent); }
.hero-lede {
  font-size: 1.05rem;
  color: var(--fg-muted);
  max-width: 460px;
  line-height: 1.7;
}
.hero-image-wrap {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
}
.hero-img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
  border: 1px solid var(--border);
}
.hero-img-overlay {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: rgba(15,17,23,0.88);
  backdrop-filter: blur(8px);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 14px 18px;
  display: flex;
  flex-direction: column;
}
.hero-img-label {
  font-family: 'DM Mono', monospace;
  font-size: 0.65rem;
  color: var(--fg-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.hero-img-val {
  font-family: 'DM Mono', monospace;
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--accent);
}
.hero-img-sub {
  font-size: 0.7rem;
  color: var(--fg-muted);
  margin-top: 2px;
}

/* STATS */
.stats {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 40px 40px;
  background: var(--surface);
}
.stats-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  align-items: center;
  gap: 0;
}
.stat { padding: 0 32px; }
.stat:first-child { padding-left: 0; }
.stat-val {
  display: block;
  font-family: 'DM Mono', monospace;
  font-size: 2rem;
  font-weight: 500;
  color: var(--accent);
  margin-bottom: 6px;
}
.stat-label {
  display: block;
  font-size: 0.8rem;
  color: var(--fg-muted);
  line-height: 1.4;
  max-width: 180px;
}
.stat-sep {
  width: 1px;
  height: 60px;
  background: var(--border);
  flex-shrink: 0;
}

/* FEATURES */
.features {
  padding: 100px 40px;
  max-width: 1280px;
  margin: 0 auto;
}
.features-header { margin-bottom: 60px; }
.section-label {
  font-family: 'DM Mono', monospace;
  font-size: 0.75rem;
  color: var(--accent);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.section-headline {
  font-family: 'DM Mono', monospace;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 500;
  line-height: 1.2;
  color: var(--fg);
}
.section-headline .accent { color: var(--accent); }
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
}
.feature-card {
  background: var(--surface);
  padding: 36px 32px;
}
.feature-card-img {
  padding: 0;
  grid-row: span 2;
  display: flex;
  flex-direction: column;
}
.feature-card-wide { grid-column: span 2; }
.feature-icon {
  width: 44px;
  height: 44px;
  background: var(--accent-dim);
  border: 1px solid rgba(245,158,11,0.2);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  margin-bottom: 20px;
}
.feature-icon-large {
  width: 56px;
  height: 56px;
}
.feature-title {
  font-family: 'DM Mono', monospace;
  font-size: 0.95rem;
  font-weight: 500;
  margin-bottom: 12px;
  color: var(--fg);
}
.feature-body {
  font-size: 0.875rem;
  color: var(--fg-muted);
  line-height: 1.65;
}
.feature-img {
  width: 100%;
  flex: 1;
  object-fit: cover;
  min-height: 240px;
  display: block;
}
.feature-img-caption {
  padding: 12px 16px;
  font-size: 0.7rem;
  color: var(--fg-muted);
  font-family: 'DM Mono', monospace;
  background: var(--surface2);
  border-top: 1px solid var(--border);
}

/* DIFFERENTIATOR */
.diff {
  padding: 80px 40px;
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.diff-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.diff-headline {
  font-family: 'DM Mono', monospace;
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  font-weight: 500;
  line-height: 1.25;
  margin-bottom: 24px;
  color: var(--fg);
}
.diff-headline .accent { color: var(--accent); }
.diff-body {
  font-size: 0.95rem;
  color: var(--fg-muted);
  line-height: 1.7;
  margin-bottom: 16px;
}
.diff-table {
  border: 1px solid var(--border);
  border-radius: 6px;
  overflow: hidden;
  font-family: 'DM Mono', monospace;
  font-size: 0.75rem;
}
.diff-row {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  border-bottom: 1px solid var(--border);
}
.diff-row:last-child { border-bottom: none; }
.diff-row > span {
  padding: 12px 16px;
  display: flex;
  align-items: center;
}
.diff-row > span:not(:first-child) {
  justify-content: center;
  border-left: 1px solid var(--border);
}
.diff-row-head {
  background: var(--surface2);
  font-weight: 500;
  color: var(--fg-muted);
  font-size: 0.65rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.diff-row:not(.diff-row-head) > span:first-child { color: var(--fg); }
.yes { color: var(--accent); font-weight: 500; }
.partial { color: #7a9a6a; }
.no { color: #4a4a52; }

/* CLOSING */
.closing {
  padding: 120px 40px;
  max-width: 1280px;
  margin: 0 auto;
  text-align: center;
}
.closing-inner { max-width: 760px; margin: 0 auto; }
.closing-headline {
  font-family: 'DM Mono', monospace;
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  font-weight: 500;
  line-height: 1.2;
  margin-bottom: 32px;
  color: var(--fg);
}
.closing-headline .accent { color: var(--accent); }
.closing-body {
  font-size: 1.05rem;
  color: var(--fg-muted);
  line-height: 1.75;
  margin-bottom: 20px;
}

/* FOOTER */
.footer {
  border-top: 1px solid var(--border);
  padding: 48px 40px;
}
.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
}
.footer-logo {
  font-family: 'DM Mono', monospace;
  font-weight: 500;
  font-size: 0.9rem;
  letter-spacing: 0.2em;
  color: var(--fg);
}
.footer-copy {
  font-size: 0.85rem;
  color: var(--fg-muted);
}
.footer-meta {
  font-family: 'DM Mono', monospace;
  font-size: 0.7rem;
  color: #4a4a52;
  letter-spacing: 0.05em;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .hero-content { grid-template-columns: 1fr; gap: 40px; }
  .hero-img { height: 280px; }
  .stats-inner { grid-template-columns: 1fr 1fr; gap: 24px; }
  .stat-sep { display: none; }
  .stat { padding: 0; }
  .features-grid { grid-template-columns: 1fr; }
  .feature-card-img { grid-row: auto; }
  .feature-card-wide { grid-column: auto; }
  .diff-inner { grid-template-columns: 1fr; gap: 48px; }
  .features { padding: 60px 24px; }
  .hero { padding: 60px 24px 40px; }
  .stats { padding: 32px 24px; }
  .closing { padding: 80px 24px; }
}
@media (max-width: 600px) {
  .stats-inner { grid-template-columns: 1fr; }
  .nav { padding: 0 20px; }
}