:root {
  --bg: #FAFAF7;
  --bg-alt: #F2F1EC;
  --fg: #1C1917;
  --fg-muted: #78716C;
  --accent: #92400E;
  --accent-mid: #D97706;
  --surface: #FFFFFF;
  --border: #E7E5E0;
  --font-display: 'Syne', sans-serif;
  --font-body: 'DM Sans', sans-serif;
}

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

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--fg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ── HERO ─────────────────────────────────── */
.hero {
  background: var(--bg);
  padding: 72px 48px 80px;
  border-bottom: 1px solid var(--border);
}

.hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 46px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--fg);
  margin-bottom: 20px;
}

.lede {
  font-size: 17px;
  color: var(--fg-muted);
  line-height: 1.65;
  max-width: 420px;
  margin-bottom: 40px;
}

.stats-row {
  display: flex;
  gap: 40px;
}

.stat { display: flex; flex-direction: column; }

.stat-number {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--fg);
  letter-spacing: -0.02em;
}

.stat-label {
  font-size: 12px;
  color: var(--fg-muted);
  margin-top: 2px;
}

/* ── MONITOR CARD ─────────────────────────── */
.monitor-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0,0,0,0.06);
}

.monitor-header {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  border-bottom: 1px solid var(--border);
  background: var(--bg-alt);
}

.monitor-dots { display: flex; gap: 5px; }
.monitor-dots span {
  width: 9px; height: 9px; border-radius: 50%;
  background: var(--border);
}

.monitor-title {
  font-size: 12px;
  font-weight: 600;
  color: var(--fg-muted);
  flex: 1;
  text-align: center;
}

.monitor-live {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #16A34A;
  background: #DCFCE7;
  padding: 2px 7px;
  border-radius: 4px;
}

.monitor-table { padding: 0; }

.table-head {
  display: grid;
  grid-template-columns: 1.5fr 0.8fr 1fr 0.7fr;
  padding: 8px 16px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--fg-muted);
  border-bottom: 1px solid var(--border);
  background: var(--bg);
}

.table-row {
  display: grid;
  grid-template-columns: 1.5fr 0.8fr 1fr 0.7fr;
  padding: 10px 16px;
  font-size: 12px;
  border-bottom: 1px solid var(--border);
  align-items: center;
}

.table-row.active { background: #FFFBEB; }

.proj { font-weight: 500; font-size: 12px; color: var(--fg); }
.city { color: var(--fg-muted); font-size: 12px; }

.badge {
  display: inline-block;
  font-size: 10px;
  font-weight: 600;
  padding: 2px 8px;
  border-radius: 4px;
  width: fit-content;
}
.badge.approval { background: #FEF3C7; color: #92400E; }
.badge.conditions { background: #EFF6FF; color: #1D4ED8; }
.badge.approved { background: #DCFCE7; color: #15803D; }
.badge.pending { background: var(--bg-alt); color: var(--fg-muted); }

.time { color: var(--fg-muted); font-size: 11px; }

.monitor-footer {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  background: var(--bg-alt);
}

.pulse-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: #16A34A;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.monitor-count { font-size: 12px; color: var(--fg-muted); }

.alert-bubble {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 12px;
  padding: 12px 14px;
  background: #FFFBEB;
  border: 1px solid #FDE68A;
  border-radius: 8px;
}

.alert-icon {
  color: var(--accent-mid);
  flex-shrink: 0;
  margin-top: 1px;
}

.alert-text {
  font-size: 12px;
  line-height: 1.5;
  color: #78350F;
}

/* ── FEATURES ─────────────────────────────── */
.features {
  background: var(--bg-alt);
  padding: 80px 48px;
}

.features-inner { max-width: 1100px; margin: 0 auto; }

.section-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}

.features h2 {
  font-family: var(--font-display);
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--fg);
  margin-bottom: 48px;
}

.features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
}

.feature-card {
  background: var(--surface);
  padding: 36px 32px;
}

.feature-icon {
  color: var(--accent);
  margin-bottom: 20px;
}

.feature-card h3 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--fg);
  margin-bottom: 10px;
}

.feature-card p {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.65;
}

/* ── CLOSING ──────────────────────────────── */
.closing {
  background: var(--fg);
  padding: 80px 48px;
  text-align: center;
}

.closing blockquote {
  font-family: var(--font-display);
  font-size: clamp(20px, 3vw, 30px);
  font-weight: 600;
  color: var(--bg);
  line-height: 1.45;
  max-width: 680px;
  margin: 0 auto;
  letter-spacing: -0.02em;
}

/* ── FOOTER ───────────────────────────────── */
footer {
  background: var(--fg);
  border-top: 1px solid #2D2A26;
  padding: 28px 48px;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-logo {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: var(--bg);
  display: block;
  margin-bottom: 4px;
}

.footer-tagline {
  font-size: 12px;
  color: #78716C;
}

.footer-links {
  font-size: 12px;
  color: #57534E;
}

/* ── RESPONSIVE ────────────────────────────── */
@media (max-width: 768px) {
  .hero { padding: 48px 24px 56px; }
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .features { padding: 56px 24px; }
  .features-grid { grid-template-columns: 1fr; }
  .closing { padding: 56px 24px; }
  .footer-inner { flex-direction: column; gap: 16px; align-items: flex-start; }
  footer { padding: 24px; }
  .stats-row { gap: 24px; }
  .table-head span:nth-child(3),
  .table-head span:nth-child(4),
  .table-row span:nth-child(3),
  .table-row span:nth-child(4) { display: none; }
  .table-head,
  .table-row { grid-template-columns: 1.5fr 0.8fr; }
}