@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800;900&display=swap");

@font-face {
  font-family: "TT Firs Neue Trial";
  src: url("../fonts/TT_Firs_Neue_Trial_ExtraLight.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "NewYork Mediyatics";
  src: url("../fonts/NewYork-Personal-Use.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  --primary-navy: #022260;
  --deep-navy: #011638;
  --dark-bg: #07162f;
  --royal-blue: #1f65e8;
  --soft-blue: #eaf1ff;
  --soft-bg: #f5f7fa;
  --white: #ffffff;
  --text: #101828;
  --secondary: #596579;
  --border: #dde3ec;
  --muted-bg: #eef2f7;
  --title-font: "NewYork Mediyatics", "Poppins", Arial, sans-serif;
  --heading-font: "Poppins", Arial, sans-serif;
  --body-font: "Poppins", Arial, sans-serif;
  --detail-font: "TT Firs Neue Trial", "Poppins", Arial, sans-serif;
  --container: 1360px;
  --text-width: 680px;
  --ease: cubic-bezier(0.2, 0.7, 0.2, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--text);
  background: var(--white);
  font-family: var(--body-font);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.65;
  overflow-x: hidden;
}
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, input, textarea, select { font: inherit; }
:focus-visible { outline: 3px solid rgba(31, 101, 232, 0.35); outline-offset: 4px; }
.skip-link {
  position: fixed;
  left: 24px;
  top: -80px;
  z-index: 999;
  padding: 12px 16px;
  color: var(--white);
  background: var(--primary-navy);
  border-radius: 10px;
}
.skip-link:focus { top: 18px; }
.container {
  width: min(var(--container), calc(100% - 48px));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 90;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.58), rgba(255, 255, 255, 0.30));
  border-bottom: 1px solid rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(34px) saturate(190%);
  -webkit-backdrop-filter: blur(34px) saturate(190%);
  box-shadow: 0 18px 70px rgba(1, 22, 56, 0.12);
  transition: box-shadow 0.25s var(--ease), background 0.25s var(--ease);
}
.site-header::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(31, 101, 232, 0.3), transparent);
  pointer-events: none;
}
.site-header.is-scrolled {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.68), rgba(255, 255, 255, 0.38));
  box-shadow: 0 20px 82px rgba(1, 22, 56, 0.15);
}
.nav-shell {
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  width: 100%;
  padding-inline: clamp(24px, 4vw, 64px);
  background: rgba(255, 255, 255, 0.24);
}
.site-header.is-scrolled .nav-shell { min-height: 72px; }
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 210px;
  color: var(--primary-navy);
}
.brand img {
  width: 206px;
  height: auto;
  object-fit: contain;
  border-radius: 0;
  background: transparent;
}
.brand strong {
  display: none;
  color: var(--primary-navy);
  font-family: var(--heading-font);
  font-size: 27px;
  line-height: 0.9;
}
.brand small {
  display: none;
  margin-top: 4px;
  color: var(--secondary);
  font-size: 11px;
  letter-spacing: 0.02em;
}
.brand > span,
.brand-text {
  display: none !important;
}
.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  color: #22314a;
  font-size: 14px;
  font-weight: 600;
  font-family: var(--heading-font);
}
.nav-links > a,
.nav-dropdown > a {
  position: relative;
  padding: 30px 0;
}
.nav-links a:hover,
.nav-links a.active,
.nav-dropdown:hover > a { color: var(--primary-navy); }
.nav-links > a::after,
.nav-dropdown > a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 23px;
  height: 2px;
  background: var(--royal-blue);
  transition: right 0.25s var(--ease);
}
.nav-links > a:hover::after,
.nav-links > a.active::after,
.nav-dropdown:hover > a::after { right: 0; }
.nav-dropdown { position: relative; }
.dropdown-menu {
  position: absolute;
  top: 78px;
  left: 50%;
  width: 285px;
  padding: 12px;
  visibility: hidden;
  opacity: 0;
  transform: translate(-50%, 10px);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  box-shadow: 0 28px 70px rgba(1, 22, 56, 0.14);
  transition: opacity 0.2s var(--ease), transform 0.2s var(--ease), visibility 0.2s;
}
.nav-dropdown:hover .dropdown-menu,
.nav-dropdown:focus-within .dropdown-menu {
  visibility: visible;
  opacity: 1;
  transform: translate(-50%, 0);
}
.dropdown-menu a {
  display: block;
  padding: 10px 12px;
  border-radius: 8px;
  color: var(--secondary);
  font-size: 14px;
}
.dropdown-menu a:hover { color: var(--primary-navy); background: var(--soft-bg); }
.nav-actions { display: flex; align-items: center; gap: 12px; }
.btn {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 14px 22px;
  border-radius: 10px;
  border: 1px solid transparent;
  font-size: 14px;
  font-weight: 700;
  font-family: var(--heading-font);
  line-height: 1.2;
  cursor: pointer;
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease), background 0.2s var(--ease), color 0.2s var(--ease);
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 16px 32px rgba(1, 22, 56, 0.13); }
.btn-primary { color: var(--white); background: var(--primary-navy); }
.btn-primary:hover { background: var(--deep-navy); }
.btn-secondary { color: var(--primary-navy); background: transparent; border-color: rgba(2, 34, 96, 0.32); }
.btn-secondary:hover { color: var(--white); background: var(--primary-navy); }
.btn-light { color: var(--primary-navy); background: var(--white); }
.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: var(--white);
  cursor: pointer;
}
.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--primary-navy);
  transition: transform 0.25s var(--ease);
}
.menu-toggle[aria-expanded="true"] span:first-child { transform: translateY(3.5px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:last-child { transform: translateY(-3.5px) rotate(-45deg); }
.mobile-panel {
  display: none;
  position: fixed;
  inset: 74px 18px auto;
  z-index: 95;
  padding: 26px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  box-shadow: 0 28px 70px rgba(1, 22, 56, 0.18);
}
.mobile-panel.is-open { display: block; }
.mobile-panel nav { display: grid; gap: 14px; margin-bottom: 22px; }
.mobile-panel a { color: var(--primary-navy); font-weight: 700; }

h1, h2 {
  margin: 0;
  color: var(--text);
  font-family: var(--title-font);
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0;
}
h1 { font-size: clamp(46px, 5.9vw, 82px); max-width: 1040px; }
h2 { font-size: clamp(34px, 4vw, 56px); }
h3 {
  margin: 0;
  color: var(--text);
  font-family: var(--heading-font);
  font-size: clamp(22px, 1.7vw, 30px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: 0;
}
p { margin: 0; color: var(--secondary); }
p,
li,
.hero-description,
.editorial-copy,
.service-card p,
.model-flow p,
.command-map article p,
.blueprint-list p,
.why-block p,
.insight-preview span {
  font-family: var(--body-font);
  font-weight: 400;
}
.home-section { padding: 66px 0; }
.eyebrow {
  margin-bottom: 18px;
  color: var(--royal-blue);
  font-size: 14px;
  font-weight: 700;
  font-family: var(--heading-font);
}
.button-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.supporting-line {
  max-width: 680px;
  margin-top: 24px;
  color: var(--primary-navy);
  font-size: 15px;
  font-weight: 600;
  font-family: var(--heading-font);
}
.text-link {
  display: inline-flex;
  margin-top: 28px;
  color: var(--primary-navy);
  font-size: 15px;
  font-weight: 800;
  font-family: var(--heading-font);
}
.text-link::after { content: "→"; margin-left: 8px; transition: transform 0.2s; }
.text-link:hover::after { transform: translateX(4px); }

.hero-section {
  position: relative;
  min-height: 610px;
  display: grid;
  align-items: center;
  padding: 70px 0 58px;
  overflow: hidden;
  color: var(--white);
  background: var(--deep-navy);
}
.hero-slider,
.hero-slide,
.hero-overlay {
  position: absolute;
  inset: 0;
}
.hero-slide {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0;
  transform: scale(1.04);
  transition: opacity 1s var(--ease), transform 7s linear;
}
.hero-slide.is-active {
  opacity: 1;
  transform: scale(1);
}
.hero-overlay {
  background:
    linear-gradient(90deg, rgba(1, 22, 56, 0.78) 0%, rgba(1, 22, 56, 0.46) 50%, rgba(1, 22, 56, 0.12) 100%),
    linear-gradient(180deg, rgba(1, 22, 56, 0.08), rgba(1, 22, 56, 0.42));
}
.hero-overlay::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.075) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.075) 1px, transparent 1px);
  background-size: 76px 76px;
  opacity: 0.28;
}
.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 24px;
}
.hero-description {
  max-width: 680px;
  margin-top: 16px;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(17px, 1.25vw, 20px);
}
.hero-section h1 {
  max-width: 860px;
  font-size: clamp(44px, 4.9vw, 70px);
  line-height: 1.06;
}
.hero-section h1,
.hero-section .eyebrow,
.hero-section .supporting-line { color: var(--white); }
.hero-section .eyebrow {
  display: inline-flex;
  width: fit-content;
  padding: 10px 18px;
  color: var(--primary-navy);
  background: var(--white);
  border-radius: 999px;
}
.hero-section .supporting-line {
  display: none;
  color: rgba(255, 255, 255, 0.76);
}
.btn-on-dark {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.52);
}
.btn-on-dark:hover {
  color: var(--primary-navy);
  background: var(--white);
}
.hero-points {
  display: none;
  flex-wrap: wrap;
  gap: 12px;
}
.hero-points span {
  padding: 12px 16px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  backdrop-filter: blur(10px);
  font-size: 13px;
  font-weight: 700;
  font-family: var(--heading-font);
}

.capability-strip {
  padding: 0;
  overflow: hidden;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.96);
}
.strip-list {
  min-height: 102px;
  display: inline-flex;
  align-items: center;
  gap: 52px;
  width: max-content;
  min-width: 100%;
  overflow: visible;
  color: var(--primary-navy);
  font-size: clamp(18px, 1.65vw, 27px);
  font-weight: 800;
  font-family: var(--heading-font);
  white-space: nowrap;
  animation: bandSlide 28s linear infinite;
}
.strip-list span:not(:last-child)::after {
  content: "";
  display: inline-block;
  width: 1px;
  height: 28px;
  margin-left: 52px;
  vertical-align: middle;
  background: var(--border);
}
@keyframes bandSlide {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.editorial-grid,
.blueprint-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 90px;
  align-items: start;
}
.section-title h2,
.section-heading h2 { max-width: 760px; }
.editorial-copy {
  max-width: 680px;
  padding-top: 44px;
}
.editorial-copy p + p { margin-top: 18px; }
.section-heading {
  display: grid;
  justify-items: start;
  gap: 10px;
  margin-bottom: 54px;
}
.section-heading.on-dark h2,
.section-heading.on-dark .eyebrow { color: var(--white); }
.section-heading.on-dark .eyebrow { opacity: 0.8; }

.service-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}
.service-card {
  position: relative;
  min-height: 390px;
  padding: 0;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.98), rgba(244,248,255,0.98));
  border: 1px solid rgba(31, 101, 232, 0.2);
  border-radius: 22px;
  box-shadow: 0 24px 70px rgba(1, 22, 56, 0.1), inset 0 1px 0 rgba(255,255,255,0.9);
  transition: transform 0.28s var(--ease), box-shadow 0.28s var(--ease), border-color 0.28s var(--ease);
}
.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(180deg, transparent 38%, rgba(2, 34, 96, 0.08));
}
.service-card:hover {
  transform: translateY(-10px) scale(1.01);
  border-color: rgba(31, 101, 232, 0.42);
  box-shadow: 0 36px 88px rgba(1, 22, 56, 0.18), inset 0 1px 0 rgba(255,255,255,0.95);
}
.service-media {
  position: relative;
  height: 178px;
  margin: 0;
  overflow: hidden;
  background: var(--primary-navy);
}
.service-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(1, 22, 56, 0.05), rgba(1, 22, 56, 0.58));
}
.service-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s var(--ease);
}
.service-card:hover .service-media img { transform: scale(1.06); }
.service-body {
  position: relative;
  z-index: 2;
  padding: 0 26px 28px;
}
.service-icon {
  width: 68px;
  height: 68px;
  display: grid;
  place-items: center;
  margin: -34px 0 22px;
  padding: 11px;
  color: var(--primary-navy);
  background: linear-gradient(180deg, var(--white), #edf4ff);
  border: 4px solid var(--white);
  border-radius: 18px;
  font-size: 15px;
  font-weight: 900;
  font-family: var(--heading-font);
  box-shadow: 0 18px 38px rgba(2, 34, 96, 0.2);
  transition: transform 0.28s var(--ease), box-shadow 0.28s var(--ease);
}
.service-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.service-card:hover .service-icon {
  transform: translateY(-4px) rotate(-3deg);
  box-shadow: 0 24px 46px rgba(31, 101, 232, 0.22);
}
.service-card h3 { min-height: 0; }
.service-card p { margin-top: 12px; font-size: 15.5px; }

.model-section {
  color: var(--white);
  background: var(--dark-bg);
}
.model-flow {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0;
  margin-top: 24px;
}
.model-flow::before {
  content: "";
  position: absolute;
  left: 8%;
  right: 8%;
  top: 25px;
  height: 1px;
  background: rgba(255, 255, 255, 0.22);
}
.model-flow div {
  position: relative;
  padding: 62px 22px 0 0;
}
.model-flow div::before {
  content: "";
  position: absolute;
  top: 17px;
  left: 0;
  width: 16px;
  height: 16px;
  border: 3px solid var(--royal-blue);
  border-radius: 50%;
  background: var(--dark-bg);
}
.model-flow strong {
  display: block;
  color: var(--white);
  font-family: var(--heading-font);
  font-size: 28px;
  line-height: 1.1;
}
.model-flow p { margin-top: 12px; color: rgba(255, 255, 255, 0.68); font-size: 15px; }

.command-section {
  background:
    radial-gradient(circle at 10% 8%, rgba(31, 101, 232, 0.12), transparent 28%),
    radial-gradient(circle at 90% 18%, rgba(2, 34, 96, 0.1), transparent 26%),
    linear-gradient(180deg, var(--white), #f5f8ff 48%, var(--white));
}
.command-heading {
  max-width: 1180px;
}
.section-kicker {
  max-width: 820px;
  margin-top: 16px;
  color: var(--secondary);
  font-family: var(--detail-font);
  font-size: clamp(18px, 2vw, 23px);
  line-height: 1.65;
}
.command-board {
  position: relative;
  overflow: hidden;
  margin-top: 30px;
  padding: clamp(20px, 3vw, 34px);
  background:
    linear-gradient(rgba(255,255,255,.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.055) 1px, transparent 1px),
    radial-gradient(circle at 18% 0%, rgba(31, 101, 232, 0.42), transparent 32%),
    radial-gradient(circle at 86% 10%, rgba(255, 255, 255, 0.15), transparent 22%),
    linear-gradient(135deg, #011638 0%, #022260 56%, #012363 100%);
  background-size: 42px 42px, 42px 42px, auto, auto, auto;
  border: 1px solid rgba(31, 101, 232, 0.24);
  border-radius: 28px;
  box-shadow: 0 34px 90px rgba(1, 22, 56, 0.18);
}
.command-board::before,
.command-board::after {
  content: "";
  position: absolute;
  pointer-events: none;
}
.command-board::before {
  inset: 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 22px;
}
.command-board::after {
  width: 380px;
  height: 380px;
  right: -120px;
  bottom: -170px;
  background: radial-gradient(circle, rgba(31, 101, 232, 0.34), transparent 68%);
}
.command-board-top {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 22px;
  align-items: center;
  padding: 26px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 22px;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}
.command-label {
  display: inline-flex;
  margin-bottom: 10px;
  padding: 8px 11px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  font-family: var(--heading-font);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}
.command-board-top strong {
  display: block;
  font-family: var(--heading-font);
  font-size: clamp(28px, 4vw, 46px);
  line-height: 1;
}
.command-board-top p {
  max-width: 620px;
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.72);
  font-family: var(--detail-font);
  font-size: 17px;
}
.command-signals {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
  max-width: 430px;
}
.command-signals span {
  padding: 10px 13px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  font-family: var(--heading-font);
  font-size: 12px;
  font-weight: 800;
}
.command-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 18px;
}
.command-grid::before {
  content: "";
  position: absolute;
  left: 8%;
  right: 8%;
  top: 50%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.22), transparent);
  pointer-events: none;
}
.command-grid article {
  position: relative;
  min-height: 270px;
  padding: 24px;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(244, 248, 255, 0.98));
  border: 1px solid rgba(255, 255, 255, 0.48);
  border-radius: 22px;
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.18);
  transition: transform 0.28s var(--ease), box-shadow 0.28s var(--ease), border-color 0.28s var(--ease);
}
.command-grid article:hover {
  transform: translateY(-8px);
  border-color: rgba(31, 101, 232, 0.54);
  box-shadow: 0 32px 78px rgba(0, 0, 0, 0.24);
}
.command-grid article::after {
  content: "";
  position: absolute;
  right: -60px;
  bottom: -70px;
  width: 190px;
  height: 190px;
  background: radial-gradient(circle, rgba(31, 101, 232, 0.18), transparent 68%);
  pointer-events: none;
}
.command-icon {
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  margin-bottom: 20px;
  padding: 12px;
  background: linear-gradient(135deg, var(--primary-navy), var(--royal-blue));
  border-radius: 18px;
  box-shadow: 0 18px 38px rgba(2, 34, 96, 0.24);
}
.command-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.command-number {
  position: absolute;
  top: 24px;
  right: 24px;
  color: rgba(2, 34, 96, 0.16);
  font-family: var(--heading-font);
  font-size: 46px;
  font-weight: 900;
  line-height: 1;
}
.command-grid h3 {
  position: relative;
  z-index: 1;
  font-size: clamp(25px, 2.2vw, 34px);
}
.command-grid p {
  position: relative;
  z-index: 1;
  margin-top: 10px;
  color: var(--secondary);
  font-size: 15.5px;
}
.command-grid ul {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}
.command-grid li {
  padding: 7px 9px;
  color: var(--primary-navy);
  background: var(--soft-blue);
  border: 1px solid rgba(31, 101, 232, 0.12);
  border-radius: 999px;
  font-family: var(--heading-font);
  font-size: 11px;
  font-weight: 800;
}
.command-footer-strip {
  position: relative;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0;
  margin-top: 18px;
  padding: 18px 12px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
}
.command-footer-strip span {
  padding: 0 22px;
  color: rgba(255, 255, 255, 0.86);
  font-family: var(--heading-font);
  font-size: 14px;
  font-weight: 800;
}
.command-footer-strip span:not(:last-child) {
  border-right: 1px solid rgba(255, 255, 255, 0.18);
}

.blueprint-section { background: var(--soft-bg); }
.blueprint-list {
  display: grid;
  gap: 18px;
}
.blueprint-list div {
  padding-bottom: 18px;
  border-bottom: 1px solid var(--border);
}
.blueprint-list strong {
  display: block;
  color: var(--primary-navy);
  font-weight: 800;
  font-family: var(--heading-font);
}
.blueprint-list p { margin-top: 6px; }
.disclaimer {
  padding: 16px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  font-size: 14px;
}

.why-grid,
.insight-grid,
.blog-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}
.insight-grid,
.blog-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.why-block,
.insight-preview {
  position: relative;
  min-height: 250px;
  padding: 28px;
  overflow: hidden;
  background:
    linear-gradient(180deg, var(--white), #f8fbff);
  border: 1px solid var(--border);
  border-radius: 14px;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.why-block::before,
.insight-preview::before {
  content: "";
  display: block;
  width: 44px;
  height: 44px;
  margin-bottom: 22px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--primary-navy);
  border-radius: 14px;
  font-family: var(--heading-font);
  font-size: 13px;
  font-weight: 900;
  box-shadow: 0 14px 30px rgba(2, 34, 96, 0.18);
}
.why-block:nth-child(1)::before { content: "01"; }
.why-block:nth-child(2)::before { content: "02"; }
.why-block:nth-child(3)::before { content: "03"; }
.why-block:nth-child(4)::before { content: "04"; }
.insight-preview:nth-child(1)::before { content: "PS"; }
.insight-preview:nth-child(2)::before { content: "LC"; }
.insight-preview:nth-child(3)::before { content: "CO"; }
.why-block:hover,
.insight-preview:hover {
  transform: translateY(-6px);
  box-shadow: 0 26px 60px rgba(1, 22, 56, 0.09);
}
.why-block p,
.insight-preview span { display: block; margin-top: 12px; color: var(--secondary); font-size: 15px; }
.insight-preview p {
  color: var(--royal-blue);
  font-size: 13px;
  font-weight: 800;
  font-family: var(--heading-font);
}
.insight-preview h3 { margin-top: 18px; }

.blog-card {
  overflow: hidden;
  background: linear-gradient(180deg, var(--white), #f7faff);
  border: 1px solid rgba(31, 101, 232, 0.18);
  border-radius: 22px;
  box-shadow: 0 24px 68px rgba(1, 22, 56, 0.1);
  transition: transform 0.28s var(--ease), box-shadow 0.28s var(--ease), border-color 0.28s var(--ease);
}
.blog-card:hover {
  transform: translateY(-9px);
  border-color: rgba(31, 101, 232, 0.4);
  box-shadow: 0 34px 86px rgba(1, 22, 56, 0.16);
}
.blog-media {
  height: 210px;
  margin: 0;
  overflow: hidden;
  background: var(--primary-navy);
}
.blog-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s var(--ease);
}
.blog-card:hover .blog-media img { transform: scale(1.06); }
.blog-content {
  padding: 24px;
}
.blog-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
}
.blog-meta span {
  padding: 7px 10px;
  color: var(--primary-navy);
  background: var(--soft-blue);
  border: 1px solid rgba(31, 101, 232, 0.16);
  border-radius: 999px;
  font-family: var(--heading-font);
  font-size: 12px;
  font-weight: 800;
}
.blog-content p {
  margin-top: 12px;
  font-size: 15px;
}
.blog-filter-section {
  padding-top: 18px;
  padding-bottom: 18px;
}
.blog-filter-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  padding: 16px;
  background: linear-gradient(180deg, var(--white), #f7faff);
  border: 1px solid rgba(31, 101, 232, 0.16);
  border-radius: 18px;
  box-shadow: 0 18px 52px rgba(1, 22, 56, 0.08);
}
.blog-filter-row span {
  margin-right: 6px;
  color: var(--primary-navy);
  font-family: var(--heading-font);
  font-weight: 900;
}
.blog-filter-row a {
  padding: 9px 12px;
  color: var(--primary-navy);
  background: var(--soft-blue);
  border: 1px solid rgba(31, 101, 232, 0.16);
  border-radius: 999px;
  font-family: var(--heading-font);
  font-size: 13px;
  font-weight: 800;
  transition: transform 0.2s var(--ease), background 0.2s var(--ease);
}
.blog-filter-row a:hover {
  transform: translateY(-2px);
  background: var(--white);
}

.final-cta-section {
  padding-top: 44px;
}
.final-cta {
  padding: 54px;
  color: var(--white);
  background: var(--deep-navy);
  border-radius: 18px;
}
.final-cta h2,
.final-cta p { color: var(--white); }
.final-cta p { max-width: 660px; margin: 18px 0 28px; opacity: 0.78; }

.site-footer {
  padding: 34px 0 20px;
  color: rgba(255, 255, 255, 0.72);
  background: var(--dark-bg);
}
.compact-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.footer-line {
  display: grid;
  grid-template-columns: minmax(260px, 1.25fr) minmax(150px, .7fr) minmax(210px, .9fr) minmax(240px, 1fr);
  align-items: start;
  justify-content: space-between;
  gap: 34px;
}
.footer-brand-block {
  max-width: 470px;
}
.footer-brand {
  min-width: 0;
  margin-bottom: 20px;
}
.footer-brand img {
  width: 238px;
  max-width: 100%;
  height: auto;
}
.footer-brand-block p {
  max-width: 430px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 16px;
  line-height: 1.75;
}
.footer-column {
  display: grid;
  align-content: start;
  gap: 12px;
}
.footer-one-line,
.footer-contact-line,
.footer-service-links,
.footer-social-links {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 10px;
}
.footer-one-line a,
.footer-contact-line a,
.footer-service-links a,
.footer-social-links a {
  color: rgba(255, 255, 255, 0.72);
  font-family: var(--heading-font);
  font-size: 13px;
  font-weight: 600;
}
.footer-column a,
.footer-hours,
.footer-contact-line a,
.footer-service-links a,
.footer-social-links a {
  width: fit-content;
  color: rgba(255, 255, 255, 0.76);
  font-family: var(--body-font);
  font-size: 15px;
  font-weight: 300;
  line-height: 1.35;
}
.footer-column strong,
.footer-contact-line strong,
.footer-service-links strong,
.footer-social-links strong {
  display: block;
  width: 100%;
  margin-bottom: 4px;
  color: var(--white);
  font-family: var(--heading-font);
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 0;
}
.footer-column a:hover,
.footer-one-line a:hover,
.footer-contact-line a:hover,
.footer-service-links a:hover,
.footer-social-links a:hover {
  color: var(--white);
}
.footer-contact-social {
  gap: 13px;
}
.footer-hours {
  display: block;
  max-width: 220px;
}
.footer-social-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 8px;
}
.footer-social-row a {
  width: 42px;
  height: 42px;
  display: inline-grid;
  place-items: center;
  padding: 0;
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  font-family: var(--heading-font);
  font-size: 12px;
  font-weight: 700;
}
.footer-social-row img {
  width: 19px;
  height: 19px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}
.footer-social-row a:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-2px);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.25fr 1.1fr 1.25fr 1fr;
  gap: 24px;
  align-items: start;
}
.footer-grid p { margin-top: 20px; color: rgba(255, 255, 255, 0.64); font-size: 15px; }
.footer-grid h3 {
  margin: 0 0 16px;
  color: var(--white);
  font-family: var(--heading-font);
  font-size: 14px;
}
.footer-grid a {
  display: block;
  margin-bottom: 9px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 14px;
}
.footer-grid a:hover { color: var(--white); }
.footer-brand strong,
.footer-brand small { color: var(--white); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-top: 24px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.54);
  font-size: 13px;
}

.reveal {
  opacity: 1;
  transform: none;
}
body.js .reveal {
  animation: fadeUp 0.7s var(--ease) both;
}
body.js .reveal.is-visible {
  opacity: 1;
  transform: none;
}
@keyframes fadeUp {
  from { opacity: 0.001; transform: translateY(18px); }
  to { opacity: 1; transform: none; }
}

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

/* Compatibility styles for existing inner pages */
.page {
  width: min(1440px, calc(100% - 56px));
  margin-inline: auto;
}
.site-header .page.nav {
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: 100vw;
  max-width: none;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding-inline: clamp(24px, 4vw, 64px);
  background: rgba(255, 255, 255, 0.18);
  border-inline: 0;
}
.site-header .page.nav .nav-links a[href="locations.html"],
.nav-shell .nav-links a[href="locations.html"],
.mobile-panel a[href="locations.html"] {
  display: none;
}
.site-header .page.nav .brand {
  min-width: 180px;
}
.site-header .page.nav .menu-toggle {
  margin-left: auto;
}
.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 13px 20px;
  border-radius: 10px;
  border: 1px solid transparent;
  font-size: 14px;
  font-weight: 800;
  font-family: var(--heading-font);
}
.button.primary {
  color: var(--white);
  background: var(--primary-navy);
}
.button.soft {
  color: var(--primary-navy);
  background: var(--soft-blue);
  border-color: var(--border);
}
main.page {
  padding-top: 34px;
}
.hero:not(.hero-section) {
  padding: 38px 0 30px;
}
.page-hero {
  position: relative;
  padding: 50px;
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(2, 34, 96, 0.96), rgba(1, 22, 56, 0.9)),
    linear-gradient(90deg, rgba(1, 22, 56, 0.92), rgba(1, 22, 56, 0.5)),
    url("../images/gallery/constituency-intelligence-wall.jpg") center / cover,
    radial-gradient(circle at top right, rgba(31, 101, 232, 0.28), transparent 42%);
  border-radius: 24px;
}
.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.07) 1px, transparent 1px);
  background-size: 64px 64px;
  opacity: 0.26;
}
.page-hero > * {
  position: relative;
  z-index: 1;
}
.page-hero h1,
.page-hero p { color: var(--white); }
.page-hero h1 {
  max-width: 920px;
  font-size: clamp(38px, 4vw, 62px);
}
.page-hero .lead {
  max-width: 760px;
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 18px;
}
.page-hero.about-hero {
  background:
    linear-gradient(135deg, rgba(2, 34, 96, 0.92), rgba(1, 22, 56, 0.82)),
    url("../images/gallery/strategy-table.jpg") center / cover;
}
.page-hero.services-hero {
  background:
    linear-gradient(135deg, rgba(2, 34, 96, 0.94), rgba(1, 22, 56, 0.82)),
    url("../images/gallery/digital-command-desk.jpg") center / cover;
}
.page-hero.solutions-hero {
  background:
    linear-gradient(135deg, rgba(2, 34, 96, 0.92), rgba(1, 22, 56, 0.82)),
    url("../images/gallery/whatsapp-communication-system.jpg") center / cover;
}
.page-hero.why-hero {
  background:
    linear-gradient(135deg, rgba(2, 34, 96, 0.92), rgba(1, 22, 56, 0.78)),
    url("../images/gallery/ground-survey-team.jpg") center / cover;
}
.page-hero.contact-hero {
  background:
    linear-gradient(135deg, rgba(2, 34, 96, 0.92), rgba(1, 22, 56, 0.78)),
    url("../images/gallery/content-strategy-studio.jpg") center / cover;
}
.page-hero.blog-hero {
  background:
    linear-gradient(135deg, rgba(2, 34, 96, 0.92), rgba(1, 22, 56, 0.74)),
    url("../images/gallery/constituency-intelligence-wall.jpg") center / cover;
}
.chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  margin-bottom: 18px;
  padding: 9px 13px;
  color: var(--primary-navy);
  background: var(--soft-blue);
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  font-family: var(--heading-font);
}
.section {
  padding: 48px 0;
}
.section-head {
  max-width: 850px;
  margin-bottom: 34px;
}
.section-head p,
.split-copy p {
  max-width: 760px;
  margin-top: 14px;
}
.split {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: 32px;
  align-items: start;
}
.quote-card,
.card,
.stats-card,
.solution-block,
.contact-card {
  padding: 28px;
  background:
    linear-gradient(180deg, var(--white), #f8fbff);
  border: 1px solid rgba(31, 101, 232, 0.18);
  border-radius: 20px;
  box-shadow: 0 22px 64px rgba(1, 22, 56, 0.09), inset 0 1px 0 rgba(255,255,255,0.9);
}
.quote-card {
  background: linear-gradient(180deg, var(--soft-blue), var(--white));
}
.grid-3,
.grid-2,
.stats-grid,
.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}
.grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.why-page-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}
.card,
.stats-card,
.location-card,
.contact-panel {
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), border-color 0.25s var(--ease);
}
.card:hover,
.stats-card:hover,
.location-card:hover,
.contact-panel:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 70px rgba(1, 22, 56, 0.12);
  border-color: rgba(31, 101, 232, 0.36);
}
.card-index {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  margin-bottom: 22px;
  color: var(--white);
  background: linear-gradient(135deg, var(--primary-navy), var(--royal-blue));
  border-radius: 14px;
  font-size: 13px;
  font-weight: 900;
  font-family: var(--heading-font);
  box-shadow: 0 14px 30px rgba(2, 34, 96, 0.18);
}
.card-index.service-icon-box {
  width: 72px;
  height: 72px;
  padding: 12px;
  background:
    linear-gradient(180deg, var(--white), #eef5ff);
  border: 1px solid rgba(31, 101, 232, 0.2);
  border-radius: 20px;
}
.card-index.service-icon-box img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.card:hover .service-icon-box {
  background: var(--white);
  box-shadow: 0 18px 42px rgba(31, 101, 232, 0.2);
}
.card p {
  margin-top: 12px;
  font-size: 16px;
}
.stats-card strong {
  display: block;
  color: var(--primary-navy);
  font-size: 38px;
  font-family: var(--heading-font);
  line-height: 1;
}
.stats-card span {
  display: block;
  margin-top: 12px;
  color: var(--secondary);
}
.cta-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 44px;
  color: var(--white);
  background: var(--primary-navy);
  border-radius: 22px;
}
.cta-band h2,
.cta-band p { color: var(--white); }
.cta-band p {
  max-width: 700px;
  margin-top: 12px;
  opacity: 0.78;
}
.image-panel {
  min-height: 340px;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 22px;
  background: var(--soft-blue);
  box-shadow: 0 24px 64px rgba(1, 22, 56, 0.12);
}
.image-panel img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.footer {
  padding: 44px 0 20px;
  color: rgba(255, 255, 255, 0.72);
  background:
    radial-gradient(circle at 18% 0%, rgba(31, 101, 232, 0.24), transparent 30%),
    var(--dark-bg);
}
.footer.compact-footer {
  padding: 44px 0 20px;
}
.footer-top { padding: 0; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1.3fr 1fr 1.35fr;
  gap: 22px;
  align-items: start;
}
.footer h3 {
  color: var(--white);
  font-family: var(--heading-font);
  font-size: 14px;
}
.footer-links a {
  display: block;
  margin-top: 9px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 14px;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-top: 22px;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}
.footer-meta {
  color: rgba(255, 255, 255, 0.56);
  font-size: 13px;
}

.location-card,
.contact-panel {
  padding: 28px;
  background:
    linear-gradient(180deg, var(--white), #f8fbff);
  border: 1px solid var(--border);
  border-radius: 18px;
  box-shadow: 0 20px 54px rgba(1, 22, 56, 0.07);
}
.location-card p { margin: 12px 0 20px; }
.process-list {
  display: grid;
  gap: 16px;
}
.process-item {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 18px;
  padding: 20px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  box-shadow: 0 18px 44px rgba(1, 22, 56, 0.06);
}
.process-no {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--primary-navy);
  border-radius: 14px;
  font-family: var(--heading-font);
  font-weight: 800;
}
.contact-grid { grid-template-columns: 1.15fr .85fr; }
.contact-grid { align-items: start; }
.contact-panel { align-self: start; }
.contact-panel h3 { margin-bottom: 12px; }
.contact-list {
  display: grid;
  gap: 14px;
  margin: 22px 0;
}
.contact-item {
  padding: 16px;
  background: var(--soft-bg);
  border: 1px solid var(--border);
  border-radius: 14px;
}
.contact-item strong {
  display: block;
  color: var(--primary-navy);
  font-family: var(--heading-font);
}
.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 22px;
}
.field { display: grid; gap: 8px; }
.field.full { grid-column: 1 / -1; }
.field label {
  color: var(--primary-navy);
  font-family: var(--heading-font);
  font-size: 13px;
  font-weight: 700;
}
.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 13px;
  color: var(--text);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
}
.field textarea { min-height: 118px; resize: vertical; }
.form-note { margin-top: 10px; color: var(--secondary); font-size: 13px; }
.campaign-solution-grid .card {
  min-height: 260px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, var(--white), #f8fbff);
}

.service-list-card {
  min-height: 440px;
}
.service-list-card .service-media {
  height: 190px;
}
.service-list-card .service-body {
  padding-bottom: 30px;
}
.campaign-solution-grid .card::after {
  content: "";
  position: absolute;
  inset: auto -60px -80px auto;
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, rgba(31, 101, 232, 0.16), transparent 68%);
}
.campaign-visual-band {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 20px;
}
.campaign-visual-band figure {
  min-height: 260px;
  margin: 0;
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 0 24px 64px rgba(1, 22, 56, 0.12);
}
.campaign-visual-band img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.seo-location-link {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.article-hero {
  padding: 54px 0 30px;
}
.article-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 34px;
  align-items: start;
}
.article-main {
  overflow: hidden;
  background: linear-gradient(180deg, var(--white), #f8fbff);
  border: 1px solid rgba(31, 101, 232, 0.16);
  border-radius: 24px;
  box-shadow: 0 28px 80px rgba(1, 22, 56, 0.09);
}
.article-cover {
  height: clamp(280px, 34vw, 470px);
  margin: 0;
  overflow: hidden;
  background: var(--primary-navy);
}
.article-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.article-content {
  padding: clamp(28px, 4vw, 58px);
}
.article-content .blog-meta {
  margin-bottom: 22px;
}
.article-content h1 {
  max-width: 900px;
}
.article-content .lead {
  max-width: 860px;
  margin-top: 18px;
  color: var(--secondary);
  font-size: clamp(19px, 2vw, 24px);
  line-height: 1.55;
}
.article-body {
  max-width: 850px;
  margin-top: 34px;
}
.article-body h2 {
  margin-top: 38px;
  font-size: clamp(34px, 4vw, 56px);
}
.article-body p,
.article-body li {
  color: var(--secondary);
  font-family: var(--detail-font);
  font-size: 20px;
  line-height: 1.85;
}
.article-body ul {
  display: grid;
  gap: 12px;
  margin: 18px 0 0;
  padding-left: 22px;
}
.article-body blockquote {
  margin: 34px 0;
  padding: 24px;
  color: var(--primary-navy);
  background: var(--soft-blue);
  border-left: 5px solid var(--royal-blue);
  border-radius: 16px;
  font-family: var(--heading-font);
  font-size: 22px;
  font-weight: 800;
  line-height: 1.45;
}
.article-sidebar {
  position: sticky;
  top: 112px;
  display: grid;
  gap: 18px;
}
.article-side-card {
  padding: 24px;
  background: var(--white);
  border: 1px solid rgba(31, 101, 232, 0.16);
  border-radius: 20px;
  box-shadow: 0 22px 60px rgba(1, 22, 56, 0.08);
}
.article-side-card h3 {
  margin-bottom: 12px;
}
.article-side-card p {
  margin-top: 8px;
  color: var(--secondary);
  font-size: 15px;
}
.article-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.article-tags span,
.breadcrumb a,
.breadcrumb span {
  display: inline-flex;
  padding: 8px 10px;
  color: var(--primary-navy);
  background: var(--soft-blue);
  border: 1px solid rgba(31, 101, 232, 0.16);
  border-radius: 999px;
  font-family: var(--heading-font);
  font-size: 12px;
  font-weight: 800;
}
.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
}
.article-related {
  margin-top: 28px;
}
