/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:        #080F1A;
  --bg-mid:    #0D1F32;
  --bg-card:   #0F2137;
  --teal:      #00E5C4;
  --teal-dim:  rgba(0, 229, 196, 0.12);
  --blue:      #3A7CA5;
  --steel:     #2A5070;
  --text:      #E8F4F0;
  --text-mid:  #8FAFC5;
  --text-dim:  #4A6B84;
  --border:    rgba(58, 124, 165, 0.2);
  --font-head: 'Syne', system-ui, sans-serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
}

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

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.6;
  overflow-x: hidden;
}

::selection { background: var(--teal); color: var(--bg); }

/* ===== NAV ===== */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 0 40px;
  height: 56px;
  display: flex;
  align-items: center;
  background: rgba(8, 15, 26, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  display: flex;
  align-items: center;
  gap: 20px;
  width: 100%;
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--text);
}
.nav-brand-mark {
  width: 24px; height: 24px;
  background: var(--teal);
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
}
.nav-brand-name {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: -0.01em;
}
.nav-tagline {
  font-size: 0.75rem;
  color: var(--text-dim);
  font-family: var(--font-body);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.nav-link {
  margin-left: auto;
  font-size: 0.8rem;
  font-family: var(--font-body);
  color: var(--text-mid);
  text-decoration: none;
  letter-spacing: 0.04em;
  padding: 6px 14px;
  border-radius: 6px;
  border: 1px solid var(--border);
  transition: color 0.2s, border-color 0.2s, background 0.2s;
}
.nav-link:hover {
  color: var(--teal);
  border-color: rgba(0, 229, 196, 0.4);
  background: var(--teal-dim);
}

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 60px 40px;
  position: relative;
  background:
    radial-gradient(ellipse 70% 60% at 60% 50%, rgba(0, 229, 196, 0.04) 0%, transparent 70%),
    radial-gradient(ellipse 50% 40% at 20% 80%, rgba(58, 124, 165, 0.08) 0%, transparent 60%),
    var(--bg);
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(var(--border) 1px, transparent 1px),
    linear-gradient(90deg, var(--border) 1px, transparent 1px);
  background-size: 60px 60px;
  opacity: 0.3;
  pointer-events: none;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  position: relative;
  z-index: 1;
}

/* NOC Screen */
.noc-screen {
  background: var(--bg-mid);
  border: 1px solid var(--steel);
  border-radius: 12px;
  padding: 20px;
  font-family: 'DM Mono', 'Fira Code', monospace;
  box-shadow: 0 0 60px rgba(0, 229, 196, 0.05), 0 24px 48px rgba(0,0,0,0.4);
}
.noc-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--steel);
}
.noc-title {
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  color: var(--text-dim);
  font-family: var(--font-body);
  font-weight: 500;
}
.noc-status {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.6rem;
  color: var(--teal);
  letter-spacing: 0.06em;
}
.status-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 6px var(--teal);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}
.noc-rows {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.noc-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 12px;
}
.monitor {
  background: rgba(15, 33, 55, 0.8);
  border: 1px solid var(--steel);
  border-radius: 8px;
  padding: 12px 14px;
}
.monitor--primary { border-top: 2px solid var(--teal); }
.monitor--green { border-top: 2px solid #00C853; }
.monitor--teal { border-top: 2px solid var(--blue); }
.monitor--wide { grid-column: 1 / -1; }
.monitor-label {
  font-size: 0.55rem;
  letter-spacing: 0.1em;
  color: var(--text-dim);
  margin-bottom: 6px;
  text-transform: uppercase;
  font-family: var(--font-body);
}
.metric {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text);
  font-family: var(--font-head);
  line-height: 1;
}
.metric span { font-size: 1rem; opacity: 0.7; }
.metric--uptime { color: var(--teal); }
.metric-sub {
  font-size: 0.6rem;
  color: var(--text-dim);
  margin-top: 4px;
  font-family: var(--font-body);
}
.coverage-bars {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 4px;
}
.coverage-bar {
  display: flex;
  align-items: center;
  gap: 10px;
}
.bar-label {
  font-size: 0.6rem;
  color: var(--text-dim);
  width: 72px;
  font-family: var(--font-body);
  flex-shrink: 0;
}
.bar-fill {
  height: 4px;
  background: var(--teal);
  border-radius: 2px;
  max-width: 160px;
  box-shadow: 0 0 6px rgba(0, 229, 196, 0.4);
  position: relative;
}
.bar-fill::after {
  content: '';
  position: absolute;
  right: 0; top: -1px;
  width: 2px; height: 6px;
  background: var(--teal);
  border-radius: 1px;
}
.noc-footer {
  display: flex;
  gap: 16px;
  margin-top: 12px;
  padding-top: 10px;
  border-top: 1px solid var(--steel);
  font-size: 0.55rem;
  letter-spacing: 0.08em;
  color: var(--text-dim);
  font-family: var(--font-body);
}

/* Hero copy */
.hero-copy { display: flex; flex-direction: column; gap: 24px; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--teal);
  background: var(--teal-dim);
  border: 1px solid rgba(0, 229, 196, 0.2);
  border-radius: 20px;
  padding: 6px 14px;
  width: fit-content;
  font-weight: 500;
}
.hero-headline {
  font-family: var(--font-head);
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--text);
}
.hero-lede {
  font-size: 1.05rem;
  color: var(--text-mid);
  max-width: 460px;
  line-height: 1.7;
  font-weight: 300;
}

/* Scroll cue */
.scroll-cue {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--text-dim);
  font-size: 0.65rem;
  letter-spacing: 0.08em;
  opacity: 0.6;
  animation: bob 2.5s ease-in-out infinite;
}
@keyframes bob {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

/* ===== DIFFERENTIATORS ===== */
.differentiators {
  padding: 80px 60px;
  background: var(--bg-mid);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.diff-inner {
  display: grid;
  grid-template-columns: 2fr 1.5fr 1.5fr;
  gap: 0;
  max-width: 1100px;
  margin: 0 auto;
}
.diff-item {
  padding: 40px 48px 40px 0;
}
.diff-item--accent {
  padding-left: 0;
  border-right: 1px solid var(--border);
}
.diff-item:not(.diff-item--accent) {
  padding-left: 48px;
  border-right: 1px solid var(--border);
}
.diff-item:last-child { border-right: none; }
.diff-icon { margin-bottom: 20px; }
.diff-item h3 {
  font-family: var(--font-head);
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text);
}
.diff-item p {
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.65;
  font-weight: 300;
}

/* ===== BADGE SECTION ===== */
.badge-section {
  padding: 80px 60px;
  background: var(--bg);
}
.badge-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 80px;
}
.years-anchor {
  display: flex;
  align-items: baseline;
  gap: 16px;
  flex-shrink: 0;
}
.years-number {
  font-family: var(--font-head);
  font-size: 5rem;
  font-weight: 800;
  color: var(--teal);
  line-height: 1;
  text-shadow: 0 0 40px rgba(0, 229, 196, 0.2);
}
.years-label {
  font-size: 0.85rem;
  color: var(--text-mid);
  line-height: 1.5;
  max-width: 120px;
}
.badge-divider {
  width: 1px;
  height: 80px;
  background: var(--border);
}
.badge-stats {
  display: flex;
  gap: 60px;
  flex-wrap: wrap;
}
.badge-stat {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.stat-value {
  font-family: var(--font-head);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--text);
}
.stat-label {
  font-size: 0.75rem;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ===== INTEGRATION ===== */
.integration {
  padding: 60px 60px;
  background: var(--bg-mid);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.integration-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}
.integration-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-dim);
}
.tool-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  align-items: center;
}
.tool-logo {
  width: 80px;
  height: 40px;
}
.tool-logo svg {
  width: 100%;
  height: 100%;
}

/* ===== SERVICES ===== */
.services {
  padding: 100px 60px;
  background: var(--bg);
}
.services-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.services-header {
  margin-bottom: 64px;
}
.services-eyebrow {
  display: block;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--teal);
  margin-bottom: 16px;
}
.services-title {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--text);
}
.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
}
.service-card {
  background: var(--bg-mid);
  padding: 40px 36px;
  transition: background 0.2s;
}
.service-card:hover { background: var(--bg-card); }
.service-card--primary {
  background: var(--bg-card);
  border-left: 3px solid var(--teal);
}
.service-tag {
  display: inline-block;
  font-size: 0.6rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal);
  background: var(--teal-dim);
  border: 1px solid rgba(0, 229, 196, 0.15);
  border-radius: 4px;
  padding: 3px 8px;
  margin-bottom: 16px;
  font-weight: 500;
}
.service-card h3 {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 12px;
}
.service-card p {
  font-size: 0.875rem;
  color: var(--text-mid);
  line-height: 1.65;
  margin-bottom: 16px;
  font-weight: 300;
}
.service-detail {
  font-size: 0.72rem;
  color: var(--text-dim);
  border-top: 1px solid var(--border);
  padding-top: 12px;
  margin-top: auto;
}

/* ===== CLOSING ===== */
.closing {
  padding: 100px 60px;
  background: var(--bg-mid);
  border-top: 1px solid var(--border);
}
.closing-inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}
.closing-eyebrow {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--teal);
  margin-bottom: 24px;
}
.closing-headline {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: 24px;
}
.closing-body {
  font-size: 1rem;
  color: var(--text-mid);
  line-height: 1.7;
  max-width: 560px;
  margin: 0 auto 40px;
  font-weight: 300;
}
.closing-divider {
  width: 60px;
  height: 2px;
  background: var(--teal);
  margin: 0 auto 40px;
  box-shadow: 0 0 12px rgba(0, 229, 196, 0.4);
}
.closing-values {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 24px 48px;
}
.value {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  color: var(--text-mid);
  font-weight: 400;
}

/* ===== FOOTER ===== */
.site-footer {
  padding: 40px 60px;
  background: var(--bg);
  border-top: 1px solid var(--border);
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-brand {
  display: flex;
  align-items: baseline;
  gap: 12px;
}
.footer-name {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1rem;
  color: var(--text);
}
.footer-tagline {
  font-size: 0.75rem;
  color: var(--text-dim);
}
.footer-meta {
  display: flex;
  gap: 12px;
  align-items: center;
  font-size: 0.72rem;
  color: var(--text-dim);
}
.footer-sep { color: var(--text-dim); opacity: 0.5; }

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .hero { padding: 80px 24px 40px; }
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-viz { order: 2; }
  .hero-copy { order: 1; }
  .noc-row { grid-template-columns: 1fr 1fr; }
  .diff-inner { grid-template-columns: 1fr; gap: 0; }
  .diff-item { padding: 32px 0; border-right: none; border-bottom: 1px solid var(--border); }
  .diff-item--accent { border-bottom: 1px solid var(--border); }
  .diff-item:last-child { border-bottom: none; }
  .badge-inner { flex-direction: column; gap: 40px; align-items: flex-start; }
  .badge-divider { width: 80px; height: 1px; }
  .badge-stats { gap: 32px; }
  .services-grid { grid-template-columns: 1fr; }
  .differentiators, .badge-section, .services, .closing, .integration, .site-footer { padding-left: 24px; padding-right: 24px; }
}
@media (max-width: 480px) {
  .years-number { font-size: 3.5rem; }
  .badge-stats { flex-direction: column; gap: 24px; }
  .closing-values { flex-direction: column; align-items: center; }
  .site-nav { padding: 0 20px; }
}