:root {
  --bg-page: #050d2b;
  --bg-elevated: rgba(14, 28, 74, 0.78);
  --text-main: #f7f8fb;
  --text-muted: #c8cfdd;
  --stroke: rgba(255, 255, 255, 0.14);
  --brand: #2f74ff;
  --brand-strong: #1a5ce5;
  --brand-glow: rgba(47, 116, 255, 0.45);
}

* {
  box-sizing: border-box;
}

html {
  overflow-x: hidden;
  overflow-x: clip;
  -webkit-text-size-adjust: 100%;
}

html,
body {
  margin: 0;
  padding: 0;
  font-family: "Sora", system-ui, sans-serif;
  background: linear-gradient(145deg, #040918 6%, #081b4a 56%, #0d2b72 100%);
  color: var(--text-main);
  scroll-behavior: smooth;
}

body {
  overflow-x: clip;
}

@media (max-width: 980px) {
  body.mobile-nav-open {
    overflow: hidden;
    overscroll-behavior: none;
  }
}

img,
video {
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
}

.site-bg {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(560px 380px at 12% 16%, rgba(145, 189, 255, 0.14), transparent 72%),
    radial-gradient(720px 420px at 88% 22%, rgba(64, 143, 255, 0.18), transparent 72%),
    radial-gradient(620px 420px at 40% 88%, rgba(28, 90, 220, 0.14), transparent 74%);
  opacity: 0.95;
}

.container {
  width: min(1120px, 92vw);
  margin: 0 auto;
}

@media (max-width: 640px) {
  .container {
    width: 100%;
    max-width: 100%;
    padding-left: max(16px, env(safe-area-inset-left));
    padding-right: max(16px, env(safe-area-inset-right));
  }
}

main,
footer,
header {
  position: relative;
  z-index: 1;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(12px);
  background: rgba(8, 11, 18, 0.82);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

@media (max-width: 980px) {
  .topbar {
    z-index: 200;
  }
}

.topbar::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='16' viewBox='0 0 180 16'%3E%3Cpath d='M0 9 L50 9 L58 9 L64 2 L71 14 L78 7 L88 9 L180 9' fill='none' stroke='%2334d9e8' stroke-width='1.7' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: repeat-x;
  background-size: 180px 16px;
  background-position: 0 50%;
  box-shadow: 0 0 10px rgba(52, 217, 232, 0.8), 0 0 20px rgba(19, 104, 255, 0.5);
  animation: heartbeatLine 2.1s linear infinite;
}

@keyframes heartbeatLine {
  from {
    background-position-x: 0;
  }
  to {
    background-position-x: -180px;
  }
}

.nav-wrap {
  min-height: 100px;
  display: flex;
  align-items: center;
  gap: 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}

.brand-logo {
  width: 84px;
  height: 84px;
  max-width: none;
  padding: 0;
  background: transparent;
  filter: brightness(0) invert(1) contrast(1.02)
    drop-shadow(0 1px 0 rgba(255, 255, 255, 0.28))
    drop-shadow(0 2px 2px rgba(0, 0, 0, 0.28));
}

.brand-text {
  font-family: "Montserrat", sans-serif;
  font-size: 2.35rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: #f2f6ff;
  text-shadow:
    0 1px 0 rgba(255, 255, 255, 0.2),
    0 2px 6px rgba(0, 0, 0, 0.24);
}

/* Homepage: larger emblem only (wordmark unchanged) */
.page-home .brand-logo {
  width: 96px;
  height: 96px;
}

.page-home .nav-wrap {
  min-height: 108px;
}

.nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav a {
  text-decoration: none;
  color: var(--text-muted);
  font-size: 0.95rem;
  font-weight: 500;
  transition: 0.25s ease;
}

.nav a:hover,
.nav a.active {
  color: #ffffff;
}

.nav-dropdown {
  position: relative;
  display: flex;
  align-items: center;
}

.nav-dropdown-toggle {
  text-decoration: none;
  color: var(--text-muted);
  font-size: 0.95rem;
  font-weight: 500;
  transition: 0.25s ease;
  cursor: pointer;
}

.nav-dropdown-toggle:hover {
  color: #ffffff;
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 16px);
  left: 50%;
  transform: translateX(-50%);
  min-width: 200px;
  background: rgba(10, 15, 28, 0.98);
  border: 1px solid rgba(52, 217, 232, 0.2);
  border-radius: 8px;
  padding: 6px 0;
  opacity: 0;
  visibility: hidden;
  transition: all 0.2s ease;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

.nav-dropdown:hover .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
}

.nav-dropdown-menu a {
  display: block;
  padding: 12px 20px;
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.92rem;
  transition: all 0.15s ease;
}

.nav-dropdown-menu a:hover {
  background: rgba(52, 217, 232, 0.1);
  color: #ffffff;
}

.menu-btn {
  display: none;
  margin-left: auto;
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.06);
  padding: 12px 16px;
  border-radius: 10px;
  font-size: 0.9rem;
  min-height: 44px;
  min-width: 44px;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  z-index: 210;
  cursor: pointer;
  -webkit-tap-highlight-color: rgba(255, 255, 255, 0.12);
}

/* Contact: desktop toolbar vs mobile drawer (see HTML .nav-cta--toolbar / .nav-cta--inmenu) */
.nav-cta--inmenu {
  display: none;
  margin-left: 0;
}

@media (min-width: 981px) {
  .nav-cta--inmenu {
    display: none !important;
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-decoration: none;
  border-radius: 12px;
  padding: 12px 22px;
  font-weight: 600;
  border: 1px solid transparent;
  transition: 0.25s ease;
}

.btn-primary {
  color: #ffffff;
  background: var(--brand);
  box-shadow: 0 10px 26px var(--brand-glow);
}

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

.btn-ghost {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.06);
}

.btn-ghost:hover {
  border-color: rgba(255, 255, 255, 0.62);
  background: rgba(255, 255, 255, 0.14);
}

.nav-cta {
  margin-left: 10px;
}

.hero {
  padding: 84px 0 78px;
}

.section-kicker {
  display: inline-block;
  font-size: 0.77rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 700;
  color: #ffffff;
}

.hero h1 {
  margin: 14px 0 16px;
  max-width: 13ch;
  font-family: "Montserrat", sans-serif;
  font-size: clamp(2rem, 6vw, 4.2rem);
  line-height: 1.04;
}

.lead-copy {
  max-width: 60ch;
  color: var(--text-muted);
  line-height: 1.78;
  font-size: 1.06rem;
}

.hero-actions {
  margin-top: 26px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.tech-paragraph {
  max-width: 70ch;
  margin: 24px 0;
  font-size: 1.1rem;
  line-height: 1.7;
  color: #d8ddf0;
}

.inline-contact {
  margin-top: 32px;
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.95rem;
}

.content-section {
  padding: 84px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
}

.tone-why {
  background: #f8f9fa;
  color: #1a2332;
  border-top: 1px solid #e2e8f0;
  border-bottom: 1px solid #e2e8f0;
}

.tone-why h2,
.tone-why h3,
.tone-why .section-kicker {
  color: #0a1929;
}

.tone-why .feature-card {
  background: rgba(31, 95, 255, 0.08);
  border-color: rgba(31, 95, 255, 0.24);
}

.tone-why .feature-card p {
  color: #1a2332;
}

.ecosystem-partners-box {
  margin-top: 18px;
  padding: 14px;
  border: 1px solid rgba(31, 95, 255, 0.22);
  border-radius: 12px;
  background: rgba(31, 95, 255, 0.14);
}

.ecosystem-partners-title {
  margin: 0 0 10px;
  font-family: "Montserrat", sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #13325c;
}

.ecosystem-partners-description {
  margin: 0 0 10px;
  font-size: 0.9rem;
  line-height: 1.6;
  color: #30425a;
}

.ecosystem-partners-logos {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 10px;
  row-gap: 12px;
}

.ecosystem-partner-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  height: 48px;
  padding: 0;
  border: none;
  border-radius: 0;
  background: transparent;
}

.ecosystem-partner-logo img {
  display: block;
  width: auto;
  height: auto;
  max-height: 44px;
  max-width: 180px;
  object-fit: contain;
  object-position: center center;
}

.ecosystem-partner-logo--aviz,
.ecosystem-partner-logo--3point,
.ecosystem-partner-logo--redhat,
.ecosystem-partner-logo--cisco,
.ecosystem-partner-logo--cykor {
  background: transparent;
  border: none;
}

.ecosystem-partner-logo--digitalearth {
  background: transparent;
  border: none;
}

/* Per-mark optical sizing for a compact logo cloud (24-32px target range) */

/* Partner marks: black ink on transparent assets (no CSS “black box” tricks) */
.ecosystem-logo--aviz {
  max-height: 38px;
  width: auto;
  max-width: 126px;
  object-fit: contain;
  object-position: left center;
}

.band-dark .ecosystem-logo--aviz {
  filter: brightness(0) invert(1);
  opacity: 0.94;
}

.ecosystem-logo--3point {
  max-height: 36px;
  max-width: 36px;
  object-fit: contain;
  filter: brightness(0);
  opacity: 0.9;
}

.band-dark .ecosystem-logo--3point {
  filter: brightness(0) invert(1);
  opacity: 0.95;
}

/* Red Hat / Cisco: SVG marks — explicit min size so they don’t collapse as <img> */
.ecosystem-logo--redhat {
  min-width: 44px;
  min-height: 44px;
  max-height: 52px;
  max-width: 52px;
  width: auto;
  flex-shrink: 0;
}

.ecosystem-logo--cisco {
  min-width: 44px;
  min-height: 44px;
  max-height: 52px;
  max-width: 58px;
  width: auto;
}

.band-dark .ecosystem-logo--redhat,
.band-dark .ecosystem-logo--cisco {
  filter: brightness(0) invert(1);
  opacity: 0.94;
}

.ecosystem-logo--digitalearth {
  max-height: 74px;
  width: auto;
  max-width: 206px;
  object-fit: contain;
}

.band-dark .ecosystem-logo--digitalearth {
  filter: brightness(0) invert(1);
  opacity: 0.95;
}

.ecosystem-logo--cykor {
  max-height: 26px;
  width: auto;
  max-width: 26px;
}

.ecosystem-partner-logo--cykor {
  margin-left: -4px;
}

.band-dark .ecosystem-logo--cykor {
  filter: brightness(0) invert(1);
  opacity: 0.94;
}

@media (max-width: 640px) {
  .ecosystem-partners-logos {
    gap: 10px 14px;
    justify-content: flex-start;
  }

  .ecosystem-logo--aviz {
    max-height: 32px;
    max-width: 104px;
  }

  .ecosystem-logo--3point {
    max-height: 30px;
    max-width: 30px;
  }

  .ecosystem-logo--redhat {
    min-width: 36px;
    min-height: 36px;
    max-height: 44px;
    max-width: 44px;
  }

  .ecosystem-logo--cisco {
    min-width: 36px;
    min-height: 36px;
    max-height: 44px;
    max-width: 50px;
  }

  .ecosystem-logo--digitalearth {
    max-height: 40px;
    max-width: 120px;
  }

  .ecosystem-logo--cykor {
    max-height: 34px;
    max-width: 34px;
  }
}

.ecosystem-partners-copy {
  margin: 10px 0 0;
  font-size: 0.88rem;
  line-height: 1.5;
  color: #30425a;
}

.ecosystem-partners-cta {
  margin-top: 12px;
  width: fit-content;
}

/* ── Partner Showcase Section ───────────────────────────────────────── */
.partner-showcase-section {
  background: #f4f7ff !important;
  border-top: 1px solid #dde8f8;
  border-bottom: 1px solid #dde8f8;
  color: #1a2a44 !important;
}

.partner-showcase-section .section-kicker {
  color: #2f5fae !important;
}

.partner-showcase-section h2,
.partner-showcase-section .partner-showcase-heading {
  color: #0a1929 !important;
  margin-bottom: 10px;
}

.partner-showcase-sub {
  max-width: 640px;
  font-size: 1rem;
  color: #3c4d67 !important;
  line-height: 1.65;
  margin-bottom: 0;
}

.partner-showcase-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin: 40px 0 36px;
}

.partner-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  background: #f6f9ff;
  border: 1px solid #dde8f8;
  border-radius: 14px;
  padding: 18px 14px 14px;
  box-shadow: 0 2px 14px rgba(31, 79, 160, 0.07);
  transition: box-shadow 0.18s ease, transform 0.18s ease;
  gap: 12px;
  min-height: 172px;
}

.partner-card:hover {
  box-shadow: 0 6px 28px rgba(31, 79, 160, 0.16);
  transform: translateY(-2px);
}

.partner-card-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
  width: 100%;
}

.partner-card-img {
  max-height: 96px;
  max-width: calc(100% - 4px);
  width: auto;
  object-fit: contain;
  display: block;
  mix-blend-mode: multiply;
}

.partner-card-logo img {
  max-height: 96px;
  max-width: calc(100% - 4px);
  width: auto;
  object-fit: contain;
  mix-blend-mode: multiply;
}

/* Larger marks for assets that read small at default 96px (aim near CyKor prominence) */
.partner-card-img--boost,
.partner-card-logo img.partner-card-img--boost {
  max-height: 112px;
  max-width: calc(100% - 2px);
}

.partner-card-img--boost-sm,
.partner-card-logo img.partner-card-img--boost-sm {
  max-height: 102px;
  max-width: calc(100% - 2px);
}

.partner-card-name {
  font-family: "Montserrat", sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #4a5e7a;
  text-align: center;
  line-height: 1.3;
}

.partner-showcase-cta {
  display: flex;
  justify-content: flex-start;
}

/* Responsive: tablet → 2 per row, mobile → 2 per row */
@media (max-width: 900px) {
  .partner-showcase-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 540px) {
  .partner-showcase-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  .partner-card {
    padding: 14px 10px 12px;
    min-height: 130px;
  }
  .partner-card-img,
  .partner-card-logo img {
    max-height: 70px;
  }

  .partner-card-img--boost,
  .partner-card-logo img.partner-card-img--boost {
    max-height: 86px;
  }

  .partner-card-img--boost-sm,
  .partner-card-logo img.partner-card-img--boost-sm {
    max-height: 78px;
  }
}

.tone-leadership {
  background: linear-gradient(140deg, rgba(5, 22, 73, 0.87), rgba(18, 67, 174, 0.74));
}

.tone-challenge {
  background: #f8f9fa;
  color: #1a2332;
  border-top: 1px solid #e2e8f0;
  border-bottom: 1px solid #e2e8f0;
}

.tone-challenge h2,
.tone-challenge h3,
.tone-challenge .section-kicker {
  color: #0a1929;
}

.tone-challenge .feature-card {
  background: rgba(31, 95, 255, 0.08);
  border-color: rgba(31, 95, 255, 0.24);
}

.tone-challenge .feature-card p {
  color: #1a2332;
}

.tone-challenge .split + .container {
  margin-top: 48px;
}

/* Alternating page bands: dark header → light → dark → light … */
.band-light {
  background: #f8f9fa;
  color: #1a2332;
  border-top: 1px solid #e2e8f0;
  border-bottom: 1px solid #e2e8f0;
}

.band-light h2,
.band-light h3,
.band-light .section-kicker {
  color: #0a1929;
}

.band-light p {
  color: #1a2332;
}

.band-light .feature-card {
  background: rgba(31, 95, 255, 0.08);
  border-color: rgba(31, 95, 255, 0.24);
}

.band-light .feature-card p {
  color: #1a2332;
}

.band-dark {
  background: linear-gradient(140deg, rgba(5, 22, 73, 0.87), rgba(18, 67, 174, 0.74));
  color: #f7f8fb;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
}

.band-dark h2,
.band-dark h3,
.band-dark .section-kicker {
  color: #ffffff;
}

.band-dark p {
  color: #d8ddf0;
}

.band-dark .feature-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.band-dark .feature-card p {
  color: #dde2f1;
}

.band-dark .ecosystem-partners-box {
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.06);
}

.band-dark .ecosystem-partners-title {
  color: #e8ecff;
}

.band-dark .ecosystem-partners-description {
  color: #c8cfdd;
}

.band-dark .ecosystem-partner-logo {
  border: none;
  background: transparent;
}

.band-dark .text-link {
  color: #a8c8ff;
}

.home-team-teaser {
  text-align: center;
  max-width: min(52rem, 100%);
  margin: 0 auto;
}

.home-team-teaser p {
  text-align: left;
  margin-left: auto;
  margin-right: auto;
}

.home-team-teaser .btn {
  margin-top: 20px;
}

.leadership-panel-white .profile-card {
  background: rgba(31, 95, 255, 0.08);
  border: 1px solid rgba(31, 95, 255, 0.22);
}

.leadership-panel-white .profile-card h3 {
  color: #0a1929;
}

.leadership-panel-white .profile-card .role {
  color: #1f4fa0;
}

.leadership-panel-white .profile-card p {
  color: #1a2332;
}

/* Experience block on dark band (leadership page) */
.leadership-panel-blue .exp-title {
  color: #ffffff;
}

.leadership-panel-blue .exp-grid {
  border-color: rgba(255, 255, 255, 0.22);
}

.leadership-panel-blue .exp-col {
  border-right-color: rgba(255, 255, 255, 0.16);
}

.leadership-panel-blue .exp-item {
  border-bottom-color: rgba(255, 255, 255, 0.12);
}

.leadership-panel-blue .exp-item-title {
  color: #ffffff !important;
}

.leadership-panel-blue .exp-item-body {
  color: #d8ddf0 !important;
}

.leadership-panel-blue .exp-item-stat {
  color: #a8c8ff;
}

/* No background — SVG marks inverted to white float directly on dark panel */
.leadership-panel-blue .exp-logo {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.18);
}

.leadership-panel-blue .partner-logo {
  filter: brightness(0) invert(1);
  opacity: 0.9;
}


.leadership-panel-blue .exp-logo-text {
  color: #e8ecff;
}

.leadership-panel-blue .exp-logo--more {
  color: #c8cfdd;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.28);
}

.leadership-panel-blue .exp-tagline {
  color: rgba(255, 255, 255, 0.78);
}

.tone-foundation {
  background: linear-gradient(140deg, rgba(7, 27, 92, 0.88), rgba(20, 71, 181, 0.76));
}

.tone-foundation-white {
  background: #f8f9fa;
  color: #1a2332;
  border-top: 1px solid #e2e8f0;
  border-bottom: 1px solid #e2e8f0;
}

.tone-foundation-white h2,
.tone-foundation-white h3,
.tone-foundation-white .section-kicker {
  color: #0a1929;
}

.tone-foundation-white .feature-card {
  background: rgba(31, 95, 255, 0.08);
  border-color: rgba(31, 95, 255, 0.24);
}

.tone-foundation-white .feature-card h3 {
  color: #0a1929;
}

.tone-foundation-white .feature-card p {
  color: #1a2332;
}

.tone-foundation-white .feature-card li {
  color: #1a2332;
}

.tone-foundation-white .section-intro {
  color: #3b4d66;
}

.tone-blog {
  background: #f8f9fa;
  color: #1a2332;
  border-top: 1px solid #e2e8f0;
  border-bottom: 1px solid #e2e8f0;
}

.tone-blog h2,
.tone-blog h3,
.tone-blog .section-kicker {
  color: #0a1929;
}

.tone-blog .feature-card,
.tone-blog .blog-card {
  background: rgba(31, 95, 255, 0.08);
  border-color: rgba(31, 95, 255, 0.24);
}

.tone-blog .feature-card p,
.tone-blog .blog-card p {
  color: #1a2332;
}

.tone-blog .blog-tag {
  background: rgba(31, 95, 255, 0.18);
  color: #0a1929;
}

.tone-blog .text-link {
  color: #2f74ff;
}

.leadership-panel-blue {
  background: linear-gradient(140deg, rgba(5, 22, 73, 0.87), rgba(18, 67, 174, 0.74));
}

.leadership-panel-white {
  background: #f8f9fa;
  color: #1a2332;
  border-top: 1px solid #e2e8f0;
  border-bottom: 1px solid #e2e8f0;
}

.content-section.leadership-panel-white {
  background: #f8f9fa !important;
  color: #1a2332;
}

.leadership-panel-white h2,
.leadership-panel-white h3 {
  color: #0a1929;
}

.leadership-panel-white .section-kicker {
  color: #5a6a8a;
}

.leadership-panel-white .section-intro {
  color: #3b4d66;
}

.leadership-panel-white > .container + .container {
  margin-top: 28px;
}

.leadership-panel-white .exp-grid {
  border: 1px solid #d7e1f2;
}

.leadership-panel-white .exp-col {
  border-right: 1px solid #d7e1f2;
}

.leadership-panel-white .exp-item {
  border-bottom: 1px solid #e4ebf7;
}

.leadership-panel-white .exp-item-title {
  color: #0a1929;
}

.leadership-panel-white .exp-item-body {
  color: #3c4d67;
}

.content-section.leadership-panel-white .exp-item-title {
  color: #0a1929 !important;
}

.content-section.leadership-panel-white .exp-item-body {
  color: #2e3d55 !important;
}

.leadership-panel-white .exp-logo {
  color: #2f5fae;
  border: 1px solid #b9c9e8;
  background: #f2f6ff;
}

.leadership-panel-white .exp-tagline {
  color: #2f5fae;
}

.leadership-panel-blue-2 {
  background: linear-gradient(140deg, rgba(4, 18, 66, 0.94), rgba(10, 49, 142, 0.84));
}

.content-section.leadership-panel-blue-2 {
  background: linear-gradient(140deg, rgba(4, 18, 66, 0.94), rgba(10, 49, 142, 0.84)) !important;
  color: #f7f8fb;
}

.content-section.leadership-panel-blue-2 h2,
.content-section.leadership-panel-blue-2 h3 {
  color: #ffffff;
}

.leadership-panel-blue-2 .section-intro {
  color: #d8ddf0;
}

.leadership-panel-blue-2 .ecosystem-grid {
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.leadership-panel-blue-2 .ecosystem-layer {
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.leadership-panel-blue-2 .layer-label {
  color: #ffffff;
}

.leadership-panel-blue-2 .ecosystem-layer p {
  color: #c8cfdd;
}

.leadership-panel-blue-2 .ecosystem-tagline {
  color: rgba(255, 255, 255, 0.7);
}

/* Technology Ecosystem: stacked panel — AI layers full width, services row below (wider than tall) */
.leadership-panel-blue-2 .ecosystem-integrated-panel {
  margin-top: 22px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 14px;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.14);
}

.leadership-panel-blue-2 .ecosystem-integrated-panel .ecosystem-stack-col .ecosystem-grid {
  border: none;
  border-radius: 0;
}

.leadership-panel-blue-2 .ecosystem-split {
  margin-top: 0;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0;
}

.leadership-panel-blue-2 .ecosystem-stack-col {
  padding: 4px 16px 0;
}

@media (min-width: 720px) {
  .leadership-panel-blue-2 .ecosystem-stack-col {
    padding: 6px 22px 0;
  }
}

.leadership-panel-blue-2 .ecosystem-integrated-panel .ecosystem-layer {
  padding: 16px 18px;
}

@media (min-width: 900px) {
  .leadership-panel-blue-2 .ecosystem-integrated-panel .ecosystem-layer {
    padding: 18px 22px;
  }

  .leadership-panel-blue-2 .ecosystem-integrated-panel .layer-label {
    font-size: 1rem;
  }

  .leadership-panel-blue-2 .ecosystem-integrated-panel .ecosystem-layer p {
    font-size: 0.94rem;
    line-height: 1.55;
  }
}

.leadership-panel-blue-2 .ecosystem-services-aside {
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  padding: 22px 18px 26px;
  background: rgba(0, 6, 28, 0.22);
}

@media (min-width: 720px) {
  .leadership-panel-blue-2 .ecosystem-services-aside {
    padding: 26px 28px 30px;
  }
}

.leadership-panel-blue-2 .ecosystem-stack-col .ecosystem-grid {
  margin-top: 0;
}

.leadership-panel-blue-2 .ecoservices-heading {
  font-family: "Montserrat", sans-serif;
  font-size: 1.12rem;
  font-weight: 700;
  color: #f7f8fb;
  margin: 0 0 18px;
  letter-spacing: 0.02em;
  text-align: center;
}

.leadership-panel-blue-2 .ecosystem-services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  width: 100%;
}

@media (min-width: 720px) {
  .leadership-panel-blue-2 .ecosystem-services-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px 22px;
  }
}

.leadership-panel-blue-2 .ecosystem-service-pillar {
  background: rgba(0, 0, 0, 0.28);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 12px;
  padding: 16px 18px 18px;
}

.leadership-panel-blue-2 .ecoservice-title {
  font-family: "Montserrat", sans-serif;
  font-size: 0.98rem;
  font-weight: 700;
  color: #7cecff;
  margin: 0 0 12px;
  line-height: 1.3;
}

.leadership-panel-blue-2 .ecoservice-list {
  margin: 0;
  padding-left: 1.2em;
  font-size: 0.86rem;
  line-height: 1.5;
  color: #eef1f8;
}

.leadership-panel-blue-2 .ecoservice-list li {
  margin-bottom: 8px;
}

.leadership-panel-blue-2 .ecoservice-list li:last-child {
  margin-bottom: 0;
}

.split {
  display: grid;
  grid-template-columns: 1.06fr 1fr;
  gap: 34px;
  align-items: start;
}

h2 {
  margin: 10px 0 14px;
  font-family: "Montserrat", sans-serif;
  font-size: clamp(1.6rem, 3.5vw, 3rem);
  line-height: 1.18;
}

p {
  margin: 0 0 12px;
  line-height: 1.76;
}

.section-intro {
  color: #d8ddf0;
  max-width: 70ch;
  margin-bottom: 22px;
}

.tone-why .section-intro,
.tone-challenge .section-intro,
.tone-blog .section-intro {
  color: #3b4d66;
}

.tone-why p,
.tone-challenge p,
.tone-blog p {
  color: #1a2332;
}

.card-grid {
  margin-top: 20px;
  display: grid;
  gap: 14px;
}

.two-up {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.three-up {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.feature-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 14px;
  padding: 20px;
}

.feature-card h3 {
  margin: 0 0 9px;
  font-size: 1.08rem;
}

.feature-card p {
  margin: 0;
  color: #dde2f1;
}

.stat-stack {
  display: grid;
  gap: 14px;
}

.stat-card strong {
  display: block;
  font-size: 2rem;
  margin-bottom: 10px;
  font-family: "Montserrat", sans-serif;
}

.portfolio-grid {
  margin-top: 22px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.portfolio-grid ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
}

.portfolio-grid li {
  position: relative;
  padding-left: 24px;
  color: #dde2f1;
}

.tone-foundation-white .portfolio-grid li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: #000000;
  font-weight: 700;
}

.blog-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.blog-tag {
  display: inline-flex;
  width: fit-content;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.11em;
  background: rgba(255, 255, 255, 0.22);
  padding: 5px 10px;
  border-radius: 999px;
}

.text-link {
  color: #ffffff;
  text-decoration: underline;
  text-underline-offset: 4px;
  font-weight: 600;
}

.cta-section {
  padding: 92px 0;
  background: linear-gradient(140deg, rgba(3, 17, 60, 0.88), rgba(13, 51, 146, 0.76));
}

.cta-box {
  max-width: 900px;
  text-align: center;
}

.cta-box h2 {
  margin-top: 0;
}

.cta-box p {
  max-width: 62ch;
  margin: 0 auto;
  color: #d6ddef;
}

.cta-actions {
  margin-top: 26px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
}

.cta-contact {
  justify-content: center;
}

.footer {
  padding: 34px 0 24px;
  background: rgba(8, 10, 16, 0.92);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  padding-bottom: 20px;
}

.footer-title {
  margin: 0 0 8px;
  font-family: "Montserrat", sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
}

.footer p {
  margin: 0 0 6px;
  color: rgba(255, 255, 255, 0.9);
}

.social-links {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.social-links a {
  text-decoration: none;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 999px;
  padding: 7px 12px;
  font-size: 0.85rem;
}

.footer-bottom {
  padding-top: 16px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px 20px;
}

.footer-bottom p {
  margin: 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.88rem;
}

.footer-legal {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.35);
}

.footer-legal:hover {
  color: #ffffff;
  border-bottom-color: rgba(255, 255, 255, 0.65);
}

.legal-meta {
  margin: 0;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.72);
}

.legal-prose {
  max-width: 70ch;
}

.legal-prose p {
  margin: 0 0 14px;
  color: #1a2332;
}

.band-light .text-link-inline {
  color: #2f74ff;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.page-hero {
  padding: 78px 0 54px;
}

.page-hero h1 {
  margin: 12px 0 14px;
  max-width: 14ch;
  font-family: "Montserrat", sans-serif;
  font-size: clamp(1.85rem, 5vw, 3.6rem);
  line-height: 1.08;
}

.cisco-hero-title {
  display: inline-flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 10px;
  max-width: none;
  margin-bottom: 6px;
}

.mint-inline-tag {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 999px;
  font-family: "Montserrat", sans-serif;
  font-size: 0.35em;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: #7cecff;
  background: rgba(8, 33, 101, 0.6);
  border: 1px solid rgba(124, 236, 255, 0.35);
  line-height: 1.1;
}

.page-hero .mint-header-tag {
  display: block;
  margin: 0 0 14px;
  max-width: none;
  font-family: "Montserrat", sans-serif;
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #7cecff;
  line-height: 1.1;
}

.page-hero p {
  max-width: 62ch;
  color: var(--text-muted);
}

.mint-callout {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
  padding: 8px 14px;
  border: 1px solid rgba(52, 217, 232, 0.38);
  border-radius: 999px;
  background: rgba(5, 31, 93, 0.5);
  color: #eef5ff;
  font-size: 0.92rem;
}

.mint-callout a {
  color: #7cecff;
  text-underline-offset: 3px;
}

.mint-callout a:hover {
  color: #b9f7ff;
}

.metric-grid {
  margin-top: 22px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.metric-item {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  padding: 14px;
}

.metric-item strong {
  font-size: 1.72rem;
  font-family: "Montserrat", sans-serif;
}

.metric-item span {
  display: block;
  margin-top: 4px;
  color: #dde2ef;
  font-size: 0.9rem;
}

.tone-why .metric-item {
  background: rgba(31, 95, 255, 0.08);
  border: 1px solid rgba(31, 95, 255, 0.24);
}

.tone-why .metric-item strong {
  color: #0a1929;
}

.tone-why .metric-item span {
  color: #1a2332;
}

.profile-grid {
  margin-top: 20px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.profile-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 14px;
  padding: 20px;
}

.profile-card h3 {
  margin: 0;
}

.profile-card .role {
  margin: 5px 0 10px;
  color: #ffffff;
  font-weight: 600;
}

.profile-card p {
  margin: 0;
  color: #dde2ef;
}

.ecosystem-grid {
  margin-top: 22px;
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  gap: 0;
  border: 1px solid #d7e1f2;
  border-radius: 12px;
  overflow: hidden;
}

.ecosystem-layer {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 18px 24px;
  border-bottom: 1px solid #e4ebf7;
}

.ecosystem-layer:last-child {
  border-bottom: none;
}

.layer-label {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 0.92rem;
  color: #0a1929;
  min-width: 220px;
  flex-shrink: 0;
}

.ecosystem-layer p {
  margin: 0;
  color: #3c4d67;
  font-size: 0.9rem;
}

.ecosystem-tagline {
  margin-top: 20px !important;
  text-align: center;
  color: #2f5fae;
  font-size: 0.95rem;
  font-style: italic;
}

.path-grid {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.path-step {
  background: #ffffff;
  border: 1px solid #d7e1f2;
  border-radius: 12px;
  padding: 20px;
}

.path-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--brand);
  color: #ffffff;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 12px;
}

.path-step h3 {
  margin: 0 0 8px;
  font-size: 1rem;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  color: #0a1929;
}

.path-step p {
  margin: 0;
  color: #27374f;
  font-size: 0.9rem;
}

.tone-challenge .path-step h3 {
  color: #091727;
}

.tone-challenge .path-step p {
  color: #27374f;
}

.tone-dark {
  background: rgba(0, 0, 0, 0.25);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.logo-strip-label {
  text-align: center;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.5);
  margin: 0 0 24px;
}

.logo-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 12px 32px;
}

.logo-name {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.85);
  padding: 10px 20px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
}

.logo-strip-tagline {
  text-align: center;
  margin: 24px 0 0 !important;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.88rem;
  font-style: italic;
}

.stat-strip-section {
  background: linear-gradient(135deg, rgba(47, 116, 255, 0.12), rgba(14, 28, 74, 0.6));
  border-top: 1px solid rgba(47, 116, 255, 0.25);
  border-bottom: 1px solid rgba(47, 116, 255, 0.25);
}

.stat-strip-heading {
  text-align: center;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(255, 255, 255, 0.55);
  margin: 0 0 28px;
}

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

.stat-strip-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 14px;
  padding: 28px 20px;
  gap: 10px;
}

.stat-strip-item--accent {
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.05);
}

.stat-strip-item strong {
  font-family: "Montserrat", sans-serif;
  font-size: 3rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1;
}

.stat-strip-item--accent strong {
  color: #ffffff;
}

.stat-strip-item span {
  font-size: 0.88rem;
  color: #c8cfdd;
  line-height: 1.5;
  max-width: 22ch;
}

/* Stats row on light band (Why Ngenium page) */
.tone-why.band-light .stat-strip-heading {
  color: #5a6a8a;
}

.tone-why.band-light .stat-strip-item,
.tone-why.band-light .stat-strip-item--accent {
  background: #ffffff;
  border: 1px solid #d7e1f2;
}

.tone-why.band-light .stat-strip-item strong,
.tone-why.band-light .stat-strip-item--accent strong {
  color: #1f4fa0;
}

.tone-why.band-light .stat-strip-item span {
  color: #3c4d67;
}

.tone-why.band-light .container + .container {
  margin-top: 48px;
}

.exp-title {
  text-align: center;
  margin-bottom: 40px;
}

.exp-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border: 1px solid #d7e1f2;
  border-radius: 14px;
  overflow: hidden;
}

.exp-col {
  padding: 0;
  border-right: 1px solid #d7e1f2;
}

.exp-col--right {
  border-right: none;
}

.exp-item {
  padding: 24px 28px;
  border-bottom: 1px solid #e4ebf7;
}

.exp-item:last-child {
  border-bottom: none;
}

.exp-item-title {
  font-family: "Montserrat", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: #0a1929;
  margin: 0 0 8px;
}

.exp-item-body {
  margin: 0 0 0;
  color: #3c4d67;
  font-size: 0.9rem;
  line-height: 1.6;
}

.exp-item-stat {
  margin: 8px 0 0;
  font-family: "Montserrat", sans-serif;
  font-size: 1.02rem;
  font-weight: 700;
  color: #1f4fa0;
}

.exp-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}

.exp-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 158px;
  height: 88px;
  padding: 6px 12px;
  border: 1px solid #b9c9e8;
  border-radius: 8px;
  background: #f2f6ff;
}

.exp-logo img {
  max-height: 76px;
  max-width: 100%;
  width: auto;
  object-fit: contain;
  display: block;
}

.exp-logo-text {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 0.92rem;
  color: #2f5fae;
}

.exp-logo--more {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 0.92rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #1f4fa0;
  background: linear-gradient(135deg, #e7efff, #f6f9ff);
  border-color: #9eb7e0;
}

.partner-logo {
  width: auto;
  object-fit: contain;
}

/* Trusted-by logos — max boxes (object-fit: contain preserves each mark’s aspect ratio) */
.partner-logo--target {
  max-height: 80px;
  max-width: 160px;
}

.partner-logo--ford {
  max-height: 78px;
  max-width: 210px;
}

.partner-logo--bmw {
  max-height: 48px;
  max-width: 48px;
}

.partner-logo--stanford-medicine {
  max-height: 92px;
  max-width: 370px;
  width: auto;
}

/* Mono PNGs are solid black on transparent — displayed inside white pill boxes, no filter needed */

.exp-tagline {
  text-align: center;
  margin-top: 28px !important;
  font-family: "Montserrat", sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: #2f5fae;
  font-style: italic;
}

/* Experience block: stack columns on phones, keep logo row usable */
@media (max-width: 768px) {
  .exp-grid {
    grid-template-columns: 1fr;
  }

  .exp-col {
    border-right: none;
    border-bottom: 1px solid #d7e1f2;
  }

  .exp-col:last-child,
  .exp-col--right {
    border-bottom: none;
  }

  .exp-item {
    padding: 20px 18px;
  }

  .exp-logos {
    justify-content: center;
    gap: 8px;
  }

  .exp-logo {
    min-width: 0;
    flex: 1 1 calc(50% - 6px);
    max-width: calc(50% - 4px);
    height: 80px;
    padding: 6px 10px;
  }

  .exp-logo img {
    max-height: 70px;
  }
}

@media (max-width: 380px) {
  .exp-logo {
    height: 76px;
  }

  .partner-logo--stanford-medicine {
    max-height: 80px;
    max-width: min(100%, 300px);
  }

  .partner-logo--target {
    max-height: 72px;
    max-width: min(100%, 150px);
  }

  .partner-logo--ford {
    max-height: 72px;
    max-width: min(100%, 190px);
  }

  .partner-logo--bmw {
    max-height: 44px;
    max-width: 44px;
  }
}

.post-list {
  margin-top: 20px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.post-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 14px;
  padding: 20px;
}

.post-card h3 {
  margin: 0 0 10px;
}

.post-card p {
  margin: 0 0 12px;
  color: #dce1ee;
}

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

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

@media (max-width: 980px) {
  .topbar .container.nav-wrap {
    position: relative;
    z-index: 25;
    overflow: visible;
  }

  .nav {
    display: none;
  }

  .menu-btn {
    display: flex;
  }

  .nav.open {
    display: flex;
    position: absolute;
    right: max(12px, env(safe-area-inset-right));
    left: auto;
    top: calc(100% + 8px);
    width: min(320px, calc(100vw - 24px));
    max-width: calc(100vw - 24px);
    max-height: min(72vh, calc(100vh - 120px));
    flex-direction: column;
    align-items: stretch;
    gap: 2px;
    padding: 12px 12px max(16px, env(safe-area-inset-bottom));
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.24);
    background: rgba(9, 12, 18, 0.98);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.45);
    z-index: 205;
    overflow-x: visible;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
    /* pan-y can make nested links hard to activate; auto keeps scroll + reliable taps */
    touch-action: auto;
  }

  .nav.open > a {
    display: flex;
    align-items: center;
    min-height: 48px;
    padding: 12px 12px;
    border-radius: 8px;
    flex-shrink: 0;
    -webkit-tap-highlight-color: rgba(255, 255, 255, 0.08);
  }

  .nav-cta--toolbar {
    display: none !important;
  }

  .nav.open .nav-cta--inmenu {
    display: inline-flex !important;
    width: 100%;
    justify-content: center;
    min-height: 48px;
    margin-top: 8px;
    box-sizing: border-box;
    flex-shrink: 0;
  }

  /* Partner Services: show submenu inline (hover unreliable on touch) */
  .nav-dropdown {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    flex-shrink: 0;
  }

  .nav-dropdown-toggle {
    padding: 12px 12px;
    display: flex;
    align-items: center;
    min-height: 48px;
    box-sizing: border-box;
  }

  .nav-dropdown-menu {
    position: static;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
    left: auto;
    min-width: 0;
    width: 100%;
    margin-top: 2px;
    padding: 4px 0 8px;
    border: none;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 8px;
    box-shadow: none;
  }

  .nav.open a {
    cursor: pointer;
    touch-action: manipulation;
  }

  .nav-dropdown-menu a {
    display: flex;
    align-items: center;
    min-height: 48px;
    padding: 12px 14px;
    box-sizing: border-box;
    position: relative;
    z-index: 2;
    -webkit-tap-highlight-color: rgba(255, 255, 255, 0.08);
  }

  .split,
  .two-up,
  .three-up,
  .portfolio-grid,
  .metric-grid,
  .profile-grid,
  .post-list,
  .footer-grid,
  .path-grid {
    grid-template-columns: 1fr;
  }

  .hero,
  .page-hero,
  .content-section,
  .cta-section {
    padding-top: 68px;
    padding-bottom: 66px;
  }
}

@media (max-width: 640px) {
  .brand-logo {
    width: 64px;
    height: 64px;
  }

  .page-home .brand-logo {
    width: 76px;
    height: 76px;
  }

  .page-home .nav-wrap {
    min-height: 96px;
  }

  .brand-text {
    font-size: 1.85rem;
  }

  .cisco-hero-title {
    margin-bottom: 4px;
  }

  .mint-inline-tag {
    font-size: 0.42em;
  }

  .page-hero .mint-header-tag {
    font-size: 0.82rem;
    margin-bottom: 10px;
  }

  .inline-contact {
    flex-direction: column;
    gap: 8px;
  }

  .hero-actions,
  .cta-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .btn {
    width: 100%;
  }

  .ecosystem-layer {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding: 16px 18px;
  }

  .layer-label {
    min-width: 0;
  }

  .stat-strip-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .stat-strip-item {
    padding: 22px 16px;
  }

  .stat-strip-item strong {
    font-size: 2.5rem;
  }

  .mint-callout {
    font-size: 0.85rem;
    line-height: 1.45;
    padding: 8px 12px;
    max-width: 100%;
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
  }

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

  .legal-prose {
    max-width: 100%;
  }

  .hero h1,
  .page-hero h1 {
    max-width: none;
  }

  .partner-showcase-heading {
    font-size: clamp(1.35rem, 5vw, 1.85rem);
  }

  main {
    min-width: 0;
  }

  p,
  li,
  td,
  th,
  .inline-contact span,
  .footer p,
  .ecoservice-list li,
  .exp-item-body,
  .mint-callout {
    overflow-wrap: break-word;
    word-wrap: break-word;
  }

  .mint-callout a {
    overflow-wrap: anywhere;
  }

  .terms-body {
    overflow-wrap: break-word;
  }
}

/* ── Phones / narrow tablets: readability, no blank sections, safe areas ──
   (reveal animation uses opacity:0 until JS adds .show — IO can miss on mobile) */
@media (max-width: 768px) {
  html,
  body {
    overflow-x: hidden;
  }

  section.reveal {
    opacity: 1 !important;
    transform: none !important;
    transition: none;
  }

  main {
    padding-bottom: max(0px, env(safe-area-inset-bottom, 0px));
  }

  .hero .tech-paragraph,
  .hero .lead-copy {
    color: #eef2ff;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.35);
  }

  .hero .section-intro {
    color: #e8ecfb;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
  }

  .tone-why .section-intro,
  .tone-challenge .section-intro,
  .tone-blog .section-intro {
    color: #1a2332;
  }

  .partner-showcase-sub {
    color: #1a2332 !important;
  }

  .band-light .muted,
  .tone-challenge .muted,
  .partner-showcase-section .muted {
    color: #2d3a4d;
  }
}
