:root {
  --bg: #0D1B2A;
  --surface: #132337;
  --surface2: #1A2F47;
  --accent: #FFB800;
  --accent-dim: #CC9400;
  --text: #F0F4F8;
  --text-muted: #8FA8BE;
  --text-dim: #5A7A96;
  --border: rgba(255,255,255,0.08);
}

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

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

h1, h2, h3, h4 {
  font-family: 'Bricolage Grotesque', 'Arial Black', sans-serif;
  line-height: 1.15;
}

/* NAV */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 20px 40px;
  border-bottom: 1px solid var(--border);
  background: rgba(13, 27, 42, 0.85);
  backdrop-filter: blur(12px);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 16px;
}
.nav-logo {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 800;
  font-size: 20px;
  color: var(--accent);
  letter-spacing: -0.5px;
}
.nav-tagline {
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 500;
}

/* HERO */
.hero {
  padding: 140px 40px 100px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,184,0,0.04) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}
.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.hero-eyebrow {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--accent);
  margin-bottom: 20px;
}
.hero-headline {
  font-size: clamp(36px, 4.5vw, 56px);
  font-weight: 800;
  color: var(--text);
  margin-bottom: 24px;
  letter-spacing: -1px;
}
.hero-lede {
  font-size: 18px;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 480px;
}

/* MOCKUP */
.hero-mockup {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 40px 80px rgba(0,0,0,0.5);
}
.mockup-bar {
  display: flex;
  gap: 6px;
  padding: 14px 18px;
  background: var(--surface2);
  border-bottom: 1px solid var(--border);
}
.mockup-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--text-dim);
}
.mockup-content {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.mockup-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.mockup-card {
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.card-active {
  border-color: var(--accent);
  box-shadow: 0 0 0 1px var(--accent);
}
.card-label {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-dim);
  font-weight: 600;
}
.card-count {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--text);
}
.card-active .card-count { color: var(--accent); }
.card-sub {
  font-size: 11px;
  color: var(--text-muted);
}
.mockup-schedule {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.schedule-row {
  display: grid;
  grid-template-columns: 60px 1fr auto;
  gap: 12px;
  align-items: center;
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 10px 14px;
}
.sched-time {
  font-size: 11px;
  font-weight: 600;
  color: var(--accent);
  font-family: 'Bricolage Grotesque', sans-serif;
}
.sched-job {
  font-size: 13px;
  color: var(--text);
}
.sched-tech {
  font-size: 11px;
  color: var(--text-muted);
  background: var(--surface);
  padding: 3px 8px;
  border-radius: 20px;
}

/* SECTION SHARED */
.section-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 16px;
}
.section-heading {
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 700;
  letter-spacing: -0.5px;
  color: var(--text);
  margin-bottom: 48px;
}

/* FEATURES */
.features {
  padding: 100px 40px;
  background: var(--surface);
}
.features-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
}
.feature-item {
  background: var(--bg);
  border: 1px solid var(--border);
  padding: 40px 36px;
  border-radius: 0;
}
.feature-item:first-child { border-radius: 12px 0 0 0; }
.feature-item:nth-child(2) { border-radius: 0 12px 0 0; }
.feature-item:nth-child(3) { border-radius: 0 0 0 12px; }
.feature-item:last-child { border-radius: 0 0 12px 0; }
.feature-icon {
  width: 52px;
  height: 52px;
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  margin-bottom: 20px;
}
.feature-item h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text);
}
.feature-item p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.65;
}

/* HOW */
.how {
  padding: 100px 40px;
}
.how-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 80px;
  align-items: start;
}
.how-steps {
  display: flex;
  flex-direction: column;
  gap: 36px;
  margin-top: 48px;
}
.how-step {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 20px;
}
.step-num {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 28px;
  font-weight: 800;
  color: var(--accent);
  opacity: 0.4;
  line-height: 1;
  padding-top: 4px;
}
.how-step h4 {
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--text);
}
.how-step p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.65;
}
.how-right {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  background: var(--surface);
}
.how-stat-block {
  padding: 32px 32px;
  border-bottom: 1px solid var(--border);
}
.how-stat-block:last-child { border-bottom: none; }
.stat-num {
  display: block;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 56px;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: -2px;
  line-height: 1;
  margin-bottom: 8px;
}
.stat-desc {
  font-size: 14px;
  color: var(--text-muted);
  font-weight: 500;
}

/* MANIFESTO */
.manifesto {
  padding: 100px 40px;
  background: var(--surface);
}
.manifesto-inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}
.manifesto-text {
  font-size: clamp(26px, 3vw, 40px);
  font-weight: 700;
  color: var(--text);
  line-height: 1.3;
  letter-spacing: -0.5px;
  margin-bottom: 28px;
}
.manifesto-sub {
  font-size: 17px;
  color: var(--text-muted);
  line-height: 1.75;
}

/* CLOSING */
.closing {
  padding: 100px 40px 120px;
}
.closing-inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}
.closing-headline {
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 800;
  color: var(--text);
  letter-spacing: -1px;
  margin-bottom: 24px;
}
.closing-sub {
  font-size: 18px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 20px;
}
.closing-vision {
  font-size: 16px;
  color: var(--text-dim);
  line-height: 1.75;
  font-style: italic;
}

/* FOOTER */
.footer {
  border-top: 1px solid var(--border);
  padding: 40px;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.footer-logo {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 800;
  font-size: 18px;
  color: var(--accent);
}
.footer-tagline {
  font-size: 13px;
  color: var(--text-dim);
}
.footer-copy {
  font-size: 13px;
  color: var(--text-dim);
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-right { order: -1; }
  .how-inner { grid-template-columns: 1fr; }
  .how-right { order: -1; }
  .feature-grid { grid-template-columns: 1fr; }
  .feature-item:first-child { border-radius: 12px 12px 0 0; }
  .feature-item:nth-child(2) { border-radius: 0; }
  .feature-item:nth-child(3) { border-radius: 0; }
  .feature-item:last-child { border-radius: 0 0 12px 12px; }
  .footer-inner { flex-direction: column; gap: 16px; text-align: center; }
  .hero { padding: 120px 24px 80px; }
  .features, .how, .manifesto, .closing { padding: 80px 24px; }
}

@media (max-width: 480px) {
  .mockup-row { grid-template-columns: 1fr; }
  .hero-headline { font-size: 30px; }
  .nav { padding: 16px 24px; }
}