:root {
  --navy: #0a1a3f;
  --navy-deep: #061229;
  --blue: #2f6fed;
  --blue-bright: #4a90ff;
  --cyan: #4fc3f7;
  --ink: #101828;
  --muted: #5b6577;
  --line: #e4e9f2;
  --soft: #f5f8fd;
  --white: #ffffff;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
.wrap { max-width: 1120px; margin: 0 auto; padding: 0 24px; }

/* Header */
header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}
.nav {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 24px;
  max-width: 1120px; margin: 0 auto;
}
.nav img { height: 42px; width: auto; }
.nav-links { display: flex; gap: 32px; list-style: none; }
.nav-links a {
  text-decoration: none; color: var(--navy); font-weight: 600; font-size: 15px;
  transition: color .15s ease;
}
.nav-links a:hover { color: var(--blue); }
.nav-cta {
  background: linear-gradient(135deg, var(--blue), var(--navy));
  color: #fff !important; padding: 10px 22px; border-radius: 8px;
  text-decoration: none; font-weight: 700; font-size: 14px;
  box-shadow: 0 4px 14px rgba(47,111,237,0.35);
  transition: transform .15s ease, box-shadow .15s ease;
}
.nav-cta:hover { transform: translateY(-1px); box-shadow: 0 6px 18px rgba(47,111,237,0.45); }

/* Mobile menu -- CSS-only checkbox toggle, no JS dependency */
#menu-check { display: none; }
.menu-toggle {
  display: none; flex-direction: column; gap: 5px; cursor: pointer;
  width: 28px; padding: 4px;
}
.menu-toggle span { display: block; height: 2px; background: var(--navy); border-radius: 2px; }
.mobile-panel { display: none; }

/* Hero */
.hero {
  position: relative;
  background: radial-gradient(ellipse at top right, #10275c 0%, var(--navy-deep) 60%);
  color: #fff;
  padding: 84px 24px 64px;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 15% 25%, rgba(79,195,247,0.18), transparent 40%),
    radial-gradient(circle at 85% 15%, rgba(47,111,237,0.25), transparent 45%),
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: auto, auto, 40px 40px, 40px 40px;
  pointer-events: none;
}
.hero-inner {
  max-width: 1120px; margin: 0 auto; position: relative;
  display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 48px; align-items: center;
}
.hero-text { text-align: left; }
.eyebrow {
  display: inline-block; font-size: 13px; font-weight: 700; letter-spacing: .08em;
  text-transform: uppercase; color: var(--cyan);
  background: rgba(79,195,247,0.12); border: 1px solid rgba(79,195,247,0.3);
  padding: 6px 16px; border-radius: 6px; margin-bottom: 24px;
}
.hero h1 {
  font-size: clamp(30px, 4.5vw, 48px); font-weight: 700; line-height: 1.18;
  letter-spacing: -0.02em; max-width: 640px; margin: 0 0 18px;
}
.hero h1 span { color: var(--cyan); }
.hero p.lead {
  font-size: 18px; color: #c7d3ef; max-width: 540px; margin: 0 0 32px;
}
.hero-actions { display: flex; gap: 16px; justify-content: flex-start; flex-wrap: wrap; }
.btn-primary {
  background: linear-gradient(135deg, var(--cyan), var(--blue));
  color: #fff; padding: 14px 30px; border-radius: 8px;
  text-decoration: none; font-weight: 700; font-size: 15px;
  box-shadow: 0 4px 12px rgba(47,111,237,0.25);
  transition: transform .15s ease, box-shadow .15s ease;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 6px 16px rgba(47,111,237,0.32); }
.btn-ghost {
  border: 1.5px solid rgba(255,255,255,0.35); color: #fff;
  padding: 14px 30px; border-radius: 8px; text-decoration: none;
  font-weight: 700; font-size: 15px; transition: background .15s ease;
}
.btn-ghost:hover { background: rgba(255,255,255,0.08); }

.hero-stats {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
  max-width: 880px; margin: 48px 0 0;
}
.hero-stats div { text-align: left; }
.hero-stats .num {
  font-size: 28px; font-weight: 700;
  background: linear-gradient(135deg, #fff, var(--cyan));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero-stats .label { font-size: 13px; color: #9fb0d6; margin-top: 4px; }

.hero-visual { position: relative; }
.status-panel {
  background: rgba(255,255,255,0.045); border: 1px solid rgba(255,255,255,0.12);
  border-radius: 12px; padding: 22px 22px 18px; backdrop-filter: blur(6px);
  box-shadow: 0 24px 60px rgba(2,8,23,0.4); max-width: 380px; margin: 0 auto;
}
.status-panel-head {
  display: flex; align-items: center; gap: 10px; font-size: 14px; font-weight: 700; color: #fff;
  padding-bottom: 16px; margin-bottom: 6px; border-bottom: 1px solid rgba(255,255,255,0.1);
}
.status-dot {
  width: 9px; height: 9px; border-radius: 50%; background: #3ddc84;
  box-shadow: 0 0 8px rgba(61,220,132,.8); flex-shrink: 0;
}
.status-row {
  display: flex; align-items: center; justify-content: space-between;
  padding: 10px 0; font-size: 13.5px; color: #c7d3ef;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.status-pill {
  display: inline-flex; align-items: center; gap: 6px; font-size: 11px; font-weight: 700;
  color: #3ddc84; background: rgba(61,220,132,0.12); border: 1px solid rgba(61,220,132,0.3);
  padding: 3px 10px; border-radius: 999px; text-transform: uppercase; letter-spacing: .03em;
}
.status-panel-footer {
  display: flex; align-items: center; justify-content: space-between;
  margin-top: 12px; padding-top: 16px; border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 12.5px; color: #9fb0d6;
}
.status-panel-footer strong { color: var(--cyan); font-size: 16px; }

/* Section shell */
section { padding: 88px 24px; }
.section-head { text-align: center; max-width: 640px; margin: 0 auto 56px; }
.section-head .eyebrow-dark {
  color: var(--blue); font-weight: 700; font-size: 13px; letter-spacing: .08em;
  text-transform: uppercase; margin-bottom: 10px; display: block;
}
.section-head h2 { font-size: clamp(26px, 3.5vw, 36px); font-weight: 700; color: var(--navy); letter-spacing: -0.01em; }
.section-head p { color: var(--muted); margin-top: 14px; font-size: 17px; }

/* Global reach */
.global {
  background: var(--soft);
}
.global-grid {
  display: grid; grid-template-columns: 1.1fr 1fr; gap: 56px; align-items: center;
  max-width: 1120px; margin: 0 auto;
}
.global h2 { font-size: clamp(26px, 3.5vw, 34px); font-weight: 700; color: var(--navy); margin-bottom: 18px; letter-spacing: -0.01em; }
.global p { color: var(--muted); font-size: 16.5px; margin-bottom: 16px; }
.network-visual {
  position: relative; width: 100%; max-width: 420px; margin: 0 auto;
  aspect-ratio: 1;
  border-radius: 20px;
  background: radial-gradient(circle at 32% 28%, #17316e, var(--navy-deep) 75%);
  box-shadow: 0 20px 60px rgba(10,26,63,0.3);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.network-svg { width: 88%; height: 88%; }
.network-ring { fill: none; stroke: rgba(79,195,247,0.18); stroke-width: 1; }
/* Outer ring connecting every region to its neighbors -- the redundancy story. */
.network-link { fill: none; stroke: rgba(79,195,247,0.4); stroke-width: 1.2; }
/* Hub-and-spoke links from the core to each region. */
.network-spoke { fill: none; stroke: var(--cyan); stroke-width: 1.3; opacity: 0.55; }
.network-node { fill: var(--cyan); filter: drop-shadow(0 0 4px rgba(79,195,247,0.9)); }
.network-hub { fill: var(--cyan); filter: drop-shadow(0 0 8px rgba(79,195,247,1)); }
.network-hub-pulse {
  fill: none; stroke: var(--cyan); stroke-width: 1.5; opacity: 0.5;
  transform-origin: 200px 200px; animation: network-pulse 2.4s ease-out infinite;
}
@keyframes network-pulse {
  0% { transform: scale(0.7); opacity: 0.6; }
  100% { transform: scale(2.2); opacity: 0; }
}

/* Feature cards */
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; max-width: 1120px; margin: 0 auto; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; max-width: 1120px; margin: 0 auto; }
.card {
  background: var(--white); border: 1px solid var(--line); border-radius: 12px;
  padding: 30px 26px; transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: 0 16px 32px rgba(10,26,63,0.08); border-color: transparent; }
.card .icon {
  width: 48px; height: 48px; border-radius: 12px;
  background: linear-gradient(135deg, var(--blue), var(--navy));
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px; color: #fff; font-size: 22px;
}
.card h3 { font-size: 18px; font-weight: 700; color: var(--navy); margin-bottom: 10px; }
.card p { color: var(--muted); font-size: 15px; }

/* Services */
.services {
  position: relative;
  background:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px),
    var(--navy-deep);
  background-size: 40px 40px, 40px 40px, auto;
  color: #fff;
}
.services .section-head h2 { color: #fff; }
.services .section-head p { color: #a9b7d9; }
.services .eyebrow-dark { color: var(--cyan); }
.svc-card {
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px; padding: 32px 28px;
  transition: transform .18s ease, border-color .18s ease, background .18s ease;
}
.svc-card:hover { transform: translateY(-4px); border-color: rgba(79,195,247,0.4); background: rgba(255,255,255,0.07); }
.svc-card h3 { font-size: 20px; font-weight: 700; margin-bottom: 12px; color: #fff; }
.svc-card p { color: #a9b7d9; font-size: 15px; margin-bottom: 20px; }
.svc-card ul { list-style: none; margin-bottom: 24px; }
.svc-card li { color: #c7d3ef; font-size: 14.5px; padding: 6px 0; padding-left: 24px; position: relative; }
.svc-card li::before {
  content: "✓"; position: absolute; left: 0; color: var(--cyan); font-weight: 800;
}
.svc-link {
  color: var(--cyan); text-decoration: none; font-weight: 700; font-size: 14.5px;
  display: inline-flex; align-items: center; gap: 6px;
}
.svc-link:hover { text-decoration: underline; }

/* About */
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center;
  max-width: 1120px; margin: 0 auto;
}
.about-grid h2 { font-size: clamp(26px, 3.5vw, 34px); font-weight: 700; color: var(--navy); margin-bottom: 18px; letter-spacing: -0.01em; }
.about-grid p { color: var(--muted); font-size: 16.5px; margin-bottom: 16px; }
.timeline { border-left: 2px solid var(--line); padding-left: 24px; }
.timeline-item { position: relative; padding-bottom: 28px; }
.timeline-item:last-child { padding-bottom: 0; }
.timeline-item::before {
  content: ""; position: absolute; left: -30px; top: 4px;
  width: 12px; height: 12px; border-radius: 50%;
  background: var(--blue); border: 3px solid var(--white); box-shadow: 0 0 0 2px var(--blue);
}
.timeline-item .yr { font-weight: 800; color: var(--navy); font-size: 15px; }
.timeline-item p { color: var(--muted); font-size: 14.5px; margin-top: 4px; }

/* Testimonial */
.testimonial { background: var(--soft); }
.testimonial-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 24px;
  max-width: 1120px; margin: 0 auto;
}
.testimonial blockquote {
  background: var(--white); border: 1px solid var(--line); border-radius: 12px;
  padding: 34px 30px; font-size: 18px; font-weight: 600;
  color: var(--navy); line-height: 1.55; position: relative;
}
.testimonial blockquote::before {
  content: "\201C"; font-size: 60px; color: var(--blue); opacity: .25;
  font-family: Georgia, serif; display: block; line-height: 0; margin-bottom: 14px;
}
.testimonial cite {
  display: block; margin-top: 22px; font-style: normal; color: var(--muted); font-size: 14.5px; font-weight: 600;
}

/* CTA band */
.cta-band {
  background: linear-gradient(135deg, var(--blue), var(--navy-deep));
  color: #fff; text-align: center; padding: 80px 24px;
}
.cta-band h2 { font-size: clamp(24px, 3.5vw, 32px); font-weight: 700; margin-bottom: 14px; }
.cta-band p { color: #d3ddf5; font-size: 17px; margin-bottom: 32px; max-width: 520px; margin-left: auto; margin-right: auto; }

/* Legal pages */
.legal-hero {
  background: var(--navy-deep); color: #fff; padding: 64px 24px 48px; text-align: center;
}
.legal-hero h1 { font-size: clamp(28px, 4vw, 40px); font-weight: 700; letter-spacing: -0.01em; }
.legal-hero p { color: #a9b7d9; margin-top: 12px; font-size: 15px; }
.legal-content { max-width: 880px; margin: 0 auto; padding: 72px 24px; }
.legal-content h2 { font-size: 22px; font-weight: 700; color: var(--navy); margin: 40px 0 14px; }
.legal-content h2:first-child { margin-top: 0; }
.legal-content h3 { font-size: 18px; font-weight: 700; color: var(--navy); margin: 34px 0 12px; }
.legal-content h3:first-of-type { margin-top: 8px; }
.legal-content p { color: var(--ink); font-size: 15.5px; margin-bottom: 16px; }
.legal-content ol, .legal-content ul { color: var(--ink); font-size: 15.5px; margin: 0 0 16px; padding-left: 28px; }
.legal-content li { margin-bottom: 12px; }
.legal-content strong { color: var(--navy); }
.legal-content a { color: var(--blue); text-decoration: underline; }
.legal-notice {
  background: var(--soft); border: 1px solid var(--line); border-radius: 12px;
  padding: 18px 20px; margin-bottom: 32px; font-size: 15px; font-weight: 600; color: var(--navy);
}

/* Footer */
footer {
  background:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px),
    var(--navy-deep);
  background-size: 40px 40px, 40px 40px, auto;
  color: #8fa0c9; padding: 56px 24px 32px;
}
.footer-grid {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 32px;
  max-width: 1120px; margin: 0 auto 40px;
}
/* The logo's dark navy wordmark is illegible against this dark footer --
   flattened to solid white so it's actually readable here. */
.footer-grid img { height: 38px; margin-bottom: 14px; filter: brightness(0) invert(1); }
.footer-grid p { font-size: 14px; color: #7688b3; max-width: 320px; }
.footer-grid h4 { color: #fff; font-size: 14px; font-weight: 700; margin-bottom: 16px; text-transform: uppercase; letter-spacing: .04em; }
.footer-grid ul { list-style: none; }
.footer-grid li { margin-bottom: 10px; }
.footer-grid a { color: #a9b7d9; text-decoration: none; font-size: 14.5px; }
.footer-grid a:hover { color: var(--cyan); }
.footer-bottom {
  max-width: 1120px; margin: 0 auto; padding-top: 28px; border-top: 1px solid rgba(255,255,255,0.08);
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; font-size: 13.5px; color: #6a7ba3;
}

@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { max-width: 380px; margin: 0 auto; }
}

@media (max-width: 860px) {
  .nav-links, .nav-cta { display: none; }
  .menu-toggle { display: flex; }
  #menu-check:checked ~ .mobile-panel { display: flex; }
  .mobile-panel {
    flex-direction: column; gap: 4px;
    padding: 8px 24px 20px; background: var(--white);
    border-bottom: 1px solid var(--line);
  }
  .mobile-panel a {
    padding: 12px 0; text-decoration: none; color: var(--navy); font-weight: 600;
    font-size: 15px; border-bottom: 1px solid var(--line);
  }
  .mobile-panel a:last-child { border-bottom: none; }
  .mobile-panel .nav-cta { display: inline-block; margin-top: 12px; text-align: center; }
  .hero-stats { grid-template-columns: repeat(2, 1fr); row-gap: 32px; }
  .global-grid, .about-grid { grid-template-columns: 1fr; }
  .network-visual { order: -1; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: 1fr; }
  .testimonial-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
}
