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

:root {
  --bg: #0D0F14;
  --bg-alt: #13161D;
  --bg-card: #1A1D25;
  --fg: #E8ECEF;
  --fg-muted: #8891A0;
  --accent: #00B4D8;
  --accent-dim: rgba(0, 180, 216, 0.12);
  --accent-glow: rgba(0, 180, 216, 0.25);
  --warn: #F59E0B;
  --success: #10B981;
  --border: rgba(255,255,255,0.07);
  --radius: 10px;
  --radius-lg: 16px;
}

html { scroll-behavior: smooth; }

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

/* NAV */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(13, 15, 20, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 16px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--fg);
}
.nav-logo span {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 700;
  font-size: 18px;
  letter-spacing: -0.3px;
}
.nav-status {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--fg-muted);
}
.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--success);
  box-shadow: 0 0 8px var(--success);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

/* HERO */
.hero {
  min-height: calc(100vh - 60px);
  display: flex;
  align-items: center;
  padding: 80px 32px;
  background:
    radial-gradient(ellipse 60% 50% at 80% 40%, rgba(0, 180, 216, 0.07) 0%, transparent 70%),
    var(--bg);
}
.hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  width: 100%;
}
.hero-eyebrow {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}
.hero-headline {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: clamp(36px, 5vw, 58px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -1.5px;
  color: var(--fg);
  margin-bottom: 24px;
}
.hero-sub {
  font-size: 18px;
  color: var(--fg-muted);
  line-height: 1.7;
  max-width: 440px;
  margin-bottom: 48px;
}
.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
}
.stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 0 28px 0 0;
}
.stat:first-child { padding-left: 0; }
.stat-value {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 32px;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: -1px;
}
.stat-label {
  font-size: 13px;
  color: var(--fg-muted);
}
.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
  margin-right: 28px;
}

/* DATA FEED */
.hero-datafeed {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  font-family: 'Bricolage Grotesque', monospace;
  box-shadow: 0 0 40px rgba(0, 180, 216, 0.05);
}
.datafeed-label {
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-bottom: 20px;
  font-weight: 600;
}
.datafeed-row {
  display: flex;
  align-items: center;
  gap: 0;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  font-size: 13px;
}
.datafeed-row:last-of-type { border-bottom: none; }
.df-route {
  width: 100px;
  color: var(--fg);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.5px;
}
.df-load {
  width: 72px;
  font-size: 11px;
  letter-spacing: 0.8px;
  color: var(--accent);
  font-weight: 600;
}
.df-status {
  width: 90px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.5px;
}
.df-active { color: var(--success); }
.df-done { color: var(--fg-muted); }
.df-warn { color: var(--warn); }
.df-temp {
  width: 52px;
  color: var(--fg-muted);
  text-align: right;
  font-size: 12px;
  margin-left: auto;
}
.datafeed-footer {
  margin-top: 16px;
  font-size: 12px;
  color: var(--fg-muted);
}
.datafeed-live {
  display: flex;
  align-items: center;
  gap: 8px;
}
.live-pulse {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--success);
  display: inline-block;
  animation: pulse 1.5s infinite;
}

/* OPS SECTION */
.ops {
  padding: 100px 32px;
  background: var(--bg-alt);
}
.ops-header {
  max-width: 1100px;
  margin: 0 auto 64px;
  text-align: center;
}
.ops-title {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 42px;
  font-weight: 800;
  letter-spacing: -1px;
  margin-bottom: 12px;
}
.ops-sub {
  font-size: 17px;
  color: var(--fg-muted);
}
.ops-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.op-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.2s, transform 0.2s;
}
.op-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), transparent);
  opacity: 0;
  transition: opacity 0.2s;
}
.op-card:hover { border-color: rgba(0, 180, 216, 0.3); transform: translateY(-2px); }
.op-card:hover::before { opacity: 1; }
.op-icon {
  margin-bottom: 20px;
}
.op-title {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: -0.3px;
}
.op-desc {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.6;
  margin-bottom: 20px;
}
.op-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.op-tag {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: var(--accent);
  background: var(--accent-dim);
  padding: 4px 8px;
  border-radius: 4px;
}

/* WHO SECTION */
.who {
  padding: 100px 32px;
  background: var(--bg);
  border-top: 1px solid var(--border);
}
.who-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.who-label {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 20px;
}
.who-title {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 800;
  letter-spacing: -1px;
  line-height: 1.15;
  max-width: 600px;
  margin-bottom: 64px;
}
.who-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.who-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}
.who-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: var(--accent-dim);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.who-content h3 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
  letter-spacing: -0.2px;
}
.who-content p {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.6;
}

/* VISION SECTION */
.vision {
  padding: 100px 32px;
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
}
.vision-inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}
.vision-quote {
  margin-bottom: 40px;
}
.vision-statement {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: -0.5px;
  color: var(--fg);
}
.vision-sub {
  font-size: 16px;
  color: var(--fg-muted);
  max-width: 500px;
  margin: 0 auto;
  line-height: 1.7;
}

/* FOOTER */
.footer {
  padding: 40px 32px;
  background: var(--bg);
  border-top: 1px solid var(--border);
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer-logo span {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 700;
  font-size: 16px;
}
.footer-tagline {
  font-size: 13px;
  color: var(--fg-muted);
  margin-top: 6px;
}
.footer-meta {
  font-size: 12px;
  color: var(--fg-muted);
  letter-spacing: 0.5px;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-datafeed { margin-top: 0; }
  .ops-grid { grid-template-columns: repeat(2, 1fr); }
  .who-grid { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .hero { padding: 60px 20px; }
  .ops, .who, .vision { padding: 70px 20px; }
  .ops-grid { grid-template-columns: 1fr; }
  .hero-stats { flex-wrap: wrap; }
  .stat-divider { display: none; }
  .stat { padding: 0 16px 16px 0; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
}