:root {
  --bg: #07111f;
  --bg-soft: #0b1830;
  --bg-card: rgba(11, 24, 48, 0.72);
  --bg-card-strong: rgba(10, 18, 34, 0.9);
  --line: rgba(120, 165, 255, 0.14);
  --primary: #4d8dff;
  --primary-2: #7cf3d0;
  --text: #eef4ff;
  --muted: #9ab0d1;
  --white: #ffffff;
  --shadow: 0 18px 55px rgba(0, 0, 0, 0.35);
  --radius: 24px;
  --radius-sm: 16px;
  --container: 1200px;
  --nav-h: 86px;
  --white-panel: #ffffff;
  --dark-ink: #08111f;
}


* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background:
    radial-gradient(circle at top right, rgba(77, 141, 255, 0.16), transparent 28%),
    radial-gradient(circle at bottom left, rgba(124, 243, 208, 0.08), transparent 30%),
    linear-gradient(180deg, #06101d 0%, #081425 48%, #060d18 100%);
  color: var(--text);
  min-height: 100vh;
  overflow-x: hidden;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  background: repeating-linear-gradient(180deg, rgba(255,255,255,0.02) 0px, rgba(255,255,255,0.02) 1px, transparent 1px, transparent 5px);
  mix-blend-mode: soft-light;
  opacity: 0.2;
}

::selection {
  background: rgba(124, 243, 208, 0.24);
  color: var(--white);
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: auto;
}

.skip-link:focus {
  left: 16px;
  top: 16px;
  z-index: 1000;
  background: var(--white);
  color: #000;
  padding: 10px 14px;
  border-radius: 10px;
}

.particle-bg {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  opacity: 0.55;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
}

.nav {
  transition: background 0.25s ease, backdrop-filter 0.25s ease, border-color 0.25s ease;
  border-bottom: 1px solid transparent;
}

.nav.scrolled {
  background: rgba(4, 10, 20, 0.9);
  backdrop-filter: blur(16px);
  border-color: var(--line);
}

.nav-container,
.hero-grid,
.trust-grid,
.section,
.footer-grid,
.footer-bottom {
  width: min(calc(100% - 32px), var(--container));
  margin: 0 auto;
}

.nav-container {
  position: relative;
  min-height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.nav-logo,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 16px;
}

.logo-on-white {
  position: relative;
}

.logo-on-white {
  background: rgba(255,255,255,0.98);
  border-radius: 22px;
  padding: 12px 16px;
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.24), 0 0 0 1px rgba(255,255,255,0.72) inset;
}

.logo-on-white img {
  background: transparent;
  border-radius: 0;
  padding: 0;
  box-shadow: none;
}

.logo-img,
.footer-brand img {
  width: 180px;
  height: auto;
  max-height: 72px;
  object-fit: contain;
}

.logo-copy,
.footer-brand div {
  display: grid;
  gap: 2px;
}

.logo-copy strong,
.footer-brand strong {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.08rem;
  letter-spacing: 0.01em;
  font-weight: 800;
  color: var(--dark-ink);
}

.logo-copy span,
.footer-brand span {
  color: #5B677A;
  font-size: 0.86rem;
}

.nav-menu-wrap {
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav-menu {
  display: flex;
  gap: 24px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.nav-menu {
  width: 100%;
  align-items: center;
}

.nav-menu .contact-end {
  margin-left: auto;
}

.nav-link {
  color: var(--muted);
  font-weight: 500;
  transition: color 0.2s ease;
}

.nav-link:hover,
.nav-link.active {
  color: var(--white);
}

.nav-actions {
  display: flex;
  gap: 12px;
  align-items: center;
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.02);
  border-radius: 14px;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--white);
  margin: 4px auto;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 999px;
  padding: 12px 18px;
  font-weight: 700;
  border: 1px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), #3664ff);
  color: var(--white);
  box-shadow: 0 16px 30px rgba(77, 141, 255, 0.26);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
  border-color: var(--line);
}

.btn-lg {
  padding: 15px 24px;
}

.btn-block {
  width: 100%;
}

.glass {
  background: var(--bg-card);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}

.hero {
  position: relative;
  padding: 48px 0 72px;
}

.immersive-hero::before,
.immersive-hero::after,
.section-dramatic::before,
.section-dramatic::after {
  content: '';
  position: absolute;
  pointer-events: none;
}

.immersive-hero::before {
  inset: 6% 0 auto auto;
  width: min(42vw, 540px);
  height: min(42vw, 540px);
  background: radial-gradient(circle, rgba(124,243,208,0.18), transparent 65%);
  filter: blur(20px);
}

.immersive-hero::after {
  inset: auto auto 4% -8%;
  width: min(36vw, 480px);
  height: min(36vw, 480px);
  background: radial-gradient(circle, rgba(77,141,255,0.18), transparent 62%);
  filter: blur(18px);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 36px;
  align-items: center;
  min-height: calc(100vh - var(--nav-h));
}

.eyebrow,
.section-tag,
.live-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--primary-2);
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.status-dot {
  width: 9px;
  height: 9px;
  background: var(--primary-2);
  border-radius: 999px;
  box-shadow: 0 0 0 0 rgba(124, 243, 208, 0.7);
  animation: pulse 1.8s infinite;
}

.hero h1,
.section h2,
.cta-card h2 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  line-height: 1.02;
  margin: 18px 0 16px;
}

.hero h1 {
  font-size: clamp(2.9rem, 5vw, 5.45rem);
  max-width: 11ch;
  font-weight: 800;
  letter-spacing: -0.045em;
  text-wrap: balance;
}

.hero-lead,
.section-heading-wrap p,
.split-copy p,
.panel-intro p,
.cta-card p,
.contact-panel p,
.form-note {
  color: var(--muted);
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 32px 0;
}

.hero-proof {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.proof-card {
  padding: 22px;
  border-radius: 20px;
}

.proof-value {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 2.4rem;
  font-weight: 700;
}

.proof-suffix {
  color: var(--primary-2);
  font-size: 1.4rem;
  margin-left: 4px;
}

.proof-card p {
  margin: 10px 0 0;
  color: var(--muted);
}

.hero-visual {
  display: flex;
  justify-content: center;
}

.radar-card {
  position: relative;
  border-radius: 32px;
  padding: 24px;
  width: min(100%, 520px);
  overflow: hidden;
}

.radar-card::before {
  content: '';
  position: absolute;
  inset: -30% 18% auto;
  height: 220px;
  background: radial-gradient(circle, rgba(77,141,255,0.28), transparent 68%);
  filter: blur(16px);
  pointer-events: none;
}

.radar-header,
.radar-footer,
.ops-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.live-pill {
  background: rgba(124, 243, 208, 0.08);
  border: 1px solid rgba(124, 243, 208, 0.22);
  padding: 8px 12px;
  border-radius: 999px;
}

.radar-screen {
  isolation: isolate;
  position: relative;
  aspect-ratio: 1;
  border-radius: 50%;
  margin: 22px auto;
  width: 100%;
  max-width: 420px;
  background:
    radial-gradient(circle, rgba(124, 243, 208, 0.12) 0%, rgba(7,17,31,0.9) 50%, rgba(7,17,31,1) 100%),
    repeating-radial-gradient(circle, rgba(124, 243, 208, 0.07) 0, rgba(124, 243, 208, 0.07) 2px, transparent 2px, transparent 66px);
  border: 1px solid rgba(124, 243, 208, 0.14);
  overflow: hidden;
  box-shadow: inset 0 0 80px rgba(124, 243, 208, 0.08), 0 20px 60px rgba(0,0,0,0.4);
}

.radar-ring,
.radar-crosshair {
  position: absolute;
  inset: 50%;
  transform: translate(-50%, -50%);
  border: 1px solid rgba(124, 243, 208, 0.15);
  border-radius: 50%;
}

.ring-1 { width: 34%; height: 34%; }
.ring-2 { width: 60%; height: 60%; }
.ring-3 { width: 84%; height: 84%; }

.radar-v,
.radar-h {
  border: none;
  background: rgba(124, 243, 208, 0.12);
}

.radar-v {
  width: 1px;
  height: 100%;
}

.radar-h {
  width: 100%;
  height: 1px;
}

.radar-sweep {
  position: absolute;
  inset: 0;
  background: conic-gradient(from 0deg, rgba(124,243,208,0.26), transparent 48deg, transparent 360deg);
  animation: rotate 6s linear infinite;
  transform-origin: center;
}

.radar-center {
  position: absolute;
  inset: 50%;
  width: 210px;
  height: 210px;
  transform: translate(-50%, -50%);
  border-radius: 36px;
  display: grid;
  place-items: center;
  background: rgba(255,255,255,0.98);
  border: 3px solid rgba(255, 255, 255, 0.92);
  z-index: 2;
  box-shadow: 0 0 0 12px rgba(255,255,255,0.08), 0 26px 70px rgba(0,0,0,0.42);
  padding: 18px;
}

.radar-center img {
  width: 168px;
  height: auto;
  object-fit: contain;
  background: transparent;
  box-shadow: none;
  padding: 0;
  border-radius: 0;
}

.blip {
  position: absolute;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--primary-2);
  box-shadow: 0 0 18px rgba(124, 243, 208, 0.85);
  animation: blip 2.4s infinite;
  overflow: visible;
}

.blip::after {
  content: attr(data-threat);
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%) translateX(-8px);
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #eafcff;
  white-space: nowrap;
  background: rgba(5, 18, 32, 0.88);
  border: 1px solid rgba(124, 243, 208, 0.34);
  box-shadow: 0 8px 22px rgba(0,0,0,0.28), 0 0 16px rgba(124, 243, 208, 0.18);
  opacity: 0;
  transition: opacity 0.35s ease, transform 0.35s ease;
  pointer-events: none;
}

.blip.active::after {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}

.blip-a { top: 26%; left: 68%; animation-delay: 0s; }
.blip-b { top: 58%; left: 19%; animation-delay: 1.1s; }
.blip-c { top: 70%; left: 62%; animation-delay: 0.5s; }
.blip-d { top: 34%; left: 28%; animation-delay: 1.7s; }

.radar-footer,
.ops-header {
  padding-top: 4px;
  color: var(--muted);
}

.radar-footer strong,
.ops-header strong,
.contact-item h3,
.info-card h4,
.industry-card h3,
.ops-item h4 {
  display: block;
  color: var(--white);
  margin-bottom: 6px;
}

.trust-strip {
  padding-bottom: 12px;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.trust-item {
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.025);
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 12px;
}

.trust-item i,
.info-card i,
.industry-card i,
.contact-item i {
  color: var(--primary-2);
  font-size: 1.1rem;
}

.section {
  padding: 88px 0;
}

.section-heading-wrap {
  max-width: 760px;
  margin-bottom: 36px;
}

.section h2,
.cta-card h2 {
  font-size: clamp(2rem, 3.2vw, 3.35rem);
}

.service-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 24px;
}

.tab-btn {
  font-weight: 700;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.03);
  color: var(--muted);
  padding: 12px 18px;
  border-radius: 999px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.tab-btn.active,
.tab-btn:hover {
  background: rgba(77, 141, 255, 0.14);
  color: var(--white);
  border-color: rgba(77,141,255,0.35);
}

.service-panel {
  display: none;
}

.service-panel.active {
  display: block;
}

.panel-intro,
.quote-card,
.contact-panel,
.contact-form,
.cta-card,
.split-panel,
.image-panel img {
  border-radius: var(--radius);
}

.panel-intro,
.contact-panel,
.contact-form,
.cta-card,
.split-panel {
  padding: 24px;
}

.card-grid,
.industry-grid,
.contact-grid {
  display: grid;
  gap: 18px;
}

.card-grid {
  margin-top: 18px;
  grid-template-columns: repeat(4, 1fr);
}

.info-card,
.industry-card {
  padding: 24px;
  border-radius: 22px;
}

.info-card p,
.industry-card p,
.ops-item p {
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 0;
}

.split-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: center;
}

.split-layout.reverse .image-panel {
  order: 1;
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
  display: grid;
  gap: 14px;
}

.feature-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  color: var(--text);
}

.feature-list i {
  color: var(--primary-2);
  margin-top: 4px;
}

.ops-list {
  display: grid;
  gap: 16px;
  margin-top: 20px;
}

.ops-item {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 14px;
  align-items: start;
}

.ops-item span {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(77, 141, 255, 0.12);
  border: 1px solid rgba(77, 141, 255, 0.26);
  color: var(--white);
  font-weight: 700;
}

.industry-grid {
  grid-template-columns: repeat(3, 1fr);
}

.image-panel img {
  width: 100%;
  min-height: 480px;
  object-fit: cover;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.quote-card {
  margin-top: 22px;
  padding: 22px;
}

.quote-card i {
  color: var(--primary-2);
  font-size: 1.2rem;
}

.quote-card p {
  margin: 12px 0 0;
}

.cta-band {
  padding-top: 20px;
}

.cta-card {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  align-items: center;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.contact-grid {
  grid-template-columns: 0.9fr 1.1fr;
}

.contact-panel {
  display: grid;
  gap: 18px;
}

.contact-item {
  display: grid;
  grid-template-columns: 26px 1fr;
  gap: 16px;
  align-items: start;
}

.contact-item p,
.contact-item a {
  color: var(--muted);
}

.contact-form {
  display: grid;
  gap: 16px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.form-row.single {
  grid-template-columns: 1fr;
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--text);
  font-weight: 500;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.03);
  color: var(--white);
  padding: 14px 16px;
  border-radius: 16px;
  outline: none;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: rgba(77,141,255,0.5);
  box-shadow: 0 0 0 4px rgba(77,141,255,0.14);
}

.contact-form select option {
  color: #111;
}

.footer {
  border-top: 1px solid var(--line);
  padding: 34px 0 24px;
  background: rgba(2, 7, 15, 0.6);
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  align-items: center;
}

.footer-copy {
  color: var(--muted);
  max-width: 560px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  color: var(--muted);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  border-top: 1px solid var(--line);
  padding-top: 16px;
  margin-top: 22px;
  color: var(--muted);
  font-size: 0.93rem;
}

.toast {
  position: fixed;
  right: 18px;
  bottom: 18px;
  padding: 14px 18px;
  border-radius: 16px;
  background: rgba(10, 18, 34, 0.96);
  border: 1px solid rgba(124,243,208,0.22);
  color: var(--white);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: var(--shadow);
  transform: translateY(20px);
  opacity: 0;
  pointer-events: none;
  transition: all 0.25s ease;
}

.toast.show {
  opacity: 1;
  transform: translateY(0);
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(124, 243, 208, 0.55); }
  70% { box-shadow: 0 0 0 10px rgba(124, 243, 208, 0); }
  100% { box-shadow: 0 0 0 0 rgba(124, 243, 208, 0); }
}

@keyframes rotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes blip {
  0%, 100% { opacity: 0.25; transform: scale(0.7); }
  50% { opacity: 1; transform: scale(1.15); }
}

@media (max-width: 1080px) {
  .hero-grid,
  .split-layout,
  .contact-grid,
  .cta-card,
  .industry-grid,
  .card-grid,
  .hero-proof,
  .trust-grid {
    grid-template-columns: 1fr 1fr;
  }

  .hero-grid,
  .split-layout,
  .cta-card,
  .footer-grid {
    display: grid;
  }

  .card-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .industry-grid,
  .trust-grid,
  .hero-proof,
  .contact-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 820px) {
  .nav-toggle {
    display: inline-block;
  }

  .nav-menu-wrap {
    position: absolute;
    top: calc(var(--nav-h) - 6px);
    left: 16px;
    right: 16px;
    flex-direction: column;
    align-items: stretch;
    padding: 18px;
    border-radius: 24px;
    background: rgba(3, 9, 18, 0.96);
    border: 1px solid var(--line);
    backdrop-filter: blur(16px);
    box-shadow: var(--shadow);
    display: none;
  }

  .nav-menu-wrap.active {
    display: flex;
  }

  .nav-menu {
    width: auto;
    align-items: flex-start;
  }

  .nav-menu .contact-end {
    margin-left: 0;
  }

  .nav-menu,
  .nav-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .nav-link,
  .nav-actions .btn {
    width: 100%;
  }

  .hero,
  .section {
    padding: 64px 0;
  }

  .hero-grid,
  .split-layout,
  .contact-grid,
  .cta-card,
  .card-grid,
  .industry-grid,
  .hero-proof,
  .trust-grid,
  .form-row {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    min-height: auto;
  }

  .hero h1 {
    max-width: none;
  }

  .footer-grid,
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation: none !important;
    transition: none !important;
  }
  .reveal {
    opacity: 1;
    transform: none;
  }
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.hero-lead {
  max-width: 62ch;
  font-size: 1.06rem;
}

.section h2,
.cta-card h2 {
  letter-spacing: -0.04em;
  font-weight: 800;
  text-wrap: balance;
}

.section-tag,
.eyebrow {
  font-weight: 700;
}

.radar-screen::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255,255,255,0.04), transparent 14%, transparent 86%, rgba(255,255,255,0.04));
  mix-blend-mode: screen;
  pointer-events: none;
}

.trust-item,
.info-card,
.industry-card,
.proof-card,
.panel-intro,
.contact-panel,
.contact-form,
.cta-card,
.split-panel {
  position: relative;
  overflow: hidden;
}

.trust-item::before,
.info-card::before,
.industry-card::before,
.proof-card::before,
.cta-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.08), transparent 24%, transparent 72%, rgba(124,243,208,0.08));
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.trust-item:hover::before,
.info-card:hover::before,
.industry-card:hover::before,
.proof-card:hover::before,
.cta-card:hover::before {
  opacity: 1;
}

.info-card,
.industry-card,
.trust-item,
.proof-card {
  transition: transform 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease, background 0.28s ease;
}

.info-card:hover,
.industry-card:hover,
.trust-item:hover,
.proof-card:hover {
  transform: translateY(-8px);
  border-color: rgba(124,243,208,0.28);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.34);
}

.section-dramatic {
  position: relative;
}

.section-dramatic::before {
  top: 0;
  right: 0;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(77,141,255,0.14), transparent 68%);
  filter: blur(14px);
}

.section-dramatic::after {
  left: -120px;
  bottom: 0;
  width: 360px;
  height: 360px;
  background: radial-gradient(circle, rgba(124,243,208,0.1), transparent 70%);
  filter: blur(10px);
}

.section-dramatic-alt .cta-card {
  background:
    linear-gradient(135deg, rgba(11, 24, 48, 0.92), rgba(6, 15, 28, 0.96)),
    radial-gradient(circle at 85% 20%, rgba(77,141,255,0.22), transparent 28%);
  border: 1px solid rgba(124,243,208,0.14);
  box-shadow: 0 26px 80px rgba(0,0,0,0.36);
}

.section-dramatic-alt .cta-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.06), transparent);
  transform: translateX(-100%);
  animation: sheen 5.5s linear infinite;
  pointer-events: none;
}

@keyframes sheen {
  to { transform: translateX(100%); }
}

@media (max-width: 820px) {
  .logo-img,
  .footer-brand img {
    width: 60px;
    height: 60px;
  }

  .logo-copy span,
  .footer-brand span {
    font-size: 0.8rem;
  }

  .radar-center {
    width: 108px;
    height: 108px;
  }

  .radar-center img {
    width: 78px;
    height: 78px;
  }
}


/* --- Premium visual refinement pass --- */
:root {
  --white-surface-shadow: 0 16px 34px rgba(0, 0, 0, 0.18);
}

body {
  background:
    radial-gradient(circle at 12% 12%, rgba(77, 141, 255, 0.22), transparent 24%),
    radial-gradient(circle at 88% 18%, rgba(124, 243, 208, 0.12), transparent 26%),
    linear-gradient(180deg, #05101c 0%, #081322 44%, #050c17 100%);
}

body::after {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at var(--mx, 50%) var(--my, 20%), rgba(124,243,208,0.10), transparent 20%),
    radial-gradient(circle at calc(var(--mx, 50%) + 12%) calc(var(--my, 20%) + 8%), rgba(77,141,255,0.09), transparent 24%);
  opacity: 0.95;
  transition: background-position 0.15s ease;
}

.logo-on-white {
  background: rgba(255,255,255,0.98);
  border-radius: 22px;
  padding: 10px 16px 10px 10px;
  box-shadow: var(--white-surface-shadow);
}

.logo-on-white img {
  background: #fff;
  border-radius: 20px;
  padding: 10px;
  box-shadow: none;
}

.nav-logo,
.footer-brand {
  gap: 18px;
}

.logo-img,
.footer-brand img {
  width: 86px;
  height: 86px;
}

.logo-copy strong,
.footer-brand strong {
  font-size: 1.12rem;
  letter-spacing: -0.02em;
  color: var(--dark-ink);
}

.logo-copy span,
.footer-brand span {
  color: #475569;
  font-size: 0.9rem;
}

.nav.scrolled .logo-on-white {
  background: rgba(255,255,255,0.98);
}

.hero h1,
.section h2,
.cta-card h2 {
  font-weight: 800;
  letter-spacing: -0.05em;
}

.hero h1 {
  font-size: clamp(3.1rem, 5vw, 5.7rem);
  max-width: 10.5ch;
  text-shadow: 0 10px 30px rgba(0,0,0,0.28);
}

.section h2,
.cta-card h2 {
  text-wrap: balance;
}

.hero-copy,
.split-panel,
.panel-intro,
.cta-card,
.contact-panel,
.contact-form {
  position: relative;
  overflow: hidden;
}

.hero-copy::before,
.split-panel::before,
.panel-intro::before,
.cta-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.08), transparent 30%, transparent 72%, rgba(124,243,208,0.08));
  pointer-events: none;
}

.radar-card {
  border: 1px solid rgba(124,243,208,0.18);
  box-shadow: 0 24px 80px rgba(0,0,0,0.45), inset 0 1px 0 rgba(255,255,255,0.04);
}

.radar-card::after {
  content: '';
  position: absolute;
  inset: auto -10% -18% 38%;
  height: 200px;
  background: radial-gradient(circle, rgba(124,243,208,0.28), transparent 70%);
  filter: blur(22px);
  pointer-events: none;
}

.radar-screen {
  max-width: 448px;
}

.radar-center {
  width: 164px;
  height: 164px;
  box-shadow: 0 0 0 14px rgba(255,255,255,0.08), 0 30px 70px rgba(0,0,0,0.42);
}

.radar-center img {
  width: 122px;
  height: 122px;
}

.trust-item,
.info-card,
.industry-card,
.quote-card {
  position: relative;
  overflow: hidden;
}

.trust-item::before,
.info-card::before,
.industry-card::before,
.quote-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 0%, rgba(255,255,255,0.06) 32%, transparent 55%);
  transform: translateX(-120%);
  transition: transform 0.8s ease;
  pointer-events: none;
}

.trust-item:hover::before,
.info-card:hover::before,
.industry-card:hover::before,
.quote-card:hover::before {
  transform: translateX(120%);
}

.info-card,
.industry-card {
  transition: transform 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease, background 0.28s ease;
}

.info-card:hover,
.industry-card:hover,
.trust-item:hover {
  transform: translateY(-6px);
  border-color: rgba(124,243,208,0.24);
  box-shadow: 0 24px 50px rgba(0,0,0,0.34);
}

.section-dramatic {
  position: relative;
}

.section-dramatic::before {
  inset: 10% auto auto -8%;
  width: 30vw;
  height: 30vw;
  background: radial-gradient(circle, rgba(77,141,255,0.16), transparent 72%);
  filter: blur(18px);
}

.section-dramatic::after {
  inset: auto -8% 8% auto;
  width: 34vw;
  height: 34vw;
  background: radial-gradient(circle, rgba(124,243,208,0.12), transparent 74%);
  filter: blur(22px);
}

.cta-card {
  align-items: stretch;
  background: linear-gradient(135deg, rgba(8,17,31,0.94), rgba(12,24,43,0.92));
  border: 1px solid rgba(124,243,208,0.14);
}

.cta-actions {
  align-content: center;
}

.footer-copy {
  color: var(--muted);
  max-width: 40ch;
}

@media (max-width: 820px) {
  .logo-on-white {
    padding: 8px 12px 8px 8px;
    border-radius: 18px;
  }

  .logo-img,
  .footer-brand img {
    width: 72px;
    height: 72px;
  }

  .radar-center {
    width: 138px;
    height: 138px;
  }

  .radar-center img {
    width: 104px;
    height: 104px;
  }
}


.footer-brand {
  align-items: center;
}

.footer-brand.logo-on-white {
  display: inline-flex;
  padding: 14px 18px;
}

@media (max-width: 900px) {
  .logo-on-white {
    padding: 10px 12px;
  }

  .logo-img,
  .footer-brand img {
    width: 148px;
    max-height: 60px;
  }

  .logo-copy {
    display: none;
  }

  .radar-center {
    width: 170px;
    height: 170px;
    padding: 14px;
  }

  .radar-center img {
    width: 138px;
  }
}

@media (max-width: 560px) {
  .logo-img,
  .footer-brand img {
    width: 128px;
    max-height: 52px;
  }

  .radar-center {
    width: 140px;
    height: 140px;
    padding: 10px;
    border-radius: 28px;
  }

  .radar-center img {
    width: 116px;
  }
}

/* --- Final logo prominence pass --- */
.logo-on-white {
  background: rgba(255,255,255,0.99);
  border-radius: 24px;
  padding: 12px 18px;
}

.nav-logo,
.footer-brand {
  gap: 18px;
}

.logo-img,
.footer-brand img {
  width: 190px;
  height: auto;
  max-height: 74px;
  object-fit: contain;
}

.logo-copy strong,
.footer-brand strong {
  color: var(--dark-ink);
  font-size: 1.08rem;
}

.logo-copy span,
.footer-brand span {
  color: #5B677A;
}

.radar-center {
  width: 210px;
  height: 210px;
  padding: 18px;
  border-radius: 38px;
}

.radar-center img {
  width: 170px;
  height: auto;
}

@media (max-width: 900px) {
  .logo-img,
  .footer-brand img {
    width: 152px;
    max-height: 60px;
  }

  .radar-center {
    width: 172px;
    height: 172px;
    padding: 14px;
  }

  .radar-center img {
    width: 138px;
  }
}

@media (max-width: 560px) {
  .logo-on-white {
    padding: 10px 12px;
  }

  .logo-img,
  .footer-brand img {
    width: 130px;
    max-height: 52px;
  }

  .radar-center {
    width: 142px;
    height: 142px;
    padding: 10px;
    border-radius: 28px;
  }

  .radar-center img {
    width: 114px;
  }
}


/* --- Logo visibility repair --- */
.logo-on-white {
  background: #ffffff;
  border: 1px solid rgba(8, 17, 31, 0.08);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.16);
}

.nav-logo.logo-on-white,
.footer-brand.logo-on-white {
  padding: 10px 18px 10px 10px;
}

.logo-img,
.footer-brand img {
  width: 96px;
  max-height: 96px;
  flex: 0 0 96px;
}

.logo-copy strong,
.footer-brand strong {
  font-size: 1.18rem;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.logo-copy span,
.footer-brand span {
  font-size: 0.92rem;
  letter-spacing: 0.02em;
}

.radar-center {
  width: 236px;
  height: 236px;
  padding: 12px;
  border-radius: 40px;
  background: #ffffff;
}

.radar-center img {
  width: 196px;
  height: 196px;
  object-fit: contain;
}

@media (max-width: 900px) {
  .logo-img,
  .footer-brand img {
    width: 82px;
    max-height: 82px;
    flex-basis: 82px;
  }

  .radar-center {
    width: 188px;
    height: 188px;
  }

  .radar-center img {
    width: 152px;
    height: 152px;
  }
}

@media (max-width: 560px) {
  .nav-logo.logo-on-white,
  .footer-brand.logo-on-white {
    padding: 8px 12px 8px 8px;
  }

  .logo-img,
  .footer-brand img {
    width: 72px;
    max-height: 72px;
    flex-basis: 72px;
  }

  .radar-center {
    width: 154px;
    height: 154px;
    border-radius: 30px;
  }

  .radar-center img {
    width: 126px;
    height: 126px;
  }
}

/* fingerprint logo simplification override */
.logo-on-white,
.nav.scrolled .logo-on-white,
.footer-brand.logo-on-white,
.nav-logo.logo-on-white {
  background: transparent !important;
  box-shadow: none !important;
  border: 0 !important;
  padding: 0 !important;
}

.nav-logo,
.footer-brand {
  gap: 14px;
}

.logo-img,
.footer-brand img {
  width: 84px !important;
  max-height: 84px !important;
  flex: 0 0 84px;
  filter: drop-shadow(0 10px 24px rgba(255,255,255,0.18));
}

.logo-copy strong,
.logo-copy span,
.footer-brand strong,
.footer-brand span {
  color: #f4f8ff !important;
  text-shadow: 0 2px 12px rgba(0,0,0,0.28);
}

.logo-copy strong,
.footer-brand strong {
  font-size: 1.18rem !important;
  letter-spacing: 0.02em;
}

.logo-copy span,
.footer-brand span {
  font-size: 0.9rem !important;
  opacity: 0.88;
}

.radar-center {
  width: 170px !important;
  height: 170px !important;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,0.08), rgba(255,255,255,0.02) 58%, transparent 72%) !important;
  box-shadow: 0 0 0 1px rgba(255,255,255,0.08), 0 0 40px rgba(124,243,208,0.14) !important;
}

.radar-center img {
  width: 112px !important;
  height: 112px !important;
  filter: drop-shadow(0 10px 30px rgba(255,255,255,0.18));
}

@media (max-width: 900px) {
  .logo-img,
  .footer-brand img {
    width: 68px !important;
    max-height: 68px !important;
    flex-basis: 68px;
  }

  .radar-center {
    width: 138px !important;
    height: 138px !important;
  }

  .radar-center img {
    width: 92px !important;
    height: 92px !important;
  }
}


/* final fingerprint-only logo override */
.logo-mark,
.nav-logo.logo-mark,
.footer-brand.logo-mark,
.radar-center.logo-mark,
.nav.scrolled .logo-mark {
  background: transparent !important;
  background-image: none !important;
  box-shadow: none !important;
  border: 0 !important;
}

.nav-logo.logo-mark,
.footer-brand.logo-mark {
  padding: 0 !important;
}

.logo-img,
.footer-brand img,
.radar-center.logo-mark img {
  background: transparent !important;
}

.logo-img,
.footer-brand img {
  width: 92px !important;
  max-height: 92px !important;
  flex: 0 0 92px;
  filter: drop-shadow(0 0 16px rgba(255,255,255,0.24));
}

.radar-center.logo-mark {
  background: transparent !important;
  box-shadow: none !important;
}

.radar-center.logo-mark img {
  width: 126px !important;
  height: 126px !important;
  filter: drop-shadow(0 0 18px rgba(255,255,255,0.2));
}

@media (max-width: 900px) {
  .logo-img,
  .footer-brand img {
    width: 74px !important;
    max-height: 74px !important;
    flex-basis: 74px;
  }

  .radar-center.logo-mark img {
    width: 104px !important;
    height: 104px !important;
  }
}


/* visibility hotfix v9 */
.logo-img, .footer-brand img { width: 112px !important; max-height: 112px !important; flex: 0 0 112px; }
.radar-center.logo-mark img { width: 150px !important; height: 150px !important; }
.radar-center.logo-mark { width: 210px !important; height: 210px !important; display:flex; align-items:center; justify-content:center; }
@media (max-width: 900px){ .logo-img, .footer-brand img { width: 86px !important; max-height: 86px !important; flex-basis: 86px; } .radar-center.logo-mark { width: 160px !important; height: 160px !important; } .radar-center.logo-mark img { width: 118px !important; height: 118px !important; } }


/* v12 cleanup + LTS logo */
.hero-copy::before {
  display: none !important;
}

.eyebrow {
  background: transparent !important;
  box-shadow: none !important;
  padding: 0 !important;
}

.hero-copy {
  max-width: 720px;
}

.hero h1 {
  max-width: 12ch !important;
}

.radar-header {
  justify-content: center !important;
  text-align: center;
}

.radar-title {
  display: inline-block;
  width: 100%;
  color: var(--white);
  font-weight: 700;
  letter-spacing: 0.02em;
}

.live-pill {
  display: none !important;
}

.logo-img,
.footer-brand img {
  width: 96px !important;
  max-height: 96px !important;
  flex: 0 0 96px;
  filter: drop-shadow(0 0 14px rgba(103, 247, 255, 0.2));
}

.radar-center,
.radar-center.logo-mark {
  width: 188px !important;
  height: 188px !important;
  border-radius: 50% !important;
  background: radial-gradient(circle, rgba(255,255,255,0.05), rgba(255,255,255,0.01) 58%, transparent 72%) !important;
  border: 1px solid rgba(255,255,255,0.08) !important;
  box-shadow: 0 0 0 12px rgba(255,255,255,0.04), 0 20px 60px rgba(0,0,0,0.34) !important;
  padding: 18px !important;
}

.radar-center img,
.radar-center.logo-mark img {
  width: 144px !important;
  height: 144px !important;
  object-fit: contain;
  filter: drop-shadow(0 0 16px rgba(103, 247, 255, 0.22));
}

@media (max-width: 900px) {
  .logo-img,
  .footer-brand img {
    width: 82px !important;
    max-height: 82px !important;
    flex-basis: 82px;
  }

  .radar-center,
  .radar-center.logo-mark {
    width: 156px !important;
    height: 156px !important;
  }

  .radar-center img,
  .radar-center.logo-mark img {
    width: 118px !important;
    height: 118px !important;
  }
}

/* v13 LTS scan glow + centered dynamic eyebrow */
.logo-copy strong,
.footer-brand strong {
  color: var(--white) !important;
  text-shadow: 0 0 16px rgba(103, 247, 255, 0.14);
}

.logo-copy span,
.footer-brand span {
  color: var(--muted) !important;
}

.logo-img,
.footer-brand img {
  width: 126px !important;
  max-height: 126px !important;
  flex: 0 0 126px;
  filter: drop-shadow(0 0 14px rgba(122, 247, 255, 0.28));
}

.radar-center,
.radar-center.logo-mark {
  width: 196px !important;
  height: 196px !important;
  background: radial-gradient(circle, rgba(86, 231, 255, 0.08), rgba(255,255,255,0.02) 55%, transparent 74%) !important;
}

.radar-center img,
.radar-center.logo-mark img {
  width: 156px !important;
  height: 156px !important;
  filter: drop-shadow(0 0 22px rgba(122, 247, 255, 0.35));
}

.eyebrow {
  position: relative;
  width: fit-content;
  margin: 0 auto 18px;
  justify-content: center;
  text-align: center;
  padding: 12px 20px !important;
  border: 1px solid rgba(122, 247, 255, 0.16);
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(10, 32, 61, 0.45), rgba(7, 17, 31, 0.2)) !important;
  box-shadow: 0 0 0 1px rgba(255,255,255,0.03) inset, 0 12px 28px rgba(0,0,0,0.22), 0 0 26px rgba(122, 247, 255, 0.08) !important;
  overflow: hidden;
}

.eyebrow::after {
  content: '';
  position: absolute;
  inset: -40% auto -40% -30%;
  width: 42%;
  background: linear-gradient(90deg, transparent, rgba(122, 247, 255, 0.12), rgba(255,255,255,0.32), rgba(122, 247, 255, 0.12), transparent);
  transform: skewX(-18deg);
  animation: eyebrowSweep 4.6s ease-in-out infinite;
}

.eyebrow .status-dot {
  box-shadow: 0 0 0 0 rgba(122, 247, 255, 0.6), 0 0 12px rgba(122, 247, 255, 0.9);
}

.hero-copy {
  max-width: 760px;
}

@keyframes eyebrowSweep {
  0% { transform: translateX(0) skewX(-18deg); opacity: 0; }
  12% { opacity: 1; }
  50% { transform: translateX(320%) skewX(-18deg); opacity: 0.95; }
  100% { transform: translateX(320%) skewX(-18deg); opacity: 0; }
}

@media (max-width: 900px) {
  .logo-img,
  .footer-brand img {
    width: 98px !important;
    max-height: 98px !important;
    flex-basis: 98px;
  }

  .radar-center,
  .radar-center.logo-mark {
    width: 162px !important;
    height: 162px !important;
  }

  .radar-center img,
  .radar-center.logo-mark img {
    width: 126px !important;
    height: 126px !important;
  }

  .eyebrow {
    font-size: 0.78rem;
    padding: 10px 14px !important;
  }
}

/* v17 shield cleanup */
.logo-img,
.footer-brand img {
  width: 58px !important;
  max-height: 58px !important;
  height: 58px !important;
  object-fit: contain;
}

.radar-center,
.radar-center.logo-mark {
  width: 136px !important;
  height: 136px !important;
  background: radial-gradient(circle at 50% 50%, rgba(41, 243, 255, 0.12), rgba(41, 243, 255, 0.03) 46%, transparent 70%) !important;
  border: 1px solid rgba(122, 243, 208, 0.16) !important;
  box-shadow: 0 0 26px rgba(23, 202, 255, 0.12), inset 0 0 20px rgba(120, 215, 255, 0.05) !important;
}

.radar-center img,
.radar-center.logo-mark img {
  width: 84px !important;
  height: 98px !important;
  object-fit: contain;
  filter: drop-shadow(0 0 10px rgba(89, 221, 255, 0.28));
}

@media (max-width: 900px) {
  .logo-img,
  .footer-brand img {
    width: 50px !important;
    max-height: 50px !important;
    height: 50px !important;
  }

  .radar-center,
  .radar-center.logo-mark {
    width: 112px !important;
    height: 112px !important;
  }

  .radar-center img,
  .radar-center.logo-mark img {
    width: 70px !important;
    height: 82px !important;
  }
}



/* v21 flat shield + operating model animation restore */
.nav-logo.logo-mark,
.footer-brand.logo-mark {
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
}

.logo-img,
.footer-brand img {
  width: 56px !important;
  height: 66px !important;
  max-height: 66px !important;
  object-fit: contain;
  filter: drop-shadow(0 0 12px rgba(122,247,255,0.18));
}

.radar-center,
.radar-center.logo-mark {
  width: 138px !important;
  height: 138px !important;
  border-radius: 50% !important;
  background: radial-gradient(circle at 50% 50%, rgba(122,247,255,0.08), rgba(122,247,255,0.02) 48%, transparent 72%) !important;
  border: 1px solid rgba(122,247,255,0.12) !important;
  box-shadow: 0 0 24px rgba(23,202,255,0.10), inset 0 0 18px rgba(120,215,255,0.04) !important;
  padding: 0 !important;
}

.radar-center img,
.radar-center.logo-mark img {
  width: 90px !important;
  height: 108px !important;
  object-fit: contain;
  filter: drop-shadow(0 0 16px rgba(122,247,255,0.24));
}

.ops-header {
  display: grid;
  gap: 6px;
}

.ops-header strong {
  position: relative;
  display: inline-block;
  overflow: hidden;
}

.ops-header strong::after {
  content: '';
  position: absolute;
  inset: -15% auto -15% -18%;
  width: 26%;
  background: linear-gradient(90deg, transparent, rgba(122,247,255,0.12), rgba(255,255,255,0.9), rgba(122,247,255,0.12), transparent);
  transform: skewX(-22deg);
  animation: opsFlowSweep 4.8s ease-in-out infinite;
  pointer-events: none;
}

.ops-list {
  position: relative;
}

.ops-list::before {
  content: '';
  position: absolute;
  left: 23px;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background: linear-gradient(180deg, rgba(122,247,255,0.08), rgba(122,247,255,0.34), rgba(122,247,255,0.08));
  box-shadow: 0 0 12px rgba(122,247,255,0.12);
}

.ops-item {
  position: relative;
  padding: 10px 12px 10px 0;
  border-radius: 18px;
  transition: background 0.35s ease, transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
  border: 1px solid transparent;
}

.ops-item.active {
  background: linear-gradient(90deg, rgba(122,247,255,0.10), rgba(77,141,255,0.05));
  border-color: rgba(122,247,255,0.18);
  box-shadow: 0 10px 24px rgba(0,0,0,0.18), 0 0 18px rgba(122,247,255,0.08);
  transform: translateX(4px);
}

.ops-item span {
  position: relative;
  z-index: 1;
  background: rgba(77, 141, 255, 0.10);
  border-color: rgba(122,247,255,0.22);
  transition: background 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease, transform 0.35s ease;
}

.ops-item.active span {
  background: radial-gradient(circle, rgba(122,247,255,0.28), rgba(77,141,255,0.18));
  border-color: rgba(122,247,255,0.5);
  box-shadow: 0 0 0 6px rgba(122,247,255,0.08), 0 0 22px rgba(122,247,255,0.24);
  transform: scale(1.04);
}

@keyframes opsFlowSweep {
  0% { transform: translateX(0) skewX(-22deg); opacity: 0; }
  12% { opacity: 0.9; }
  52% { transform: translateX(520%) skewX(-22deg); opacity: 0.95; }
  100% { transform: translateX(520%) skewX(-22deg); opacity: 0; }
}

@media (max-width: 900px) {
  .logo-img,
  .footer-brand img {
    width: 48px !important;
    height: 56px !important;
    max-height: 56px !important;
  }

  .radar-center,
  .radar-center.logo-mark {
    width: 118px !important;
    height: 118px !important;
  }

  .radar-center img,
  .radar-center.logo-mark img {
    width: 74px !important;
    height: 88px !important;
  }
}


.country-rotator {
  display: inline-block;
  min-width: 11ch;
  color: var(--accent);
  font-weight: 700;
  text-shadow: 0 0 18px rgba(124, 243, 208, 0.35);
  animation: countryFade 2s ease-in-out infinite;
}

@keyframes countryFade {
  0%, 18% { opacity: 0; transform: translateY(8px); }
  28%, 72% { opacity: 1; transform: translateY(0); }
  82%, 100% { opacity: 0; transform: translateY(-8px); }
}


.coverage-marquee {
  position: relative;
  overflow: hidden;
  width: 100%;
  min-height: 40px;
  margin-top: 10px;
}

.coverage-chip {
  position: relative;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  min-width: 104px;
  padding: 8px 14px;
  border-radius: 14px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(124, 243, 208, 0.16);
  box-shadow: 0 10px 24px rgba(0,0,0,0.18);
  animation: coverageDrift 2s ease-in-out infinite alternate;
}

.coverage-country {
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
}

.coverage-flag {
  font-size: 1.15rem;
  line-height: 1;
  filter: drop-shadow(0 0 10px rgba(124,243,208,0.22));
}

@keyframes coverageDrift {
  0% {
    transform: translateX(-6%);
    opacity: 0.55;
  }
  20% {
    opacity: 1;
  }
  100% {
    transform: translateX(calc(100% + 12px));
    opacity: 0.95;
  }
}

@media (max-width: 640px) {
  .coverage-chip {
    min-width: 92px;
    padding: 8px 12px;
  }

  @keyframes coverageDrift {
    0% {
      transform: translateX(-2%);
      opacity: 0.65;
    }
    100% {
      transform: translateX(calc(100% - 8px));
      opacity: 0.98;
    }
  }
}


/* v25 browser-safe coverage + qualifications belt */
.logo-copy strong {
  font-size: 1.22rem !important;
  letter-spacing: 0.01em;
}

.logo-copy span {
  font-size: 0.82rem !important;
}

.qualifications-section {
  padding-top: 28px;
}

.qualification-groups {
  display: grid;
  gap: 1.15rem;
}

.qualification-group {
  overflow: hidden;
  position: relative;
  padding: 1.25rem 0;
}

.qualification-group::before,
.qualification-group::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 72px;
  z-index: 2;
  pointer-events: none;
}

.qualification-group::before {
  left: 0;
  background: linear-gradient(90deg, rgba(7,17,31,0.96), rgba(7,17,31,0));
}

.qualification-group::after {
  right: 0;
  background: linear-gradient(270deg, rgba(7,17,31,0.96), rgba(7,17,31,0));
}

.qualification-group-head {
  padding: 0 1.25rem 1rem;
}

.qualification-group-head p {
  margin: 0.5rem 0 0;
  color: rgba(223, 232, 248, 0.76);
}

.qualification-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 0.75rem;
  border-radius: 999px;
  border: 1px solid rgba(124,243,208,0.18);
  background: rgba(255,255,255,0.04);
  color: #eff7ff;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.cert-belt {
  overflow: hidden;
  position: relative;
  padding: 0.25rem 0;
}

.cert-track {
  display: flex;
  gap: 0.9rem;
  width: max-content;
  will-change: transform;
}

.cert-belt[data-direction="left"] .cert-track {
  animation: certBeltLeft 34s linear infinite;
}

.cert-belt[data-direction="right"] .cert-track {
  animation: certBeltRight 34s linear infinite;
}

.cert-belt:hover .cert-track {
  animation-play-state: paused;
}

.cert-card {
  min-width: 220px;
  padding: 0.95rem 1rem;
  border-radius: 18px;
  border: 1px solid rgba(124,243,208,0.14);
  background: linear-gradient(180deg, rgba(12,26,46,0.9), rgba(8,18,33,0.95));
  box-shadow: 0 12px 28px rgba(0,0,0,0.22);
  display: grid;
  gap: 0.35rem;
  align-content: center;
}

.cert-logo {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  letter-spacing: 0.02em;
  color: #03111f;
  box-shadow: 0 0 0 1px rgba(255,255,255,0.08) inset, 0 0 24px rgba(122,247,255,0.18);
}

.cert-card strong {
  font-size: 0.98rem;
  line-height: 1.2;
  color: #f6fbff;
}

.cert-card small {
  color: rgba(223, 232, 248, 0.72);
  font-size: 0.76rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.issuer-offsec .cert-logo { background: linear-gradient(135deg, #fafcff, #8cf4ff); }
.issuer-crest .cert-logo { background: linear-gradient(135deg, #fef3d7, #f8c663); }
.issuer-ec .cert-logo { background: linear-gradient(135deg, #fff0f1, #ff838d); }
.issuer-ine .cert-logo { background: linear-gradient(135deg, #f2f4ff, #8f9bff); }
.issuer-pnpt .cert-logo { background: linear-gradient(135deg, #f6faff, #77d7ff); }
.issuer-isaca .cert-logo { background: linear-gradient(135deg, #effbff, #52e5d8); }
.issuer-itil .cert-logo { background: linear-gradient(135deg, #f6f0ff, #c6a5ff); }
.issuer-open .cert-logo { background: linear-gradient(135deg, #eff5ff, #82afff); }
.issuer-ot .cert-logo { background: linear-gradient(135deg, #effff4, #7de79f); }
.issuer-pecb .cert-logo { background: linear-gradient(135deg, #fff7ea, #ffc46a); }

@keyframes certBeltLeft {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@keyframes certBeltRight {
  from { transform: translateX(-50%); }
  to { transform: translateX(0); }
}

.coverage-marquee {
  min-height: 58px;
  margin-top: 12px;
}

.coverage-chip {
  min-width: 128px;
  padding: 10px 16px 12px;
  background: linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.025));
  border-color: rgba(124,243,208,0.18);
}

.coverage-country {
  font-size: 0.96rem;
}

.coverage-flag {
  display: inline-flex;
  width: 28px;
  height: 20px;
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.16);
  box-shadow: 0 0 14px rgba(122,247,255,0.16);
}

.coverage-flag::before,
.coverage-flag::after {
  content: '';
  display: block;
}

.flag-ke { background: linear-gradient(180deg, #111 0 28%, #fff 28% 34%, #b11f2c 34% 66%, #fff 66% 72%, #17693f 72% 100%); }
.flag-ng { background: linear-gradient(90deg, #1d8f55 0 33.333%, #fff 33.333% 66.666%, #1d8f55 66.666% 100%); }
.flag-bw { background: linear-gradient(180deg, #7dc8f7 0 34%, #fff 34% 38%, #111 38% 62%, #fff 62% 66%, #7dc8f7 66% 100%); }
.flag-na { background: linear-gradient(135deg, #1b4fa8 0 44%, #fff 44% 47%, #c8353d 47% 53%, #fff 53% 56%, #19905d 56% 100%); position: relative; }
.flag-na::before { width: 7px; height: 7px; border-radius: 50%; background: #f2c441; position: absolute; top: 3px; left: 4px; }
.flag-gh { background: linear-gradient(180deg, #c63838 0 33.333%, #f1c84c 33.333% 66.666%, #18834f 66.666% 100%); position: relative; }
.flag-gh::before { position: absolute; inset: 7px 11px auto; width: 6px; height: 6px; background: #111; clip-path: polygon(50% 0,61% 35%,98% 35%,68% 57%,79% 92%,50% 70%,21% 92%,32% 57%,2% 35%,39% 35%); }
.flag-rw { background: linear-gradient(180deg, #4db0ff 0 50%, #f2d34f 50% 75%, #2e9b54 75% 100%); position: relative; }
.flag-rw::before { position: absolute; top: 3px; right: 4px; width: 7px; height: 7px; border-radius: 50%; background: #f3d654; box-shadow: 0 0 0 2px rgba(243,214,84,0.18); }
.flag-zm { background: linear-gradient(90deg, #19844f 0 78%, #c63838 78% 85%, #111 85% 92%, #f39d2e 92% 100%); }
.flag-mu { background: linear-gradient(180deg, #d43d3f 0 25%, #2e4ca2 25% 50%, #f4d14b 50% 75%, #218652 75% 100%); }
.flag-ug { background: linear-gradient(180deg, #111 0 16.666%, #f3d44d 16.666% 33.333%, #c63a3a 33.333% 50%, #111 50% 66.666%, #f3d44d 66.666% 83.333%, #c63a3a 83.333% 100%); }
.flag-tz { background: linear-gradient(135deg, #1f9c60 0 42%, #f2cc4d 42% 46%, #111 46% 54%, #f2cc4d 54% 58%, #379fe6 58% 100%); }

@media (prefers-reduced-motion: reduce) {
  .cert-belt .cert-track,
  .coverage-chip {
    animation: none !important;
  }
}

@media (max-width: 820px) {
  .logo-copy strong { font-size: 1.08rem !important; }
  .logo-copy span { font-size: 0.76rem !important; }
  .qualification-group { padding: 1rem 0; }
  .qualification-group::before,
  .qualification-group::after { width: 32px; }
  .cert-card { min-width: 188px; }
}


/* v26 qualification categories + modal */
.qualification-category-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.2rem;
  margin-top: 2rem;
}

.qualification-category {
  width: 100%;
  text-align: left;
  padding: 1.35rem;
  border-radius: 24px;
  border: 1px solid rgba(124,243,208,0.16);
  background: linear-gradient(180deg, rgba(11, 26, 46, 0.86), rgba(7, 18, 33, 0.94));
  display: grid;
  gap: 0.8rem;
  cursor: pointer;
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.qualification-category:hover,
.qualification-category:focus-visible {
  transform: translateY(-6px);
  border-color: rgba(124,243,208,0.34);
  box-shadow: 0 18px 40px rgba(0,0,0,0.28), 0 0 24px rgba(124,243,208,0.12);
}

.qualification-category-icon {
  width: 56px;
  height: 56px;
  border-radius: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #7cf3d0;
  background: radial-gradient(circle at 30% 30%, rgba(124,243,208,0.2), rgba(124,243,208,0.06));
  box-shadow: inset 0 0 0 1px rgba(124,243,208,0.15);
  font-size: 1.15rem;
}

.qualification-category-title {
  color: #eff7ff;
  font-weight: 800;
  font-size: 1.03rem;
  line-height: 1.35;
}

.qualification-category-copy {
  color: rgba(223, 232, 248, 0.76);
  line-height: 1.7;
  font-size: 0.95rem;
}

.qualification-modal {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: grid;
  place-items: center;
  padding: 1.5rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 180ms ease, visibility 180ms ease;
}

.qualification-modal.open {
  opacity: 1;
  visibility: visible;
}

.qualification-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(2, 8, 18, 0.72);
  backdrop-filter: blur(10px);
}

.qualification-modal-dialog {
  position: relative;
  width: min(900px, 100%);
  max-height: min(82vh, 860px);
  overflow: auto;
  border-radius: 28px;
  border: 1px solid rgba(124,243,208,0.18);
  background: linear-gradient(180deg, rgba(10,22,39,0.96), rgba(5,12,24,0.98));
  padding: 1.5rem 1.5rem 1.3rem;
  box-shadow: 0 26px 80px rgba(0,0,0,0.42);
}

.qualification-modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(124,243,208,0.16);
  border-radius: 999px;
  background: rgba(255,255,255,0.04);
  color: #eff7ff;
  cursor: pointer;
}

.qualification-modal-close:hover,
.qualification-modal-close:focus-visible {
  border-color: rgba(124,243,208,0.36);
  box-shadow: 0 0 24px rgba(124,243,208,0.14);
}

.qualification-modal-tag { margin-bottom: 0.8rem; }

.qualification-modal-dialog h3 {
  margin: 0 0 0.5rem;
  font-size: clamp(1.55rem, 2vw, 2.1rem);
}

.qualification-modal-dialog p {
  margin: 0 0 1.2rem;
  color: rgba(223, 232, 248, 0.76);
}

.qualification-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
}

.qualification-pill {
  min-height: 94px;
  padding: 1rem;
  border-radius: 18px;
  border: 1px solid rgba(124,243,208,0.12);
  background: linear-gradient(180deg, rgba(14,30,54,0.88), rgba(7,18,33,0.96));
  display: grid;
  gap: 0.35rem;
}

.qualification-pill strong {
  color: #eff7ff;
  font-size: 1rem;
  line-height: 1.35;
}

.qualification-pill small {
  color: rgba(124,243,208,0.85);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
}

.qualification-pill span {
  color: rgba(223, 232, 248, 0.72);
  font-size: 0.92rem;
  line-height: 1.55;
}

body.modal-open {
  overflow: hidden;
}

@media (max-width: 900px) {
  .qualification-category-grid,
  .qualification-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .qualification-category {
    padding: 1.1rem;
  }

  .qualification-modal-dialog {
    padding: 1.2rem 1rem 1rem;
  }
}

/* v27 header brand size refinement */
.nav-logo .logo-copy strong {
  font-size: 1.36rem !important;
  line-height: 1.05;
}

.nav-logo .logo-copy span {
  font-size: 1rem !important;
  letter-spacing: 0.03em;
}

@media (max-width: 900px) {
  .nav-logo .logo-copy strong {
    font-size: 1.18rem !important;
  }

  .nav-logo .logo-copy span {
    font-size: 0.9rem !important;
  }
}
