:root {
  --bg: #0a0e17;
  --bg-card: #111827;
  --bg-elevated: #1a2235;
  --fg: #e8eaf0;
  --fg-muted: #8892a4;
  --accent: #f59e0b;
  --accent-dim: rgba(245,158,11,0.12);
  --accent-border: rgba(245,158,11,0.25);
  --border: rgba(255,255,255,0.08);
  --border-card: rgba(255,255,255,0.06);
  --radius: 12px;
  --radius-sm: 8px;
}

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

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

/* ── NAV ── */
.site-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 48px;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  background: rgba(10,14,23,0.92);
  backdrop-filter: blur(12px);
  z-index: 100;
}
.nav-brand { display: flex; align-items: center; gap: 10px; }
.brand-mark { display: flex; }
.brand-name {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 600;
  font-size: 20px;
  color: var(--accent);
  letter-spacing: -0.02em;
}
.nav-tagline {
  font-size: 13px;
  color: var(--fg-muted);
  font-weight: 400;
}

/* ── HERO ── */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  padding: 80px 48px 80px;
  min-height: 640px;
  align-items: center;
  border-bottom: 1px solid var(--border);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent-dim);
  border: 1px solid var(--accent-border);
  color: var(--accent);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 28px;
  width: fit-content;
}
.badge-dot {
  width: 6px; height: 6px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.85); }
}

.hero-headline {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 600;
  font-size: clamp(40px, 5vw, 60px);
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: var(--fg);
  margin-bottom: 24px;
}
.hero-headline .line1 { display: block; color: var(--fg-muted); font-style: italic; font-weight: 300; }
.hero-headline .line2 { display: block; }
.hero-headline .line3 { display: block; color: var(--accent); }

.hero-lede {
  font-size: 18px;
  color: var(--fg-muted);
  line-height: 1.7;
  max-width: 480px;
  margin-bottom: 40px;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 24px;
}
.stat { }
.stat-value {
  display: block;
  font-family: 'Fraunces', Georgia, serif;
  font-size: 32px;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
}
.stat-label {
  display: block;
  font-size: 12px;
  color: var(--fg-muted);
  margin-top: 4px;
  max-width: 100px;
  line-height: 1.4;
}
.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
}

/* ── DASHBOARD MOCKUP ── */
.dashboard-mockup {
  background: #0f1623;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(0,0,0,0.5), 0 0 0 1px rgba(245,158,11,0.08);
}
.mockup-bar {
  background: #1a2235;
  padding: 10px 16px;
  display: flex;
  gap: 6px;
  align-items: center;
}
.mockup-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
}
.mockup-content { padding: 16px; }

.map-panel {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-sm);
  padding: 14px;
  margin-bottom: 12px;
}
.map-label {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: 12px;
}
.map-grid { display: grid; gap: 8px; }
.grid-row { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }

.grid-cell {
  background: var(--bg-elevated);
  border: 1px solid var(--border-card);
  border-radius: 8px;
  padding: 10px 12px;
}
.worker-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  display: inline-block;
  margin-bottom: 4px;
}
.worker-dot.green { background: #22c55e; }
.worker-dot.yellow { background: #eab308; }
.worker-dot.red { background: #ef4444; }

.worker-name {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: var(--fg);
}
.worker-role {
  display: block;
  font-size: 10px;
  color: var(--fg-muted);
  margin-bottom: 2px;
}
.worker-status {
  display: block;
  font-size: 10px;
  font-weight: 600;
}
.worker-status.on-time { color: #22c55e; }
.worker-status.delayed { color: #eab308; }

.metrics-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}
.metric-chip {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: 8px;
  padding: 10px 12px;
  text-align: center;
}
.metric-chip.alert { border-color: rgba(234,179,8,0.3); }
.metric-label {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--fg-muted);
  margin-bottom: 4px;
}
.metric-value {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--fg);
}
.metric-unit { font-size: 12px; color: var(--fg-muted); }

/* ── SECTION TYPOGRAPHY ── */
.section-title {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: var(--fg);
  margin-bottom: 16px;
}
.section-sub {
  font-size: 17px;
  color: var(--fg-muted);
  max-width: 600px;
  line-height: 1.7;
}

/* ── CAPABILITIES ── */
.capabilities {
  padding: 80px 48px;
  border-bottom: 1px solid var(--border);
}
.capabilities-header {
  max-width: 680px;
  margin-bottom: 56px;
}
.capability-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.capability-card {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius);
  padding: 28px;
  transition: border-color 0.2s, transform 0.2s;
}
.capability-card:hover {
  border-color: var(--accent-border);
  transform: translateY(-2px);
}
.cap-icon { margin-bottom: 20px; }
.cap-title {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 10px;
}
.cap-desc {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.65;
  margin-bottom: 16px;
}
.cap-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.cap-features li {
  font-size: 13px;
  color: var(--fg-muted);
  padding-left: 16px;
  position: relative;
}
.cap-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent);
}

/* ── PRODUCTS ── */
.products {
  padding: 80px 48px;
  border-bottom: 1px solid var(--border);
}
.products-header {
  max-width: 640px;
  margin-bottom: 48px;
}
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.product-card {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius);
  padding: 32px;
  position: relative;
  overflow: hidden;
}
.product-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
}
.product-carehudl::before { background: linear-gradient(90deg, #22c55e, #16a34a); }
.product-eventworks::before { background: linear-gradient(90deg, #3b82f6, #2563eb); }
.product-staffworks::before { background: linear-gradient(90deg, #f59e0b, #d97706); }

.product-tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-bottom: 12px;
}
.product-name {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 26px;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 12px;
}
.product-desc {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.65;
  margin-bottom: 20px;
}
.product-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 24px;
}
.product-features li {
  font-size: 13px;
  color: var(--fg-muted);
  padding-left: 16px;
  position: relative;
}
.product-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 7px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent);
}
.product-case {
  background: var(--bg-elevated);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-sm);
  padding: 16px;
}
.case-quote {
  font-size: 13px;
  color: var(--fg-muted);
  font-style: italic;
  line-height: 1.6;
  margin-bottom: 8px;
}
.case-author {
  font-size: 11px;
  color: var(--accent);
  font-weight: 600;
}

/* ── MISSION ── */
.mission {
  padding: 80px 48px;
  border-bottom: 1px solid var(--border);
  background: linear-gradient(180deg, var(--bg) 0%, #0f1520 100%);
}
.mission-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}
.mission-headline {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: var(--fg);
  max-width: 800px;
  margin-bottom: 28px;
}
.mission-body {
  max-width: 640px;
}
.mission-body p {
  font-size: 16px;
  color: var(--fg-muted);
  line-height: 1.75;
  margin-bottom: 16px;
}
.mission-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 56px;
  padding-top: 48px;
  border-top: 1px solid var(--border);
}
.ms-number {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 40px;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 8px;
}
.ms-label {
  font-size: 13px;
  color: var(--fg-muted);
  line-height: 1.5;
}

/* ── RESULTS ── */
.results {
  padding: 80px 48px;
  border-bottom: 1px solid var(--border);
}
.results-header {
  margin-bottom: 48px;
}
.results-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.result-card {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius);
  padding: 28px;
  text-align: center;
}
.result-number {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 52px;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 8px;
}
.result-label {
  font-size: 15px;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 8px;
}
.result-note {
  font-size: 12px;
  color: var(--fg-muted);
  line-height: 1.5;
}

/* ── CLOSING ── */
.closing {
  padding: 100px 48px;
  border-bottom: 1px solid var(--border);
  text-align: center;
}
.closing-headline {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.25;
  color: var(--fg);
  max-width: 760px;
  margin: 0 auto 28px;
}
.closing-sub {
  font-size: 16px;
  color: var(--fg-muted);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.75;
}

/* ── FOOTER ── */
.site-footer {
  padding: 32px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-brand { display: flex; align-items: center; gap: 8px; }
.footer-name {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--fg-muted);
}
.footer-meta {
  display: flex;
  gap: 24px;
  font-size: 12px;
  color: var(--fg-muted);
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    padding: 48px 24px;
    gap: 40px;
  }
  .hero-stats { gap: 16px; }
  .capability-grid { grid-template-columns: repeat(2, 1fr); }
  .products-grid { grid-template-columns: 1fr; }
  .mission-stats { grid-template-columns: 1fr; gap: 24px; }
  .results-grid { grid-template-columns: repeat(2, 1fr); }
  .site-nav, .site-footer { padding: 16px 24px; }
  .capabilities, .products, .mission, .results, .closing { padding: 56px 24px; }
}
@media (max-width: 640px) {
  .capability-grid { grid-template-columns: 1fr; }
  .results-grid { grid-template-columns: 1fr; }
  .stat-value { font-size: 26px; }
}