/* OPS ? Online Policing Solutions static site */
@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@600;700;800&family=Source+Sans+3:ital,wght@0,400;0,500;0,600;0,700;1,400&display=swap');

:root {
  --navy: #061428;
  --navy-mid: #0c2340;
  --navy-soft: #16325a;
  --blue: #1a6fb5;
  --blue-bright: #2186d4;
  --blue-glow: #3ba0eb;
  --steel: #8aa4c0;
  --fog: #e8eef5;
  --white: #ffffff;
  --ink: #0e1a2b;
  --muted: #5a6f86;
  --accent: #c9a227;
  --success: #1f7a4c;
  --danger: #b33a3a;
  --radius: 4px;
  --header-h: 78px;
  --font-display: 'Barlow Condensed', sans-serif;
  --font-body: 'Source Sans 3', sans-serif;
  --shadow: 0 18px 50px rgba(6, 20, 40, 0.28);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; height: auto; }
a { color: var(--blue); text-decoration: none; transition: color 0.2s var(--ease); }
a:hover { color: var(--blue-bright); }
ul { list-style: none; }
button, input, select, textarea { font: inherit; }

.container {
  width: min(1180px, calc(100% - 2.5rem));
  margin-inline: auto;
}

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); border: 0;
}

/* ??? Header ??? */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  height: var(--header-h);
  background: rgba(6, 20, 40, 0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: background 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.site-header.is-scrolled {
  background: rgba(6, 20, 40, 0.98);
  box-shadow: 0 8px 30px rgba(0,0,0,0.25);
}

.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  position: relative;
}

.logo img {
  height: 46px;
  width: auto;
}

.nav-desktop {
  display: none;
  align-items: center;
  gap: 0.15rem;
}

.nav-item { position: relative; }

.nav-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: rgba(255,255,255,0.88);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.65rem 0.7rem;
  border-radius: var(--radius);
}

.nav-link:hover,
.nav-item:hover > .nav-link,
.nav-link.is-active {
  color: var(--white);
  background: rgba(255,255,255,0.06);
}

.nav-link .chev {
  width: 0; height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid currentColor;
  opacity: 0.7;
}

.dropdown {
  position: absolute;
  top: calc(100% + 0.35rem);
  left: 0;
  min-width: 240px;
  background: #061428;
  border-radius: 6px;
  box-shadow: var(--shadow);
  padding: 0.55rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.22s var(--ease), transform 0.22s var(--ease), visibility 0.22s var(--ease);
  z-index: 50;
}

.nav-item--mega {
  position: static;
}

.dropdown--mega {
  position: absolute;
  top: 100%;
  left: 50%;
  right: auto;
  bottom: auto;
  width: 100vw;
  margin-left: -50vw;
  height: auto;
  max-height: 50vh;
  max-height: 50dvh;
  min-width: 0;
  margin-top: 0;
  padding: 2rem 0 2.5rem;
  border-radius: 0;
  background: rgba(6, 20, 40, 0.88);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 24px 48px rgba(6, 20, 40, 0.35);
  display: flex;
  max-height: none;
  overflow-y: auto;
  transform: translateY(10px);
}

.mega-grid {
  width: min(1180px, calc(100% - 3rem));
  margin: auto;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1rem 1.25rem;
}

.dropdown--mega-sm .mega-grid {
  grid-template-columns: repeat(3, minmax(0, 240px));
  justify-content: center;
  gap: 1rem 1.25rem;
}

.dropdown--mega-lg .mega-grid {
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 1rem 1.25rem;
}

@media (min-width: 1300px) {
  .dropdown--mega-lg .mega-grid {
    grid-template-columns: repeat(7, minmax(0, 1fr));
  }
}

.nav-item:hover > .dropdown,
.nav-item:focus-within > .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-item:hover > .dropdown--mega,
.nav-item:focus-within > .dropdown--mega {
  transform: translateY(0);
}

.mega-item {
  display: flex;
  flex-direction: column;
  gap: 0;
  color: #fff !important;
  padding: 0.35rem;
  border-radius: 8px;
  min-width: 0;
  transition: background 0.2s var(--ease), color 0.2s var(--ease);
}

.mega-item:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #fff !important;
  transform: none;
}

.mega-thumb {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  border-radius: 6px;
  overflow: hidden;
  background: #0c2340;
  border: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
}

.mega-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.35s var(--ease);
}

.mega-item:hover .mega-thumb img {
  transform: scale(1.04);
}

.mega-thumb--ph {
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 30% 20%, rgba(59, 160, 235, 0.28), transparent 50%),
    linear-gradient(145deg, #0c2340 0%, #061428 100%);
}

.mega-thumb--ph span {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.55);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.mega-label {
  display: block;
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  text-transform: none;
  line-height: 1.3;
  padding: 10px 0.2rem 0.2rem;
  color: #fff !important;
  text-align: left;
}

.mega-item:hover .mega-label {
  color: #fff !important;
}

.dropdown a {
  display: block;
  color: #fff;
  padding: 0.55rem 0.75rem;
  border-radius: 4px;
  font-size: 0.92rem;
  font-weight: 500;
}

.dropdown a:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.dropdown--mega a.mega-item {
  padding: 0.35rem;
  color: #fff !important;
}

.dropdown--mega a.mega-item:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #fff !important;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.phone-link {
  display: none;
  color: rgba(255,255,255,0.85);
  font-weight: 600;
  font-size: 0.88rem;
  letter-spacing: 0.02em;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.8rem 1.35rem;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 0.92rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.22s var(--ease);
  text-decoration: none;
}

.btn-primary {
  background: var(--blue-bright);
  color: var(--white);
  border-color: var(--blue-bright);
}

.btn-primary:hover {
  background: var(--blue-glow);
  border-color: var(--blue-glow);
  color: var(--white);
  transform: translateY(-1px);
}

.btn-ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.45);
}

.btn-ghost:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--white);
  color: var(--white);
}

.btn-dark {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}

.btn-dark:hover {
  background: var(--navy-mid);
  color: var(--white);
}

.btn-outline {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}

.btn-outline:hover {
  background: var(--navy);
  color: var(--white);
}

.btn-sm { padding: 0.55rem 1rem; font-size: 0.8rem; }

.menu-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 0.4rem;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: 0.25s var(--ease);
}

.menu-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.is-open span:nth-child(2) { opacity: 0; }
.menu-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-mobile {
  position: fixed;
  inset: var(--header-h) 0 0;
  background: var(--navy);
  padding: 1.25rem;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform 0.35s var(--ease);
  z-index: 999;
}

.nav-mobile.is-open { transform: translateX(0); }

.nav-mobile details { border-bottom: 1px solid rgba(255,255,255,0.08); }

.nav-mobile summary,
.nav-mobile > a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--white);
  padding: 1rem 0.25rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 0.9rem;
  cursor: pointer;
  list-style: none;
}

.nav-mobile summary::-webkit-details-marker { display: none; }

.nav-mobile details a {
  display: block;
  color: rgba(255,255,255,0.75);
  padding: 0.55rem 0.75rem;
  font-size: 0.95rem;
  text-transform: none;
  letter-spacing: 0;
  font-weight: 500;
}

.nav-mobile .mobile-cta {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

@media (min-width: 1100px) {
  .nav-desktop { display: flex; }
  .menu-toggle { display: none; }
  .phone-link { display: inline; }
  .nav-mobile { display: none; }
}

/* Scroll-traced dotted path (homepage) */
.home-trace {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 30;
  pointer-events: none;
}

.home-trace-line {
  stroke: var(--blue-glow);
  opacity: 0.55;
}

.home-trace-node-g {
  opacity: 0;
  transition: opacity 0.35s ease;
}

.home-trace-node-g.is-lit {
  opacity: 1;
}

.home-trace-node {
  fill: var(--blue-glow);
}

.home-trace-beacon {
  fill: none;
  stroke: var(--blue-glow);
  stroke-width: 2;
  opacity: 0;
  transform-box: fill-box;
  transform-origin: center;
}

.home-trace-node-g.is-lit .home-trace-beacon {
  animation: traceBeacon 2.2s ease-out infinite;
}

@keyframes traceBeacon {
  0% {
    transform: scale(0.5);
    opacity: 0.9;
  }
  70% {
    transform: scale(3.2);
    opacity: 0;
  }
  100% {
    transform: scale(3.2);
    opacity: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .home-trace-node-g.is-lit .home-trace-beacon {
    animation: none;
    opacity: 0.5;
    transform: scale(1.6);
  }
}

/* ??? Hero ??? */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: flex-end;
  padding: calc(var(--header-h) + 3rem) 0 4.5rem;
  color: var(--white);
  overflow: hidden;
  background: var(--navy);
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
  animation: heroDrift 18s var(--ease) infinite alternate;
}

.hero-media::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, rgba(6,20,40,0.92) 0%, rgba(6,20,40,0.72) 48%, rgba(6,20,40,0.45) 100%),
    linear-gradient(to top, rgba(6,20,40,0.85) 0%, transparent 45%);
}

@keyframes heroDrift {
  from { transform: scale(1.04) translate(0, 0); }
  to { transform: scale(1.1) translate(-1.5%, -1%); }
}

/* Animated coalition network canvas (sits over the hero image, under copy) */
.hero-network {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 720px;
  animation: riseIn 0.9s var(--ease) both;
}

@keyframes riseIn {
  from { opacity: 0; transform: translateY(28px); }
  to { opacity: 1; transform: translateY(0); }
}

.brand-mark {
  font-family: var(--font-display);
  font-size: clamp(3.4rem, 9vw, 6.5rem);
  font-weight: 800;
  line-height: 0.9;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  margin-bottom: 0.85rem;
}

.brand-mark span {
  display: block;
  font-size: 0.28em;
  letter-spacing: 0.22em;
  font-weight: 600;
  color: var(--blue-glow);
  margin-bottom: 0.35rem;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.65rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  margin-bottom: 1rem;
  max-width: 22ch;
}

.hero-kicker {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue-glow);
  margin-bottom: 0.6rem;
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.5rem;
  list-style: none;
  padding: 0;
  margin: 0 0 1.6rem;
}

.hero-proof li {
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.75);
  white-space: nowrap;
}

.hero-proof li strong {
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1.15rem;
  letter-spacing: 0.02em;
  margin-right: 0.3rem;
}

.hero-secondary {
  margin-top: 1.1rem;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.hero-link {
  background: none;
  border: 0;
  padding: 0;
  font: inherit;
  color: rgba(255, 255, 255, 0.82);
  text-decoration: underline;
  text-underline-offset: 3px;
  cursor: pointer;
}

.hero-link:hover { color: var(--white); }

.hero p {
  font-size: 1.12rem;
  color: rgba(255,255,255,0.82);
  max-width: 42ch;
  margin-bottom: 1.75rem;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.hero-tag {
  position: absolute;
  right: 0;
  bottom: 4.5rem;
  z-index: 1;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  display: none;
}

@media (min-width: 900px) {
  .hero-tag { display: block; }
}

/* ??? Sections ??? */
.section {
  padding: 5rem 0;
}

.section-tight { padding: 3.5rem 0; }

.section-dark {
  background: var(--navy);
  color: var(--white);
}

.section-fog { background: var(--fog); }

.section-navy-mid { background: var(--navy-mid); color: var(--white); }

.eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--blue-bright);
  margin-bottom: 0.75rem;
}

.section-dark .eyebrow,
.section-navy-mid .eyebrow { color: var(--blue-glow); }

.section-head {
  max-width: 640px;
  margin-bottom: 2.75rem;
}

.section-head.center {
  margin-inline: auto;
  text-align: center;
}

h2, .h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  margin-bottom: 0.85rem;
}

h3, .h3 {
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  line-height: 1.15;
  margin-bottom: 0.65rem;
}

.lede {
  font-size: 1.08rem;
  color: var(--muted);
}

.section-dark .lede,
.section-navy-mid .lede { color: rgba(255,255,255,0.72); }

/* Product showcase */
.product-rail {
  display: grid;
  gap: 0;
}

.product-panel {
  display: grid;
  grid-template-columns: 1fr;
  min-height: 420px;
  background: var(--navy);
  color: var(--white);
  overflow: hidden;
}

.product-panel:nth-child(even) .product-copy { order: 1; }

.product-visual {
  position: relative;
  min-height: 280px;
  overflow: hidden;
}

.product-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
}

.product-panel:hover .product-visual img {
  transform: scale(1.06);
}

.product-visual::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(6,20,40,0.35), transparent 50%);
}

.product-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 2.5rem 1.75rem;
  background:
    radial-gradient(ellipse at top right, rgba(33,134,212,0.18), transparent 55%),
    var(--navy-mid);
}

.product-copy .eyebrow { margin-bottom: 0.5rem; }

.product-copy p {
  color: rgba(255,255,255,0.78);
  margin-bottom: 1.4rem;
  max-width: 48ch;
}

.product-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

/* Demoted external product links (post-demo path) */
.product-ext {
  margin-top: 0.9rem;
  font-size: 0.82rem;
}

.product-ext a {
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
  padding-bottom: 1px;
}

.product-ext a:hover { color: var(--blue-glow); border-color: var(--blue-glow); }

/* Full suite starts collapsed behind the "Explore the full suite" toggle */
.product-rail.is-collapsed { display: none; }

/* ——— "Three jobs" section ——— */
.home-jobs { background: var(--navy); color: var(--white); }

.home-jobs .section-head .lede { color: rgba(255, 255, 255, 0.75); }

.jobs-grid {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 860px) {
  .jobs-grid { grid-template-columns: repeat(3, 1fr); }
}

.job-card {
  background: var(--navy-mid);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.job-media img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  display: block;
}

.job-body {
  padding: 1.4rem 1.4rem 1.6rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.job-body h3 {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin-bottom: 0.55rem;
}

.job-body p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.98rem;
  margin-bottom: 0.9rem;
}

.job-tools {
  font-size: 0.8rem !important;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--blue-glow) !important;
  margin-top: auto;
}

.job-body .btn { align-self: flex-start; color: var(--white); border-color: rgba(255,255,255,0.5); }
.job-body .btn:hover { background: var(--blue-glow); border-color: var(--blue-glow); }

/* ——— Peer proof ——— */
.proof-grid {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 860px) {
  .proof-grid { grid-template-columns: repeat(3, 1fr); }
}

.proof-card {
  margin: 0;
  padding: 1.6rem 1.5rem;
  background: var(--fog);
  border-left: 3px solid var(--blue);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
}

.proof-card p {
  font-size: 1.02rem;
  color: var(--ink);
  margin-bottom: 1rem;
}

.proof-card footer {
  margin-top: auto;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--muted);
}

.proof-card--action {
  background: var(--navy);
  color: var(--white);
  border-left-color: var(--blue-glow);
}

.proof-card--action h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin-bottom: 0.5rem;
}

.proof-card--action p { color: rgba(255, 255, 255, 0.8); }

.proof-card--action .btn { align-self: flex-start; margin-top: auto; }

/* ——— Sticky mobile call bar ——— */
.call-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 900;
  display: none;
  gap: 0;
  background: var(--navy);
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 -8px 24px rgba(6, 20, 40, 0.4);
}

.call-bar a {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.95rem 0.5rem;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--white);
}

.call-bar a.call-bar-phone { background: var(--blue-bright); }
.call-bar a.call-bar-demo { background: var(--navy-mid); }

@media (max-width: 767px) {
  .call-bar { display: flex; }
  body { padding-bottom: 52px; }
}

@media (min-width: 900px) {
  .product-panel {
    grid-template-columns: 1.05fr 1fr;
  }
  .product-panel:nth-child(even) {
    grid-template-columns: 1fr 1.05fr;
  }
  .product-panel:nth-child(even) .product-visual { order: 2; }
  .product-panel:nth-child(even) .product-copy { order: 1; }
  .product-copy { padding: 3.5rem; }
  .product-visual { min-height: 100%; }
}

/* Mission strip */
.mission-band {
  display: grid;
  gap: 0;
}

.mission-media {
  min-height: 320px;
  background: center / cover no-repeat;
}

.mission-copy {
  padding: 3rem 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

@media (min-width: 860px) {
  .mission-band { grid-template-columns: 1.1fr 1fr; }
  .mission-copy { padding: 4rem; }
}

/* Stats */
.stats {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.stat {
  padding: 1.5rem 0;
  border-top: 1px solid rgba(255,255,255,0.12);
}

.stat-value {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 3.4rem);
  font-weight: 800;
  line-height: 1;
  color: var(--blue-glow);
  margin-bottom: 0.35rem;
}

.stat-label {
  color: rgba(255,255,255,0.7);
  font-size: 0.98rem;
}

@media (min-width: 700px) {
  .stats { grid-template-columns: repeat(3, 1fr); gap: 2rem; }
  .stat { border-top: 0; border-left: 1px solid rgba(255,255,255,0.12); padding: 0 0 0 1.5rem; }
  .stat:first-child { border-left: 0; padding-left: 0; }
}

/* CMA / peacemakers */
.split {
  display: grid;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 860px) {
  .split { grid-template-columns: 1fr 1fr; gap: 3.5rem; }
  .split.reverse > :first-child { order: 2; }
}

.quote-block {
  border-left: 3px solid var(--blue-bright);
  padding-left: 1.25rem;
  margin: 1.5rem 0;
  font-size: 1.15rem;
  font-style: italic;
  color: var(--muted);
}

/* News */
.news-grid {
  display: grid;
  gap: 1.75rem;
}

@media (min-width: 760px) {
  .news-grid { grid-template-columns: repeat(3, 1fr); }
}

.home-news .section-head {
  margin-bottom: 2.5rem;
}

.news-grid--cards {
  gap: 1.5rem;
}

.news-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  box-shadow: 0 10px 28px rgba(6, 20, 40, 0.1);
  overflow: hidden;
  height: 100%;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

.news-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(6, 20, 40, 0.16);
}

.news-card-media {
  display: block;
  overflow: hidden;
  background: var(--navy-mid);
}

.news-card-media img {
  aspect-ratio: 16 / 10;
  object-fit: cover;
  width: 100%;
  transition: transform 0.55s var(--ease);
}

.news-card:hover .news-card-media img {
  transform: scale(1.05);
}

.news-card-body {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  padding: 1.25rem 1.35rem 1.4rem;
  flex: 1;
}

.news-card h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 1.2;
  margin: 0;
}

.news-card h3 a {
  color: var(--navy);
  text-decoration: none;
}

.news-card h3 a:hover {
  color: var(--blue);
}

.news-card .news-date {
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  text-transform: none;
  color: var(--muted);
  margin: 0;
}

.news-card .news-excerpt {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.55;
  margin: 0;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.news-card .read-more {
  margin-top: 0.35rem;
  color: var(--blue-bright);
  font-weight: 600;
  font-size: 0.88rem;
  text-transform: lowercase;
  letter-spacing: 0.02em;
}

.news-card .read-more:hover {
  color: var(--blue);
}

/* legacy flat news items (if any remain) */
.news-item {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.news-item img {
  aspect-ratio: 16 / 10;
  object-fit: cover;
  width: 100%;
  filter: saturate(0.92);
  transition: transform 0.5s var(--ease), filter 0.5s var(--ease);
}

.news-item:hover img {
  transform: scale(1.03);
  filter: saturate(1.05);
}

.news-thumb {
  overflow: hidden;
}

.news-date {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue);
}

.news-item h3 {
  font-size: 1.25rem;
  text-transform: none;
  letter-spacing: 0;
  font-family: var(--font-body);
  font-weight: 700;
}

.news-item p {
  color: var(--muted);
  font-size: 0.96rem;
  flex: 1;
}

.read-more {
  font-weight: 700;
  font-size: 0.88rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* Coalition definition */
.definition {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}

.definition .term {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 0.35rem;
}

.definition .phonetic {
  color: var(--steel);
  font-size: 0.95rem;
  margin-bottom: 1.25rem;
}

.definition blockquote {
  font-size: 1.12rem;
  font-style: italic;
  color: rgba(255,255,255,0.82);
  line-height: 1.7;
}

/* Homepage ? network statement (editorial, light) */
.network-statement {
  padding: 4.5rem 0;
  background:
    linear-gradient(90deg, rgba(33,134,212,0.08) 0, rgba(33,134,212,0.08) 6px, transparent 6px),
    linear-gradient(180deg, #f2f6fa 0%, #ffffff 55%, #eef3f8 100%);
  border-block: 1px solid rgba(12, 35, 64, 0.08);
}

.network-statement-grid {
  display: grid;
  gap: 2.5rem;
  align-items: end;
}

@media (min-width: 880px) {
  .network-statement-grid {
    grid-template-columns: 1.35fr 0.85fr;
    gap: 4rem;
    align-items: center;
  }
}

.network-statement-copy h2 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4.5vw, 3.35rem);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 1.05;
  color: var(--navy);
  margin: 0.35rem 0 0.85rem;
  max-width: 16ch;
}

.network-statement-kicker {
  font-size: 0.98rem;
  font-style: italic;
  color: var(--blue);
  margin-bottom: 1.1rem;
}

.network-statement-copy .lede {
  max-width: 52ch;
  color: var(--muted);
}

.network-statement-aside {
  position: relative;
  padding: 2rem 0 0.5rem 1.75rem;
  border-left: 3px solid var(--blue-bright);
}

.network-stat-num {
  font-family: var(--font-display);
  font-size: clamp(5rem, 12vw, 7.5rem);
  font-weight: 800;
  line-height: 0.85;
  letter-spacing: -0.03em;
  color: var(--navy);
  animation: networkStatIn 0.9s var(--ease) both;
}

.network-stat-num span {
  color: var(--blue-bright);
}

.network-stat-label {
  margin-top: 1rem;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--navy);
}

.network-stat-note {
  margin-top: 0.35rem;
  font-size: 0.9rem;
  color: var(--muted);
  letter-spacing: 0.04em;
}

@keyframes networkStatIn {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: none; }
}

/* Homepage ? join / support mission (photo band) */
.join-band {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  color: var(--white);
  padding: 5rem 0;
  min-height: 320px;
  display: flex;
  align-items: center;
}

.join-band-media {
  position: absolute;
  inset: 0;
  background: center / cover no-repeat;
  transform: scale(1.04);
  animation: joinKen 22s ease-in-out infinite alternate;
  z-index: -2;
}

.join-band-shade {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(105deg, rgba(6, 20, 40, 0.94) 0%, rgba(6, 20, 40, 0.78) 48%, rgba(12, 35, 64, 0.55) 100%),
    linear-gradient(0deg, rgba(6, 20, 40, 0.45), transparent 40%);
}

.join-band-inner {
  display: grid;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 800px) {
  .join-band-inner {
    grid-template-columns: 1.4fr auto;
    gap: 3rem;
  }
}

.join-band-copy h2 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4.5vw, 3.2rem);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 1.05;
  margin: 0.35rem 0 0.9rem;
}

.join-band-copy p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.8);
  max-width: 46ch;
  margin: 0;
}

.join-band .eyebrow {
  color: var(--blue-glow);
}

.join-band-actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: stretch;
}

.join-band-actions .btn {
  white-space: nowrap;
  text-align: center;
}

@keyframes joinKen {
  from { transform: scale(1.04) translate3d(0, 0, 0); }
  to { transform: scale(1.1) translate3d(-1.5%, -1%, 0); }
}

@media (prefers-reduced-motion: reduce) {
  .network-stat-num,
  .join-band-media {
    animation: none;
  }
}

/* CTA band */
.cta-band {
  background:
    radial-gradient(ellipse at 20% 50%, rgba(33,134,212,0.35), transparent 50%),
    linear-gradient(135deg, var(--navy) 0%, var(--navy-soft) 100%);
  color: var(--white);
  padding: 4.5rem 0;
  text-align: center;
}

.cta-band p {
  color: rgba(255,255,255,0.78);
  max-width: 48ch;
  margin: 0 auto 1.75rem;
}

/* Page hero (inner) */
.page-hero {
  padding: calc(var(--header-h) + 3.5rem) 0 3.5rem;
  background:
    radial-gradient(ellipse at top right, rgba(33,134,212,0.25), transparent 50%),
    linear-gradient(160deg, var(--navy) 0%, var(--navy-mid) 100%);
  color: var(--white);
}

.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 1.05;
  margin-bottom: 0.75rem;
  max-width: 54ch;
}

.page-hero p {
  max-width: 54ch;
  color: rgba(255,255,255,0.78);
  font-size: 1.1rem;
}

/* Feature grid */
.feature-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 700px) {
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1000px) {
  .feature-grid { grid-template-columns: repeat(3, 1fr); }
}

.feature {
  padding: 1.5rem 0;
  border-top: 2px solid var(--blue);
}

.feature h3 { font-size: 1.2rem; margin-bottom: 0.5rem; }
.feature p { color: var(--muted); font-size: 0.98rem; }

.section-dark .feature { border-top-color: var(--blue-glow); }
.section-dark .feature p { color: rgba(255,255,255,0.72); }

.check-list {
  display: grid;
  gap: 0.65rem;
  margin: 1.25rem 0 1.75rem;
}

.check-list li {
  position: relative;
  padding-left: 1.5rem;
  color: inherit;
}

.check-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.45rem;
  width: 0.55rem;
  height: 0.55rem;
  background: var(--blue-bright);
  transform: rotate(45deg);
}

.section-dark .check-list li::before,
.section-navy-mid .check-list li::before {
  background: var(--blue-glow);
}

/* Forms */
.form-card {
  background: var(--white);
  padding: 2rem;
  box-shadow: var(--shadow);
  max-width: 720px;
}

.form-grid {
  display: grid;
  gap: 1rem;
}

@media (min-width: 600px) {
  .form-grid.two { grid-template-columns: 1fr 1fr; }
}

.form-field label {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.4rem;
  color: var(--navy);
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1px solid #c5d0dc;
  border-radius: var(--radius);
  background: #fafbfc;
  color: var(--ink);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--blue-bright);
  box-shadow: 0 0 0 3px rgba(33,134,212,0.18);
  background: var(--white);
}

.form-field input[type="date"] {
  min-height: 3.05rem;
  color-scheme: light;
}

.form-note {
  font-size: 0.9rem;
  color: var(--muted);
  margin: 1rem 0;
}

.form-success {
  display: none;
  padding: 1.5rem 1.35rem;
  background: #e8f6ee;
  color: var(--navy);
  border: 1px solid rgba(31, 122, 76, 0.28);
  border-left: 4px solid var(--success);
  margin-bottom: 0;
}

.form-success[hidden] {
  display: none !important;
}

.form-success.is-visible {
  display: block;
  animation: formSuccessIn 0.45s var(--ease);
}

.form-success-title {
  margin: 0 0 0.4rem;
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--success);
}

.form-success p {
  margin: 0;
  color: var(--muted);
  font-weight: 500;
  line-height: 1.55;
}

.form-success a {
  color: var(--blue);
  font-weight: 600;
}

@keyframes formSuccessIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: none; }
}

.contact-grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 800px) {
  .contact-grid { grid-template-columns: 1fr 1.2fr; }
}

.contact-info h3 { margin-top: 1.5rem; }
.contact-info p, .contact-info a {
  color: var(--muted);
  display: block;
  margin-bottom: 0.35rem;
}

.contact-info a:hover { color: var(--blue); }

/* FAQ */
.faq-list { max-width: 820px; margin: 0 auto; }

.faq-item {
  border-bottom: 1px solid #d5dee8;
}

.faq-item summary {
  cursor: pointer;
  padding: 1.25rem 0;
  font-weight: 700;
  font-size: 1.05rem;
  list-style: none;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
  content: '+';
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--blue);
  line-height: 1;
}

.faq-item[open] summary::after { content: '?'; }

.faq-item .faq-body {
  padding: 0 0 1.35rem;
  color: var(--muted);
}

/* Footer */
/* ??? Sitewide partners marquee (above footer) ??? */
.partners-band {
  background: #fff;
  border-top: 1px solid rgba(6, 20, 40, 0.08);
  border-bottom: 1px solid rgba(6, 20, 40, 0.08);
  padding: 1.35rem 0;
  overflow: hidden;
}

.partners-marquee {
  overflow: hidden;
  width: 100%;
  mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent);
}

.partners-marquee-track {
  display: flex;
  width: max-content;
  animation: partnersMarquee 55s linear infinite;
}

.partners-marquee:hover .partners-marquee-track {
  animation-play-state: paused;
}

.partners-marquee-group {
  display: flex;
  align-items: center;
  gap: 2.75rem;
  padding-right: 2.75rem;
  flex-shrink: 0;
}

.partners-marquee-group a {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  opacity: 0.92;
  transition: opacity 0.2s var(--ease), transform 0.2s var(--ease);
}

.partners-marquee-group a:hover {
  opacity: 1;
  transform: scale(1.04);
}

.partners-marquee-group img {
  display: block;
  max-height: 52px;
  width: auto;
  max-width: 150px;
  object-fit: contain;
}

@keyframes partnersMarquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
  .partners-marquee {
    mask-image: none;
    -webkit-mask-image: none;
    overflow-x: auto;
  }

  .partners-marquee-track {
    animation: none;
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
  }

  .partners-marquee-group[aria-hidden="true"] {
    display: none;
  }

  .partners-marquee-group {
    flex-wrap: wrap;
    justify-content: center;
    padding: 0 1rem;
    gap: 1.5rem 2rem;
  }
}

.site-footer {
  background: #040d1a;
  color: rgba(255,255,255,0.72);
  padding: 4rem 0 2rem;
}

.footer-grid {
  display: grid;
  gap: 2.5rem;
  margin-bottom: 3rem;
}

@media (min-width: 700px) {
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr 1fr; }
}

.footer-brand img { height: 42px; margin-bottom: 1rem; }

.footer-brand p { font-size: 0.95rem; max-width: 32ch; }

.footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1.35rem;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.35rem;
  height: 2.35rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.78);
  transition: color 0.2s var(--ease), background 0.2s var(--ease), border-color 0.2s var(--ease);
}

.footer-social a:hover {
  color: var(--white);
  background: rgba(33, 134, 212, 0.35);
  border-color: var(--blue-bright);
}

.footer-social svg {
  width: 1.05rem;
  height: 1.05rem;
  display: block;
}

.footer-col h4 {
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 1rem;
}

.footer-col a {
  display: block;
  color: rgba(255,255,255,0.65);
  padding: 0.3rem 0;
  font-size: 0.95rem;
}

.footer-col a:hover { color: var(--white); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
  font-size: 0.88rem;
}

.footer-bottom a { color: rgba(255,255,255,0.55); }
.footer-bottom a:hover { color: var(--white); }

/* Reveal animation */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Utility */
.text-center { text-align: center; }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mb-2 { margin-bottom: 2rem; }

.prose { max-width: 72ch; }
.prose p { margin-bottom: 1rem; color: var(--muted); }
.prose strong { color: var(--ink); }
.prose h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin: 0 0 1rem;
  color: var(--navy);
}
.prose h3 {
  font-size: 1.15rem;
  margin: 1.5rem 0 0.75rem;
  color: var(--navy);
}
.prose .quote-block { color: var(--muted); }

.numbered-list {
  list-style: decimal;
  padding-left: 1.35rem;
  display: grid;
  gap: 0.85rem;
  margin: 1.25rem 0 1.75rem;
  color: var(--muted);
}

.numbered-list li::marker { color: var(--blue); font-weight: 700; }

.table-wrap {
  overflow-x: auto;
  border: 1px solid rgba(12, 35, 64, 0.12);
  background: var(--white);
}

.data-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.98rem;
}

.data-table th,
.data-table td {
  text-align: left;
  padding: 0.95rem 1.1rem;
  vertical-align: top;
  border-bottom: 1px solid rgba(12, 35, 64, 0.1);
}

.data-table th {
  background: var(--navy);
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.9rem;
}

.data-table tr:last-child td { border-bottom: 0; }

.data-table td:first-child {
  font-weight: 600;
  color: var(--navy);
  width: 38%;
}

/* Full-width content blocks (grants, notices, etc.) */
.content-block {
  width: 100%;
  max-width: none;
}

.content-block h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin: 0 0 1rem;
  color: var(--navy);
}

.content-block h3 {
  font-size: 1.15rem;
  margin: 1.75rem 0 0.75rem;
  color: var(--navy);
}

.content-block p {
  margin-bottom: 1rem;
  color: var(--muted);
  max-width: none;
}

.content-block .lede {
  color: var(--muted);
  font-size: 1.1rem;
}

.content-block .quote-block {
  margin: 1.25rem 0;
}

.content-block--center {
  text-align: center;
  max-width: 720px;
  margin-inline: auto;
}

.content-block--center h2 { color: inherit; }
.section-navy-mid .content-block h2 { color: var(--white); }
.section-navy-mid .content-block .lede { color: rgba(255,255,255,0.78); }

.product-icon-row {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 700px) {
  .product-icon-row { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1000px) {
  .product-icon-row { grid-template-columns: repeat(3, 1fr); }
}

.product-link-card {
  display: block;
  padding: 1.75rem;
  background: var(--white);
  border-top: 3px solid var(--blue);
  box-shadow: 0 8px 28px rgba(6,20,40,0.08);
  color: inherit;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
  height: 100%;
}

.product-link-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(6,20,40,0.14);
  color: inherit;
}

.product-link-card h3 { color: var(--navy); }
.product-link-card p { color: var(--muted); font-size: 0.95rem; margin-bottom: 0.85rem; }
.product-link-card .read-more { color: var(--blue); }

.badge {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.3rem 0.55rem;
  background: rgba(33,134,212,0.12);
  color: var(--blue);
  margin-bottom: 0.75rem;
}

/* About ? coalition, timeline, partners */
.coalition-block {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}

.coalition-block .term {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: var(--white);
  margin-bottom: 0.35rem;
}

.coalition-block .phonetic {
  color: var(--steel);
  font-size: 1rem;
  margin-bottom: 1.5rem;
}

.coalition-block blockquote {
  font-size: 1.12rem;
  font-style: italic;
  line-height: 1.75;
  color: rgba(255,255,255,0.85);
}

.mission-callout {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.4vw, 1.75rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 1.25;
  color: var(--navy);
  border-left: 4px solid var(--blue-bright);
  padding-left: 1.25rem;
  margin-bottom: 1.75rem;
  overflow-wrap: break-word;
}

.about-mission-copy .mission-callout,
.about-mission-copy .prose {
  max-width: 40rem;
}

.timeline {
  position: relative;
  max-width: 760px;
  margin: 0 auto;
  padding-left: 1.75rem;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 0.35rem;
  top: 0.25rem;
  bottom: 0.25rem;
  width: 2px;
  background: linear-gradient(to bottom, var(--blue-bright), rgba(33,134,212,0.2));
}

.timeline-item {
  position: relative;
  padding: 0 0 2.25rem 1.5rem;
}

.timeline-item:last-child { padding-bottom: 0; }

.timeline-item::before {
  content: '';
  position: absolute;
  left: -1.52rem;
  top: 0.35rem;
  width: 0.75rem;
  height: 0.75rem;
  border-radius: 50%;
  background: var(--blue-bright);
  box-shadow: 0 0 0 4px rgba(33,134,212,0.2);
}

.timeline-year {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 0.35rem;
}

.timeline-item h3 {
  text-transform: none;
  letter-spacing: 0;
  font-family: var(--font-body);
  font-size: 1.2rem;
  margin-bottom: 0.4rem;
}

.timeline-item p {
  color: var(--muted);
  font-size: 0.98rem;
}

.partner-track {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1.75rem 2.5rem;
}

.partner-track a,
.partner-track span {
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.85;
  transition: opacity 0.2s var(--ease), transform 0.2s var(--ease);
}

.partner-track a:hover {
  opacity: 1;
  transform: translateY(-2px);
}

.partner-track img {
  max-height: 56px;
  width: auto;
  max-width: 140px;
  object-fit: contain;
  filter: grayscale(0.15);
}

/* ??? About page ? blended atmospheres ??? */
.about-page .page-hero { display: none; }

.about-hero {
  position: relative;
  min-height: 92vh;
  min-height: 92dvh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
  padding: calc(var(--header-h) + 4rem) 0 5rem;
  color: var(--white);
  overflow: hidden;
  background: var(--navy);
}

.about-hero-layers {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.about-hero-img {
  position: absolute;
  background-size: cover;
  background-position: center;
  filter: saturate(0.9) contrast(1.05);
}

.about-hero-img--a {
  inset: 0;
  animation: aboutKen 22s var(--ease) infinite alternate;
}

.about-hero-img--b {
  width: 48%;
  height: 62%;
  right: -4%;
  bottom: -8%;
  opacity: 0.55;
  mix-blend-mode: luminosity;
  mask-image: linear-gradient(to left, #000 30%, transparent 100%);
  -webkit-mask-image: linear-gradient(to left, #000 30%, transparent 100%);
  animation: aboutFloat 16s var(--ease) infinite alternate;
}

.about-hero-img--c {
  width: 42%;
  height: 48%;
  left: -6%;
  top: 18%;
  opacity: 0.4;
  mix-blend-mode: soft-light;
  mask-image: radial-gradient(ellipse at center, #000 20%, transparent 72%);
  -webkit-mask-image: radial-gradient(ellipse at center, #000 20%, transparent 72%);
  animation: aboutFloat 19s var(--ease) infinite alternate-reverse;
}

.about-hero-veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(115deg, rgba(6,20,40,0.94) 0%, rgba(6,20,40,0.72) 45%, rgba(12,35,64,0.55) 100%),
    linear-gradient(to top, rgba(6,20,40,0.9) 0%, transparent 42%),
    radial-gradient(ellipse at 70% 20%, rgba(33,134,212,0.28), transparent 50%);
}

.about-hero-grain {
  position: absolute;
  inset: 0;
  opacity: 0.18;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  pointer-events: none;
  mix-blend-mode: overlay;
}

.about-hero-content {
  position: relative;
  z-index: 1;
  text-align: left;
  max-width: none;
}

.about-hero-content h1 {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 7vw, 5rem);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 0.95;
  margin-bottom: 1rem;
  text-shadow: 0 12px 40px rgba(0,0,0,0.35);
  max-width: 10ch;
}

.about-hero-content > p:not(.eyebrow) {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.82);
  max-width: 40ch;
}

.about-hero-scroll {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.about-hero-scroll span {
  display: block;
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.7));
  animation: aboutScrollPulse 2s ease-in-out infinite;
}

@keyframes aboutKen {
  from { transform: scale(1.05) translate(0, 0); }
  to { transform: scale(1.14) translate(-2%, -1.5%); }
}

@keyframes aboutFloat {
  from { transform: translate(0, 0) scale(1); }
  to { transform: translate(-3%, 2%) scale(1.06); }
}

@keyframes aboutScrollPulse {
  0%, 100% { opacity: 0.35; transform: scaleY(0.7); transform-origin: top; }
  50% { opacity: 1; transform: scaleY(1); }
}

.about-blend {
  position: relative;
  padding: 5.5rem 0;
  overflow: hidden;
  color: var(--white);
}

.about-blend-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.about-blend-photo {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.about-blend-photo--secondary {
  inset: auto;
  width: 55%;
  height: 70%;
  right: -8%;
  bottom: -10%;
  opacity: 0.45;
  mix-blend-mode: luminosity;
  mask-image: linear-gradient(to left, #000, transparent);
  -webkit-mask-image: linear-gradient(to left, #000, transparent);
}

.about-blend-photo--wash {
  opacity: 0.35;
  mix-blend-mode: soft-light;
  filter: blur(2px);
  transform: scale(1.08);
}

.about-blend-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(160deg, rgba(6,20,40,0.88) 0%, rgba(12,35,64,0.82) 50%, rgba(6,20,40,0.9) 100%),
    radial-gradient(ellipse at 20% 0%, rgba(33,134,212,0.22), transparent 55%);
}

.about-blend-shade--light {
  background:
    linear-gradient(115deg, rgba(232,238,245,0.94) 0%, rgba(255,255,255,0.9) 45%, rgba(232,238,245,0.88) 100%),
    linear-gradient(to right, rgba(6,20,40,0.08), transparent 40%);
}

.about-blend .container { position: relative; z-index: 1; }

.coalition-glass {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
  padding: 2.75rem 2rem;
  background: rgba(6, 20, 40, 0.45);
  border: 1px solid rgba(255,255,255,0.12);
  backdrop-filter: blur(16px);
  box-shadow: 0 30px 80px rgba(0,0,0,0.35);
}

.coalition-glass .term {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin-bottom: 0.35rem;
}

.coalition-glass .phonetic {
  color: var(--steel);
  margin-bottom: 1.5rem;
}

.coalition-glass blockquote {
  font-size: 1.12rem;
  font-style: italic;
  line-height: 1.75;
  color: rgba(255,255,255,0.88);
}

.about-mission {
  display: grid;
  gap: 0;
  background:
    radial-gradient(ellipse at 90% 10%, rgba(33,134,212,0.1), transparent 40%),
    linear-gradient(180deg, #f4f7fb 0%, #fff 100%);
  overflow: hidden;
}

.about-mission-media {
  position: relative;
  min-height: 380px;
  padding: 3rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-mission-stack {
  position: relative;
  width: min(420px, 100%);
  aspect-ratio: 1;
}

.about-mission-photo {
  position: absolute;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.about-mission-photo--back {
  inset: 8% 0 auto 8%;
  width: 78%;
  height: 70%;
  transform: rotate(-4deg);
  filter: saturate(0.85);
}

.about-mission-photo--front {
  inset: auto 4% 4% auto;
  width: 72%;
  height: 64%;
  transform: rotate(3deg);
  z-index: 1;
}

.about-mission-seal {
  position: absolute;
  width: 42%;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  filter: drop-shadow(0 18px 40px rgba(6,20,40,0.35));
  animation: aboutSeal 8s var(--ease) infinite alternate;
}

@keyframes aboutSeal {
  from { transform: translate(-50%, -50%) scale(1); }
  to { transform: translate(-50%, -52%) scale(1.04); }
}

.about-mission-copy {
  min-width: 0;
  padding: 3rem 1.5rem 4rem;
}

@media (min-width: 900px) {
  .about-mission {
    grid-template-columns: 1fr 1.05fr;
    align-items: center;
  }
  .about-mission-media {
    min-height: 640px;
    padding: 4rem;
  }
  .about-mission-copy {
    padding: 5rem 4rem 5rem 2rem;
  }
}

.about-blend--journey { color: var(--ink); }

.journey-layout {
  display: grid;
  gap: 1.5rem;
  align-items: start;
}

@media (min-width: 960px) {
  .journey-layout {
    grid-template-columns: minmax(0, 1.2fr) minmax(240px, 0.7fr);
    gap: 1.75rem;
    align-items: stretch;
  }
}

.journey-panel {
  max-width: none;
  padding: 2.5rem 1.75rem;
  background: rgba(255,255,255,0.82);
  border: 1px solid rgba(255,255,255,0.65);
  backdrop-filter: blur(18px);
  box-shadow: 0 24px 70px rgba(6,20,40,0.12);
}

.journey-panel .prose p { color: var(--muted); }
.journey-panel .prose strong { color: var(--navy); }

.journey-stack {
  display: grid;
  gap: 0.75rem;
  height: 100%;
}

.journey-stack img {
  width: 100%;
  height: 100%;
  min-height: 140px;
  object-fit: cover;
  box-shadow: 0 16px 40px rgba(6, 20, 40, 0.18);
}

@media (min-width: 960px) {
  .journey-stack {
    grid-template-rows: repeat(3, 1fr);
    gap: 0.85rem;
  }
}

@media (min-width: 700px) {
  .journey-panel { padding: 3.25rem; }
  .coalition-glass { padding: 3.25rem; }
}

.timeline--glow {
  color: var(--white);
}

.timeline--glow::before {
  background: linear-gradient(to bottom, var(--blue-glow), rgba(59,160,235,0.15));
}

.timeline--glow .timeline-item::before {
  background: var(--blue-glow);
  box-shadow: 0 0 0 4px rgba(59,160,235,0.25), 0 0 20px rgba(59,160,235,0.45);
}

.timeline--glow .timeline-year { color: var(--blue-glow); }

.timeline--glow .timeline-item h3 { color: var(--white); }

.timeline--glow .timeline-item p { color: rgba(255,255,255,0.72); }

.timeline--glow .timeline-item {
  padding: 1.15rem 1.25rem 1.15rem 1.5rem;
  margin-bottom: 1rem;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(8px);
  transition: background 0.25s var(--ease), border-color 0.25s var(--ease);
}

.timeline--glow .timeline-item:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(59,160,235,0.35);
}

.about-grid-lines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse at center, #000 20%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at center, #000 20%, transparent 75%);
  pointer-events: none;
}

.about-partners {
  position: relative;
  padding: 5rem 0;
  overflow: hidden;
  background: #f0f4f8;
}

.about-partners-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 10% 0%, rgba(33,134,212,0.12), transparent 45%),
    radial-gradient(ellipse at 90% 100%, rgba(6,20,40,0.06), transparent 40%),
    url('../images/about-bg-1.jpg') center / cover no-repeat;
  opacity: 0.18;
  mix-blend-mode: multiply;
  filter: grayscale(0.4);
}

.about-partners .container { position: relative; z-index: 1; }

.partner-track--cards {
  gap: 1rem;
}

.partner-chip {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 140px;
  min-height: 72px;
  padding: 0.65rem 0.85rem;
  background: transparent;
  border: 0;
  box-shadow: none;
  transition: transform 0.25s var(--ease), opacity 0.25s var(--ease);
}

.partner-chip:hover {
  transform: translateY(-3px);
  box-shadow: none;
  opacity: 1;
}

.partner-chip img {
  max-height: 52px;
  width: auto;
  max-width: 140px;
  object-fit: contain;
}

.about-cta {
  position: relative;
  padding: 5.5rem 0;
  overflow: hidden;
  color: var(--white);
  text-align: center;
}

.about-cta-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.about-cta-inner {
  position: relative;
  z-index: 1;
  max-width: 640px;
}

.about-cta-inner p {
  color: rgba(255,255,255,0.8);
  margin: 0 auto 1.75rem;
}

@media (prefers-reduced-motion: reduce) {
  .about-hero-img--a,
  .about-hero-img--b,
  .about-hero-img--c,
  .about-mission-seal,
  .about-hero-scroll span,
  .about-filmstrip-track {
    animation: none !important;
  }
}

/* About page ? elevated cinematic treatments */
.about-hero--pro {
  min-height: 100vh;
  min-height: 100dvh;
  padding-bottom: 6rem;
}

.about-hero-veil--deep {
  background:
    linear-gradient(105deg, rgba(4,12,24,0.96) 0%, rgba(6,20,40,0.78) 42%, rgba(6,20,40,0.35) 72%, rgba(6,20,40,0.55) 100%),
    linear-gradient(to top, rgba(4,12,24,0.92) 0%, transparent 40%),
    radial-gradient(ellipse at 75% 30%, rgba(33,134,212,0.32), transparent 45%);
}

.about-collage {
  position: absolute;
  right: 4%;
  top: 18%;
  width: min(420px, 38vw);
  height: 62%;
  display: none;
  grid-template-columns: 1fr 1fr;
  gap: 0.65rem;
  z-index: 1;
  transform: rotate(2deg);
}

.about-collage-tile {
  background-size: cover;
  background-position: center;
  box-shadow: 0 20px 50px rgba(0,0,0,0.45);
  border: 1px solid rgba(255,255,255,0.12);
}

.about-collage-tile:nth-child(1) { margin-top: 1.5rem; }
.about-collage-tile:nth-child(2) { margin-top: 0; }
.about-collage-tile:nth-child(3) { margin-top: -0.5rem; }
.about-collage-tile:nth-child(4) { margin-top: 1rem; }

@media (min-width: 980px) {
  .about-collage { display: grid; }
}

.about-hero-lead {
  font-size: 1.18rem !important;
  max-width: 36ch !important;
  line-height: 1.55;
}

.about-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.75rem;
}

.about-hero-meta {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  border-top: 1px solid rgba(255,255,255,0.1);
  background: rgba(4,12,24,0.55);
  backdrop-filter: blur(10px);
}

.about-hero-meta-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
}

.about-hero-meta span {
  flex: 1;
  min-width: 120px;
  padding: 1rem 1.25rem 1rem 0;
  font-family: var(--font-display);
  font-size: 0.95rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  border-right: 1px solid rgba(255,255,255,0.08);
  text-align: left;
}

.about-hero-meta span:last-child { border-right: 0; }

.about-filmstrip {
  overflow: hidden;
  background: var(--navy);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.about-filmstrip-track {
  display: flex;
  gap: 0.5rem;
  width: max-content;
  padding: 0.5rem 0;
  animation: aboutFilm 40s linear infinite;
}

.about-filmstrip-item {
  width: 220px;
  height: 110px;
  background-size: cover;
  background-position: center;
  flex-shrink: 0;
  filter: saturate(0.85) brightness(0.9);
  opacity: 0.85;
}

@keyframes aboutFilm {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.about-mission--pro {
  grid-template-columns: 1fr;
}

@media (min-width: 900px) {
  .about-mission--pro {
    grid-template-columns: 0.95fr 1.05fr;
    align-items: start;
  }
  .about-mission-sticky {
    position: sticky;
    top: calc(var(--header-h) + 1rem);
  }
}

.timeline-rail {
  display: grid;
  gap: 1rem;
}

@media (min-width: 760px) {
  .timeline-rail { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1100px) {
  .timeline-rail { grid-template-columns: repeat(4, 1fr); }
}

.timeline-card {
  padding: 1.35rem 1.25rem 1.5rem;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
  min-height: 100%;
  transition: transform 0.25s var(--ease), border-color 0.25s var(--ease), background 0.25s var(--ease);
}

.timeline-card:hover {
  transform: translateY(-4px);
  border-color: rgba(59,160,235,0.45);
  background: rgba(255,255,255,0.09);
}

.timeline-big {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 800;
  line-height: 1;
  color: var(--blue-glow);
  margin-bottom: 0.65rem;
  letter-spacing: 0.02em;
}

.timeline-card h3 {
  color: #fff;
  font-size: 1.1rem;
  margin-bottom: 0.45rem;
}

.timeline-card p:not(.timeline-big) {
  color: rgba(255,255,255,0.7);
  font-size: 0.92rem;
}

/* ??? Modal ??? */
.modal[hidden] { display: none !important; }

.modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(4, 12, 24, 0.72);
  backdrop-filter: blur(8px);
  animation: modalFade 0.28s var(--ease);
}

.modal-panel {
  position: relative;
  z-index: 1;
  width: min(760px, 100%);
  max-height: min(88vh, 900px);
  background:
    radial-gradient(ellipse at top right, rgba(33,134,212,0.12), transparent 45%),
    linear-gradient(180deg, #0c2340 0%, #061428 100%);
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: 0 30px 80px rgba(0,0,0,0.45);
  overflow: hidden;
  animation: modalRise 0.35s var(--ease);
}

.modal-scroll {
  max-height: min(88vh, 900px);
  overflow-y: auto;
  padding: 2rem 1.5rem 1.75rem;
  scrollbar-width: thin;
  scrollbar-color: rgba(255,255,255,0.25) transparent;
}

@media (min-width: 700px) {
  .modal-scroll { padding: 2.5rem 2.5rem 2rem; }
}

.modal-close {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  z-index: 2;
  width: 2.5rem;
  height: 2.5rem;
  border: 1px solid rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.06);
  color: var(--white);
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s var(--ease);
}

.modal-close:hover {
  background: rgba(255,255,255,0.14);
}

.modal-header { padding-right: 2.5rem; margin-bottom: 1.25rem; }

.modal-term {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 1;
  margin-bottom: 0.35rem;
}

.modal-phonetic {
  color: var(--steel);
  font-size: 1rem;
}

.modal-quote {
  font-size: 1.08rem;
  font-style: italic;
  line-height: 1.7;
  color: rgba(255,255,255,0.88);
  border-left: 3px solid var(--blue-bright);
  padding-left: 1.15rem;
  margin: 0 0 1.75rem;
}

.modal-divider {
  height: 1px;
  background: linear-gradient(to right, rgba(59,160,235,0.5), transparent);
  margin-bottom: 1.75rem;
}

.modal-subhead,
.prose h3.modal-subhead,
.modal-body.prose .modal-subhead {
  font-family: var(--font-display);
  font-size: 1.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin: 0.35rem 0 1rem;
  color: var(--white);
}

.modal-body.prose p {
  color: rgba(255,255,255,0.78);
}

.modal-body.prose strong { color: var(--white); }

.modal-highlight {
  margin-top: 1.25rem !important;
  padding: 1rem 1.15rem;
  background: rgba(33,134,212,0.18);
  border: 1px solid rgba(59,160,235,0.35);
}

.modal-footer {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.75rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.modal-footer .btn-outline {
  color: var(--white);
  border-color: rgba(255,255,255,0.45);
}

.modal-footer .btn-outline:hover {
  background: rgba(255,255,255,0.1);
  color: var(--white);
}

body.modal-open { overflow: hidden; }

@keyframes modalFade {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes modalRise {
  from { opacity: 0; transform: translateY(18px) scale(0.98); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.modal-panel--video {
  width: min(960px, 100%);
  max-height: none;
  background: #000;
  padding: 0;
  border-color: rgba(255,255,255,0.18);
}

.modal--video .modal-close {
  top: 0.5rem;
  right: 0.5rem;
  background: rgba(0,0,0,0.55);
}

.video-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000;
}

.video-frame video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #000;
}

.legal-doc h2 {
  margin-top: 2rem;
  font-size: 1.35rem;
}

.legal-doc p { margin-bottom: 1rem; }

.video-library {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 700px) {
  .video-library { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1100px) {
  .video-library { grid-template-columns: repeat(3, 1fr); }
}

.video-card {
  background: var(--white);
  border: 1px solid #d8e0ea;
  overflow: hidden;
}

.video-card .video-frame {
  aspect-ratio: 16 / 9;
}

.video-card h3 {
  font-size: 1.15rem;
  margin: 1rem 1rem 0.35rem;
  text-transform: none;
  letter-spacing: 0;
  font-family: var(--font-body);
}

.video-card p {
  margin: 0 1rem 1rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.news-item h3 a {
  color: inherit;
  text-decoration: none;
}

.news-item h3 a:hover { color: var(--blue); }

.news-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.75rem;
}

.news-count {
  color: var(--muted);
  font-size: 0.95rem;
  margin: 0;
}

.news-search-label { flex: 1; max-width: 320px; }

.news-search-label input {
  width: 100%;
  padding: 0.7rem 0.9rem;
  border: 1px solid #c5d0dc;
  border-radius: 4px;
  background: #fff;
}

.article-page .section {
  padding: 3.25rem 0 4.5rem;
}

.article-layout.container,
.container.article-layout {
  width: min(760px, calc(100% - 3rem));
  max-width: 760px;
  margin-inline: auto;
}

.article-layout .prose,
.article-body {
  max-width: none;
  width: auto;
}

.article-featured {
  margin: 0 0 2rem;
  overflow: hidden;
  border-radius: 2px;
  background: var(--fog);
}

.article-featured img {
  display: block;
  width: 100%;
  max-height: 420px;
  object-fit: cover;
}

.article-body {
  font-size: 1.05rem;
  line-height: 1.75;
}

.article-body img {
  display: block;
  margin: 1.5rem 0;
  border-radius: 2px;
  max-width: 100%;
  height: auto;
}

.article-body iframe,
.article-body video {
  display: block;
  max-width: 100%;
  width: 100%;
  margin: 1.5rem 0;
}

.article-body p {
  max-width: none;
  margin-bottom: 1.15rem;
}

.article-body ul,
.article-body ol {
  margin: 0 0 1.15rem;
  padding-left: 1.35rem;
  color: var(--muted);
  list-style: disc;
}

.article-body ol {
  list-style: decimal;
}

.article-body li {
  margin-bottom: 0.4rem;
}

.article-body a {
  word-break: break-word;
}

.article-hero .container {
  width: min(760px, calc(100% - 3rem));
}

.article-hero h1 {
  max-width: none;
  text-wrap: balance;
}

.article-hero .news-date {
  margin-bottom: 0.65rem;
}

@media (max-width: 600px) {
  .article-layout.container,
  .container.article-layout,
  .article-hero .container {
    width: calc(100% - 2rem);
  }

  .article-page .section {
    padding: 2rem 0 3rem;
  }

  .article-featured img {
    max-height: 260px;
  }
}

.coalition-glass {
  position: relative;
  overflow: hidden;
}

.coalition-glass::before {
  content: '';
  position: absolute;
  inset: -40% auto auto -20%;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(33,134,212,0.35), transparent 70%);
  pointer-events: none;
}

.journey-panel {
  position: relative;
  overflow: hidden;
}

.journey-panel::after {
  content: '';
  position: absolute;
  right: -80px;
  bottom: -80px;
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, rgba(33,134,212,0.12), transparent 70%);
  pointer-events: none;
}

/* ??? Support Plans (password-gated) ??? */
.pw-gate {
  min-height: calc(100vh - var(--header-h));
  display: flex;
  align-items: center;
  justify-content: center;
  padding: calc(var(--header-h) + 3rem) 1.25rem 4rem;
  background:
    radial-gradient(ellipse at 30% 20%, rgba(33,134,212,0.22), transparent 50%),
    linear-gradient(160deg, var(--navy) 0%, var(--navy-mid) 100%);
  color: var(--white);
}

.pw-card {
  width: min(420px, 100%);
  padding: 2.25rem;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.14);
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow);
}

.pw-card h1 {
  font-family: var(--font-display);
  font-size: 2rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin-bottom: 0.65rem;
}

.pw-card p {
  color: rgba(255,255,255,0.72);
  margin-bottom: 1.5rem;
  font-size: 0.98rem;
}

.pw-card .form-field label { color: rgba(255,255,255,0.85); }

.pw-card input {
  background: rgba(255,255,255,0.95);
}

.pw-error {
  display: none;
  color: #ffb4b4;
  font-size: 0.9rem;
  margin: 0.75rem 0 0;
  font-weight: 600;
}

.pw-error.is-visible { display: block; }

.plans-locked #plans-content { display: none; }
.plans-unlocked .pw-gate { display: none; }
.plans-unlocked #plans-content { display: block; }

.plans-hero {
  padding: calc(var(--header-h) + 3rem) 0 2.5rem;
  background:
    radial-gradient(ellipse at top right, rgba(33,134,212,0.25), transparent 50%),
    linear-gradient(160deg, var(--navy) 0%, var(--navy-mid) 100%);
  color: var(--white);
}

.plans-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 1.05;
  margin-bottom: 0.85rem;
}

.plans-hero p { max-width: 62ch; color: rgba(255,255,255,0.78); }

.plans-banner {
  display: inline-block;
  margin-top: 1.25rem;
  padding: 0.55rem 1rem;
  background: rgba(33,134,212,0.25);
  border: 1px solid rgba(59,160,235,0.45);
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--blue-glow);
}

.plan-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin: 2rem 0 1.75rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #d5dee8;
}

.plan-tab {
  appearance: none;
  border: 1px solid #c5d0dc;
  background: var(--white);
  color: var(--navy);
  padding: 0.55rem 0.9rem;
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: var(--radius);
  transition: all 0.2s var(--ease);
}

.plan-tab:hover { border-color: var(--blue); color: var(--blue); }

.plan-tab.is-active {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white);
}

.plan-panel { display: none; }
.plan-panel.is-active { display: block; }

.pricing-grid {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 700px) {
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1100px) {
  .pricing-grid { grid-template-columns: repeat(4, 1fr); }
}

.price-card {
  background: var(--white);
  border: 1px solid #d8e0ea;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
}

.price-card:hover {
  border-color: var(--blue-bright);
  box-shadow: 0 14px 36px rgba(6,20,40,0.1);
}

.price-card .level {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--navy);
  margin-bottom: 0.35rem;
}

.price-card .size {
  font-size: 0.88rem;
  color: var(--muted);
  margin-bottom: 1rem;
  min-height: 2.6em;
}

.price-card .amount {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  color: var(--blue);
  line-height: 1;
  margin-bottom: 0.25rem;
}

.price-card .amount span {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--muted);
}

.price-card .yearly {
  font-size: 0.88rem;
  color: var(--muted);
  margin-bottom: 1rem;
}

.price-card ul {
  flex: 1;
  margin-bottom: 1.25rem;
  display: grid;
  gap: 0.4rem;
}

.price-card li {
  position: relative;
  padding-left: 1.15rem;
  font-size: 0.9rem;
  color: var(--ink);
}

.price-card li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.4rem;
  width: 0.45rem;
  height: 0.45rem;
  background: var(--blue-bright);
  transform: rotate(45deg);
}

.price-card .addon {
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 1rem;
  font-style: italic;
}

.plans-note {
  font-size: 0.92rem;
  color: var(--muted);
  max-width: 90ch;
  margin-top: 1.5rem;
}

.coverage-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
}

.coverage-table th,
.coverage-table td {
  text-align: left;
  padding: 0.75rem 0.85rem;
  border-bottom: 1px solid #d8e0ea;
}

.coverage-table th {
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.coverage-table td:last-child {
  text-align: center;
  color: var(--blue);
  font-weight: 700;
  width: 5rem;
}

.feature-spotlight {
  display: grid;
  gap: 1rem;
}

@media (min-width: 800px) {
  .feature-spotlight { grid-template-columns: repeat(3, 1fr); }
}

.feature-spotlight .feature {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 1.25rem;
}

/* ??? OPS CONNECT App Download (standalone) ??? */
.app-download-page .appdl-advisement {
  padding: calc(var(--header-h) + 0.85rem) 0 0.85rem;
  background: #0a1a30;
  color: rgba(255,255,255,0.88);
  font-size: 0.95rem;
  line-height: 1.45;
  border-bottom: 1px solid rgba(59,160,235,0.35);
}

.app-download-page .appdl-advisement strong {
  color: var(--blue-glow);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 0.82rem;
  margin-right: 0.35rem;
}

.appdl-hero {
  position: relative;
  min-height: min(92vh, 820px);
  display: flex;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  background: var(--navy);
}

.appdl-hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 70% 20%, rgba(33,134,212,0.35), transparent 50%),
    radial-gradient(ellipse at 10% 90%, rgba(6,20,40,0.9), transparent 45%),
    linear-gradient(160deg, #04101f 0%, var(--navy-mid) 55%, #0a2038 100%),
    url('../images/product-2.jpg') right center / cover no-repeat;
  background-blend-mode: normal, normal, normal, soft-light;
  opacity: 1;
}

.appdl-hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(4,16,31,0.96) 0%, rgba(4,16,31,0.78) 48%, rgba(4,16,31,0.45) 100%);
}

.appdl-hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 2.5rem;
  align-items: center;
  padding: 3.5rem 0 4rem;
}

@media (min-width: 900px) {
  .appdl-hero-inner {
    grid-template-columns: 1.1fr 0.9fr;
    gap: 3rem;
  }
}

.appdl-shield {
  width: 56px;
  height: auto;
  margin-bottom: 1rem;
  filter: drop-shadow(0 8px 20px rgba(0,0,0,0.35));
  animation: appdlRise 0.9s var(--ease) both;
}

.appdl-brand {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 6vw, 4.4rem);
  font-weight: 800;
  letter-spacing: 0.03em;
  line-height: 0.95;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 0.65rem;
  animation: appdlRise 0.9s var(--ease) 0.08s both;
}

.appdl-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 3vw, 2.15rem);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--blue-glow);
  margin-bottom: 1rem;
  animation: appdlRise 0.9s var(--ease) 0.14s both;
}

.appdl-lede {
  max-width: 36rem;
  font-size: 1.12rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.78);
  margin-bottom: 0.85rem;
  animation: appdlRise 0.9s var(--ease) 0.2s both;
}

.appdl-availability {
  color: rgba(255,255,255,0.55);
  font-size: 0.95rem;
  margin-bottom: 1.75rem;
  animation: appdlRise 0.9s var(--ease) 0.24s both;
}

.appdl-availability a {
  color: var(--blue-glow);
}

.appdl-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  animation: appdlRise 0.9s var(--ease) 0.3s both;
}

.appdl-hero .btn-ghost {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.35);
}

.appdl-hero .btn-ghost:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.55);
  color: var(--white);
}

.appdl-hero-visual {
  display: flex;
  justify-content: center;
  animation: appdlFloat 5.5s ease-in-out infinite;
}

.appdl-hero-visual img {
  width: min(320px, 70vw);
  height: auto;
  filter: drop-shadow(0 30px 50px rgba(0,0,0,0.45));
}

@keyframes appdlRise {
  from { opacity: 0; transform: translateY(22px); }
  to { opacity: 1; transform: none; }
}

@keyframes appdlFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

.appdl-why {
  background: #fff;
}

.appdl-features {
  display: grid;
  gap: 2rem 2.5rem;
  margin-top: 2.5rem;
}

@media (min-width: 700px) {
  .appdl-features { grid-template-columns: 1fr 1fr; }
}

.appdl-feature {
  padding-top: 1.25rem;
  border-top: 2px solid var(--fog);
}

.appdl-feature-icon {
  display: inline-flex;
  width: 2.4rem;
  height: 2.4rem;
  color: var(--blue);
  margin-bottom: 0.85rem;
}

.appdl-feature-icon svg {
  width: 100%;
  height: 100%;
}

.appdl-feature h3 {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 0.5rem;
}

.appdl-feature p {
  color: var(--muted);
  line-height: 1.6;
}

.appdl-note {
  max-width: 720px;
  margin: 0 auto 2.75rem;
  padding: 1rem 1.25rem;
  background: rgba(201, 162, 39, 0.12);
  border-left: 3px solid var(--accent);
  color: var(--navy);
  font-size: 0.98rem;
  line-height: 1.5;
}

.appdl-stores {
  display: flex;
  flex-direction: column;
  gap: 4rem;
}

.appdl-store {
  display: grid;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 860px) {
  .appdl-store {
    grid-template-columns: 0.85fr 1.15fr;
    gap: 3.5rem;
  }

  .appdl-store--flip .appdl-store-visual { order: 2; }
  .appdl-store--flip .appdl-store-copy { order: 1; }
}

.appdl-store-visual {
  display: flex;
  justify-content: center;
}

.appdl-store-visual img {
  width: min(260px, 55vw);
  height: auto;
  filter: drop-shadow(0 24px 40px rgba(6,20,40,0.18));
}

.appdl-store-copy h3 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: var(--navy);
  margin: 0.25rem 0 0.85rem;
}

.appdl-store-copy > p {
  color: var(--muted);
  max-width: 38rem;
  margin-bottom: 1.25rem;
  line-height: 1.6;
}

.appdl-meta {
  list-style: none;
  margin: 0 0 1.5rem;
  padding: 0;
  display: grid;
  gap: 0.45rem;
}

.appdl-meta li {
  display: grid;
  grid-template-columns: 7rem 1fr;
  gap: 0.75rem;
  font-size: 0.95rem;
  color: var(--ink);
}

.appdl-meta span {
  color: var(--muted);
  font-weight: 600;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.store-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.7rem 1.25rem 0.7rem 1rem;
  border-radius: 10px;
  text-decoration: none;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}

.store-btn:hover {
  transform: translateY(-2px);
  color: inherit;
}

.store-btn span {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.store-btn small {
  font-size: 0.72rem;
  opacity: 0.85;
}

.store-btn strong {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.store-btn--apple {
  background: #111;
  color: #fff;
  box-shadow: 0 12px 28px rgba(0,0,0,0.22);
}

.store-btn--apple:hover {
  color: #fff;
  box-shadow: 0 16px 36px rgba(0,0,0,0.3);
}

.store-btn--google {
  background: #fff;
  color: #202124;
  border: 1px solid #dadce0;
  box-shadow: 0 12px 28px rgba(6,20,40,0.12);
}

.store-btn--google:hover {
  color: #202124;
}

.appdl-mobile-hint {
  margin-top: 0.85rem !important;
  font-size: 0.88rem !important;
  color: var(--steel) !important;
}

.appdl-compat {
  background: var(--navy);
  color: var(--white);
}

.appdl-compat .eyebrow { color: var(--blue-glow); }

.appdl-compat h2 {
  color: var(--white);
  margin-bottom: 1.25rem;
}

.appdl-compat-grid {
  display: grid;
  gap: 2.5rem;
}

@media (min-width: 800px) {
  .appdl-compat-grid { grid-template-columns: 1fr 1fr; gap: 3.5rem; }
}

.appdl-compat .check-list li {
  color: rgba(255,255,255,0.78);
}

.appdl-compat .check-list li::before {
  color: var(--blue-glow);
}

.appdl-about {
  margin-top: 1.25rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.6;
  max-width: 36rem;
}

@media (prefers-reduced-motion: reduce) {
  .appdl-shield,
  .appdl-brand,
  .appdl-hero h1,
  .appdl-lede,
  .appdl-availability,
  .appdl-hero-actions,
  .appdl-hero-visual {
    animation: none;
  }
}

/* ??? Technology page ??? */
.tech-hero {
  position: relative;
  isolation: isolate;
  padding: calc(var(--header-h) + 4.5rem) 0 4.25rem;
  color: var(--white);
  overflow: hidden;
}

.tech-hero-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  background-color: var(--navy);
  background-image:
    linear-gradient(
      105deg,
      rgba(4, 16, 31, 0.97) 0%,
      rgba(6, 20, 40, 0.92) 38%,
      rgba(6, 20, 40, 0.72) 62%,
      rgba(12, 35, 64, 0.55) 100%
    ),
    radial-gradient(ellipse 70% 60% at 85% 15%, rgba(33, 134, 212, 0.22), transparent 55%),
    url('../images/product-4.jpg');
  background-size: cover, auto, cover;
  background-position: center, center, center right;
  background-repeat: no-repeat;
  transform: scale(1.02);
  animation: techBgDrift 22s ease-in-out infinite alternate;
}

.tech-hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(59, 160, 235, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(59, 160, 235, 0.06) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 75% 70% at 70% 40%, #000 15%, transparent 75%);
  animation: techGridDrift 28s linear infinite;
  pointer-events: none;
}

.tech-hero-bg::after {
  content: '';
  position: absolute;
  width: min(520px, 70vw);
  height: min(520px, 70vw);
  right: -4%;
  top: 18%;
  border: 1px solid rgba(59, 160, 235, 0.16);
  border-radius: 50%;
  box-shadow:
    inset 0 0 0 1px rgba(59, 160, 235, 0.06),
    0 0 0 36px rgba(59, 160, 235, 0.03);
  animation: techPulse 6s var(--ease) infinite;
  pointer-events: none;
}

@keyframes techBgDrift {
  from { transform: scale(1.02) translate3d(0, 0, 0); }
  to { transform: scale(1.06) translate3d(-1.2%, 0.6%, 0); }
}

@keyframes techGridDrift {
  from { transform: translate3d(0, 0, 0); }
  to { transform: translate3d(-48px, -48px, 0); }
}

@keyframes techPulse {
  0%, 100% { opacity: 0.55; transform: scale(1); }
  50% { opacity: 0.95; transform: scale(1.04); }
}

.tech-hero .eyebrow {
  color: var(--blue-glow);
  margin-bottom: 1rem;
}

.tech-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 6vw, 4.2rem);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 0.98;
  margin-bottom: 1.15rem;
  max-width: 18ch;
}

.tech-hero-lede {
  max-width: 48ch;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.15rem;
  line-height: 1.65;
  margin-bottom: 1.75rem;
}

.tech-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.tech-credentials {
  background: var(--navy);
  border-block: 1px solid rgba(255, 255, 255, 0.08);
  padding: 0;
}

.tech-cred-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}

@media (min-width: 700px) {
  .tech-cred-row { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1000px) {
  .tech-cred-row { grid-template-columns: repeat(4, 1fr); }
}

.tech-cred {
  padding: 1.35rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: grid;
  gap: 0.25rem;
}

@media (min-width: 700px) {
  .tech-cred {
    border-top: 0;
    padding: 1.6rem 1.25rem 1.6rem 0;
    border-right: 1px solid rgba(255, 255, 255, 0.08);
  }
  .tech-cred:nth-child(2n) { border-right: 0; padding-right: 0; }
}

@media (min-width: 1000px) {
  .tech-cred {
    border-right: 1px solid rgba(255, 255, 255, 0.08);
    padding: 1.75rem 1.5rem 1.75rem 0;
  }
  .tech-cred:nth-child(2n) { border-right: 1px solid rgba(255, 255, 255, 0.08); }
  .tech-cred:last-child { border-right: 0; padding-right: 0; }
}

.tech-cred-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue-glow);
}

.tech-cred strong {
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--white);
  line-height: 1.15;
}

.tech-pillars .feature {
  border-top-color: var(--blue-bright);
}

.tech-pillar-kicker {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 0.55rem;
}

.tech-lockdown {
  position: relative;
  overflow: hidden;
}

.tech-lockdown::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 0% 50%, rgba(33, 134, 212, 0.18), transparent 45%);
  pointer-events: none;
}

.tech-lockdown .container { position: relative; }

.tech-lockdown-grid {
  display: grid;
  gap: 2.5rem;
}

@media (min-width: 900px) {
  .tech-lockdown-grid {
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: 3.5rem;
    align-items: start;
  }
}

.tech-lockdown h2 {
  color: var(--white);
  margin-bottom: 0.85rem;
}

.tech-lockdown-lede {
  color: rgba(255, 255, 255, 0.72);
  max-width: 38ch;
  font-size: 1.05rem;
}

.tech-gate {
  display: grid;
  gap: 1.75rem;
}

@media (min-width: 640px) {
  .tech-gate { grid-template-columns: 1fr 1fr; gap: 2rem; }
}

.tech-gate-col h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 1rem;
  padding-bottom: 0.65rem;
  border-bottom: 2px solid currentColor;
}

.tech-gate-col--in h3 { color: #7dcea0; border-color: rgba(125, 206, 160, 0.45); }
.tech-gate-col--out h3 { color: #e8a0a0; border-color: rgba(232, 160, 160, 0.4); }

.tech-gate .check-list { margin: 0; }
.tech-gate .check-list li { color: rgba(255, 255, 255, 0.82); }
.tech-gate-col--in .check-list li::before { background: #7dcea0; }

.tech-deny-list {
  display: grid;
  gap: 0.65rem;
}

.tech-deny-list li {
  position: relative;
  padding-left: 1.5rem;
  color: rgba(255, 255, 255, 0.72);
}

.tech-deny-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.7rem;
  width: 0.7rem;
  height: 2px;
  background: #e8a0a0;
}

.tech-infra-lede {
  color: var(--muted);
  max-width: 42ch;
  margin-bottom: 0.5rem;
}

.tech-infra-panel {
  display: flex;
  align-items: center;
}

.tech-infra-visual {
  position: relative;
  width: 100%;
}

.tech-infra-visual img {
  width: 100%;
  height: auto;
  object-fit: cover;
  filter: saturate(0.9) contrast(1.05);
}

.tech-infra-badge {
  position: absolute;
  left: 0;
  bottom: 0;
  padding: 1rem 1.25rem;
  background: var(--navy);
  color: var(--white);
  display: grid;
  gap: 0.15rem;
  min-width: min(100%, 220px);
}

.tech-infra-badge span {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue-glow);
}

.tech-infra-badge strong {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  line-height: 1;
}

.tech-promise {
  padding-block: 4.5rem;
  background:
    linear-gradient(180deg, #f4f7fb 0%, #fff 100%);
}

.tech-promise-inner {
  max-width: 720px;
  border-left: 4px solid var(--blue-bright);
  padding-left: 1.5rem;
}

.tech-promise-quote {
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 3vw, 2rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 1.2;
  color: var(--navy);
  margin: 0.75rem 0 1rem;
}

.tech-promise-note {
  color: var(--muted);
  font-size: 1.02rem;
}

@media (prefers-reduced-motion: reduce) {
  .tech-hero-bg,
  .tech-hero-bg::before,
  .tech-hero-bg::after {
    animation: none;
  }
}
