/* ═══════════════════════════════════════════════════════════════════════════
   ESDS — UNIFIED STYLESHEET
   ───────────────────────────────────────────────────────────────────────────
   Sections:
     §00  TOKENS + GLOBAL RESETS   (ESDS-nav palette, gold/saffron remapped)
     §01  NAVBAR (ESDS-nav · light · mega menu · search overlay · drawer)
     §02  HERO (Spotlight)
     §03  SECTION 2 · Command Live Map
     §04  SECTION 3 & 12 · Sector Marquee
     §05  SECTION 4 · Split Panel (dark)
     §06  SECTION 7 · Bento Intelligence (dark)
     §07  SECTION 11 · Proof Deck (client stories)
     §08  BLANK SECTION PLACEHOLDERS
     §09  POLICY + DEPENDENCY (sections 5 & 6)
     §10  CONTACT FORM
     §11  FOOTER (Sovereign Console)
     §12  RESPONSIVE
   ═══════════════════════════════════════════════════════════════════════════ */


/* ═══════════════════════════════════════════════════════════════════════════
   §00 · TOKENS + GLOBAL RESETS
   ═══════════════════════════════════════════════════════════════════════════ */
:root {
  /* Brand core */
  --esds-navy: #0A1628;
  --esds-deep: #0F1D32;
  --esds-surface: #1B2838;

  /* ── ESDS-NAV PRIMARY ACCENT (highlight blue gradient) ───────────────── */
  --highlight-blue: hsla(217, 100%, 50%, 1);
  --highlight-blue-light: hsla(186, 100%, 69%, 1);
  --highlight-bg: rgba(0, 97, 255, 0.08);

  /* ── LEGACY ACCENT TOKENS · remapped to new blue scheme ─────────────── */
  /* Every existing selector that used `--esds-accent` / `--esds-gold` /
     `--esds-saffron` for DECORATIVE purposes automatically picks up blue. */
  --esds-accent:       var(--highlight-blue);
  --esds-accent-light: var(--highlight-blue-light);
  --esds-accent-glow:  rgba(0, 97, 255, 0.25);

  --esds-gold:         var(--highlight-blue);
  --esds-gold-light:   var(--highlight-blue-light);

  --esds-saffron:      var(--highlight-blue);

  /* ── INDIA IDENTITY (flag / tricolor only — not for decoration) ─────── */
  --india-saffron: #FF6B35;
  --india-green:   #138808;

  /* Gray scale */
  --esds-white: #FFFFFF;
  --esds-gray-50:  #F8FAFC;
  --esds-gray-100: #E2E8F0;
  --esds-gray-200: #CBD5E1;
  --esds-gray-300: #94A3B8;
  --esds-gray-400: #64748B;
  --esds-gray-500: #475569;
  --esds-gray-700: #334155;
  --esds-gray-900: #0F172A;

  /* Semantic */
  --esds-red:         #EF4444;
  --esds-red-light:   #F87171;
  --esds-red-bg:      rgba(239, 68, 68, 0.1);
  --esds-green:       #10B981;
  --esds-green-light: #34D399;
  --esds-green-bg:    rgba(16, 185, 129, 0.1);

  /* Aliased for backwards compatibility with shared file */
  --esds-india-green: var(--india-green);

  /* Motion */
  --esds-ease: cubic-bezier(0.16, 1, 0.3, 1);
  --esds-transition: 0.25s var(--esds-ease);

  /* Layout */
  --esds-nav-h: 80px;
  --esds-util-h: 36px;

  /* Elevation */
  --shadow-sm:  0 1px 2px   rgba(10, 22, 40, 0.06);
  --shadow-md:  0 8px 24px  rgba(10, 22, 40, 0.08);
  --shadow-lg:  0 20px 60px rgba(10, 22, 40, 0.15);
  --shadow-nav: 0 2px 20px  rgba(10, 22, 40, 0.06);
}

* { box-sizing: border-box; }
html, body {
  margin: 0;
  padding: 0;
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: var(--esds-gray-700);
  background: #fff;
  -webkit-font-smoothing: antialiased;
  scroll-padding-top: calc(var(--esds-nav-h) + var(--esds-util-h) + 20px);
}
html { scroll-behavior: smooth; }
body { overflow-x: hidden; font-size: 15px; line-height: 1.6; }
img, svg { max-width: 100%; display: block; }

/* Typography utilities */
.fw-800 { font-weight: 800; }
.fw-600 { font-weight: 600; }
.text-gradient-hero {
  background: linear-gradient(90deg, var(--highlight-blue) 0%, var(--highlight-blue-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* HIGHLIGHTER BUTTON (canonical primary CTA style) */
.btn-highlighter {
  background: linear-gradient(90deg, var(--highlight-blue) 0%, var(--highlight-blue-light) 100%);
  color: #fff !important;
  border: none;
  border-radius: 12px;
  padding: 14px 32px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-size: 0.95rem;
  box-shadow: 0 8px 25px rgba(0, 97, 255, 0.4);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
  z-index: 1;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  font-family: inherit;
}
.btn-highlighter::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(90deg, var(--highlight-blue-light) 0%, var(--highlight-blue) 100%);
  z-index: -1;
  transition: opacity 0.4s ease;
  opacity: 0;
}
.btn-highlighter:hover::before { opacity: 1; }
.btn-highlighter:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 15px 35px rgba(0, 97, 255, 0.6);
}
.btn-highlighter.btn-sm {
  padding: 10px 22px;
  font-size: 0.78rem;
  border-radius: 10px;
  letter-spacing: 0.3px;
}

.btn-outline-light-custom {
  border: none;
  color: #fff;
  border-radius: 12px;
  padding: 14px 32px;
  font-weight: 700;
  transition: var(--esds-transition);
  background: rgba(255,255,255,0.1);
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  cursor: pointer;
}
.btn-outline-light-custom:hover {
  background: rgba(255,255,255,0.2);
  transform: translateY(-4px);
  color: #fff;
}


/* ═══════════════════════════════════════════════════════════════════════════
   §01 · NAVBAR · ESDS-nav (light · mega menu · search overlay · drawer)
   ═══════════════════════════════════════════════════════════════════════════ */

/* Top utility bar */
.top-bar {
  background: var(--esds-gray-50);
  border-bottom: 1px solid var(--esds-gray-100);
  color: var(--esds-gray-500);
  font-size: 12px;
  padding: 8px 0;
}
.top-bar-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.top-bar-left { display: flex; align-items: center; gap: 18px; }
.top-bar-badge {
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--esds-gray-700);
  font-weight: 600;
  letter-spacing: 0.02em;
}
.top-bar-badge .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--esds-green);
  box-shadow: 0 0 0 3px rgba(16,185,129,0.15);
  animation: nav-pulseLive 2s ease-in-out infinite;
}
@keyframes nav-pulseLive {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 3px rgba(16,185,129,0.15); }
  50%      { opacity: 0.5; box-shadow: 0 0 0 6px rgba(16,185,129,0); }
}
.top-bar-right { display: flex; align-items: center; gap: 20px; }
.top-bar-link {
  color: var(--esds-gray-500);
  text-decoration: none;
  transition: color 0.2s;
  display: inline-flex; align-items: center; gap: 6px;
}
.top-bar-link:hover { color: var(--esds-navy); }
.top-bar-sep { width: 1px; height: 12px; background: var(--esds-gray-200); }

/* Main nav shell */
.nav-shell {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #fff;
  border-bottom: 1px solid var(--esds-gray-100);
  transition: background 0.3s ease, box-shadow 0.3s ease, backdrop-filter 0.3s ease;
}
.nav-shell.scrolled {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: saturate(180%) blur(18px);
  -webkit-backdrop-filter: saturate(180%) blur(18px);
  box-shadow: var(--shadow-nav);
}

.nav {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 32px;
  height: var(--esds-nav-h);
  display: flex;
  align-items: center;
  gap: 32px;
  position: relative;
}

/* Logo */
.nav-logo {
  display: flex; align-items: center; gap: 10px;
  text-decoration: none;
  color: var(--esds-navy);
  flex-shrink: 0;
}
.nav-logo-mark {
  width: 38px; height: 38px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--highlight-blue), var(--highlight-blue-light));
  display: grid; place-items: center;
  box-shadow: 0 6px 18px rgba(0, 97, 255, 0.3);
  position: relative; overflow: hidden;
}
.nav-logo-mark::before {
  content:''; position: absolute; inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,0.4) 50%, transparent 70%);
  transform: translateX(-100%);
  animation: nav-shimmer 5s ease-in-out infinite;
}
@keyframes nav-shimmer {
  0%, 100% { transform: translateX(-120%); }
  50%      { transform: translateX(120%); }
}
.nav-logo-mark svg { width: 22px; height: 22px; position: relative; z-index: 1; }
.nav-logo-text { display: flex; flex-direction: column; line-height: 1; }
.nav-logo-name { font-size: 20px; font-weight: 800; letter-spacing: -0.02em; color: var(--esds-navy); }
.nav-logo-tag {
  font-size: 9.5px; font-weight: 700;
  color: var(--highlight-blue);
  text-transform: uppercase; letter-spacing: 0.15em;
  margin-top: 4px;
}

/* Nav menu */
.nav-menu {
  display: flex; align-items: center;
  flex: 1; gap: 2px;
  list-style: none; margin: 0; padding: 0;
}
.nav-item { position: static; }
.nav-link {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 0 16px;
  height: var(--esds-nav-h);
  font-size: 14px;
  font-weight: 600;
  color: var(--esds-gray-700);
  background: none; border: none; cursor: pointer;
  font-family: inherit;
  position: relative;
  transition: color 0.2s;
  white-space: nowrap;
}
.nav-link .chev {
  width: 11px; height: 11px;
  transition: transform 0.3s var(--esds-ease);
  opacity: 0.6;
}
.nav-link::after {
  content: '';
  position: absolute;
  left: 16px; right: 16px; bottom: 18px;
  height: 2px;
  background: linear-gradient(90deg, var(--highlight-blue), var(--highlight-blue-light));
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.4s var(--esds-ease);
}
.nav-item:hover .nav-link,
.nav-item.active .nav-link { color: var(--esds-navy); }
.nav-item:hover .nav-link::after,
.nav-item.active .nav-link::after { transform: scaleX(1); }
.nav-item:hover .nav-link .chev,
.nav-item.active .nav-link .chev { transform: rotate(180deg); opacity: 1; color: var(--highlight-blue); }

/* Nav actions */
.nav-actions {
  display: flex; align-items: center; gap: 10px;
  flex-shrink: 0;
  margin-left: auto;
}
.icon-btn {
  width: 40px; height: 40px;
  display: grid; place-items: center;
  background: var(--esds-gray-50);
  border: 1px solid var(--esds-gray-100);
  color: var(--esds-gray-500);
  border-radius: 10px;
  cursor: pointer;
  transition: var(--esds-transition);
}
.icon-btn:hover {
  background: var(--highlight-bg);
  color: var(--highlight-blue);
  border-color: rgba(0, 97, 255, 0.2);
}
.icon-btn.active {
  background: var(--highlight-bg);
  color: var(--highlight-blue);
  border-color: rgba(0, 97, 255, 0.3);
}
.icon-btn svg { width: 18px; height: 18px; }

.burger {
  display: none;
  width: 42px; height: 42px;
  background: var(--esds-gray-50);
  border: 1px solid var(--esds-gray-100);
  border-radius: 10px;
  cursor: pointer;
  position: relative;
}
.burger span {
  position: absolute; left: 11px; right: 11px; height: 2px;
  background: var(--esds-navy); border-radius: 2px;
  transition: transform 0.35s var(--esds-ease), opacity 0.2s;
}
.burger span:nth-child(1) { top: 14px; }
.burger span:nth-child(2) { top: 20px; }
.burger span:nth-child(3) { top: 26px; }
.burger.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* MEGA PANELS */
.mega {
  position: absolute;
  top: 100%;
  left: 0; right: 0;
  background: #fff;
  border-top: 1px solid var(--esds-gray-100);
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity 0.25s var(--esds-ease),
              transform 0.3s var(--esds-ease),
              visibility 0.25s;
  z-index: 999;
  max-height: calc(100vh - var(--esds-nav-h));
  overflow-y: auto;
}
.mega.open { opacity: 1; visibility: visible; transform: translateY(0); }
.mega::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--highlight-blue), var(--highlight-blue-light), transparent);
}

.mega-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 40px 32px 48px;
}

.mega-grid { display: grid; gap: 32px; }
.mega-grid.cols-4 { grid-template-columns: 1.2fr 1fr 1fr 1fr; }
.mega-grid.cols-3 { grid-template-columns: 1.3fr 1fr 1fr; }
.mega-grid.cols-5 { grid-template-columns: repeat(4, 1fr) 1.1fr; }

.mg-group h4 {
  font-size: 10.5px;
  font-weight: 800;
  color: var(--highlight-blue);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin: 0 0 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--esds-gray-100);
}

.mg-link {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 10px;
  margin: 0 -10px;
  text-decoration: none;
  color: inherit;
  border-radius: 8px;
  transition: background 0.2s, padding 0.2s;
  position: relative;
}
.mg-link:hover {
  background: var(--highlight-bg);
  padding-left: 14px;
}
.mg-bullet {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--esds-gray-200);
  flex-shrink: 0;
  margin-top: 9px;
  transition: background 0.25s var(--esds-ease), transform 0.25s var(--esds-ease);
}
.mg-link:hover .mg-bullet {
  background: var(--highlight-blue);
  transform: scale(1.5);
  box-shadow: 0 0 0 4px rgba(0, 97, 255, 0.15);
}
.mg-body { flex: 1; min-width: 0; }
.mg-name {
  font-size: 13.5px;
  font-weight: 700;
  color: var(--esds-navy);
  line-height: 1.3;
  transition: color 0.2s;
}
.mg-link:hover .mg-name { color: var(--highlight-blue); }
.mg-desc {
  font-size: 11.5px;
  color: var(--esds-gray-400);
  line-height: 1.5;
  margin-top: 4px;
}
.mg-badge {
  display: inline-block;
  font-size: 9px;
  font-weight: 800;
  padding: 2px 8px;
  border-radius: 4px;
  margin-top: 6px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 1px solid;
}
.mg-badge.new {
  background: var(--highlight-bg);
  color: var(--highlight-blue);
  border-color: rgba(0, 97, 255, 0.2);
}
.mg-badge.hot {
  background: var(--esds-red-bg);
  color: var(--esds-red);
  border-color: rgba(239, 68, 68, 0.2);
}

.mg-cta {
  background: linear-gradient(160deg, rgba(0, 97, 255, 0.06), rgba(126, 233, 255, 0.04));
  border: 1px solid rgba(0, 97, 255, 0.15);
  border-radius: 14px;
  padding: 20px;
  display: flex; flex-direction: column; gap: 14px;
  position: relative;
  overflow: hidden;
}
.mg-cta::after {
  content: '';
  position: absolute;
  top: -40%; right: -30%;
  width: 140px; height: 140px;
  background: radial-gradient(circle, rgba(0, 97, 255, 0.15), transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.mg-cta h4 {
  color: var(--highlight-blue) !important;
  border-bottom-color: rgba(0, 97, 255, 0.2) !important;
  margin-bottom: 4px !important;
}
.mg-cta-label {
  font-size: 10px; font-weight: 700;
  color: var(--esds-gray-500);
  letter-spacing: 0.15em; text-transform: uppercase;
}
.mg-cta-title {
  font-size: 15px;
  font-weight: 800;
  color: var(--esds-navy);
  line-height: 1.35;
  margin: 2px 0 4px;
}
.mg-cta-btn {
  display: inline-flex; align-items: center; gap: 6px;
  background: linear-gradient(90deg, var(--highlight-blue), var(--highlight-blue-light));
  color: #fff;
  padding: 9px 16px;
  border-radius: 8px;
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: 0.04em;
  width: fit-content;
  box-shadow: 0 6px 18px rgba(0, 97, 255, 0.35);
  transition: transform 0.3s var(--esds-ease);
  cursor: pointer;
  text-decoration: none;
}
.mg-cta-btn:hover { transform: translateY(-2px); color: #fff; }
.mg-cta-stats {
  display: flex; flex-direction: column; gap: 10px;
  padding-top: 14px;
  border-top: 1px dashed var(--esds-gray-200);
}
.mg-stat {
  display: flex; align-items: center; justify-content: space-between;
  font-size: 12px;
}
.mg-stat-label { color: var(--esds-gray-500); }
.mg-stat-val {
  font-weight: 800;
  color: var(--esds-navy);
  font-feature-settings: "tnum";
}

.mega-backdrop {
  position: fixed; inset: var(--esds-nav-h) 0 0 0;
  background: rgba(10, 22, 40, 0.25);
  backdrop-filter: blur(2px);
  opacity: 0; visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s;
  z-index: 998;
  pointer-events: none;
}
.mega-backdrop.show { opacity: 1; visibility: visible; }

/* SEARCH OVERLAY */
.search-overlay {
  position: absolute;
  top: 100%;
  left: 0; right: 0;
  background: #fff;
  border-top: 1px solid var(--esds-gray-100);
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity 0.25s var(--esds-ease),
              transform 0.3s var(--esds-ease),
              visibility 0.25s;
  z-index: 999;
  max-height: calc(100vh - var(--esds-nav-h));
  overflow-y: auto;
}
.search-overlay.open { opacity: 1; visibility: visible; transform: translateY(0); }
.search-overlay::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--highlight-blue), var(--highlight-blue-light), transparent);
}
.search-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 23px 32px 14px;
}
.search-input-wrap { position: relative; margin-bottom: 32px; }
.search-input-wrap svg {
  position: absolute; left: 20px; top: 50%;
  transform: translateY(-50%);
  width: 22px; height: 22px;
  color: var(--esds-gray-400);
  pointer-events: none;
}
.search-input {
  width: 100%;
  padding: 18px 52px 18px 58px;
  font-size: 18px;
  font-weight: 500;
  font-family: inherit;
  color: var(--esds-navy);
  background: var(--esds-gray-50);
  border: 2px solid var(--esds-gray-100);
  border-radius: 14px;
  outline: none;
  transition: var(--esds-transition);
}
.search-input::placeholder { color: var(--esds-gray-400); font-weight: 400; }
.search-input:focus {
  background: #fff;
  border-color: var(--highlight-blue);
  box-shadow: 0 0 0 4px rgba(0, 97, 255, 0.1);
}
.search-clear {
  position: absolute; right: 16px; top: 50%;
  transform: translateY(-50%);
  width: 32px; height: 32px;
  display: none; place-items: center;
  background: var(--esds-gray-100);
  border: none; border-radius: 8px;
  color: var(--esds-gray-500);
  cursor: pointer;
  transition: var(--esds-transition);
}
.search-clear.show { display: grid; }
.search-clear:hover { background: var(--esds-gray-200); color: var(--esds-navy); }
.search-clear svg { width: 14px; height: 14px; }

.search-section { margin-bottom: 28px; }
.search-section:last-child { margin-bottom: 0; }
.search-section h4 {
  font-size: 10.5px;
  font-weight: 800;
  color: var(--highlight-blue);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin: 0 0 14px;
}
.search-badges { display: flex; flex-wrap: wrap; gap: 8px; }
.search-badge {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 9px 16px;
  background: #fff;
  color: var(--esds-navy);
  border: 1.5px solid var(--esds-gray-100);
  border-radius: 30px;
  font-size: 12.5px;
  font-weight: 600;
  text-decoration: none;
  transition: var(--esds-transition);
  cursor: pointer;
}
.search-badge:hover {
  background: var(--highlight-bg);
  border-color: var(--highlight-blue);
  color: var(--highlight-blue);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 97, 255, 0.15);
}
.search-badge.category {
  background: var(--highlight-bg);
  border-color: rgba(0, 97, 255, 0.2);
  color: var(--highlight-blue);
  font-weight: 700;
}
.search-badge.category:hover {
  background: var(--highlight-blue);
  color: #fff;
  border-color: var(--highlight-blue);
}
.search-badge .arr {
  width: 12px; height: 12px;
  opacity: 0.5;
  transition: transform 0.25s var(--esds-ease), opacity 0.2s;
}
.search-badge:hover .arr { opacity: 1; transform: translateX(3px); }
.search-badge.hidden { display: none; }

.search-empty {
  padding: 40px 20px;
  text-align: center;
  color: var(--esds-gray-400);
  font-size: 14px;
  display: none;
}
.search-empty.show { display: block; }

.search-hint {
  padding-top: 20px;
  margin-top: 20px;
  border-top: 1px solid var(--esds-gray-100);
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 12px;
  font-size: 11px; color: var(--esds-gray-400);
}
.kbd {
  display: inline-block;
  padding: 2px 7px;
  background: var(--esds-gray-50);
  border: 1px solid var(--esds-gray-100);
  border-radius: 5px;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 10.5px;
  color: var(--esds-gray-500);
  font-weight: 600;
}

/* MOBILE DRAWER */
.drawer {
  position: fixed;
  top: 0; right: 0; bottom: 0;
  width: min(420px, 92vw);
  background: #fff;
  border-left: 1px solid var(--esds-gray-100);
  z-index: 1100;
  transform: translateX(100%);
  transition: transform 0.45s var(--esds-ease);
  display: flex; flex-direction: column;
  box-shadow: -20px 0 60px rgba(10, 22, 40, 0.15);
}
.drawer.open { transform: translateX(0); }
.drawer-head {
  padding: 20px 24px;
  display: flex; align-items: center; justify-content: space-between;
  border-bottom: 1px solid var(--esds-gray-100);
  flex-shrink: 0;
}
.drawer-close {
  width: 40px; height: 40px;
  display: grid; place-items: center;
  background: var(--esds-gray-50);
  border: 1px solid var(--esds-gray-100);
  color: var(--esds-navy);
  border-radius: 10px; cursor: pointer;
}
.drawer-close:hover { background: var(--highlight-bg); color: var(--highlight-blue); }
.drawer-close svg { width: 18px; height: 18px; }
.drawer-body { flex: 1; overflow-y: auto; padding: 16px 0 24px; }
.d-accordion { border-bottom: 1px solid var(--esds-gray-100); }
.d-trigger {
  width: 100%;
  padding: 18px 24px;
  background: none; border: none;
  display: flex; align-items: center; justify-content: space-between;
  color: var(--esds-navy);
  font-family: inherit;
  font-size: 15px; font-weight: 700;
  cursor: pointer;
  text-align: left;
  transition: background 0.2s;
}
.d-trigger:hover { background: var(--esds-gray-50); }
.d-trigger svg {
  width: 14px; height: 14px;
  transition: transform 0.35s var(--esds-ease);
  color: var(--highlight-blue);
}
.d-accordion.open .d-trigger svg { transform: rotate(180deg); }
.d-accordion.open .d-trigger { background: var(--esds-gray-50); color: var(--highlight-blue); }
.d-content {
  max-height: 0; overflow: hidden;
  transition: max-height 0.4s var(--esds-ease);
  background: var(--esds-gray-50);
}
.d-accordion.open .d-content { max-height: 4000px; }
.d-inner { padding: 4px 24px 18px; }
.d-group { margin-bottom: 14px; }
.d-group h5 {
  font-size: 10px;
  font-weight: 800;
  color: var(--highlight-blue);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin: 14px 0 8px;
  padding-bottom: 6px;
  border-bottom: 1px solid var(--esds-gray-100);
}
.d-link {
  display: flex; align-items: flex-start; gap: 10px;
  padding: 10px 12px;
  margin: 0 -12px;
  text-decoration: none;
  color: inherit;
  border-radius: 8px;
  transition: background 0.2s;
}
.d-link:hover, .d-link:active { background: #fff; }
.d-link .mg-bullet { margin-top: 8px; }
.d-link .mg-name { font-size: 13px; }
.d-link .mg-desc { font-size: 11px; }

.drawer-foot {
  padding: 20px 24px 24px;
  border-top: 1px solid var(--esds-gray-100);
  flex-shrink: 0;
  background: var(--esds-gray-50);
}
.drawer-foot .btn-highlighter { width: 100%; justify-content: center; }
.drawer-foot-meta {
  display: flex; justify-content: space-between; align-items: center;
  margin-top: 14px;
  font-size: 11px;
  color: var(--esds-gray-400);
}
.drawer-foot-meta a { color: var(--esds-gray-700); text-decoration: none; font-weight: 600; }
.drawer-foot-meta a:hover { color: var(--highlight-blue); }

.page-backdrop {
  position: fixed; inset: 0;
  background: rgba(10, 22, 40, 0.45);
  backdrop-filter: blur(4px);
  opacity: 0; visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s;
  z-index: 1050;
}
.page-backdrop.show { opacity: 1; visibility: visible; }

.mega::-webkit-scrollbar,
.search-overlay::-webkit-scrollbar,
.drawer-body::-webkit-scrollbar { width: 6px; }
.mega::-webkit-scrollbar-thumb,
.search-overlay::-webkit-scrollbar-thumb,
.drawer-body::-webkit-scrollbar-thumb {
  background: var(--esds-gray-200);
  border-radius: 3px;
}


/* ═══════════════════════════════════════════════════════════════════════════
   §02 · HERO — Spotlight
   ═══════════════════════════════════════════════════════════════════════════ */
.site-hero {
  position: relative;
  min-height: 80vh;
  padding: 80px 32px 80px;
  overflow: hidden;
  isolation: isolate;
  font-family: 'Plus Jakarta Sans', sans-serif;
  display: flex;
  align-items: center;
}
.site-hero--spotlight {
  background: var(--esds-navy);
  color: #fff;
  text-align: center;
}
.site-hero--spotlight::before {
  content: "";
  position: absolute;
  inset: -10%;
  background: radial-gradient(circle at var(--mx, 50%) var(--my, 40%),
    rgba(0, 97, 255, 0.20) 0%,
    rgba(126, 233, 255, 0.10) 25%,
    transparent 55%);
  transition: background 0.3s ease-out;
  z-index: 0;
}
.site-hero--spotlight::after {
  content: "";
  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 0%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at center, #000 0%, transparent 75%);
  z-index: 0;
}
.site-hero__inner {
  position: relative;
  z-index: 2;
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}
.site-hero__eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 12px; font-weight: 700;
  letter-spacing: 2.4px; text-transform: uppercase;
  padding: 8px 16px; border-radius: 999px;
  margin-bottom: 28px;
  background: rgba(0, 97, 255, 0.10);
  border: 1px solid rgba(0, 97, 255, 0.30);
  color: var(--highlight-blue-light);
  backdrop-filter: blur(10px);
}
.site-hero__eyebrow .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--india-green);
  box-shadow: 0 0 0 3px rgba(19, 136, 8, 0.2);
  animation: hero-dot 1.8s ease-in-out infinite;
}
@keyframes hero-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%      { opacity: 0.5; transform: scale(0.7); }
}
.site-hero__title {
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -2px;
  margin: 0 0 24px;
  font-size: clamp(40px, 6.4vw, 92px);
  animation: spot-reveal 0.9s var(--esds-ease) both;
}
.site-hero__title em {
  font-style: normal;
  background: linear-gradient(135deg, var(--highlight-blue), var(--highlight-blue-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.site-hero__title .ai {
  background: linear-gradient(135deg, var(--highlight-blue-light), var(--highlight-blue));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@keyframes spot-reveal {
  from { opacity: 0; transform: translateY(24px); filter: blur(8px); }
  to   { opacity: 1; transform: translateY(0); filter: blur(0); }
}
.site-hero__lede {
  font-size: clamp(16px, 1.3vw, 19px);
  line-height: 1.55;
  max-width: 640px;
  margin: 0 auto 40px;
  font-weight: 500;
  color: var(--esds-gray-300);
  animation: spot-reveal 0.9s var(--esds-ease) 0.15s both;
}
.site-hero__lede strong { color: #fff; font-weight: 700; }
.site-hero__lede mark {
  background: transparent;
  color: var(--highlight-blue-light);
  font-weight: 700;
}
.site-hero__ctas {
  display: flex; flex-wrap: wrap;
  gap: 14px; justify-content: center;
  animation: spot-reveal 0.9s var(--esds-ease) 0.3s both;
}
.site-hero__cta {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 17px 30px;
  border-radius: 12px;
  font-size: 15px; font-weight: 700;
  text-decoration: none;
  transition: all 0.25s var(--esds-ease);
  min-height: 56px;
}
.site-hero__cta--primary {
  background: linear-gradient(90deg, var(--highlight-blue), var(--highlight-blue-light));
  color: #fff;
  box-shadow: 0 8px 28px rgba(0, 97, 255, 0.45), 0 0 0 1px rgba(0, 97, 255, 0.25);
}
.site-hero__cta--primary:hover {
  box-shadow: 0 14px 40px rgba(0, 97, 255, 0.55);
  filter: brightness(1.05);
  transform: translateY(-2px);
}
.site-hero__cta--ghost {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(10px);
}
.site-hero__cta--ghost:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.35);
  transform: translateY(-2px);
}
.site-hero__ticker {
  margin-top: 80px;
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  position: relative;
  overflow: hidden;
  animation: spot-reveal 1s var(--esds-ease) 0.5s both;
}




.site-hero__ticker::before,
.site-hero__ticker::after {
  content: ""; position: absolute;
  top: 0; bottom: 0;
  width: 120px; z-index: 2;
  pointer-events: none;
}
.site-hero__ticker::before { left: 0; background: linear-gradient(90deg, var(--esds-navy), transparent); }
.site-hero__ticker::after  { right: 0; background: linear-gradient(-90deg, var(--esds-navy), transparent); }
.site-hero__ticker-track {
  display: flex; gap: 48px;
  animation: ticker-scroll 28s linear infinite;
  width: max-content;
}
.site-hero__ticker-item {
  display: inline-flex; align-items: center; gap: 10px;
  color: var(--esds-gray-300);
  font-size: 13px; font-weight: 600;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  white-space: nowrap;
}
.site-hero__ticker-item::before {
  content: ""; width: 6px; height: 6px; border-radius: 50%;
  background: var(--highlight-blue-light);
}
@keyframes ticker-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}


/* ═══════════════════════════════════════════════════════════════════════════
   §03 · SECTION 2 · Command Live Map
   ═══════════════════════════════════════════════════════════════════════════ */
.site-fears {
  position: relative;
  padding: 100px 0 120px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  background:
    radial-gradient(900px 450px at 100% 0%, rgba(0, 97, 255, 0.06) 0%, transparent 60%),
    radial-gradient(700px 400px at 0% 100%, rgba(126, 233, 255, 0.04) 0%, transparent 60%),
    #fafbfc;
}
.site-fears__container { max-width: 1280px; margin: 0 auto; padding: 0 32px; position: relative; }
.site-fears__head { max-width: 920px; margin: 0 auto 56px; text-align: center; }
.site-fears__eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 12px; font-weight: 700;
  letter-spacing: 2.4px; text-transform: uppercase;
  padding: 8px 16px; border-radius: 999px;
  margin-bottom: 24px;
  background: rgba(0, 97, 255, 0.08);
  border: 1px solid rgba(0, 97, 255, 0.2);
  color: var(--highlight-blue);
}
.site-fears__eyebrow .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--india-green);
  box-shadow: 0 0 0 3px rgba(19, 136, 8, 0.2);
  animation: hero-dot 1.8s ease-in-out infinite;
}
.site-fears__title {
  font-size: clamp(32px, 4.8vw, 60px);
  font-weight: 800; line-height: 1.08; letter-spacing: -1.5px;
  margin: 0 0 24px; color: var(--esds-navy);
}
.site-fears__title em {
  font-style: normal;
  background: linear-gradient(135deg, var(--highlight-blue), var(--highlight-blue-light));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.site-fears__lede {
  font-size: clamp(17px, 1.4vw, 21px);
  line-height: 1.5; color: var(--esds-gray-500);
  margin: 0; font-weight: 500;
}
.site-fears__lede .they {
  color: var(--esds-gray-400); font-weight: 700;
  text-decoration: line-through;
  text-decoration-color: rgba(100, 116, 139, 0.4);
  text-decoration-thickness: 2px;
}
.site-fears__lede .we { color: var(--esds-navy); font-weight: 800; }
.site-fears__lede .you {
  background: linear-gradient(135deg, var(--highlight-blue), var(--highlight-blue-light));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  font-weight: 800;
}
.site-fears__lede strong { color: var(--esds-navy); font-weight: 700; }

.cmd-stage { display: grid; grid-template-columns: 1.35fr 0.85fr; gap: 28px; align-items: stretch; }
.cmd-map-wrap {
  position: relative;
  background: #fff;
  border: 1px solid var(--esds-gray-100);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(10, 22, 40, 0.08);
  display: flex; flex-direction: column;
}
.cmd-map-wrap::before {
  content: "";
  position: absolute; top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--highlight-blue), var(--highlight-blue-light));
  z-index: 2;
}
.cmd-map-head {
  padding: 18px 22px;
  display: flex; justify-content: space-between; align-items: center;
  gap: 16px; flex-wrap: wrap;
  border-bottom: 1px solid var(--esds-gray-100);
}
.cmd-map-head__title { display: flex; align-items: center; gap: 12px; }

/* Tricolor identity bar — uses literal India colours */
.cmd-map-head__tricolor {
  display: inline-flex;
  width: 4px; height: 32px;
  border-radius: 2px;
  background: linear-gradient(180deg,
    var(--india-saffron) 0% 33%,
    #fff 33% 66%,
    var(--india-green) 66% 100%);
  box-shadow: 0 0 0 1px rgba(10, 22, 40, 0.08);
  flex-shrink: 0;
}
.cmd-map-head__h {
  font-size: 14px; font-weight: 800;
  color: var(--esds-navy); letter-spacing: -0.2px;
  margin: 0;
}
.cmd-map-head__h small {
  display: block; font-size: 11px; font-weight: 600;
  color: var(--esds-gray-400); letter-spacing: 1.4px;
  text-transform: uppercase; margin-top: 3px;
}
.cmd-live-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 7px 14px;
  background: rgba(16, 185, 129, 0.08);
  border: 1px solid rgba(16, 185, 129, 0.22);
  border-radius: 999px;
  font-size: 12px; font-weight: 700;
  color: #047857; letter-spacing: 0.5px;
}
.cmd-live-badge::before {
  content: ""; width: 8px; height: 8px; border-radius: 50%;
  background: var(--esds-green);
  animation: cmd-live 1.4s ease-in-out infinite;
}
@keyframes cmd-live {
  0%, 100% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.5); }
  50%      { box-shadow: 0 0 0 8px rgba(16, 185, 129, 0); }
}
.cmd-live-map { height: 620px; width: 100%; background: #f5f7fa; flex: 1; min-height: 520px; }

.cmd-list {
  display: flex; flex-direction: column; gap: 10px;
  max-height: 720px;
  overflow-y: auto;
  padding-right: 4px;
}
.cmd-list::-webkit-scrollbar { width: 4px; }
.cmd-list::-webkit-scrollbar-thumb { background: var(--esds-gray-200); border-radius: 2px; }
.cmd-row {
  padding: 16px 18px;
  background: #fff;
  border: 1px solid var(--esds-gray-100);
  border-radius: 14px;
  cursor: pointer;
  transition: all 0.25s var(--esds-ease);
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 14px;
  align-items: center;
  text-align: left;
  font-family: inherit;
  width: 100%;
}
.cmd-row:hover,
.cmd-row:focus-visible,
.cmd-row.is-active {
  border-color: var(--highlight-blue);
  background: linear-gradient(90deg, rgba(0, 97, 255, 0.05), #fff);
  box-shadow: 0 6px 20px rgba(0, 97, 255, 0.1);
  transform: translateX(4px);
  outline: 0;
}
.cmd-row__num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px; font-weight: 700;
  color: var(--esds-gray-400);
  letter-spacing: 1px;
  padding: 3px 8px;
  background: var(--esds-gray-50);
  border-radius: 6px;
}
.cmd-row__main { min-width: 0; }
.cmd-row__name {
  font-size: 14.5px; font-weight: 800;
  color: var(--esds-navy); letter-spacing: -0.2px;
  margin-bottom: 2px;
  display: flex; align-items: center; gap: 8px;
}
.cmd-row__name .hq-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--highlight-blue);
  box-shadow: 0 0 0 2px rgba(0, 97, 255, 0.25);
  flex-shrink: 0;
}
.cmd-row__sub {
  font-size: 12.5px; color: var(--esds-gray-500);
  font-weight: 500; line-height: 1.35;
}
.cmd-row__tag {
  font-size: 9.5px; font-weight: 700;
  letter-spacing: 0.8px; text-transform: uppercase;
  padding: 4px 9px;
  background: rgba(0, 97, 255, 0.1);
  color: var(--highlight-blue);
  border-radius: 999px;
  white-space: nowrap; flex-shrink: 0;
}
.cmd-row.is-hq .cmd-row__tag {
  background: linear-gradient(90deg, var(--highlight-blue), var(--highlight-blue-light));
  color: #fff;
}

/* Leaflet DC markers */
.esds-dc-marker { position: relative; width: 28px; height: 28px; }
.esds-dc-marker__halo {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 28px; height: 28px; border-radius: 50%;
  background: rgba(0, 97, 255, 0.3);
  animation: esds-marker-pulse 2.2s ease-in-out infinite;
}
.esds-dc-marker.is-hq .esds-dc-marker__halo { background: rgba(126, 233, 255, 0.45); }
.esds-dc-marker__body {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 14px; height: 14px; border-radius: 50%;
  background: var(--highlight-blue);
  border: 3px solid #fff;
  box-shadow: 0 2px 8px rgba(0, 97, 255, 0.55);
  transition: all 0.25s var(--esds-ease);
}
.esds-dc-marker.is-hq .esds-dc-marker__body {
  background: linear-gradient(135deg, var(--highlight-blue), var(--highlight-blue-light));
  box-shadow: 0 2px 10px rgba(126, 233, 255, 0.7);
  width: 16px; height: 16px;
}
.esds-dc-marker.is-active .esds-dc-marker__body {
  background: var(--highlight-blue-light);
  box-shadow: 0 0 0 4px rgba(0, 97, 255, 0.2), 0 4px 12px rgba(0, 97, 255, 0.5);
  transform: translate(-50%, -50%) scale(1.2);
}
@keyframes esds-marker-pulse {
  0%, 100% { transform: translate(-50%, -50%) scale(0.8); opacity: 0.9; }
  50%      { transform: translate(-50%, -50%) scale(1.6); opacity: 0; }
}

.weave-line {
  stroke: var(--highlight-blue) !important;
  stroke-width: 1.8 !important;
  fill: none !important;
  opacity: 0.5 !important;
  stroke-dasharray: 5 8 !important;
  animation: weave-flow 1.4s linear infinite;
}
@keyframes weave-flow { to { stroke-dashoffset: -26; } }
.esds-packet { pointer-events: none; }
.esds-packet__dot {
  display: block;
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--highlight-blue-light);
  box-shadow: 0 0 12px var(--highlight-blue-light), 0 0 24px rgba(126, 233, 255, 0.5);
}

/* Leaflet popup restyle */
.leaflet-container { font-family: 'Plus Jakarta Sans', sans-serif !important; }
.leaflet-popup-content-wrapper {
  padding: 0 !important;
  border-radius: 14px !important;
  overflow: hidden;
  box-shadow: 0 20px 48px rgba(10, 22, 40, 0.18) !important;
  border: 1px solid var(--esds-gray-100);
}
.leaflet-popup-content { margin: 0 !important; width: 280px !important; line-height: 1.4; }
.leaflet-popup-close-button {
  top: 6px !important; right: 8px !important;
  color: #fff !important;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
  font-size: 22px !important;
  width: 24px !important; height: 24px !important;
}
.dc-popup__photo {
  width: 100%;
  aspect-ratio: 16 / 9;
  background: linear-gradient(135deg, var(--esds-navy), var(--esds-surface));
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: flex-end;
  padding: 14px;
  color: #fff;
}
.dc-popup__photo::after {
  content: "";
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(10, 22, 40, 0) 0%, rgba(10, 22, 40, 0.7) 100%),
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: auto, 24px 24px, 24px 24px;
  pointer-events: none;
}
.dc-popup__chip {
  position: absolute; top: 12px; left: 12px;
  padding: 4px 10px;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  color: #fff;
  font-size: 10px; font-weight: 700;
  border-radius: 999px;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  z-index: 2;
}
.dc-popup--hq .dc-popup__chip {
  background: linear-gradient(135deg, var(--highlight-blue), var(--highlight-blue-light));
}
.dc-popup__city-block { position: relative; z-index: 2; }
.dc-popup__city { font-size: 20px; font-weight: 800; letter-spacing: -0.5px; line-height: 1; color: #fff; }
.dc-popup__state { font-size: 11px; font-weight: 600; color: rgba(255, 255, 255, 0.8); letter-spacing: 1px; text-transform: uppercase; margin-top: 4px; }
.dc-popup__body { padding: 14px 18px 16px; }
.dc-popup__coord {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px; color: var(--esds-gray-400); margin-bottom: 8px;
}
.dc-popup__features { font-size: 13px; line-height: 1.5; color: var(--esds-gray-500); margin: 0 0 10px; }
.dc-popup__badges { display: flex; gap: 6px; flex-wrap: wrap; }
.dc-popup__badge {
  font-size: 10px; font-weight: 700;
  padding: 3px 8px;
  background: rgba(0, 97, 255, 0.1);
  color: var(--highlight-blue);
  border-radius: 999px;
  letter-spacing: 0.3px;
}

.fears-compliance {
  display: flex; flex-wrap: wrap;
  gap: 10px; justify-content: center;
  margin-top: 48px;
}
.fears-compliance__item {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 18px;
  background: #fff;
  border: 1px solid var(--esds-gray-100);
  border-radius: 999px;
  font-size: 13px; font-weight: 700;
  color: var(--esds-navy);
  box-shadow: 0 2px 8px rgba(10, 22, 40, 0.04);
  transition: all 0.25s;
}
.fears-compliance__item:hover {
  border-color: var(--highlight-blue);
  box-shadow: 0 6px 20px rgba(0, 97, 255, 0.12);
  transform: translateY(-2px);
}
.fears-compliance__item::before {
  content: ""; width: 6px; height: 6px; border-radius: 50%;
  background: var(--india-green);
}


/* ═══════════════════════════════════════════════════════════════════════════
   §04 · SECTIONS 3 & 12 · Sector Marquee
   ═══════════════════════════════════════════════════════════════════════════ */
.site-trust {
  position: relative;
  padding: 100px 0 120px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  overflow: hidden;
  background:
    radial-gradient(900px 400px at 100% 0%, rgba(0, 97, 255, 0.05) 0%, transparent 60%),
    radial-gradient(700px 400px at 0% 100%, rgba(126, 233, 255, 0.04) 0%, transparent 60%),
    #fafbfc;
}
.site-trust__container { max-width: 1280px; margin: 0 auto; padding: 0 32px; position: relative; }
.site-trust__head { max-width: 920px; margin: 0 auto 56px; text-align: center; }
.site-trust__eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 12px; font-weight: 700;
  letter-spacing: 2.4px; text-transform: uppercase;
  padding: 8px 16px; border-radius: 999px;
  margin-bottom: 24px;
  background: rgba(19, 136, 8, 0.06);
  border: 1px solid rgba(19, 136, 8, 0.18);
  color: var(--india-green);
}
.site-trust__eyebrow .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--india-green);
  box-shadow: 0 0 0 3px rgba(19, 136, 8, 0.2);
  animation: hero-dot 1.8s ease-in-out infinite;
}
.site-trust__title {
  font-size: clamp(32px, 4.6vw, 58px);
  font-weight: 800; line-height: 1.08; letter-spacing: -1.5px;
  margin: 0 0 20px; color: var(--esds-navy);
}
.site-trust__title em {
  font-style: normal;
  background: linear-gradient(135deg, var(--highlight-blue), var(--highlight-blue-light));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.site-trust__lede {
  font-size: clamp(16px, 1.3vw, 19px);
  line-height: 1.55;
  color: var(--esds-gray-500);
  margin: 0; font-weight: 500;
}

.trust-logo {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 14px 26px;
  background: #fff;
  border: 1px solid var(--esds-gray-100);
  border-radius: 14px;
  min-height: 72px; min-width: 170px; max-width: 210px;
  font-weight: 800; font-size: 16px;
  color: var(--esds-gray-400);
  letter-spacing: -0.3px;
  white-space: nowrap;
  transition: all 0.3s var(--esds-ease);
  user-select: none;
  box-shadow: 0 1px 2px rgba(10, 22, 40, 0.02);
  text-align: center;
  flex-shrink: 0;
}
.trust-logo img {
  max-height: 90px;
  max-width: 140px;
  width: auto;
  object-fit: contain;
  filter: grayscale(100%) opacity(0.7);
  transition: filter 0.3s var(--esds-ease);
}
.trust-logo:hover {
  color: var(--esds-navy);
  border-color: var(--highlight-blue);
  box-shadow: 0 8px 24px rgba(0, 97, 255, 0.12);
  transform: translateY(-3px);
}
.trust-logo:hover img { filter: grayscale(0%) opacity(1); }

.trust-tabs {
  display: flex; flex-wrap: wrap;
  gap: 10px; justify-content: center;
  margin-bottom: 48px;
}
.trust-tab {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 26px;
  background: #fff;
  border: 1px solid var(--esds-gray-100);
  border-radius: 999px;
  font-family: inherit;
  font-size: 14px; font-weight: 700;
  color: var(--esds-gray-500);
  cursor: pointer;
  transition: all 0.3s var(--esds-ease);
  box-shadow: 0 2px 6px rgba(10, 22, 40, 0.03);
}
.trust-tab__count {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px; font-weight: 800;
  padding: 3px 9px; border-radius: 999px;
  background: var(--esds-gray-50);
  color: var(--esds-gray-400);
}
.trust-tab:hover {
  border-color: var(--esds-gray-200);
  transform: translateY(-2px);
}
.trust-tab.is-active {
  color: #fff;
  border-color: transparent;
  box-shadow: 0 8px 24px rgba(0, 97, 255, 0.25);
  transform: translateY(-2px);
  background: linear-gradient(135deg, var(--highlight-blue), var(--highlight-blue-light));
}
.trust-tab.is-active .trust-tab__count { background: rgba(255, 255, 255, 0.2); color: #fff; }

.trust-marquee-wrap {
  position: relative;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  padding: 10px 0;
}
.trust-marquee { display: none; animation: trust-in 0.6s var(--esds-ease); }
.trust-marquee.is-active { display: flex; }
@keyframes trust-in {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}
.trust-marquee__track {
  display: flex; gap: 16px;
  width: max-content;
  animation: trust-scroll 45s linear infinite;
}
.trust-marquee:hover .trust-marquee__track { animation-play-state: paused; }
@keyframes trust-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.trust-marquee-stat {
  text-align: center;
  margin-top: 40px;
  font-size: 14px;
  color: var(--esds-gray-400);
  font-weight: 500;
}
.trust-marquee-stat strong { color: var(--esds-navy); font-weight: 800; }


/* ═══════════════════════════════════════════════════════════════════════════
   §05 · SECTION 4 · Split Panel (dark)
   ═══════════════════════════════════════════════════════════════════════════ */
.site-services {
  position: relative;
  padding: 100px 0 120px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: #fff;
  overflow: hidden;
}
.site-services--split {
  background:
    radial-gradient(800px 400px at 100% 20%, rgba(0, 97, 255, 0.18) 0%, transparent 55%),
    radial-gradient(700px 400px at 0% 80%, rgba(126, 233, 255, 0.10) 0%, transparent 55%),
    linear-gradient(180deg, var(--esds-navy) 0%, #050B16 100%);
}
.site-services--split::before {
  content: "";
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse at center, #000 0%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at center, #000 0%, transparent 75%);
  z-index: 0;
}
.site-services__container { max-width: 1280px; margin: 0 auto; padding: 0 32px; position: relative; z-index: 2; }
.site-services__head { max-width: 920px; margin: 0 auto 56px; text-align: center; }
.site-services__eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 12px; font-weight: 800;
  letter-spacing: 2.4px; text-transform: uppercase;
  padding: 8px 16px; border-radius: 999px;
  margin-bottom: 24px;
  background: rgba(0, 97, 255, 0.14);
  border: 1px solid rgba(126, 233, 255, 0.30);
  color: var(--highlight-blue-light);
  font-family: 'JetBrains Mono', monospace;
}
.site-services__eyebrow .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--highlight-blue-light);
  box-shadow: 0 0 0 3px rgba(126, 233, 255, 0.25);
  animation: hero-dot 1.8s ease-in-out infinite;
}
.site-services__title {
  font-size: clamp(32px, 4.6vw, 58px);
  font-weight: 800; line-height: 1.1; letter-spacing: -1.4px;
  margin: 0 0 16px; color: #fff;
}
.site-services__title em {
  font-style: normal;
  background: linear-gradient(135deg, var(--highlight-blue-light), var(--highlight-blue));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.site-services__lede {
  font-size: clamp(15px, 1.2vw, 18px);
  line-height: 1.55;
  color: var(--esds-gray-300);
  margin: 0; font-weight: 500;
}

.split-stage {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 28px;
  align-items: stretch;
}
.split-list { display: flex; flex-direction: column; gap: 10px; }
.split-item {
  padding: 18px 22px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  cursor: pointer;
  transition: all 0.25s var(--esds-ease);
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 14px;
  align-items: center;
  text-align: left;
  font-family: inherit;
  width: 100%;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.split-item:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(126, 233, 255, 0.30);
}
.split-item.is-active {
  background: linear-gradient(135deg, rgba(0, 97, 255, 0.15), rgba(126, 233, 255, 0.05));
  border-color: rgba(126, 233, 255, 0.5);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(126, 233, 255, 0.3);
}
.split-item.is-active::before {
  content: "";
  position: absolute; top: 0; bottom: 0; left: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--highlight-blue), var(--highlight-blue-light));
}
.split-item__num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px; font-weight: 800;
  letter-spacing: 1.2px;
  color: var(--esds-gray-400);
  padding: 4px 8px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.04);
}
.split-item.is-active .split-item__num {
  color: var(--highlight-blue-light);
  background: rgba(126, 233, 255, 0.15);
}
.split-item__name {
  font-size: 15px; font-weight: 800;
  color: #fff; letter-spacing: -0.2px; line-height: 1.2;
}
.split-item__arrow {
  font-size: 16px;
  color: var(--esds-gray-400);
  transition: all 0.25s var(--esds-ease);
}
.split-item.is-active .split-item__arrow,
.split-item:hover .split-item__arrow {
  color: var(--highlight-blue-light);
  transform: translateX(4px);
}

.split-panel {
  position: relative;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.01));
  border: 1px solid rgba(126, 233, 255, 0.22);
  border-radius: 20px;
  padding: 36px 40px;
  backdrop-filter: blur(12px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  min-height: 480px;
  overflow: hidden;
}
.split-panel::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--highlight-blue-light), transparent);
  animation: panel-sweep 4s linear infinite;
}
@keyframes panel-sweep {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}
.split-content { display: none; animation: content-in 0.4s var(--esds-ease); }
.split-content.is-active { display: block; }
@keyframes content-in {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}
.split-content__tag {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10.5px; font-weight: 800;
  letter-spacing: 1.8px; text-transform: uppercase;
  color: var(--highlight-blue-light);
  margin-bottom: 12px;
}
.split-content__tag::before {
  content: ""; width: 5px; height: 5px; border-radius: 50%;
  background: var(--highlight-blue-light);
}
.split-content__title {
  font-size: clamp(28px, 3.2vw, 40px);
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.8px;
  line-height: 1.1;
  margin: 0 0 20px;
}
.split-content__bullets {
  display: grid; gap: 14px;
  margin: 0 0 28px; padding: 0;
  list-style: none;
}
.split-content__bullet {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: flex-start;
  padding: 14px 18px;
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  transition: all 0.25s;
}
.split-content__bullet:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(126, 233, 255, 0.3);
}
.split-content__bullet-icon {
  width: 26px; height: 26px;
  border-radius: 8px;
  display: inline-flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, rgba(0, 97, 255, 0.25), rgba(126, 233, 255, 0.10));
  color: var(--highlight-blue-light);
  font-size: 14px; font-weight: 800;
  flex-shrink: 0;
}
.split-content__bullet-text {
  font-size: 14.5px; line-height: 1.55;
  color: var(--esds-gray-200); font-weight: 500;
}
.split-content__bullet-text strong { color: #fff; font-weight: 700; }
.split-content__subblock {
  margin: 14px 0 0;
  padding: 14px 18px;
  background: rgba(0, 97, 255, 0.08);
  border: 1px solid rgba(0, 97, 255, 0.22);
  border-radius: 10px;
}
.split-content__subblock-name {
  font-size: 13px; font-weight: 800;
  color: var(--highlight-blue-light);
  margin-bottom: 4px;
  font-family: 'JetBrains Mono', monospace;
  text-transform: uppercase;
  letter-spacing: 1.2px;
}
.split-content__subblock-body {
  font-size: 13px; line-height: 1.5;
  color: var(--esds-gray-300);
}
.split-content__subblock-body strong { color: #fff; font-weight: 700; }
.split-content__cta {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 26px;
  background: linear-gradient(90deg, var(--highlight-blue), var(--highlight-blue-light));
  color: #fff;
  border-radius: 10px;
  font-weight: 800;
  font-size: 14px;
  text-decoration: none;
  transition: all 0.25s;
  box-shadow: 0 6px 20px rgba(0, 97, 255, 0.40);
}
.split-content__cta--spaced { margin-top: 20px; }
.split-content__cta::after { content: "→"; transition: transform 0.25s; }
.split-content__cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(0, 97, 255, 0.55);
  filter: brightness(1.05);
  color: #fff;
}
.split-content__cta:hover::after { transform: translateX(4px); }


/* ═══════════════════════════════════════════════════════════════════════════
   §06 · SECTION 7 · Bento Intelligence (dark)
   ═══════════════════════════════════════════════════════════════════════════ */
.site-sovereign {
  position: relative;
  padding: 100px 0 120px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: #fff;
  overflow: hidden;
  isolation: isolate;
}
.site-sovereign--bento {
  background:
    radial-gradient(800px 400px at 100% 20%, rgba(239, 68, 68, 0.08) 0%, transparent 60%),
    radial-gradient(700px 400px at 0% 80%, rgba(0, 97, 255, 0.10) 0%, transparent 60%),
    linear-gradient(180deg, var(--esds-navy) 0%, #050B16 100%);
}
.site-sovereign__container { max-width: 1320px; margin: 0 auto; padding: 0 32px; position: relative; z-index: 2; }
.site-sovereign__head { max-width: 920px; margin: 0 auto 56px; text-align: center; }
.site-sovereign__eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px; font-weight: 800;
  letter-spacing: 2.4px; text-transform: uppercase;
  padding: 8px 16px; border-radius: 999px;
  margin-bottom: 24px;
  background: rgba(239, 68, 68, 0.12);
  border: 1px solid rgba(239, 68, 68, 0.28);
  color: var(--esds-red-light);
}
.site-sovereign__eyebrow .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--esds-red);
  animation: sov-redpulse 1.2s ease-in-out infinite;
}
@keyframes sov-redpulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.6); }
  50%      { box-shadow: 0 0 0 6px rgba(239, 68, 68, 0); }
}
.site-sovereign__title {
  font-size: clamp(32px, 4.6vw, 58px);
  font-weight: 800; line-height: 1.08; letter-spacing: -1.5px;
  margin: 0 0 20px; color: #fff;
}
.site-sovereign__title em {
  font-style: normal;
  background: linear-gradient(135deg, var(--highlight-blue), var(--highlight-blue-light));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}

.bento-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: minmax(200px, auto);
  gap: 14px;
}
.bento-tile {
  position: relative;
  overflow: hidden;
  padding: 28px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.01));
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  backdrop-filter: blur(12px);
  transition: all 0.3s var(--esds-ease);
  display: flex; flex-direction: column;
  justify-content: space-between;
}
.bento-tile:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}
.bento-tile--counter {
  grid-column: span 6;
  order: -1;
  padding: 40px;
  background:
    radial-gradient(circle at 70% 30%, rgba(239, 68, 68, 0.15) 0%, transparent 60%),
    linear-gradient(135deg, rgba(239, 68, 68, 0.08), rgba(0, 0, 0, 0.2));
  border-color: rgba(239, 68, 68, 0.25);
}
.bento-tile--counter::before {
  content: "";
  position: absolute; top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--esds-red), transparent);
  animation: panel-sweep 2.5s linear infinite;
}
.bento-tile--compliance { grid-column: span 6; }
.bento-tile--pricing { grid-column: span 6; }
.bento-tile--policy { grid-column: span 6; }
.bento-tile--geopolitical { grid-column: span 6; }

.bento-tag {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px; font-weight: 800;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  width: fit-content;
  margin-bottom: 14px;
}
.bento-tag--danger { color: var(--esds-red-light); background: rgba(239, 68, 68, 0.12); }
.bento-tag--warn   { color: var(--highlight-blue-light); background: rgba(126, 233, 255, 0.12); }
.bento-tag--info   { color: var(--highlight-blue-light); background: rgba(0, 97, 255, 0.18); }
.bento-tag--gold   { color: var(--highlight-blue); background: rgba(0, 97, 255, 0.15); }

.bento-title { font-size: 17px; font-weight: 800; color: #fff; letter-spacing: -0.3px; line-height: 1.3; margin: 0 0 6px; }
.bento-hook { font-size: 13px; font-weight: 700; color: #fff; line-height: 1.4; margin: 12px 0 4px; }
.bento-body { font-size: 12.5px; line-height: 1.5; color: var(--esds-gray-300); margin: 6px 0 0; }
.bento-body--spaced { margin-top: 20px; }

.bento-counter__num {
  font-family: 'JetBrains Mono', monospace;
  font-size: clamp(48px, 7vw, 88px);
  font-weight: 800;
  letter-spacing: -2.5px;
  line-height: 0.95;
  color: var(--esds-red-light);
  text-shadow: 0 0 32px rgba(239, 68, 68, 0.4);
}
.bento-counter__label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px; font-weight: 700;
  color: var(--esds-gray-300);
  letter-spacing: 1.4px;
  text-transform: uppercase;
  margin-top: 8px;
}
.bento-counter__cost {
  display: flex; gap: 12px;
  align-items: baseline;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px dashed rgba(239, 68, 68, 0.2);
}
.bento-counter__cost-num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 24px; font-weight: 700;
  color: #fff;
}
.bento-counter__cost-num .unit { color: var(--highlight-blue-light); }
.bento-counter__cost-label { font-size: 11px; color: var(--esds-gray-400); letter-spacing: 0.5px; }
.bento-counter__tick {
  display: inline-flex; align-items: center; gap: 8px;
  margin-top: 16px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px; font-weight: 700;
  color: var(--esds-red-light);
  letter-spacing: 1.2px;
  text-transform: uppercase;
}
.bento-counter__tick::before {
  content: ""; width: 8px; height: 8px; border-radius: 50%;
  background: var(--esds-red);
  animation: sov-redpulse 1.2s ease-in-out infinite;
}

.bento-tile--compliance {
  background:
    radial-gradient(circle at 20% 80%, rgba(239, 68, 68, 0.12) 0%, transparent 60%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.01));
}
.bento-fine {
  font-family: 'JetBrains Mono', monospace;
  font-size: clamp(56px, 8vw, 96px);
  font-weight: 800;
  letter-spacing: -3px;
  line-height: 0.9;
  background: linear-gradient(135deg, var(--esds-red-light), #ff6b6b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 8px;
}
.bento-fine-unit { font-size: 0.4em; opacity: 0.7; }
.bento-fine-label {
  font-size: 12px; font-weight: 700;
  letter-spacing: 1.4px; text-transform: uppercase;
  color: var(--esds-red-light);
  margin-bottom: 16px;
}
.bento-esds-zero {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 10px 16px;
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.3);
  border-radius: 10px;
  font-size: 13px; font-weight: 700;
  color: var(--esds-green-light);
  margin-top: auto;
}
.bento-esds-zero::before { content: "✓"; font-size: 16px; font-weight: 800; }

.bento-chart { width: 100%; height: 80px; margin: 14px 0; }
.bento-chart__grid { stroke: rgba(255, 255, 255, 0.04); stroke-dasharray: 2 4; }
.bento-chart__usd { stroke: #F87171; stroke-width: 2; fill: none; stroke-linecap: round; }
.bento-chart__inr { stroke: #34D399; stroke-width: 2; fill: none; stroke-linecap: round; }
.bento-chart-legend {
  display: flex; gap: 12px; flex-wrap: wrap;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10.5px; font-weight: 700;
}
.bento-chart-legend span { display: inline-flex; align-items: center; gap: 6px; }
.bento-chart-legend__dot { width: 8px; height: 8px; border-radius: 2px; display: inline-block; }
.bento-chart-legend__usd { color: var(--esds-red-light); }
.bento-chart-legend__inr { color: var(--esds-green-light); }
.bento-chart-legend__usd .bento-chart-legend__dot { background: var(--esds-red-light); }
.bento-chart-legend__inr .bento-chart-legend__dot { background: var(--esds-green-light); }

.bento-checks { display: grid; gap: 8px; margin-top: 10px; }
.bento-check {
  display: flex; align-items: center; gap: 10px;
  font-size: 12.5px; font-weight: 600;
  color: #fff;
  padding: 7px 0;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.06);
}
.bento-check:last-child { border-bottom: 0; }
.bento-check::before {
  content: "✓";
  width: 20px; height: 20px;
  flex-shrink: 0;
  display: inline-flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--esds-green), var(--esds-green-light));
  color: var(--esds-navy);
  font-weight: 800; font-size: 12px;
  border-radius: 50%;
  box-shadow: 0 0 12px rgba(16, 185, 129, 0.4);
}

.bento-switches { display: grid; gap: 10px; margin-top: 12px; }
.bento-switch {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  align-items: center;
  padding: 10px 14px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 10px;
}
.bento-switch__label { font-size: 12px; font-weight: 700; color: var(--esds-gray-300); }
.bento-switch__indicator {
  width: 38px; height: 20px;
  border-radius: 999px;
  background: rgba(239, 68, 68, 0.15);
  border: 1px solid rgba(239, 68, 68, 0.35);
  position: relative;
  flex-shrink: 0;
}
.bento-switch__indicator::before {
  content: "";
  position: absolute; top: 2px; left: 2px;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--esds-red-light);
  transition: left 0.8s var(--esds-ease);
}
.bento-switch--foreign .bento-switch__indicator { animation: bento-flicker 3s ease-in-out infinite; }
@keyframes bento-flicker {
  0%, 40%     { background: rgba(16, 185, 129, 0.15); border-color: rgba(16, 185, 129, 0.35); }
  40.1%, 45%  { background: rgba(239, 68, 68, 0.3); }
  45.1%, 100% { background: rgba(239, 68, 68, 0.15); border-color: rgba(239, 68, 68, 0.35); }
}
.bento-switch--foreign .bento-switch__indicator::before {
  animation: bento-slide 3s ease-in-out infinite;
  background: var(--esds-green-light);
}
@keyframes bento-slide {
  0%, 40%     { left: 2px; background: var(--esds-green-light); }
  40.1%, 45%  { left: 20px; background: #fff; }
  45.1%, 100% { left: 20px; background: var(--esds-red-light); }
}
.bento-switch--esds {
  background: rgba(16, 185, 129, 0.06);
  border-color: rgba(16, 185, 129, 0.2);
}
.bento-switch--esds .bento-switch__label { color: var(--esds-green-light); }
.bento-switch--esds .bento-switch__indicator {
  background: rgba(16, 185, 129, 0.2);
  border-color: rgba(16, 185, 129, 0.4);
}
.bento-switch--esds .bento-switch__indicator::before {
  left: 20px;
  background: var(--esds-green);
  box-shadow: 0 0 10px rgba(16, 185, 129, 0.6);
}

.bento-link {
  display: inline-flex; align-items: center; gap: 6px;
  color: currentColor;
  text-decoration: none;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-top: 12px;
  transition: gap 0.2s;
}
.bento-link::after { content: "→"; }
.bento-link:hover { gap: 10px; }
.bento-link--danger { color: var(--esds-red-light); }
.bento-link--warn   { color: var(--highlight-blue-light); }
.bento-link--info   { color: var(--highlight-blue-light); }
.bento-link--gold   { color: var(--highlight-blue-light); }

.sov-section-cta {
  display: flex; justify-content: center;
  gap: 14px; margin-top: 56px;
  flex-wrap: wrap;
}
.sov-cta {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 28px;
  border-radius: 12px;
  font-weight: 800; font-size: 15px;
  text-decoration: none;
  transition: all 0.25s var(--esds-ease);
  min-height: 54px;
}
.sov-cta--primary {
  background: linear-gradient(90deg, var(--highlight-blue), var(--highlight-blue-light));
  color: #fff;
  box-shadow: 0 8px 28px rgba(0, 97, 255, 0.40);
}
.sov-cta--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 40px rgba(0, 97, 255, 0.55);
  color: #fff;
}
.sov-cta--ghost {
  background: rgba(255, 255, 255, 0.04);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.18);
}
.sov-cta--ghost:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.4);
  transform: translateY(-2px);
}


/* ═══════════════════════════════════════════════════════════════════════════
   §07 · SECTION 11 · Proof Deck (client stories)
   ═══════════════════════════════════════════════════════════════════════════ */
.site-stories {
  position: relative;
  padding: 100px 0 120px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  overflow: hidden;
  background:
    radial-gradient(900px 400px at 100% 0%, rgba(0, 97, 255, 0.05) 0%, transparent 60%),
    radial-gradient(700px 400px at 0% 100%, rgba(19, 136, 8, 0.04) 0%, transparent 60%),
    #fafbfc;
}
.site-stories__container { max-width: 1280px; margin: 0 auto; padding: 0 32px; position: relative; z-index: 2; }
.site-stories__head { max-width: 920px; margin: 0 auto 64px; text-align: center; }
.site-stories__eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 12px; font-weight: 700;
  letter-spacing: 2.4px; text-transform: uppercase;
  padding: 8px 16px; border-radius: 999px;
  margin-bottom: 24px;
  background: rgba(19, 136, 8, 0.08);
  border: 1px solid rgba(19, 136, 8, 0.2);
  color: var(--india-green);
}
.site-stories__eyebrow .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--india-green);
  box-shadow: 0 0 0 3px rgba(19, 136, 8, 0.2);
  animation: hero-dot 1.8s ease-in-out infinite;
}
.site-stories__title {
  font-size: clamp(30px, 4.4vw, 54px);
  font-weight: 800; line-height: 1.12; letter-spacing: -1.4px;
  margin: 0 0 16px; color: var(--esds-navy);
}
.site-stories__title em {
  font-style: normal;
  background: linear-gradient(135deg, var(--highlight-blue), var(--highlight-blue-light));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}

.deck-wrap { position: relative; margin: 0 -32px; }
.deck-track {
  display: flex; gap: 20px;
  padding: 8px 32px 28px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
  scrollbar-color: var(--esds-gray-200) transparent;
}
.deck-track::-webkit-scrollbar { height: 6px; }
.deck-track::-webkit-scrollbar-thumb { background: var(--esds-gray-200); border-radius: 3px; }
.deck-card {
  flex: 0 0 380px;
  background: #fff;
  border: 1px solid var(--esds-gray-100);
  border-radius: 20px;
  overflow: hidden;
  scroll-snap-align: start;
  display: flex; flex-direction: column;
  box-shadow: 0 6px 24px rgba(10, 22, 40, 0.05);
  transition: all 0.3s var(--esds-ease);
}
.deck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(10, 22, 40, 0.12);
  border-color: var(--highlight-blue);
}
.deck-card__viz {
  height: 200px;
  position: relative;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--esds-gray-50), #fff);
  border-bottom: 1px solid var(--esds-gray-100);
  padding: 24px;
  overflow: hidden;
}
.deck-card__body { padding: 24px 26px 26px; display: flex; flex-direction: column; gap: 12px; flex: 1; }
.deck-card__head { display: flex; justify-content: space-between; align-items: flex-start; gap: 12px; }
.deck-card__tag {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px; font-weight: 800;
  letter-spacing: 1.4px;
  color: var(--esds-gray-400);
  text-transform: uppercase;
}
.deck-card__industry {
  font-size: 10px; font-weight: 700;
  padding: 3px 10px;
  border-radius: 999px;
  background: rgba(0, 97, 255, 0.08);
  color: var(--highlight-blue);
  letter-spacing: 0.5px;
}
.deck-card__story { font-size: 14px; line-height: 1.55; color: var(--esds-gray-500); margin: 0; }
.deck-card__story strong { color: var(--esds-navy); font-weight: 700; }
.deck-card__link {
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--highlight-blue);
  font-size: 13px; font-weight: 700;
  text-decoration: none;
  margin-top: auto;
  transition: gap 0.2s;
}
.deck-card__link::after { content: "→"; }
.deck-card__link:hover { gap: 10px; }

.brand-mark {
  font-weight: 800; font-size: 24px;
  letter-spacing: -0.5px;
  color: var(--esds-navy);
  line-height: 1;
}
.brand-mark--serif { font-family: Georgia, serif; font-weight: 700; }
.brand-mark--italic { font-style: italic; }

/* Viz per card */
.viz-donut { width: 160px; height: 160px; position: relative; }
.viz-donut__seg { transform: rotate(-90deg); transform-origin: center; stroke: var(--highlight-blue) !important; }
.viz-donut__pct {
  position: absolute; inset: 0;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  font-weight: 800; color: var(--esds-navy);
}
.viz-donut__pct-num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 36px;
  letter-spacing: -1.5px;
  color: var(--highlight-blue);
}
.viz-donut__pct-label {
  font-size: 10px; font-weight: 700;
  color: var(--esds-gray-400);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-top: 2px;
}

.viz-districts { display: grid; grid-template-columns: repeat(9, 1fr); gap: 4px; width: 180px; }
.viz-districts span {
  aspect-ratio: 1;
  border-radius: 3px;
  background: var(--india-green);
  opacity: 0;
  animation: district-pop 0.04s var(--esds-ease) forwards;
}
@keyframes district-pop { to { opacity: 0.85; } }
.viz-districts__count {
  font-family: 'JetBrains Mono', monospace;
  font-size: 14px; font-weight: 800;
  color: var(--india-green);
  margin-top: 8px;
  text-align: center;
}

.viz-network { width: 200px; height: 140px; position: relative; }
.viz-network svg { width: 100%; height: 100%; }
.viz-network__node { fill: var(--highlight-blue); stroke: #fff; stroke-width: 2; }
.viz-network__node--hub {
  fill: var(--highlight-blue-light);
  animation: n-hub-pulse 1.8s ease-in-out infinite;
}
@keyframes n-hub-pulse {
  0%, 100% { r: 7; }
  50%      { r: 8.5; }
}
.viz-network__link {
  stroke: var(--highlight-blue);
  stroke-width: 2;
  opacity: 0.6;
  animation: n-flow 2s linear infinite;
  stroke-dasharray: 4 3;
}
@keyframes n-flow { to { stroke-dashoffset: -14; } }

.viz-bars { display: flex; align-items: flex-end; gap: 20px; height: 140px; padding: 0 8px; }
.viz-bars__col { display: flex; flex-direction: column; align-items: center; gap: 6px; flex: 1; }
.viz-bars__bar {
  width: 100%; max-width: 60px;
  border-radius: 6px 6px 0 0;
  position: relative;
  transform-origin: bottom;
  animation: bar-rise 0.8s var(--esds-ease) both;
}
@keyframes bar-rise { from { transform: scaleY(0); } to { transform: scaleY(1); } }
.viz-bars__bar--before {
  background: linear-gradient(180deg, var(--esds-gray-300), var(--esds-gray-400));
  height: 100%;
}
.viz-bars__bar--after {
  background: linear-gradient(180deg, var(--esds-green), var(--esds-green-light));
  height: 70%;
  animation-delay: 0.3s;
}
.viz-bars__bar-val {
  position: absolute; top: -22px; left: 50%;
  transform: translateX(-50%);
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px; font-weight: 800;
  color: var(--esds-navy);
  white-space: nowrap;
}
.viz-bars__label {
  font-size: 10px; font-weight: 700;
  color: var(--esds-gray-400);
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

.deck-scroll-hint {
  text-align: center;
  margin-top: 28px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px; font-weight: 700;
  letter-spacing: 1.5px;
  color: var(--esds-gray-400);
  text-transform: uppercase;
}
.deck-scroll-hint::before { content: "← "; }
.deck-scroll-hint::after { content: " →"; }

.stories-cta-row {
  display: flex; justify-content: center;
  gap: 14px; margin-top: 56px;
  flex-wrap: wrap;
}
.stories-cta {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 28px;
  border-radius: 12px;
  font-weight: 800; font-size: 15px;
  text-decoration: none;
  transition: all 0.25s var(--esds-ease);
  min-height: 54px;
}
.stories-cta--primary {
  background: var(--esds-navy);
  color: #fff;
  box-shadow: 0 8px 24px rgba(10, 22, 40, 0.2);
}
.stories-cta--primary:hover {
  background: var(--highlight-blue);
  transform: translateY(-2px);
  box-shadow: 0 14px 36px rgba(0, 97, 255, 0.4);
  color: #fff;
}
.stories-cta--ghost {
  background: #fff;
  color: var(--esds-navy);
  border: 1px solid var(--esds-gray-200);
}
.stories-cta--ghost:hover {
  border-color: var(--highlight-blue);
  color: var(--highlight-blue);
  transform: translateY(-2px);
}


/* ═══════════════════════════════════════════════════════════════════════════
   §08 · BLANK SECTION PLACEHOLDERS
   ═══════════════════════════════════════════════════════════════════════════ */
.site-blank {
  padding: 80px 32px;
  text-align: center;
  position: relative;
}
.site-blank--light {
  background: linear-gradient(180deg, #fff, #f8fafc);
  color: var(--esds-gray-500);
}
.site-blank--dark {
  background: linear-gradient(180deg, var(--esds-deep), var(--esds-navy));
  color: var(--esds-gray-400);
}
.site-blank__inner {
  max-width: 680px;
  margin: 0 auto;
  padding: 56px 32px;
  border: 2px dashed;
  border-radius: 20px;
  position: relative;
}
.site-blank--light .site-blank__inner {
  border-color: var(--esds-gray-200);
  background: rgba(255, 255, 255, 0.4);
}
.site-blank--dark .site-blank__inner {
  border-color: rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.02);
}
.site-blank__label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px; font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  opacity: 0.7;
  margin-bottom: 12px;
}
.site-blank__title {
  font-size: 20px; font-weight: 800;
  letter-spacing: -0.3px;
  margin: 0 0 8px;
}
.site-blank--light .site-blank__title { color: var(--esds-navy); }
.site-blank--dark .site-blank__title { color: #fff; }
.site-blank__note { font-size: 14px; line-height: 1.5; margin: 0; }


/* ═══════════════════════════════════════════════════════════════════════════
   §09 · POLICY + DEPENDENCY (sections 5 & 6)
   ═══════════════════════════════════════════════════════════════════════════ */
.page-home .h-container { max-width: 1200px; margin: 0 auto; padding: 0 16px; }

/* POLICY — magazine layout with pull-quote */
.page-home .h-policy { padding: 120px 0; color: var(--esds-navy); }
.page-home .h-policy__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 80px;
  align-items: start;
}
.page-home .h-policy__label {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--highlight-blue);
  margin-bottom: 14px;
  display: block;
}
.page-home .h-policy__title {
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 800;
  color: var(--esds-navy);
  letter-spacing: -1.5px;
  line-height: 1.05;
  margin: 0 0 32px;
}
.page-home .h-policy__body {
  column-count: 1;
  font-size: 16px;
  line-height: 1.75;
  color: var(--esds-gray-700);
}
.page-home .h-policy__body p { margin: 0 0 18px; }
.page-home .h-policy__body p:first-letter {
  float: left;
  font-size: 60px;
  line-height: 0.9;
  font-weight: 800;
  color: var(--highlight-blue);
  padding: 6px 12px 0 0;
}
.page-home .h-policy__pullquote {
  padding: 32px 28px;
  background: linear-gradient(135deg, var(--esds-navy), var(--esds-deep));
  border-radius: 20px;
  color: #fff;
  position: relative;
  top: 40px;
}
.page-home .h-policy__pullquote-mark {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 80px;
  line-height: 0.6;
  color: var(--highlight-blue-light);
  font-weight: 800;
  display: block;
  margin-bottom: 12px;
}
.page-home .h-policy__pullquote-text {
  font-size: 19px;
  line-height: 1.45;
  font-weight: 600;
  color: #fff;
  margin: 0 0 16px;
  letter-spacing: -0.3px;
}
.page-home .h-policy__pullquote-cite {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--highlight-blue-light);
}

/* DEPENDENCY — split-screen comparison */
.page-home .h-dep {
  background: #fff;
  padding: 120px 0;
  color: var(--esds-navy);
}
.page-home .h-dep__title {
  font-size: clamp(32px, 4.5vw, 56px);
  font-weight: 800;
  text-align: center;
  color: var(--esds-navy);
  letter-spacing: -1.8px;
  line-height: 1.05;
  margin: 0 auto 64px;
  max-width: 860px;
}
.page-home .h-dep__title em {
  font-style: normal;
  color: var(--esds-red);
  text-decoration: line-through;
  text-decoration-thickness: 3px;
  text-decoration-color: rgba(239, 68, 68, 0.5);
}
.page-home .h-dep__title strong {
  color: var(--highlight-blue);
  border-bottom: 4px solid var(--highlight-blue);
}
.page-home .h-dep__compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(10, 22, 40, 0.12);
}
.page-home .h-dep__col { padding: 44px 40px; }
.page-home .h-dep__col--bad {
  background: #F8FAFC;
  border-right: 1px solid var(--esds-gray-100);
}
.page-home .h-dep__col--good {
  background: linear-gradient(160deg, var(--esds-navy), var(--esds-deep));
  color: #fff;
}
.page-home .h-dep__col-title {
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  margin: 0 0 32px;
}
.page-home .h-dep__col--bad .h-dep__col-title { color: var(--esds-gray-400); }
.page-home .h-dep__col--good .h-dep__col-title { color: var(--highlight-blue-light); }
.page-home .h-dep__row {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 20px;
  padding: 18px 0;
  border-bottom: 1px solid;
  align-items: baseline;
}
.page-home .h-dep__col--bad .h-dep__row { border-color: var(--esds-gray-100); }
.page-home .h-dep__col--good .h-dep__row { border-color: rgba(255, 255, 255, 0.08); }
.page-home .h-dep__row:last-child { border-bottom: none; }
.page-home .h-dep__key {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.3px;
}
.page-home .h-dep__col--bad .h-dep__key { color: var(--esds-gray-400); }
.page-home .h-dep__col--good .h-dep__key { color: var(--esds-gray-300); }
.page-home .h-dep__val { font-size: 15px; font-weight: 600; }
.page-home .h-dep__col--bad .h-dep__val { color: var(--esds-gray-500); font-style: italic; }
.page-home .h-dep__col--good .h-dep__val { color: #fff; }
.page-home .h-dep__check {
  color: var(--esds-green);
  font-weight: 800;
  margin-right: 6px;
}


/* ═══════════════════════════════════════════════════════════════════════════
   §10 · CONTACT FORM
   ═══════════════════════════════════════════════════════════════════════════ */
.site-contact {
  padding: 80px 0 60px;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 60px;
  align-items: start;
}
.site-contact__left { display: grid; gap: 28px; }
.site-contact__eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  padding: 6px 14px; border-radius: 999px;
  margin-bottom: 16px;
  background: rgba(0, 97, 255, 0.12);
  color: var(--highlight-blue-light);
}
.site-contact__eyebrow::before {
  content: ""; width: 6px; height: 6px; border-radius: 50%;
  background: var(--india-green);
  box-shadow: 0 0 0 3px rgba(19, 136, 8, 0.15);
  animation: hero-dot 2.2s ease-in-out infinite;
}
.site-contact__title {
  font-size: clamp(32px, 4vw, 46px);
  font-weight: 800;
  letter-spacing: -1.2px;
  line-height: 1.1;
  margin: 0 0 16px;
  color: #fff;
}
.site-contact__title em {
  font-style: normal;
  background: linear-gradient(135deg, var(--highlight-blue), var(--highlight-blue-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.site-contact__lede {
  font-size: 17px; line-height: 1.6;
  max-width: 520px;
  margin: 0 0 28px;
  color: var(--esds-gray-300);
}

.site-form { display: grid; gap: 18px; }
.site-form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.site-form__field {
  display: flex; flex-direction: column;
  gap: 7px;
  min-width: 0;
  position: relative;
}
.site-form__field label {
  font-size: 13px; font-weight: 600;
  color: var(--esds-gray-200);
}
.site-form__field label .req {
  color: var(--highlight-blue-light);
  font-weight: 800;
  margin-left: 2px;
}
.site-form__field input,
.site-form__field select,
.site-form__field textarea {
  width: 100%;
  padding: 13px 15px;
  font-family: inherit;
  font-size: 14.5px;
  font-weight: 500;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  color: #fff;
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
  min-height: 48px;
  line-height: 1.4;
}
.site-form__field textarea { min-height: 110px; resize: vertical; line-height: 1.55; }

/* DROPDOWN chevron + dark options */
.site-form__field select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 14 14'><path d='M2 5 L7 10 L12 5' stroke='%237EE9FF' stroke-width='2.2' fill='none' stroke-linecap='round' stroke-linejoin='round'/></svg>");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 14px 14px;
  padding-right: 44px;
  cursor: pointer;
  color: #fff;
}
.site-form__field select option {
  background-color: var(--esds-navy);
  color: #fff;
  padding: 12px;
}
.site-form__field select option:hover,
.site-form__field select option:focus,
.site-form__field select option:checked {
  background-color: var(--highlight-blue);
  color: #fff;
}
.site-form__field select option[value=""] { color: var(--esds-gray-400); }

.site-form__field input::placeholder,
.site-form__field textarea::placeholder { color: rgba(255, 255, 255, 0.35); }
.site-form__field input:focus,
.site-form__field select:focus,
.site-form__field textarea:focus {
  outline: 0;
  border-color: var(--highlight-blue-light);
  box-shadow: 0 0 0 4px rgba(126, 233, 255, 0.18);
  background: rgba(255, 255, 255, 0.06);
}
.site-form__field input.is-invalid,
.site-form__field select.is-invalid,
.site-form__field textarea.is-invalid {
  border-color: var(--esds-red);
  box-shadow: 0 0 0 4px rgba(239, 68, 68, 0.12);
}
.site-form__err {
  font-size: 12px;
  color: var(--esds-red);
  font-weight: 600;
  min-height: 14px;
  line-height: 1.3;
}
.site-form__err--consent { margin-top: -8px; }

.site-form__consent {
  display: flex; gap: 10px;
  align-items: flex-start;
  font-size: 13px; line-height: 1.55;
  padding: 6px 0;
  color: var(--esds-gray-300);
}
.site-form__consent input[type="checkbox"] {
  width: 18px; height: 18px;
  margin-top: 2px;
  accent-color: var(--highlight-blue);
  cursor: pointer;
  flex-shrink: 0;
}
.site-form__consent label { cursor: pointer; }
.site-form__consent a {
  color: var(--highlight-blue-light);
  text-decoration: none;
  font-weight: 600;
}
.site-form__consent a:hover { text-decoration: underline; }

.site-form__submit {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 10px;
  padding: 16px 28px;
  background: linear-gradient(90deg, var(--highlight-blue), var(--highlight-blue-light));
  color: #fff;
  border: 0;
  border-radius: 12px;
  font-family: inherit;
  font-size: 15px; font-weight: 800;
  letter-spacing: 0.3px;
  cursor: pointer;
  min-height: 54px;
  box-shadow: 0 6px 20px rgba(0, 97, 255, 0.40), 0 0 0 1px rgba(0, 97, 255, 0.20);
  transition: all 0.25s var(--esds-ease);
  justify-self: start;
}
.site-form__submit:hover:not(:disabled) {
  transform: translateY(-1px);
  box-shadow: 0 10px 28px rgba(0, 97, 255, 0.55);
  filter: brightness(1.05);
}
.site-form__submit:disabled { opacity: 0.7; cursor: wait; }
.site-form__submit .arrow { transition: transform 0.25s; }
.site-form__submit:hover:not(:disabled) .arrow { transform: translateX(3px); }

.site-form__success {
  display: flex; align-items: center; gap: 12px;
  padding: 14px 18px;
  background: linear-gradient(90deg, rgba(16, 185, 129, 0.12), rgba(16, 185, 129, 0.02));
  border: 1px solid rgba(16, 185, 129, 0.3);
  border-radius: 12px;
  color: var(--esds-green-light);
  font-size: 14px; font-weight: 600;
}
.site-form__success[hidden] { display: none; }

.site-contact__info { display: grid; gap: 14px; }
.site-contact__card {
  padding: 20px 22px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  display: grid; gap: 6px;
}
.site-contact__card-label {
  font-size: 11px; font-weight: 700;
  letter-spacing: 1.8px; text-transform: uppercase;
  color: var(--esds-gray-400);
}
.site-contact__card-value {
  font-size: 16px; font-weight: 700;
  color: #fff; line-height: 1.4;
}
.site-contact__card-value a { color: inherit; text-decoration: none; }
.site-contact__card-value a:hover { color: var(--highlight-blue-light); }
.site-contact__card-sub { font-size: 13px; color: var(--esds-gray-300); line-height: 1.5; }

.site-compliance {
  display: flex; flex-wrap: wrap;
  gap: 10px;
  padding: 20px 22px;
  border-radius: 14px;
  color: #fff;
  background: linear-gradient(135deg, rgba(0, 97, 255, 0.14), rgba(126, 233, 255, 0.06));
  border: 1px solid rgba(126, 233, 255, 0.25);
}
.site-compliance__title {
  flex: 1 0 100%;
  font-size: 11px; font-weight: 700;
  letter-spacing: 1.8px; text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 4px;
}
.site-compliance__badge {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 12px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(126, 233, 255, 0.25);
  border-radius: 999px;
  font-size: 12px; font-weight: 700;
  color: var(--highlight-blue-light);
}
.site-compliance__badge::before {
  content: "✓";
  color: var(--highlight-blue-light);
  font-size: 11px;
}


/* ═══════════════════════════════════════════════════════════════════════════
   §11 · FOOTER — Sovereign Console (dark)
   ═══════════════════════════════════════════════════════════════════════════ */
.site-footer {
  position: relative;
  font-family: 'Plus Jakarta Sans', sans-serif;
  background: linear-gradient(180deg, var(--esds-navy) 0%, var(--esds-deep) 50%, var(--esds-navy) 100%);
  color: var(--esds-gray-200);
}
.site-footer::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--highlight-blue), var(--highlight-blue-light));
  opacity: 0.85;
  z-index: 2;
}
.site-footer__container { max-width: 1280px; margin: 0 auto; padding: 0 32px; position: relative; z-index: 1; }
.site-footer--sovereign::after {
  content: "";
  position: absolute;
  top: 60px; left: 8%;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(0, 97, 255, 0.30) 0%, transparent 70%);
  pointer-events: none;
  filter: blur(40px);
  z-index: 0;
}
.site-footer--sovereign > * { position: relative; z-index: 1; }

.site-footer__nav {
  display: grid;
  grid-template-columns: 1.5fr repeat(4, 1fr);
  gap: 48px;
  padding: 60px 0 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.site-footer__brand { display: grid; gap: 18px; align-content: start; }
.site-footer__logo {
  display: inline-flex; align-items: center; gap: 6px;
  font-weight: 800; font-size: 22px;
  color: #fff; text-decoration: none;
}
.site-footer__logo-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--highlight-blue), var(--highlight-blue-light));
  box-shadow: 0 0 0 3px rgba(0, 97, 255, 0.25);
}
.site-footer__tag {
  font-size: 14px;
  line-height: 1.6;
  color: var(--esds-gray-300);
  max-width: 280px;
}
.site-footer__social {
  display: flex; gap: 8px;
  margin-top: 4px;
}
.site-footer__social a {
  width: 38px; height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--esds-gray-200);
  transition: all 0.2s;
}
.site-footer__social a:hover {
  background: var(--highlight-blue);
  border-color: var(--highlight-blue);
  color: #fff;
  transform: translateY(-2px);
}
.site-footer__social svg { width: 18px; height: 18px; }

.site-footer__col h4 {
  font-size: 12px; font-weight: 700;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: var(--esds-gray-400);
  margin: 0 0 16px;
}
.site-footer__col ul {
  list-style: none;
  margin: 0; padding: 0;
  display: grid; gap: 10px;
}
.site-footer__col a {
  font-size: 14px;
  color: var(--esds-gray-200);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.site-footer__col a::before {
  content: "›";
  color: var(--highlight-blue-light);
  opacity: 0;
  transform: translateX(-4px);
  transition: all 0.2s;
  font-weight: 800;
}
.site-footer__col a:hover { color: var(--highlight-blue-light); }
.site-footer__col a:hover::before { opacity: 1; transform: translateX(0); }

.site-footer__base {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  gap: 24px;
  flex-wrap: wrap;
  font-size: 13px;
  color: var(--esds-gray-400);
}
.site-footer__base-links { display: flex; gap: 20px; flex-wrap: wrap; }
.site-footer__base a {
  color: inherit;
  text-decoration: none;
  font-weight: 500;
}
.site-footer__base a:hover { color: var(--highlight-blue-light); }

/* Flag — uses literal India colours */
.site-footer__flag {
  display: inline-flex; align-items: center;
  gap: 6px;
  font-weight: 600;
  margin-left: 8px;
}
.site-footer__flag-bars {
  display: inline-flex;
  overflow: hidden;
  border-radius: 2px;
  width: 18px; height: 12px;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.06);
}
.site-footer__flag-bars i { flex: 1; display: block; }
.site-footer__flag-bars i:nth-child(1) { background: var(--india-saffron); }
.site-footer__flag-bars i:nth-child(2) { background: #fff; }
.site-footer__flag-bars i:nth-child(3) { background: var(--india-green); }


/* ═══════════════════════════════════════════════════════════════════════════
   §12 · RESPONSIVE (Bootstrap breakpoints · lg 992 · md 768)
   ═══════════════════════════════════════════════════════════════════════════ */
@media (max-width: 1200px) {
  .mega-grid.cols-5 { grid-template-columns: repeat(3, 1fr); }
  .nav-link { padding: 0 12px; font-size: 13px; }
}

@media (max-width: 1199px) {
 .site-hero__ticker{width: 800px; margin: 40px auto!important;
}
}

@media (max-width: 991.98px) {
  .nav-menu, .nav-actions .btn-highlighter { display: none; }
  .burger { display: block; }
  .top-bar { display: none; }
  .nav { gap: 16px; padding: 0 20px; }
  .nav-actions { gap: 8px; }
  .search-inner { padding: 24px 20px 30px; }
  .search-input { font-size: 16px; padding: 15px 46px 15px 48px; }
  .search-input-wrap svg { left: 16px; width: 18px; height: 18px; }
  .mega, .search-overlay { position: fixed; top: var(--esds-nav-h); }

  .cmd-stage { grid-template-columns: 1fr; gap: 24px; }
  .split-stage { grid-template-columns: 1fr; gap: 16px; }
  .page-home .h-policy__grid { grid-template-columns: 1fr; gap: 40px; }
  .page-home .h-policy__pullquote { top: 0; }
  .page-home .h-dep__compare { grid-template-columns: 1fr; }
  
  .site-hero__ticker{
	width: 700px;    
    margin: 40px auto!important;
}

}

@media (min-width: 900px) {
  .bento-tile--counter     { grid-column: span 3; }
  .bento-tile--compliance  { grid-column: span 3; }
  .bento-tile--pricing     { grid-column: span 2; }
  .bento-tile--policy      { grid-column: span 2; }
  .bento-tile--geopolitical{ grid-column: span 2; }
}

@media (max-width: 900px) {
  .site-footer__nav {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }
  .site-footer__brand { grid-column: 1 / -1; }
}


@media (max-width: 768px) {
  .site-contact { grid-template-columns: 1fr; gap: 48px; }
  .site-hero__ticker{width: 500px; margin: 40px auto!important;}
}



@media (max-width: 640px) {
  .cmd-live-map { height: 440px; min-height: 400px; }
  .site-form__row { grid-template-columns: 1fr; }
  .site-form__submit { width: 100%; justify-self: stretch; }
  .cmd-list { max-height: none; overflow-y: visible; }
  .site-footer__nav {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 48px 0 32px;	
  }

  .site-footer__base {
    flex-direction: column;
    align-items: flex-start;
  }
  }
  
  .search-badge { font-size: 11.5px; padding: 7px 13px; }
  .page-home .h-dep__col { padding: 28px 22px; }
  .page-home .h-dep__row { grid-template-columns: 120px 1fr; gap: 12px; }
  .hero-actions { flex-direction: column; align-items: stretch; }
    /* .site-hero__ticker{width: 400px; margin: 40px auto!important;} */


@media (max-width: 640px) {
	.site-hero__ticker{width: 280px; margin: 20px auto!important;}
}

/* ═══════════════════════════════════════════════════════════════════════════
   §13 · INNER-PAGE HERO · Shared across every inner page
   ───────────────────────────────────────────────────────────────────────────
   Dark navy spotlight + breadcrumb + badge + H1 with blue-gradient highlight
   + 6-slot stat grid. Used on all 6 product pages for consistency.
═══════════════════════════════════════════════════════════════════════════ */
.inner-hero {
    position: relative;
    background: var(--esds-navy);
    color: #fff;
    padding: 40px 0 40px;
    overflow: hidden;
    isolation: isolate;
}
.inner-hero::before {
    content: '';
    position: absolute; inset: 0;
    background-image:
        linear-gradient(rgba(0, 97, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 97, 255, 0.02) 1px, transparent 1px);
    background-size: 72px 72px;
    mask-image: radial-gradient(ellipse at center top, #000 0%, transparent 75%);
    -webkit-mask-image: radial-gradient(ellipse at center top, #000 0%, transparent 75%);
    z-index: 0;
}
.hero-orb {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    filter: blur(40px);
    z-index: 0;
}
.hero-orb--blue   { top: -10%; right: -5%; width: 540px; height: 540px; background: radial-gradient(circle, rgba(0, 97, 255, 0.28), transparent 60%); }
.hero-orb--cyan   { bottom: -12%; left: -4%; width: 420px; height: 420px; background: radial-gradient(circle, rgba(126, 233, 255, 0.18), transparent 60%); }
.hero-orb--saffron{ top: 20%; left: 45%; width: 300px; height: 300px; background: radial-gradient(circle, rgba(255, 107, 53, 0.12), transparent 65%); }

.container { max-width: 1280px; margin: 0 auto; padding: 0 32px; }

/* Breadcrumb */
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 18px 0 32px;
    font-size: 12.5px;
    font-weight: 600;
    color: var(--esds-gray-400);
    letter-spacing: 0.02em;
    position: relative;
    z-index: 2;
}
.breadcrumb a {
    color: var(--esds-gray-300);
    text-decoration: none;
    transition: color 0.2s;
}
.breadcrumb a:hover { color: var(--highlight-blue-light); }
.breadcrumb .sep { color: var(--esds-gray-500); opacity: 0.6; }
.breadcrumb .current { color: #fff; font-weight: 700; }

/* Hero content */
.inner-hero__inner { position: relative; z-index: 2; }
.inner-hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 16px;
    background: rgba(0, 97, 255, 0.12);
    border: 1px solid rgba(126, 233, 255, 0.30);
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.06em;
    color: var(--highlight-blue-light);
    margin-bottom: 28px;
}
.inner-hero__badge .pulse {
    width: 7px; height: 7px; border-radius: 50%;
    background: var(--highlight-blue-light);
    box-shadow: 0 0 0 0 rgba(126, 233, 255, 0.7);
    animation: hero-pulse 1.8s ease-in-out infinite;
}
@keyframes hero-pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(126, 233, 255, 0.6); }
    50%      { box-shadow: 0 0 0 8px rgba(126, 233, 255, 0); }
}
.inner-hero__title {
    font-size: clamp(34px, 5.4vw, 68px);
    font-weight: 800;
    line-height: 1.04;
    letter-spacing: -1.6px;
    margin: 0 0 22px;
    max-width: 900px;
}
.inner-hero__title .hl {
    background: linear-gradient(135deg, var(--highlight-blue), var(--highlight-blue-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.inner-hero__lede {
    font-size: clamp(15px, 1.35vw, 19px);
    color: var(--esds-gray-300);
    line-height: 1.65;
    max-width: 720px;
    margin: 0 0 36px;
    font-weight: 500;
}
.inner-hero__lede strong { color: #fff; font-weight: 700; }
.inner-hero__ctas {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 56px;
}
.inner-hero__cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 15px 28px;
    border-radius: 10px;
    font-size: 14.5px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.25s var(--esds-ease);
}
.inner-hero__cta--primary {
    background: linear-gradient(90deg, var(--highlight-blue), var(--highlight-blue-light));
    color: #fff;
    box-shadow: 0 6px 22px rgba(0, 97, 255, 0.40);
}
.inner-hero__cta--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(0, 97, 255, 0.55);
    color: #fff;
}
.inner-hero__cta--ghost {
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.15);
}
.inner-hero__cta--ghost:hover {
    background: rgba(255, 255, 255, 0.10);
    border-color: rgba(255, 255, 255, 0.35);
    transform: translateY(-2px);
}
.inner-hero__cta--link {
    color: var(--esds-gray-300);
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.08);
}
.inner-hero__cta--link:hover { color: #fff; border-color: rgba(255, 255, 255, 0.25); }

/* Hero stats grid */
.inner-hero__stats {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 14px;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.stat-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 14px;
    padding: 22px 20px;
    transition: all 0.3s var(--esds-ease);
}
.stat-card:hover {
    background: rgba(0, 97, 255, 0.08);
    border-color: rgba(126, 233, 255, 0.25);
    transform: translateY(-3px);
}
.stat-num {
    font-family: 'JetBrains Mono', monospace;
    font-size: clamp(22px, 2.2vw, 32px);
    font-weight: 800;
    color: #fff;
    letter-spacing: -1.2px;
    line-height: 1;
}
.stat-num .u {
    font-size: 0.55em;
    color: var(--highlight-blue-light);
    margin-left: 2px;
}
.stat-label {
    font-size: 11px;
    color: var(--esds-gray-400);
    margin-top: 8px;
    line-height: 1.45;
    font-weight: 500;
}

/* Stat grids variants */
.inner-hero__stats--4 { grid-template-columns: repeat(4, 1fr); }
.inner-hero__stats--5 { grid-template-columns: repeat(5, 1fr); }

@media (max-width: 992px) {
    .inner-hero__stats, .inner-hero__stats--4, .inner-hero__stats--5 { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 640px) {
    .inner-hero { padding: 24px 0 60px; }
    .inner-hero__stats, .inner-hero__stats--4, .inner-hero__stats--5 { grid-template-columns: repeat(2, 1fr); }
    .inner-hero__ctas { flex-direction: column; }
    .inner-hero__cta { justify-content: center; }
}


/* ═══════════════════════════════════════════════════════════════════════════
   §14 · SECTION TOKENS · Reusable section header/layout primitives
═══════════════════════════════════════════════════════════════════════════ */
.sec { padding: 100px 0; position: relative; }
.sec--light  { background: #fff; border-bottom: 1px solid var(--esds-gray-100); }
.sec--gray   { background: var(--esds-gray-50); border-top: 1px solid var(--esds-gray-100); border-bottom: 1px solid var(--esds-gray-100); }
.sec--dark   {
    background: linear-gradient(165deg, var(--esds-navy), var(--esds-deep));
    color: #fff;
    overflow: hidden;
}
.sec--dark::before {
    content: '';
    position: absolute; inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.012) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.012) 1px, transparent 1px);
    background-size: 72px 72px;
    pointer-events: none;
}
.sec--dark .container { position: relative; z-index: 1; }

.sec-head { max-width: 760px; margin-bottom: 48px; }
.sec-head--center { margin-left: auto; margin-right: auto; text-align: center; }

.sec-label {
    display: inline-block;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--highlight-blue);
    margin-bottom: 14px;
}
.sec-label--cyan { color: var(--highlight-blue-light); }
.sec--dark .sec-label { color: var(--highlight-blue-light); }

.sec-title {
    font-size: clamp(28px, 3.4vw, 44px);
    font-weight: 800;
    color: var(--esds-navy);
    line-height: 1.1;
    letter-spacing: -1px;
    margin: 0 0 18px;
}
.sec-title em {
    font-style: normal;
    background: linear-gradient(135deg, var(--highlight-blue), var(--highlight-blue-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.sec--dark .sec-title { color: #fff; }
.sec-sub {
    font-size: 16px;
    color: var(--esds-gray-500);
    line-height: 1.7;
    margin: 0;
    max-width: 680px;
}
.full-sec-sub {
    font-size: 16px;
    color: var(--esds-gray-500);
    line-height: 1.7;
    margin: 0 auto;
    max-width: 80%;
    text-align: center;
}
.sec--dark .sec-sub { color: var(--esds-gray-300); }


/* ═══════════════════════════════════════════════════════════════════════════
   §15 · MEDIA PLACEHOLDERS · Black boxes for images to be uploaded later
═══════════════════════════════════════════════════════════════════════════ */
.media-ph {
    background: #000;
    color: rgba(255, 255, 255, 0.35);
    display: grid;
    place-items: center;
    font-family: 'JetBrains Mono', monospace;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    border-radius: 14px;
    overflow: hidden;
    position: relative;
    text-align: center;
    padding: 16px;
}
.media-ph::before {
    content: '';
    position: absolute;
    inset: 8px;
    border: 1.5px dashed rgba(255, 255, 255, 0.12);
    border-radius: 10px;
    pointer-events: none;
}
.media-ph::after {
    content: '+';
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -140%);
    font-size: 28px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.2);
    font-family: 'Plus Jakarta Sans', sans-serif;
}
.media-ph span { position: relative; z-index: 1; }
.media-ph--wide     { aspect-ratio: 16 / 9; }
.media-ph--square   { aspect-ratio: 1 / 1; }
.media-ph--portrait { aspect-ratio: 3 / 4; }
.media-ph--banner   { aspect-ratio: 21 / 9; }
.media-ph--icon     { width: 56px; height: 56px; border-radius: 12px; padding: 0; }
.media-ph--icon::after { display: none; }
.media-ph--icon::before { inset: 4px; border-radius: 8px; }


/* ═══════════════════════════════════════════════════════════════════════════
   §16 · COMMUNITY TRINITY · Three community cards (BFSI/Govt/Enterprise)
   Design pattern: Floating Islands · colored accent bar + hover lift
═══════════════════════════════════════════════════════════════════════════ */
.trinity-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.trinity-card {
    background: #fff;
    border: 1px solid var(--esds-gray-100);
    border-radius: 22px;
    padding: 36px 32px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.35s var(--esds-ease), box-shadow 0.35s var(--esds-ease);
}
.trinity-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 60px rgba(10, 22, 40, 0.12);
}
.trinity-card__bar {
    height: 5px;
    border-radius: 3px;
    margin-bottom: 24px;
}
.trinity-card__bar--bfsi { background: linear-gradient(90deg, #0F766E, #14B8A6); }
.trinity-card__bar--gov  { background: linear-gradient(90deg, #B45309, #F59E0B); }
.trinity-card__bar--ent  { background: linear-gradient(90deg, #4338CA, #6366F1); }

.trinity-card__media {
    margin: -8px -8px 20px;
}
.trinity-card__media .media-ph { aspect-ratio: 16/10; }

.trinity-card__label {
    font-family: 'JetBrains Mono', monospace;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 10px;
}
.trinity-card__label--bfsi { color: #0F766E; }
.trinity-card__label--gov  { color: #B45309; }
.trinity-card__label--ent  { color: #4338CA; }

.trinity-card h3 {
    font-size: 22px;
    font-weight: 800;
    color: var(--esds-navy);
    margin: 0 0 10px;
}
.trinity-card__stat {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 14px;
}
.trinity-card__stat .n { font-family: 'JetBrains Mono', monospace; }
.trinity-card__stat--bfsi { color: #0F766E; }
.trinity-card__stat--gov  { color: #B45309; }
.trinity-card__stat--ent  { color: #4338CA; }

.trinity-card p {
    font-size: 14px;
    color: var(--esds-gray-500);
    line-height: 1.65;
    margin: 0 0 24px;
    flex: 1;
}
.trinity-card__link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 11px 20px;
    border-radius: 10px;
    font-size: 13.5px;
    font-weight: 700;
    text-decoration: none;
    width: fit-content;
    transition: all 0.25s var(--esds-ease);
    border: 1.5px solid;
}
.trinity-card__link--bfsi { color: #0F766E; border-color: #0F766E; }
.trinity-card__link--bfsi:hover { background: #0F766E; color: #fff; }
.trinity-card__link--gov  { color: #B45309; border-color: #B45309; }
.trinity-card__link--gov:hover  { background: #B45309; color: #fff; }
.trinity-card__link--ent  { color: #4338CA; border-color: #4338CA; }
.trinity-card__link--ent:hover  { background: #4338CA; color: #fff; }

@media (max-width: 992px) {
    .trinity-grid { grid-template-columns: 1fr; }
}


/* ═══════════════════════════════════════════════════════════════════════════
   §17 · MILESTONE TIMELINE (vertical) · Origin-story / heritage timelines
   Design pattern: Story-Driven Progress Bar · animated accent rail
═══════════════════════════════════════════════════════════════════════════ */
.timeline-v {
    position: relative;
    padding-left: 36px;
}
.timeline-v::before {
    content: '';
    position: absolute;
    left: 10px; top: 4px; bottom: 4px;
    width: 2px;
    background: linear-gradient(180deg,
        var(--highlight-blue) 0%,
        var(--highlight-blue-light) 60%,
        var(--esds-gray-100) 100%);
}
.timeline-v__item {
    position: relative;
    margin-bottom: 28px;
}
.timeline-v__item:last-child { margin-bottom: 0; }
.timeline-v__item::before {
    content: '';
    position: absolute;
    left: -32px; top: 4px;
    width: 14px; height: 14px; border-radius: 50%;
    background: var(--highlight-blue);
    border: 3px solid #fff;
    box-shadow: 0 0 0 2px var(--highlight-blue), 0 0 18px rgba(0, 97, 255, 0.3);
}
.timeline-v__year {
    font-family: 'JetBrains Mono', monospace;
    font-size: 13px;
    font-weight: 800;
    color: var(--highlight-blue);
    letter-spacing: 0.05em;
    margin-bottom: 6px;
}
.timeline-v__text {
    font-size: 14px;
    color: var(--esds-gray-600, var(--esds-gray-500));
    line-height: 1.65;
}

/* Origin split layout */
.origin-split {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 64px;
    align-items: start;
}
.origin-split p { font-size: 15.5px; color: var(--esds-gray-500); line-height: 1.75; margin-bottom: 18px; }
@media (max-width: 992px) {
    .origin-split { grid-template-columns: 1fr; gap: 40px; }
}


/* ═══════════════════════════════════════════════════════════════════════════
   §18 · FEATURE / CAPABILITY GRID · Reusable across services & capabilities
   Design pattern: Micro-Interaction Dense · hover stripe on top edge
═══════════════════════════════════════════════════════════════════════════ */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.feature-grid--3 { grid-template-columns: repeat(3, 1fr); }
.feature-grid--2 { grid-template-columns: repeat(2, 1fr); }

.feature-card {
    background: #fff;
    border: 1px solid var(--esds-gray-100);
    border-radius: 16px;
    padding: 28px 26px;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s var(--esds-ease), box-shadow 0.3s var(--esds-ease), border-color 0.3s var(--esds-ease);
}
.feature-card::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0; height: 3px;
    background: linear-gradient(90deg, var(--highlight-blue), var(--highlight-blue-light));
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform 0.4s var(--esds-ease);
}
.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 34px rgba(10, 22, 40, 0.08);
    border-color: rgba(0, 97, 255, 0.25);
}
.feature-card:hover::before { transform: scaleX(1); }

.feature-card__media { margin: -8px -8px 16px; }
.feature-card__media .media-ph { aspect-ratio: 4/3; }
.feature-card__icon-ph {
    width: 52px; height: 52px; border-radius: 12px;
    background: #000;
    margin-bottom: 16px;
    display: grid;
    place-items: center;
    font-size: 9px;
    color: rgba(255, 255, 255, 0.3);
    font-family: 'JetBrains Mono', monospace;
    letter-spacing: 0.1em;
    position: relative;
}
.feature-card__icon-ph::before {
    content: '';
    position: absolute; inset: 4px;
    border: 1px dashed rgba(255, 255, 255, 0.12);
    border-radius: 8px;
}
.feature-card h3 {
    font-size: 16px;
    font-weight: 800;
    color: var(--esds-navy);
    margin: 0 0 10px;
    line-height: 1.3;
}
.feature-card p {
    font-size: 13.5px;
    color: var(--esds-gray-500);
    line-height: 1.65;
    margin: 0;
}
.feature-card__meta {
    font-size: 12px;
    font-weight: 700;
    color: var(--highlight-blue);
    margin-bottom: 8px;
}

/* Dark variant — capability cards on dark sections */
.sec--dark .feature-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(6px);
}
.sec--dark .feature-card:hover {
    background: rgba(0, 97, 255, 0.06);
    border-color: rgba(126, 233, 255, 0.25);
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.25);
}
.sec--dark .feature-card h3 { color: #fff; }
.sec--dark .feature-card p { color: var(--esds-gray-300); }

@media (max-width: 1100px) { .feature-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 768px) { .feature-grid, .feature-grid--3, .feature-grid--2 { grid-template-columns: 1fr; } }


/* ═══════════════════════════════════════════════════════════════════════════
   §19 · WHY-CARDS (numbered) · Numbered reasons/benefits grid
   Design pattern: Visible Border Card · giant outline number + hover lift
═══════════════════════════════════════════════════════════════════════════ */
.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}
.why-card {
    background: #fff;
    border: 1px solid var(--esds-gray-100);
    border-radius: 18px;
    padding: 32px 30px;
    position: relative;
    overflow: hidden;
    transition: transform 0.35s var(--esds-ease), box-shadow 0.35s var(--esds-ease);
}
.why-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 38px rgba(10, 22, 40, 0.08);
}
.why-card__num {
    font-family: 'JetBrains Mono', monospace;
    font-size: 56px;
    font-weight: 800;
    line-height: 1;
    -webkit-text-stroke: 2px var(--esds-gray-100);
    color: transparent;
    margin-bottom: 14px;
    transition: -webkit-text-stroke-color 0.3s;
}
.why-card:hover .why-card__num {
    -webkit-text-stroke-color: var(--highlight-blue);
    color: rgba(0, 97, 255, 0.05);
}
.why-card h3 {
    font-size: 18px;
    font-weight: 800;
    color: var(--esds-navy);
    margin: 0 0 12px;
    line-height: 1.3;
}
.why-card p {
    font-size: 14px;
    color: var(--esds-gray-500);
    line-height: 1.7;
    margin: 0;
}
@media (max-width: 992px) { .why-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .why-grid { grid-template-columns: 1fr; } }


/* ═══════════════════════════════════════════════════════════════════════════
   §20 · COMPLIANCE / CERT STACKS · Dark triple-column with checkmark lists
   Design pattern: 3D Layered Depth · translucent glass panels
═══════════════════════════════════════════════════════════════════════════ */
.compliance-stack {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}
.compliance-stack__card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.10);
    border-radius: 16px;
    padding: 28px 26px;
    backdrop-filter: blur(6px);
    transition: all 0.3s var(--esds-ease);
    position: relative;
    overflow: hidden;
}
.compliance-stack__card::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; height: 2px;
    background: linear-gradient(90deg, transparent, var(--highlight-blue-light), transparent);
    opacity: 0;
    transition: opacity 0.3s;
}
.compliance-stack__card:hover {
    background: rgba(0, 97, 255, 0.08);
    border-color: rgba(126, 233, 255, 0.30);
    transform: translateY(-4px);
}
.compliance-stack__card:hover::after { opacity: 1; }
.compliance-stack__card h3 {
    font-size: 16px;
    font-weight: 800;
    color: #fff;
    margin: 0 0 14px;
}
.compliance-stack__card ul {
    list-style: none;
    margin: 0; padding: 0;
}
.compliance-stack__card ul li {
    font-size: 13px;
    color: var(--esds-gray-300);
    padding: 6px 0 6px 22px;
    position: relative;
    line-height: 1.55;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.05);
}
.compliance-stack__card ul li:last-child { border-bottom: 0; }
.compliance-stack__card ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--esds-green-light);
    font-weight: 700;
    font-size: 13px;
}
@media (max-width: 992px) { .compliance-stack { grid-template-columns: 1fr; } }


/* ═══════════════════════════════════════════════════════════════════════════
   §21 · COMPARISON TABLE · Shared across all pages that compare offerings
   Design pattern: Comparison Grid · esds column highlighted + checkmarks
═══════════════════════════════════════════════════════════════════════════ */
.compare-wrap {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(10, 22, 40, 0.06);
    border: 1px solid var(--esds-gray-100);
}
.compare-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    font-size: 14px;
}
.compare-table thead th {
    padding: 18px 20px;
    font-weight: 700;
    text-align: left;
    font-size: 12px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}
.compare-table thead th:first-child {
    background: var(--esds-navy);
    color: #fff;
    width: 200px;
}
.compare-table thead th.esds-col {
    background: linear-gradient(135deg, var(--highlight-blue), var(--highlight-blue-light));
    color: #fff;
    text-align: center;
}
.compare-table thead th.alt-col {
    background: var(--esds-gray-500);
    color: #fff;
}
.compare-table thead th.alt-col-2 { background: var(--esds-gray-400); }

.compare-table tbody td {
    padding: 14px 20px;
    border-bottom: 1px solid var(--esds-gray-100);
    vertical-align: top;
    line-height: 1.55;
    background: #fff;
    font-size: 13.5px;
}
.compare-table tbody tr:last-child td { border-bottom: 0; }
.compare-table tbody td:first-child {
    font-weight: 700;
    color: var(--esds-navy);
    background: var(--esds-gray-50);
}
.compare-table tbody td.esds-cell {
    background: rgba(0, 97, 255, 0.04) !important;
    border-left: 3px solid var(--highlight-blue);
}
.compare-table .chk { color: var(--esds-green); font-weight: 800; }
.compare-table .cross { color: var(--esds-red); font-weight: 800; }
.compare-table .partial { color: #F59E0B; font-weight: 800; }

@media (max-width: 768px) {
    .compare-table { font-size: 12px; }
    .compare-table thead th, .compare-table tbody td { padding: 10px 12px; }
}


/* ═══════════════════════════════════════════════════════════════════════════
   §22 · PARTNER LOGO WALL · Edge-to-edge mosaic of partner/client tiles
   Design pattern: Edge-to-Edge Mosaic · uniform pill tiles with hover
═══════════════════════════════════════════════════════════════════════════ */
.partner-wall {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    justify-content: center;
}
.partner-tile {
    background: #fff;
    border: 1.5px solid var(--esds-gray-100);
    border-radius: 12px;
    padding: 16px 26px;
    font-size: 14px;
    font-weight: 800;
    color: var(--esds-gray-500);
    transition: all 0.25s var(--esds-ease);
    position: relative;
    min-width: 140px;
    text-align: center;
}
.partner-tile::before {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(135deg, var(--highlight-blue), var(--highlight-blue-light));
    border-radius: 12px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.25s;
}
.partner-tile:hover {
    color: var(--highlight-blue);
    border-color: var(--highlight-blue);
    transform: translateY(-3px);
    box-shadow: 0 8px 22px rgba(0, 97, 255, 0.15);
}


/* ═══════════════════════════════════════════════════════════════════════════
   §23 · TESTIMONIAL / PROOF CARDS · Customer quote cards with metric
   Design pattern: Chat-Style or Pull-Quote · metric hero + quote + attribution
═══════════════════════════════════════════════════════════════════════════ */
.proof-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}
.proof-grid--3 { grid-template-columns: repeat(3, 1fr); }

.proof-card {
    background: #fff;
    border: 1px solid var(--esds-gray-100);
    border-radius: 20px;
    padding: 36px;
    position: relative;
    transition: transform 0.3s var(--esds-ease), box-shadow 0.3s var(--esds-ease);
}
.proof-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 38px rgba(10, 22, 40, 0.08);
}
.proof-card__metric {
    font-family: 'JetBrains Mono', monospace;
    font-size: 32px;
    font-weight: 800;
    letter-spacing: -1.2px;
    background: linear-gradient(135deg, var(--highlight-blue), var(--highlight-blue-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 4px;
    line-height: 1;
}
.proof-card__metric-label {
    font-size: 12px;
    font-weight: 700;
    color: var(--esds-gray-400);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 20px;
}
.proof-card__quote {
    font-size: 15px;
    color: var(--esds-gray-700);
    line-height: 1.7;
    font-style: italic;
    padding-left: 16px;
    border-left: 3px solid var(--highlight-blue);
    margin-bottom: 20px;
}
.proof-card__author {
    display: flex;
    align-items: center;
    gap: 12px;
}
.proof-card__avatar {
    width: 44px; height: 44px;
    border-radius: 50%;
    background: #000;
    flex-shrink: 0;
    border: 2px solid var(--esds-gray-100);
    position: relative;
}
.proof-card__avatar::before {
    content: '';
    position: absolute; inset: 3px;
    border: 1px dashed rgba(255, 255, 255, 0.15);
    border-radius: 50%;
}
.proof-card__name {
    font-size: 14px;
    font-weight: 700;
    color: var(--esds-navy);
    line-height: 1.2;
}
.proof-card__role {
    font-size: 13px;
    color: var(--esds-gray-400);
    margin-top: 2px;
}
@media (max-width: 992px) { .proof-grid, .proof-grid--3 { grid-template-columns: 1fr; } }


/* ═══════════════════════════════════════════════════════════════════════════
   §24 · FAQ ACCORDION · Expand-collapse faq list
   Design pattern: FAQ Accordion Column · click-to-expand with chevron
═══════════════════════════════════════════════════════════════════════════ */
.faq-list {
    display: grid;
    gap: 12px;
    max-width: 920px;
    margin: 0 auto;
}
.faq-acc {
    background: var(--esds-gray-50);
    border: 1px solid var(--esds-gray-100);
    border-radius: 14px;
    overflow: hidden;
    transition: border-color 0.2s, background 0.2s;
}
.faq-acc.open {
    background: #fff;
    border-color: var(--highlight-blue);
    box-shadow: 0 8px 24px rgba(0, 97, 255, 0.08);
}
.faq-acc__trigger {
    width: 100%;
    padding: 20px 26px;
    background: none;
    border: 0;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    text-align: left;
    font-family: inherit;
    font-size: 15.5px;
    font-weight: 700;
    color: var(--esds-navy);
    transition: color 0.2s;
}
.faq-acc__trigger:hover { color: var(--highlight-blue); }
.faq-acc__trigger svg {
    width: 18px; height: 18px;
    color: var(--highlight-blue);
    transition: transform 0.3s var(--esds-ease);
    flex-shrink: 0;
}
.faq-acc.open .faq-acc__trigger svg { transform: rotate(45deg); }
.faq-acc__content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s var(--esds-ease);
}
.faq-acc.open .faq-acc__content { max-height: 600px; }
.faq-acc__content-inner {
    padding: 0 26px 22px;
    font-size: 14.5px;
    color: var(--esds-gray-500);
    line-height: 1.7;
}


/* ═══════════════════════════════════════════════════════════════════════════
   §25 · SECTION CTA · Per-page call-to-action bottom band
   Design pattern: Floating Islands CTA · dark navy with glow + checkmark row
═══════════════════════════════════════════════════════════════════════════ */
.page-cta {
    background: linear-gradient(165deg, var(--esds-navy), var(--esds-deep));
    color: #fff;
    text-align: center;
    padding: 110px 0;
    position: relative;
    overflow: hidden;
}
.page-cta::before {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 800px; height: 800px;
    background: radial-gradient(circle, rgba(0, 97, 255, 0.15) 0%, transparent 55%);
    border-radius: 50%;
    filter: blur(20px);
}
.page-cta__hindi {
    font-size: clamp(22px, 3vw, 34px);
    font-weight: 800;
    color: var(--highlight-blue-light);
    margin-bottom: 8px;
    position: relative;
    z-index: 2;
}
.page-cta h2 {
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 800;
    margin: 0 0 12px;
    position: relative;
    z-index: 2;
    letter-spacing: -1px;
    line-height: 1.12;
}
.page-cta h2 br { display: inline; }
.page-cta__sub {
    font-size: 17px;
    color: var(--esds-gray-300);
    margin: 0 auto 36px;
    max-width: 560px;
    position: relative;
    z-index: 2;
    line-height: 1.65;
}
.page-cta__ctas {
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
}
.page-cta__extras {
    display: flex;
    justify-content: center;
    gap: 28px;
    margin-top: 32px;
    position: relative;
    z-index: 2;
    flex-wrap: wrap;
}
.page-cta__extra {
    font-size: 13px;
    color: var(--esds-gray-400);
    display: flex;
    align-items: center;
    gap: 6px;
}
.page-cta__extra .c {
    color: var(--esds-green-light);
    font-weight: 800;
}
@media (max-width: 640px) {
    .page-cta__extras { flex-direction: column; align-items: center; gap: 12px; }
    .page-cta__ctas { flex-direction: column; }
    .page-cta__ctas .inner-hero__cta { width: 100%; justify-content: center; }
}


/* ═══════════════════════════════════════════════════════════════════════════
   §26 · HOW-IT-WORKS GRID · 4-card dark grid (Community overview "How works")
   Design pattern: Micro-Interaction Dense · dark translucent cards
═══════════════════════════════════════════════════════════════════════════ */
.how-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
}
.how-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 18px;
    padding: 32px 30px;
    backdrop-filter: blur(6px);
    transition: all 0.3s var(--esds-ease);
    position: relative;
}
.how-card::before {
    content: attr(data-step);
    position: absolute;
    top: 24px; right: 26px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    font-weight: 700;
    color: var(--highlight-blue-light);
    letter-spacing: 0.1em;
    opacity: 0.7;
}
.how-card:hover {
    border-color: rgba(126, 233, 255, 0.30);
    background: rgba(0, 97, 255, 0.06);
    transform: translateY(-3px);
}
.how-card h3 {
    font-size: 17px;
    font-weight: 800;
    color: #fff;
    margin: 0 0 12px;
    line-height: 1.3;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding-right: 60px;
}
.how-card p {
    font-size: 14px;
    color: var(--esds-gray-300);
    line-height: 1.7;
    margin: 0;
}
@media (max-width: 768px) { .how-grid { grid-template-columns: 1fr; } }


/* ═══════════════════════════════════════════════════════════════════════════
   §27 · HERO STACKED CALLOUTS · Hero with floating cards pointing to features
   Design pattern: Hero with Stacked Callouts (Community Cloud overview hero)
═══════════════════════════════════════════════════════════════════════════ */
.hero-callouts {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 48px;
    position: relative;
    z-index: 2;
}
.hero-callout {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    padding: 20px 22px;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s var(--esds-ease);
    position: relative;
    overflow: hidden;
}
.hero-callout::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 14px;
    padding: 1px;
    background: linear-gradient(135deg, transparent, rgba(126, 233, 255, 0.3), transparent);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.3s;
}
.hero-callout:hover {
    transform: translateY(-3px);
    background: rgba(0, 97, 255, 0.08);
}
.hero-callout:hover::before { opacity: 1; }
.hero-callout__num {
    font-family: 'JetBrains Mono', monospace;
    font-size: 12px;
    font-weight: 700;
    color: var(--highlight-blue-light);
    letter-spacing: 0.1em;
    margin-bottom: 8px;
}
.hero-callout__title {
    font-size: 17px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 6px;
}
.hero-callout__sub {
    font-size: 12.5px;
    color: var(--esds-gray-400);
    line-height: 1.5;
}
@media (max-width: 768px) { .hero-callouts { grid-template-columns: 1fr; } }


/* ═══════════════════════════════════════════════════════════════════════════
   §28 · PAIN/SOLUTION SPLIT · Two-column problem → solution contrast
   Design pattern: Split Narrative Layout
═══════════════════════════════════════════════════════════════════════════ */
.pain-sol {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
}
.pain-card {
    background: rgb(249 249 249);
    /* border: 1px solid rgba(239, 68, 68, 0.15); */
    border-radius: 14px;
    padding: 22px 24px;
    margin : 12px;
    transition: border-color 0.25s;
}
.pain-card:hover { border-color: rgba(239, 68, 68, 0.35); }
.pain-card h3 {
    font-size: 15px;
    font-weight: 800;
    color: var(--esds-navy);
    margin: 0 0 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.pain-card h3 .p-icon {
    width: 26px; height: 26px;
    background: rgb(131 131 131 / 15%);
    border-radius: 6px;
    display: grid;
    place-items: center;
    font-size: 13px;
}
.pain-card p {
    font-size: 13.5px;
    color: var(--esds-gray-500);
    line-height: 1.65;
    margin: 0;
}
.solution-card {
    background: linear-gradient(165deg, var(--esds-navy), var(--esds-deep));
    color: #fff;
    border: 1px solid rgba(126, 233, 255, 0.30);
    border-radius: 20px;
    padding: 36px 32px;
    position: sticky;
    top: 100px;
}
.solution-card h3 {
    font-size: 20px;
    font-weight: 800;
    color: #fff;
    margin: 0 0 16px;
    background: linear-gradient(90deg, var(--highlight-blue-light), #fff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.solution-card p {
    font-size: 14.5px;
    color: var(--esds-gray-300);
    line-height: 1.7;
    margin: 0 0 14px;
}
.solution-card__note {
    margin-top: 20px;
    padding: 16px;
    background: rgba(0, 97, 255, 0.12);
    border-radius: 10px;
    border: 1px solid rgba(126, 233, 255, 0.20);
    font-size: 13px;
    color: var(--esds-gray-200);
}
.solution-card__note strong { color: var(--highlight-blue-light); display: block; margin-bottom: 4px; }
@media (max-width: 992px) {
    .pain-sol { grid-template-columns: 1fr; }
    .solution-card { position: static; }
}


/* ═══════════════════════════════════════════════════════════════════════════
   §29 · LIFECYCLE RIBBON · Horizontal timeline of steps (AIOps)
   Design pattern: Horizontal Timeline Scroll · animated arrow connectors
═══════════════════════════════════════════════════════════════════════════ */
.lifecycle-ribbon {
    display: flex;
    align-items: center;
    gap: 4px;
    flex-wrap: wrap;
    justify-content: center;
    padding: 28px 20px;
    margin-top: 48px;
    background: #e6f0ff;
    border: 1px solid rgba(126, 233, 255, 0.15);
    border-radius: 18px;
    backdrop-filter: blur(4px);
    position: relative;
    z-index: 2;
}
.lc-step {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background: rgb(10 22 40);
    border: 1px solid rgba(126, 233, 255, 0.22);
    border-radius: 10px;
    font-size: 13px;
    font-weight: 700;
    color: #fff;
    transition: all 0.25s;
}
.lc-step:hover {
    background: rgba(126, 233, 255, 0.18);
    transform: translateY(-2px);
}
.lc-arrow {
    /* color: var(--highlight-blue-light); */
    color:hsl(216.1deg 98.98% 34.9%);
    font-size: 14px;
    font-weight: 700;
    opacity: 0.6;
    padding: 0 2px;
}


/* ═══════════════════════════════════════════════════════════════════════════
   §30 · GPU CHIP WALL · Micro-card grid for hardware/vendor chips (AIOps)
   Design pattern: Micro-Cards Grid (Pill Cards)
═══════════════════════════════════════════════════════════════════════════ */
.chip-wall {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}
.chip-item {
    background: #fff;
    border: 1.5px solid var(--esds-gray-100);
    border-radius: 14px;
    padding: 18px 20px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    transition: all 0.25s var(--esds-ease);
    font-weight: 700;
    color: var(--esds-navy);
}
.chip-item:hover {
    border-color: var(--highlight-blue);
    transform: translateY(-3px);
    box-shadow: 0 10px 24px rgba(0, 97, 255, 0.12);
}
.chip-item__vendor {
    font-family: 'JetBrains Mono', monospace;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.15em;
    color: var(--highlight-blue);
    text-transform: uppercase;
}
.chip-item__vendor--nvidia { color: #76B900; }
.chip-item__vendor--amd    { color: #ED1C24; }
.chip-item--byoc {
    border: 2px dashed var(--highlight-blue);
    background: rgba(0, 97, 255, 0.03);
}
.chip-item--byoc .chip-item__vendor { color: var(--highlight-blue); }
@media (max-width: 900px) { .chip-wall { grid-template-columns: repeat(2, 1fr); } }


/* ═══════════════════════════════════════════════════════════════════════════
   §31 · PILLAR DEEP-DIVE CARDS · 3-col feature cards with bullet list
   Design pattern: 3D Layered Depth · large card with icon + bulleted benefits
═══════════════════════════════════════════════════════════════════════════ */
.pillar-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}
.pillar-card {
    background: #fff;
    border: 1px solid var(--esds-gray-100);
    border-radius: 22px;
    padding: 36px 32px;
    position: relative;
    overflow: hidden;
    transition: transform 0.35s var(--esds-ease), box-shadow 0.35s var(--esds-ease);
}
.pillar-card::before {
    content: '';
    position: absolute;
    inset: 0;
    padding: 2px;
    border-radius: 22px;
    background: linear-gradient(135deg, transparent 40%, rgba(0, 97, 255, 0.20), transparent 60%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.35s;
}
.pillar-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 48px rgba(10, 22, 40, 0.10);
}
.pillar-card:hover::before { opacity: 1; }
.pillar-card__icon-ph {
    width: 56px; height: 56px;
    background: #000;
    border-radius: 14px;
    margin-bottom: 20px;
    position: relative;
}
.pillar-card__icon-ph::before {
    content: '';
    position: absolute; inset: 5px;
    border: 1.5px dashed rgba(255, 255, 255, 0.14);
    border-radius: 10px;
}
.pillar-card h3 {
    font-size: 20px;
    font-weight: 800;
    color: var(--esds-navy);
    margin: 0 0 12px;
}
.pillar-card__lede {
    font-size: 14px;
    color: var(--esds-gray-500);
    line-height: 1.7;
    margin: 0 0 18px;
}
.pillar-card__list {
    list-style: none;
    margin: 0; padding: 0;
}
.pillar-card__list li {
    font-size: 13.5px;
    color: var(--esds-gray-700);
    padding: 8px 0 8px 22px;
    position: relative;
    line-height: 1.55;
    border-top: 1px dashed var(--esds-gray-100);
}
.pillar-card__list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 8px;
    color: var(--highlight-blue);
    font-weight: 800;
}
@media (max-width: 992px) { .pillar-grid { grid-template-columns: 1fr; } }


/* ═══════════════════════════════════════════════════════════════════════════
   §32 · STACK / PLATFORM CARDS · Links to other platform offerings
   Design pattern: Micro-Cards Grid
═══════════════════════════════════════════════════════════════════════════ */
.stack-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}
.stack-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 28px 24px;
    text-align: center;
    backdrop-filter: blur(6px);
    transition: all 0.3s var(--esds-ease);
    text-decoration: none;
    color: inherit;
    display: block;
    position: relative;
    overflow: hidden;
}
.stack-card:hover {
    border-color: rgba(126, 233, 255, 0.30);
    background: rgba(0, 97, 255, 0.08);
    transform: translateY(-4px);
    color: #fff;
}
.stack-card__icon-ph {
    width: 56px; height: 56px;
    background: #000;
    border-radius: 12px;
    margin: 0 auto 16px;
    position: relative;
}
.stack-card__icon-ph::before {
    content: '';
    position: absolute; inset: 4px;
    border: 1.5px dashed rgba(255, 255, 255, 0.14);
    border-radius: 8px;
}
.stack-card h4 {
    font-size: 16px;
    font-weight: 800;
    color: #fff;
    margin: 0 0 8px;
}
.stack-card p {
    font-size: 13px;
    color: var(--esds-gray-300);
    line-height: 1.6;
    margin: 0;
}
@media (max-width: 900px) { .stack-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .stack-grid { grid-template-columns: 1fr; } }


/* ═══════════════════════════════════════════════════════════════════════════
   §33 · SCALING CALLOUT · Split narrative with highlight card (GovCC)
   Design pattern: Split Narrative Layout
═══════════════════════════════════════════════════════════════════════════ */
.scaling-split {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 64px;
    align-items: start;
}
.scaling-split p { font-size: 15px; color: var(--esds-gray-500); line-height: 1.75; margin-bottom: 18px; }
.scaling-callout {
    background: linear-gradient(165deg, var(--esds-navy), var(--esds-deep));
    color: #fff;
    border-radius: 20px;
    padding: 36px 32px;
    box-shadow: 0 20px 60px rgba(10, 22, 40, 0.15);
    border: 1px solid rgba(126, 233, 255, 0.20);
    position: relative;
    overflow: hidden;
}
.scaling-callout::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; height: 2px;
    background: linear-gradient(90deg, transparent, var(--highlight-blue-light), transparent);
}
.scaling-callout h3 {
    font-size: 18px;
    font-weight: 800;
    color: #fff;
    margin: 0 0 14px;
}
.scaling-callout p {
    font-size: 14px;
    color: var(--esds-gray-300);
    line-height: 1.7;
    margin: 0 0 14px;
}
.scaling-callout p:last-child { margin-bottom: 0; }
.scaling-callout .hi {
    color: var(--highlight-blue-light);
    font-weight: 700;
}
@media (max-width: 992px) { .scaling-split { grid-template-columns: 1fr; gap: 40px; } }


/* ═══════════════════════════════════════════════════════════════════════════
   §34 · INDUSTRY MOSAIC · Edge-to-edge industry card grid (EnterpriseCC)
   Design pattern: Edge-to-Edge Mosaic
═══════════════════════════════════════════════════════════════════════════ */
.industry-mosaic {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}
.industry-tile {
    background: #fff;
    border: 1px solid var(--esds-gray-100);
    border-radius: 16px;
    padding: 26px 24px;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s var(--esds-ease), border-color 0.3s, box-shadow 0.3s;
}
.industry-tile::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--highlight-blue), var(--highlight-blue-light));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.35s var(--esds-ease);
}
.industry-tile:hover {
    border-color: var(--highlight-blue);
    transform: translateY(-4px);
    box-shadow: 0 14px 32px rgba(0, 97, 255, 0.10);
}
.industry-tile:hover::after { transform: scaleX(1); }
.industry-tile__icon-ph {
    width: 44px; height: 44px;
    background: #000;
    border-radius: 10px;
    margin-bottom: 14px;
    position: relative;
}
.industry-tile__icon-ph::before {
    content: '';
    position: absolute; inset: 3px;
    border: 1px dashed rgba(255, 255, 255, 0.14);
    border-radius: 7px;
}
.industry-tile h3 {
    font-size: 15px;
    font-weight: 800;
    color: var(--esds-navy);
    margin: 0 0 6px;
}
.industry-tile__names {
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    font-weight: 600;
    color: var(--highlight-blue);
    margin-bottom: 10px;
    letter-spacing: 0.02em;
}
.industry-tile p {
    font-size: 12.5px;
    color: var(--esds-gray-500);
    line-height: 1.6;
    margin: 0;
}
@media (max-width: 1100px) { .industry-mosaic { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 768px)  { .industry-mosaic { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px)  { .industry-mosaic { grid-template-columns: 1fr; } }


/* ═══════════════════════════════════════════════════════════════════════════
   §35 · STORYBOARD LANDMARKS · 6-card storyboard for landmark deployments (GovCC)
   Design pattern: Storyboard Layout · comic-frame moments
═══════════════════════════════════════════════════════════════════════════ */
.storyboard {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}
.storyboard__frame {
    background: #fff;
    border: 1px solid var(--esds-gray-100);
    border-radius: 20px;
    overflow: hidden;
    transition: transform 0.35s var(--esds-ease), box-shadow 0.35s var(--esds-ease);
    display: flex;
    flex-direction: column;
}
.storyboard__frame:hover {
    transform: translateY(-6px);
    box-shadow: 0 22px 48px rgba(10, 22, 40, 0.12);
}
.storyboard__media .media-ph { border-radius: 0; aspect-ratio: 16/10; }
.storyboard__body { padding: 26px 28px 30px; }
.storyboard__icon-ph {
    width: 46px; height: 46px;
    background: #000;
    border-radius: 10px;
    margin-bottom: 14px;
    position: relative;
}
.storyboard__icon-ph::before {
    content: '';
    position: absolute; inset: 4px;
    border: 1px dashed rgba(255, 255, 255, 0.14);
    border-radius: 7px;
}
.storyboard__frame h3 {
    font-size: 17px;
    font-weight: 800;
    color: var(--esds-navy);
    margin: 0 0 8px;
    line-height: 1.3;
}
.storyboard__stat {
    font-family: 'JetBrains Mono', monospace;
    font-size: 13px;
    font-weight: 800;
    color: var(--highlight-blue);
    margin-bottom: 12px;
    letter-spacing: 0.02em;
}
.storyboard__frame p {
    font-size: 13.5px;
    color: var(--esds-gray-500);
    line-height: 1.7;
    margin: 0;
}
@media (max-width: 992px) { .storyboard { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .storyboard { grid-template-columns: 1fr; } }


/* ═══════════════════════════════════════════════════════════════════════════
   §36 · QUOTE SLAB · Centered pull-quote block (AIOps Komal quote)
   Design pattern: Layered Overprint · massive opening mark + centered quote
═══════════════════════════════════════════════════════════════════════════ */
.quote-slab {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    padding: 48px 32px;
    position: relative;
}
.quote-slab::before {
    content: '"';
    position: absolute;
    top: -24px; left: 50%;
    transform: translateX(-50%);
    font-size: 180px;
    line-height: 1;
    font-family: Georgia, serif;
    background: linear-gradient(135deg, var(--highlight-blue), var(--highlight-blue-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    opacity: 0.25;
    font-weight: 700;
}
.quote-slab__text {
    font-size: clamp(20px, 2.4vw, 26px);
    font-weight: 600;
    color: #fff;
    line-height: 1.5;
    margin: 0 0 28px;
    position: relative;
    font-style: italic;
    letter-spacing: -0.2px;
}
.quote-slab__author {
    font-size: 15px;
    font-weight: 800;
    color: var(--highlight-blue-light);
    margin-bottom: 4px;
}
.quote-slab__role {
    font-size: 12px;
    color: var(--esds-gray-400);
    letter-spacing: 0.05em;
}


/* ═══════════════════════════════════════════════════════════════════════════
   §37 · MANIFESTO (Swaraj) · Magazine-style split with pillar stack
   Design pattern: Layered Overprint + Floating Islands
═══════════════════════════════════════════════════════════════════════════ */
.manifesto {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 72px;
    align-items: start;
}
.manifesto__text p {
    font-size: 15.5px;
    color: var(--esds-gray-500);
    line-height: 1.8;
    margin-bottom: 18px;
}
.manifesto__text h2 {
    font-size: clamp(30px, 3.6vw, 44px);
    font-weight: 800;
    color: var(--esds-navy);
    letter-spacing: -1px;
    line-height: 1.08;
    margin: 0 0 28px;
}
.manifesto__text .emphasis {
    font-size: 18px;
    font-weight: 700;
    color: var(--esds-navy);
    padding: 20px 24px;
    margin: 24px 0;
    background: linear-gradient(90deg, rgba(0, 97, 255, 0.06), transparent);
    border-left: 4px solid var(--highlight-blue);
    border-radius: 4px;
    line-height: 1.5;
}
.manifesto__pillars {
    display: flex;
    flex-direction: column;
    gap: 16px;
    position: sticky;
    top: 100px;
}
.manifesto__pillar {
    background: #fff;
    border: 1px solid var(--esds-gray-100);
    border-radius: 16px;
    padding: 22px 24px;
    display: flex;
    gap: 16px;
    align-items: start;
    transition: all 0.25s var(--esds-ease);
}
.manifesto__pillar:hover {
    border-color: var(--highlight-blue);
    transform: translateX(4px);
    box-shadow: 0 10px 24px rgba(0, 97, 255, 0.08);
}
.manifesto__pillar-ph {
    width: 44px; height: 44px;
    background: #000;
    border-radius: 10px;
    flex-shrink: 0;
    position: relative;
}
.manifesto__pillar-ph::before {
    content: '';
    position: absolute; inset: 3px;
    border: 1px dashed rgba(255, 255, 255, 0.14);
    border-radius: 7px;
}
.manifesto__pillar h3 {
    font-size: 15px;
    font-weight: 800;
    color: var(--esds-navy);
    margin: 0 0 6px;
}
.manifesto__pillar p {
    font-size: 13px;
    color: var(--esds-gray-500);
    line-height: 1.6;
    margin: 0;
}
@media (max-width: 992px) {
    .manifesto { grid-template-columns: 1fr; gap: 40px; }
    .manifesto__pillars { position: static; }
}

/* Hero Hindi (Swaraj special) */
.hero-hindi {
    font-family: 'Noto Sans Devanagari', 'Plus Jakarta Sans', sans-serif;
    font-size: clamp(20px, 2vw, 28px);
    color: var(--highlight-blue-light);
    font-weight: 800;
    margin-bottom: 8px;
    letter-spacing: -0.2px;
}
.hero-tagline-en {
    font-size: 16px;
    color: var(--esds-gray-300);
    font-style: italic;
    margin-bottom: 20px;
}
.hero-tagline-en em { color: var(--highlight-blue-light); font-style: normal; font-weight: 700; }

/* Tricolor bar (India identity) */
.tricolor-bar {
    display: inline-flex;
    overflow: hidden;
    border-radius: 3px;
    width: 22px; height: 14px;
    margin-right: 10px;
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.15);
}
.tricolor-bar > span { flex: 1; display: block; }
.tc-s { background: var(--india-saffron); }
.tc-w { background: #fff; }
.tc-g { background: var(--india-green); }


/* ═══════════════════════════════════════════════════════════════════════════
   §38 · CERTIFICATION CHIP ROW · Horizontal badge row (Swaraj certs)
   Design pattern: Micro-Cards Grid
═══════════════════════════════════════════════════════════════════════════ */
.cert-row {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
    justify-content: center;
    padding: 12px 0;
}
.cert-chip {
    background: #fff;
    border: 1px solid var(--esds-gray-100);
    padding: 10px 18px;
    border-radius: 8px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 11.5px;
    font-weight: 700;
    color: var(--esds-gray-700);
    letter-spacing: 0.03em;
    transition: all 0.2s;
}
.cert-chip:hover {
    border-color: var(--highlight-blue);
    color: var(--highlight-blue);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 97, 255, 0.1);
}
.cert-row-label {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--esds-gray-400);
    white-space: nowrap;
    margin-right: 8px;
}



/* ═══════════════════════════════════════════════════════════════════════════
   §39 · SCROLL-REVEAL ANIMATIONS · Applied by JS IntersectionObserver
═══════════════════════════════════════════════════════════════════════════ */


/* .why-card, .feature-card, */
.trinity-card,   .industry-tile,
.storyboard__frame, .pillar-card, .stack-card, .proof-card,
.compliance-stack__card, .how-card, .chip-item,
.mission-card, .board-card, .cxo-card, .cert-card, .esg-card {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s var(--esds-ease), transform 0.6s var(--esds-ease);
}
.revealed {
    opacity: 1 !important;
    transform: translateY(0) !important;
}
@media (prefers-reduced-motion: reduce) {
    .trinity-card, .feature-card, .why-card, .industry-tile,
    .storyboard__frame, .pillar-card, .stack-card, .proof-card,
    .compliance-stack__card, .how-card, .chip-item,
    .mission-card, .board-card, .cxo-card, .cert-card, .esg-card {
        opacity: 1;
        transform: none;
    }
}


/* ═══════════════════════════════════════════════════════════════════════════
   §40 · MISSION / 4B GRID · Dark four-card grid for big ambitions
   Design pattern: Floating Islands · glass cards with big emoji icon
═══════════════════════════════════════════════════════════════════════════ */
.mission-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.mission-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 32px 28px;
    backdrop-filter: blur(6px);
    transition: all 0.35s var(--esds-ease);
    position: relative;
    overflow: hidden;
}
.mission-card::before {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: 20px;
    padding: 1px;
    background: linear-gradient(135deg, var(--highlight-blue-light), transparent 40%, transparent 60%, var(--highlight-blue));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.35s;
}
.mission-card:hover {
    transform: translateY(-6px);
    background: rgba(0, 97, 255, 0.08);
    border-color: rgba(126, 233, 255, 0.30);
}
.mission-card:hover::before { opacity: 1; }
.mission-card__icon {
    font-size: 36px;
    margin-bottom: 16px;
    line-height: 1;
    display: block;
}
.mission-card__num {
    font-family: 'JetBrains Mono', monospace;
    font-size: 13px;
    font-weight: 800;
    color: var(--highlight-blue-light);
    letter-spacing: 0.15em;
    margin-bottom: 6px;
    text-transform: uppercase;
}
.mission-card h3 {
    font-size: 19px;
    font-weight: 800;
    color: #fff;
    margin: 0 0 10px;
    line-height: 1.2;
}
.mission-card p {
    font-size: 13.5px;
    color: var(--esds-gray-300);
    line-height: 1.7;
    margin: 0;
}
@media (max-width: 992px) { .mission-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .mission-grid { grid-template-columns: 1fr; } }


/* ═══════════════════════════════════════════════════════════════════════════
   §41 · LEADER CARDS (BOARD + CXO) · Avatars with initials on black
   Design pattern: Visible Border Card · big initial avatars + tag pill
═══════════════════════════════════════════════════════════════════════════ */
.board-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}
.board-card {
    background: #fff;
    border: 1px solid var(--esds-gray-100);
    border-radius: 22px;
    padding: 36px 32px;
    transition: transform 0.35s var(--esds-ease), box-shadow 0.35s var(--esds-ease);
    position: relative;
}
.board-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 48px rgba(10, 22, 40, 0.10);
}
.leader-avatar {
    width: 84px; height: 84px;
    border-radius: 50%;
    background: #000;
    color: #fff;
    display: grid;
    place-items: center;
    font-family: 'JetBrains Mono', monospace;
    font-size: 28px;
    font-weight: 800;
    letter-spacing: -0.5px;
    margin-bottom: 20px;
    position: relative;
    border: 3px solid var(--esds-gray-50);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
}
.leader-avatar::before {
    content: '';
    position: absolute;
    inset: -6px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--highlight-blue), var(--highlight-blue-light));
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s;
}
.board-card:hover .leader-avatar::before,
.cxo-card:hover .leader-avatar::before { opacity: 1; }
.leader-avatar--promoter {
    background: linear-gradient(135deg, #1a1a2e, #000);
}
.board-card h3 {
    font-size: 24px;
    font-weight: 800;
    color: var(--esds-navy);
    margin: 0 0 4px;
    letter-spacing: -0.4px;
}
.board-card__role {
    font-size: 12px;
    font-weight: 800;
    color: var(--highlight-blue);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 12px;
}
.board-card__tag {
    display: inline-block;
    background: rgba(0, 97, 255, 0.08);
    color: var(--highlight-blue);
    padding: 5px 14px;
    border-radius: 100px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.04em;
    margin-bottom: 16px;
    border: 1px solid rgba(0, 97, 255, 0.15);
}
.board-card p {
    font-size: 14.5px;
    color: var(--esds-gray-500);
    line-height: 1.75;
    margin: 0;
}
@media (max-width: 992px) { .board-grid { grid-template-columns: 1fr; } }

/* CXO smaller card grid */
.cxo-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.cxo-card {
    background: #fff;
    border: 1px solid var(--esds-gray-100);
    border-radius: 18px;
    padding: 28px 24px;
    text-align: center;
    transition: transform 0.3s var(--esds-ease), box-shadow 0.3s var(--esds-ease);
    position: relative;
}
.cxo-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(10, 22, 40, 0.08);
}
.cxo-card .leader-avatar {
    width: 64px; height: 64px;
    font-size: 20px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 14px;
}
.cxo-card h3 {
    font-size: 17px;
    font-weight: 800;
    color: var(--esds-navy);
    margin: 0 0 4px;
}
.cxo-card__role {
    font-size: 11px;
    font-weight: 800;
    color: var(--highlight-blue);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 12px;
}
.cxo-card p {
    font-size: 12.5px;
    color: var(--esds-gray-500);
    line-height: 1.65;
    margin: 0;
}
@media (max-width: 992px) { .cxo-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .cxo-grid { grid-template-columns: 1fr; } }


/* ═══════════════════════════════════════════════════════════════════════════
   §42 · PRESENCE BADGE ROW · Global location badges
   Design pattern: Micro-Cards Grid · flag + location pills
═══════════════════════════════════════════════════════════════════════════ */
.presence-wall {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    margin: 0 auto;
    max-width: 900px;
}
.presence-badge {
    background: #fff;
    border: 1.5px solid var(--esds-gray-100);
    padding: 10px 20px;
    border-radius: 100px;
    font-size: 14px;
    font-weight: 700;
    color: var(--esds-gray-700);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.25s var(--esds-ease);
}
.presence-badge:hover {
    border-color: var(--highlight-blue);
    color: var(--highlight-blue);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 97, 255, 0.12);
}
.presence-badge--hq {
    background: linear-gradient(135deg, var(--highlight-blue), var(--highlight-blue-light));
    color: #fff;
    border-color: transparent;
}
.presence-badge--hq:hover { color: #fff; }
.presence-footnote {
    text-align: center;
    font-size: 13px;
    color: var(--esds-gray-400);
    margin-top: 24px;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}


/* ═══════════════════════════════════════════════════════════════════════════
   §43 · CERT CATEGORY SECTIONS · Grouped ISO/SOC/MeitY cards
   Design pattern: Visible Border Card · category header + badge+desc rows
═══════════════════════════════════════════════════════════════════════════ */
.cert-cat { margin-bottom: 64px; }
.cert-cat:last-child { margin-bottom: 0; }
.cert-cat__header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
    padding-bottom: 14px;
    border-bottom: 2px solid var(--esds-gray-100);
}
.cert-cat__icon {
    width: 48px; height: 48px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    font-size: 22px;
    background: linear-gradient(135deg, var(--highlight-blue), var(--highlight-blue-light));
    color: #fff;
    box-shadow: 0 6px 16px rgba(0, 97, 255, 0.20);
    flex-shrink: 0;
}
.cert-cat__icon--green  { background: linear-gradient(135deg, #059669, #10B981); box-shadow: 0 6px 16px rgba(5, 150, 105, 0.25); }
.cert-cat__icon--purple { background: linear-gradient(135deg, #7C3AED, #A78BFA); box-shadow: 0 6px 16px rgba(124, 58, 237, 0.25); }
.cert-cat__icon--amber  { background: linear-gradient(135deg, #D97706, #F59E0B); box-shadow: 0 6px 16px rgba(217, 119, 6, 0.25); }
.cert-cat__icon--red    { background: linear-gradient(135deg, #DC2626, #EF4444); box-shadow: 0 6px 16px rgba(220, 38, 38, 0.25); }
.cert-cat__icon--teal   { background: linear-gradient(135deg, #0F766E, #14B8A6); box-shadow: 0 6px 16px rgba(15, 118, 110, 0.25); }

.cert-cat__header h3 {
    font-size: 22px;
    font-weight: 800;
    color: var(--esds-navy);
    margin: 0;
    letter-spacing: -0.3px;
}

.cert-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}
.cert-card {
    background: #fff;
    border: 1.5px solid var(--esds-gray-100);
    border-radius: 16px;
    padding: 24px;
    display: grid;
    grid-template-columns: 92px 1fr;
    gap: 20px;
    align-items: start;
    transition: border-color 0.25s var(--esds-ease), box-shadow 0.25s var(--esds-ease), transform 0.25s var(--esds-ease);
}
.cert-card:hover {
    border-color: var(--highlight-blue);
    box-shadow: 0 12px 28px rgba(0, 97, 255, 0.08);
    transform: translateY(-3px);
}
.cert-badge-block {
    background: var(--esds-navy);
    color: #fff;
    border-radius: 12px;
    padding: 16px 10px;
    text-align: center;
    font-family: 'JetBrains Mono', monospace;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.05em;
    line-height: 1.2;
    position: relative;
    overflow: hidden;
}
.cert-badge-block::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--highlight-blue), var(--highlight-blue-light));
}
.cert-card__info h4 {
    font-size: 15px;
    font-weight: 800;
    color: var(--esds-navy);
    margin: 0 0 8px;
    line-height: 1.3;
}
.cert-card__info p {
    font-size: 13.5px;
    color: var(--esds-gray-500);
    line-height: 1.65;
    margin: 0 0 12px;
}
.cert-scope {
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    color: var(--highlight-blue);
    font-weight: 700;
    padding-top: 10px;
    border-top: 1px dashed var(--esds-gray-100);
    letter-spacing: 0.02em;
}
@media (max-width: 900px) { .cert-grid { grid-template-columns: 1fr; } }


/* ═══════════════════════════════════════════════════════════════════════════
   §44 · ESG TRIPTYCH · Three-pillar card with distinct color per pillar
   Design pattern: 3D Layered Depth · E/S/G with environmental/social/governance colors
═══════════════════════════════════════════════════════════════════════════ */
.esg-triptych {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}
.esg-card {
    background: #fff;
    border: 1px solid var(--esds-gray-100);
    border-radius: 22px;
    padding: 36px 32px;
    position: relative;
    overflow: hidden;
    transition: transform 0.35s var(--esds-ease), box-shadow 0.35s var(--esds-ease);
}
.esg-card::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0;
    height: 5px;
}
.esg-card--env::before { background: linear-gradient(90deg, #059669, #10B981); }
.esg-card--soc::before { background: linear-gradient(90deg, #0284C7, #38BDF8); }
.esg-card--gov::before { background: linear-gradient(90deg, #7C3AED, #A78BFA); }

.esg-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 22px 50px rgba(10, 22, 40, 0.10);
}
.esg-card__icon {
    width: 56px; height: 56px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    font-size: 26px;
    color: #fff;
    margin-bottom: 20px;
}
.esg-card--env .esg-card__icon { background: linear-gradient(135deg, #059669, #10B981); box-shadow: 0 6px 16px rgba(5, 150, 105, 0.25); }
.esg-card--soc .esg-card__icon { background: linear-gradient(135deg, #0284C7, #38BDF8); box-shadow: 0 6px 16px rgba(2, 132, 199, 0.25); }
.esg-card--gov .esg-card__icon { background: linear-gradient(135deg, #7C3AED, #A78BFA); box-shadow: 0 6px 16px rgba(124, 58, 237, 0.25); }

.esg-card h3 {
    font-size: 22px;
    font-weight: 800;
    color: var(--esds-navy);
    margin: 0 0 14px;
    letter-spacing: -0.3px;
}
.esg-card p {
    font-size: 14.5px;
    color: var(--esds-gray-500);
    line-height: 1.75;
    margin: 0;
}
@media (max-width: 992px) { .esg-triptych { grid-template-columns: 1fr; } }


/* ═══════════════════════════════════════════════════════════════════════════
   §45 · MISSION BAR (4B) · Inline 4-stat strip
   Design pattern: Micro-Cards Grid · numbers as pill row
═══════════════════════════════════════════════════════════════════════════ */
.mission-bar {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    background: linear-gradient(135deg, var(--esds-navy), var(--esds-deep));
    border-radius: 20px;
    padding: 0;
    margin-top: 48px;
    overflow: hidden;
    border: 1px solid rgba(126, 233, 255, 0.20);
    position: relative;
}
.mission-bar::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--highlight-blue-light), transparent);
}
.mb-item {
    padding: 28px 20px;
    text-align: center;
    border-right: 1px solid rgba(255, 255, 255, 0.06);
    transition: background 0.25s;
}
.mb-item:last-child { border-right: 0; }
.mb-item:hover { background: rgba(0, 97, 255, 0.08); }
.mb-num {
    font-family: 'JetBrains Mono', monospace;
    font-size: 36px;
    font-weight: 800;
    color: #fff;
    letter-spacing: -1.5px;
    line-height: 1;
    margin-bottom: 6px;
    background: linear-gradient(135deg, #fff, var(--highlight-blue-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.mb-label {
    font-size: 12px;
    color: var(--esds-gray-300);
    font-weight: 600;
    letter-spacing: 0.02em;
}
@media (max-width: 768px) {
    .mission-bar { grid-template-columns: repeat(2, 1fr); }
    .mb-item:nth-child(2) { border-right: 0; }
    .mb-item:nth-child(-n+2) { border-bottom: 1px solid rgba(255, 255, 255, 0.06); }
}


/* ═══════════════════════════════════════════════════════════════════════════
   §46 · PULLQUOTE CARD (light) · Accent-bar left pull-quote on light bg
   Design pattern: Layered Overprint · magazine pullquote
═══════════════════════════════════════════════════════════════════════════ */
.pullquote-card {
    background: #fff;
    border-left: 5px solid var(--highlight-blue);
    border-radius: 0 18px 18px 0;
    padding: 36px 40px;
    max-width: 920px;
    margin: 0 auto;
    box-shadow: 0 12px 32px rgba(10, 22, 40, 0.06);
    position: relative;
}
.pullquote-card::before {
    content: '"';
    position: absolute;
    top: -8px; left: 22px;
    font-family: Georgia, serif;
    font-size: 140px;
    line-height: 1;
    color: var(--highlight-blue);
    opacity: 0.15;
    font-weight: 700;
}
.pullquote-card__text {
    font-size: clamp(18px, 1.8vw, 22px);
    color: var(--esds-navy);
    line-height: 1.6;
    margin: 0 0 22px;
    font-weight: 500;
    font-style: italic;
    position: relative;
}
.pullquote-card__author {
    font-size: 15px;
    font-weight: 800;
    color: var(--esds-navy);
    margin-bottom: 2px;
}
.pullquote-card__role {
    font-size: 13px;
    color: var(--highlight-blue);
    font-weight: 600;
    letter-spacing: 0.02em;
}



/* ═══════════════════════════════════════════════════════════════════════════
   §40 · FINANCIAL TABLES · IR pages — P&L and balance sheet tabular displays
   Design pattern: Data Story Dashboard · FY25 column highlighted
═══════════════════════════════════════════════════════════════════════════ */
.fin-wrap {
    background: #fff;
    border: 1px solid var(--esds-gray-100);
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 8px 28px rgba(10, 22, 40, 0.06);
}
.fin-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    font-size: 14px;
}
.fin-table thead th {
    background: var(--esds-navy);
    color: #fff;
    padding: 16px 20px;
    text-align: right;
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}
.fin-table thead th:first-child { text-align: left; }
.fin-table thead th.fy25 {
    background: linear-gradient(135deg, var(--highlight-blue), var(--highlight-blue-light));
}
.fin-table tbody td {
    padding: 12px 20px;
    border-bottom: 1px solid var(--esds-gray-100);
    text-align: right;
    color: var(--esds-gray-700);
    font-family: 'JetBrains Mono', monospace;
}
.fin-table tbody td:first-child {
    text-align: left;
    color: var(--esds-navy);
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 600;
}
.fin-table tbody tr:last-child td { border-bottom: none; }
.fin-table tbody tr.highlight td {
    background: var(--esds-gray-50);
    font-weight: 700;
    color: var(--esds-navy);
}
.fin-table tbody td.fy25 {
    background: rgba(0, 97, 255, 0.06) !important;
    font-weight: 700;
    color: var(--esds-navy);
    border-left: 3px solid var(--highlight-blue);
}
.fin-table tbody td.pos { color: var(--esds-green); font-weight: 700; }
.fin-table tbody td.neg { color: var(--esds-red); font-weight: 700; }


/* ═══════════════════════════════════════════════════════════════════════════
   §41 · REVENUE BAR CHART · Visual revenue trajectory (bars on pedestals)
   Design pattern: Data Story Dashboard · 4-year bar progression
═══════════════════════════════════════════════════════════════════════════ */
.rev-bars {
    display: flex;
    gap: 24px;
    align-items: flex-end;
    justify-content: center;
    padding: 32px 24px 16px;
    background: var(--esds-gray-50);
    border: 1px solid var(--esds-gray-100);
    border-radius: 18px;
    flex-wrap: wrap;
    min-height: 300px;
}
.rev-col {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    min-width: 110px;
}
.rev-col__amt {
    font-family: 'JetBrains Mono', monospace;
    font-size: 13px;
    font-weight: 700;
    color: var(--esds-navy);
}
.rev-col__bar {
    width: 80px;
    background: linear-gradient(180deg, var(--highlight-blue), var(--highlight-blue-light));
    border-radius: 10px 10px 0 0;
    min-height: 40px;
    box-shadow: 0 -4px 16px rgba(0, 97, 255, 0.2);
    transition: transform 0.3s var(--esds-ease);
}
.rev-col:hover .rev-col__bar {
    transform: translateY(-4px) scaleY(1.02);
    transform-origin: bottom;
}
.rev-col__bar--target {
    background: transparent !important;
    border: 2px dashed var(--highlight-blue);
    box-shadow: none;
    position: relative;
}
.rev-col__bar--target::before {
    content: '';
    position: absolute;
    inset: 4px;
    background: linear-gradient(180deg, rgba(0, 97, 255, 0.18), rgba(126, 233, 255, 0.08));
    border-radius: 6px 6px 0 0;
}
.rev-col__amt--target { color: var(--highlight-blue); }
.rev-col__year {
    font-size: 11px;
    font-weight: 700;
    color: var(--esds-gray-400);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-family: 'JetBrains Mono', monospace;
}
.rev-chart-label {
    font-size: 11px;
    font-weight: 800;
    color: var(--esds-gray-400);
    letter-spacing: 0.25em;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 14px;
}


/* ═══════════════════════════════════════════════════════════════════════════
   §42 · RATIO / KPI CARDS · Dark financial KPI card with trend-arrow delta
   Design pattern: Data Story Dashboard · glass KPI tiles
═══════════════════════════════════════════════════════════════════════════ */
.kpi-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}
.kpi-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    padding: 22px 22px;
    backdrop-filter: blur(6px);
    transition: all 0.25s var(--esds-ease);
}
.kpi-card:hover {
    background: rgba(0, 97, 255, 0.08);
    border-color: rgba(126, 233, 255, 0.25);
    transform: translateY(-3px);
}
.kpi-card__value {
    font-family: 'JetBrains Mono', monospace;
    font-size: 28px;
    font-weight: 800;
    letter-spacing: -1px;
    color: #fff;
    line-height: 1;
    margin-bottom: 8px;
}
.kpi-card__label {
    font-size: 12px;
    color: var(--esds-gray-300);
    font-weight: 600;
    margin-bottom: 12px;
}
.kpi-card__delta {
    font-size: 11px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-family: 'JetBrains Mono', monospace;
}
.kpi-card__delta--up   { background: rgba(16, 185, 129, 0.12); color: var(--esds-green-light); }
.kpi-card__delta--down { background: rgba(239, 68, 68, 0.10); color: var(--esds-red); }
.kpi-card__delta--flat { background: rgba(245, 158, 11, 0.12); color: #F59E0B; }
@media (max-width: 1024px) { .kpi-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .kpi-grid { grid-template-columns: 1fr; } }


/* ═══════════════════════════════════════════════════════════════════════════
   §43 · FIN-STAT CARDS · Light financial stat cards (IR-light sections)
   Design pattern: Floating Islands · soft-shadow cards with big number
═══════════════════════════════════════════════════════════════════════════ */
.fin-stat-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}
.fin-stat-card {
    background: #fff;
    border: 1px solid var(--esds-gray-100);
    border-radius: 16px;
    padding: 24px 22px;
    transition: transform 0.25s var(--esds-ease), box-shadow 0.25s, border-color 0.25s;
    position: relative;
    overflow: hidden;
}
.fin-stat-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--highlight-blue), var(--highlight-blue-light));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.35s var(--esds-ease);
}
.fin-stat-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(10, 22, 40, 0.08);
    border-color: rgba(0, 97, 255, 0.22);
}
.fin-stat-card:hover::before { transform: scaleX(1); }
.fin-stat-card__value {
    font-family: 'JetBrains Mono', monospace;
    font-size: 28px;
    font-weight: 800;
    color: var(--esds-navy);
    letter-spacing: -1px;
    line-height: 1;
    margin-bottom: 4px;
}
.fin-stat-card__value .u {
    font-size: 0.55em;
    color: var(--highlight-blue);
    margin-left: 2px;
}
.fin-stat-card__label {
    font-size: 13px;
    font-weight: 700;
    color: var(--esds-navy);
    margin-top: 10px;
}
.fin-stat-card__delta {
    font-size: 11.5px;
    font-weight: 700;
    color: var(--esds-green);
    margin-top: 8px;
    font-family: 'JetBrains Mono', monospace;
}
.fin-stat-card__delta--down { color: var(--esds-red); }
.fin-stat-card__delta--flat { color: #B45309; }
@media (max-width: 1024px) { .fin-stat-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .fin-stat-grid { grid-template-columns: 1fr; } }


/* ═══════════════════════════════════════════════════════════════════════════
   §44 · BOARD / COMMITTEE CARDS · Governance sections
   Design pattern: Visible Border Card · clear-stroke blueprint cards
═══════════════════════════════════════════════════════════════════════════ */
.board-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
}
.board-card {
    background: #fff;
    border: 1.5px solid var(--esds-gray-100);
    border-radius: 18px;
    padding: 28px 30px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
    transition: all 0.3s var(--esds-ease);
    position: relative;
}
.board-card:hover {
    border-color: var(--highlight-blue);
    transform: translateY(-3px);
    box-shadow: 0 16px 36px rgba(0, 97, 255, 0.10);
}
.board-card__avatar {
    width: 72px; height: 72px;
    border-radius: 50%;
    background: #000;
    flex-shrink: 0;
    display: grid;
    place-items: center;
    color: #fff;
    font-family: 'JetBrains Mono', monospace;
    font-size: 22px;
    font-weight: 800;
    letter-spacing: 1px;
    border: 2px solid var(--esds-gray-100);
    position: relative;
}
.board-card__avatar::before {
    content: '';
    position: absolute;
    inset: 4px;
    border: 1px dashed rgba(255, 255, 255, 0.14);
    border-radius: 50%;
}
.board-card__avatar span { position: relative; z-index: 1; }
.board-card__body { flex: 1; min-width: 0; }
.board-card__body h3 {
    font-size: 18px;
    font-weight: 800;
    color: var(--esds-navy);
    margin: 0 0 4px;
}
.board-card__role {
    font-size: 11.5px;
    font-weight: 700;
    color: var(--highlight-blue);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 8px;
}
.board-card__tag {
    display: inline-block;
    padding: 3px 10px;
    border-radius: 999px;
    font-size: 10.5px;
    font-weight: 800;
    letter-spacing: 0.05em;
    margin-bottom: 12px;
}
.board-card__tag--promoter   { background: rgba(0, 97, 255, 0.10); color: var(--highlight-blue); }
.board-card__tag--executive  { background: rgba(13, 148, 136, 0.10); color: #0F766E; }
.board-card__tag--independent{ background: rgba(16, 185, 129, 0.10); color: var(--esds-green); }
.board-card__tag--kmp        { background: rgba(245, 158, 11, 0.10); color: #B45309; }
.board-card p {
    font-size: 13.5px;
    color: var(--esds-gray-500);
    line-height: 1.65;
    margin: 0;
}
@media (max-width: 992px) { .board-grid { grid-template-columns: 1fr; } }


/* ═══════════════════════════════════════════════════════════════════════════
   §45 · SHAREHOLDING DOUGHNUT CARDS · pie-style KPI mini-cards (IR)
   Design pattern: Data Story Dashboard · circular KPIs
═══════════════════════════════════════════════════════════════════════════ */
.shareholding-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.shareholding-card {
    background: var(--esds-gray-50);
    border: 1px solid var(--esds-gray-100);
    border-radius: 18px;
    padding: 32px 28px;
    text-align: center;
    transition: all 0.25s var(--esds-ease);
}
.shareholding-card:hover {
    background: #fff;
    border-color: var(--highlight-blue);
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(0, 97, 255, 0.08);
}
.shareholding-card__pct {
    font-family: 'JetBrains Mono', monospace;
    font-size: 40px;
    font-weight: 800;
    background: linear-gradient(135deg, var(--highlight-blue), var(--highlight-blue-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -2px;
    line-height: 1;
    margin-bottom: 8px;
}
.shareholding-card__label {
    font-size: 14px;
    font-weight: 800;
    color: var(--esds-navy);
    margin-bottom: 10px;
}
.shareholding-card__note {
    font-size: 11.5px;
    color: var(--esds-gray-400);
    line-height: 1.5;
}
@media (max-width: 768px) { .shareholding-grid { grid-template-columns: 1fr; } }


/* ═══════════════════════════════════════════════════════════════════════════
   §46 · MISSION COUNTER RIBBON · 4-column billion-scale bar (ESG report)
   Design pattern: Horizontal Timeline Scroll · bold counter totals
═══════════════════════════════════════════════════════════════════════════ */
.mission-counter {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 4px;
    background: linear-gradient(90deg, var(--highlight-blue), var(--highlight-blue-light));
    padding: 4px;
    border-radius: 18px;
    margin-top: 48px;
    overflow: hidden;
}
.mission-counter__cell {
    background: var(--esds-navy);
    padding: 32px 24px;
    text-align: center;
    border-radius: 14px;
    transition: background 0.25s;
}
.mission-counter__cell:hover { background: var(--esds-deep); }
.mission-counter__num {
    font-family: 'JetBrains Mono', monospace;
    font-size: 42px;
    font-weight: 800;
    color: var(--highlight-blue-light);
    letter-spacing: -2px;
    line-height: 1;
}
.mission-counter__label {
    font-size: 12px;
    color: var(--esds-gray-300);
    margin-top: 10px;
    font-weight: 600;
    letter-spacing: 0.04em;
}
@media (max-width: 768px) { .mission-counter { grid-template-columns: repeat(2, 1fr); } }


/* ═══════════════════════════════════════════════════════════════════════════
   §47 · DISCLAIMER · Small print advisory block (IR pages)
═══════════════════════════════════════════════════════════════════════════ */
.disclaimer {
    max-width: 900px;
    margin: 0 auto;
    padding: 28px 32px;
    background: var(--esds-gray-50);
    border: 1px dashed var(--esds-gray-300);
    border-radius: 14px;
    font-size: 12px;
    color: var(--esds-gray-500);
    line-height: 1.7;
    text-align: center;
}
.disclaimer strong { color: var(--esds-navy); }


/* ═══════════════════════════════════════════════════════════════════════════
   §48 · FLOW-BAR · Source → Destination visual (Cloud Migration hero)
   Design pattern: Horizontal Timeline Scroll · chips converging to destination
═══════════════════════════════════════════════════════════════════════════ */
.flow-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    padding: 20px 28px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    backdrop-filter: blur(6px);
    flex-wrap: wrap;
    margin-top: 40px;
}
.flow-from {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    flex: 1;
    justify-content: flex-end;
}
.flow-chip {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    padding: 6px 14px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
    color: var(--esds-gray-300);
    font-family: 'JetBrains Mono', monospace;
    transition: all 0.2s;
}
.flow-chip:hover {
    background: rgba(0, 97, 255, 0.12);
    color: var(--highlight-blue-light);
    border-color: rgba(126, 233, 255, 0.3);
}
.flow-arrow {
    font-size: 28px;
    color: var(--highlight-blue-light);
    font-weight: 800;
    animation: flow-pulse 2s ease-in-out infinite;
}
@keyframes flow-pulse {
    0%, 100% { opacity: 0.6; transform: translateX(0); }
    50% { opacity: 1; transform: translateX(4px); }
}
.flow-dest {
    background: linear-gradient(135deg, var(--highlight-blue), var(--highlight-blue-light));
    color: #fff;
    padding: 12px 22px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 800;
    font-family: 'Plus Jakarta Sans', sans-serif;
    box-shadow: 0 8px 24px rgba(0, 97, 255, 0.3);
    white-space: nowrap;
}
@media (max-width: 768px) {
    .flow-bar { flex-direction: column; }
    .flow-arrow { transform: rotate(90deg); }
    .flow-from { justify-content: center; }
}


/* ═══════════════════════════════════════════════════════════════════════════
   §49 · TIER CARDS · 3-tier comparison cards with RPO/RTO specs (DR)
   Design pattern: Comparison Grid · middle-card highlighted variant
═══════════════════════════════════════════════════════════════════════════ */
.tier-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.tier-card {
    background: #fff;
    border: 1px solid var(--esds-gray-100);
    border-radius: 20px;
    padding: 32px 28px;
    transition: all 0.3s var(--esds-ease);
    position: relative;
    display: flex;
    flex-direction: column;
}
.tier-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(10, 22, 40, 0.08);
    border-color: rgba(0, 97, 255, 0.22);
}
.tier-card--featured {
    border: 2px solid var(--highlight-blue);
    box-shadow: 0 12px 40px rgba(0, 97, 255, 0.12);
    position: relative;
}
.tier-card--featured::before {
    content: 'MOST POPULAR';
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--highlight-blue), var(--highlight-blue-light));
    color: #fff;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.12em;
    padding: 5px 14px;
    border-radius: 999px;
    font-family: 'JetBrains Mono', monospace;
    box-shadow: 0 4px 16px rgba(0, 97, 255, 0.3);
}
.tier-card h3 {
    font-size: 22px;
    font-weight: 800;
    color: var(--esds-navy);
    margin: 0 0 4px;
    letter-spacing: -0.5px;
}
.tier-card__sub {
    font-size: 11.5px;
    color: var(--highlight-blue);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 16px;
}
.tier-card > p {
    font-size: 14px;
    color: var(--esds-gray-500);
    line-height: 1.7;
    margin-bottom: 20px;
}
.tier-specs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    padding: 16px 0;
    border-top: 1px dashed var(--esds-gray-100);
    border-bottom: 1px dashed var(--esds-gray-100);
    margin-bottom: 20px;
}
.tier-spec { text-align: center; }
.tier-spec__value {
    font-family: 'JetBrains Mono', monospace;
    font-size: 26px;
    font-weight: 800;
    color: var(--highlight-blue);
    letter-spacing: -1px;
    line-height: 1;
}
.tier-spec__label {
    font-size: 10px;
    color: var(--esds-gray-400);
    font-weight: 700;
    letter-spacing: 0.08em;
    margin-top: 6px;
    text-transform: uppercase;
}
.tier-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.tier-card ul li {
    font-size: 13px;
    color: var(--esds-gray-600);
    line-height: 1.6;
    padding: 6px 0 6px 22px;
    position: relative;
}
.tier-card ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 6px;
    color: var(--esds-green);
    font-weight: 800;
    font-family: 'JetBrains Mono', monospace;
}
@media (max-width: 1024px) { .tier-grid { grid-template-columns: 1fr; } }


/* ═══════════════════════════════════════════════════════════════════════════
   §50 · PATENT CALLOUT · DR warm-standby economic explainer
   Design pattern: Layered Overprint · patent number typography strip
═══════════════════════════════════════════════════════════════════════════ */
.patent-callout {
    background: linear-gradient(135deg, rgba(0, 97, 255, 0.04), rgba(126, 233, 255, 0.03));
    border: 1.5px solid rgba(0, 97, 255, 0.14);
    border-radius: 22px;
    padding: 36px 40px;
    max-width: 880px;
    margin: 56px auto 0;
    position: relative;
    overflow: hidden;
}
.patent-callout::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 6px; height: 100%;
    background: linear-gradient(180deg, var(--highlight-blue), var(--highlight-blue-light));
}
.patent-callout h3 {
    font-size: 22px;
    font-weight: 800;
    color: var(--esds-navy);
    margin-bottom: 14px;
    letter-spacing: -0.5px;
}
.patent-callout p {
    font-size: 15px;
    color: var(--esds-gray-600);
    line-height: 1.75;
    margin: 0;
}
.patent-callout p em {
    color: var(--highlight-blue);
    font-style: normal;
    font-weight: 700;
}
.patent-callout__refs {
    font-family: 'JetBrains Mono', monospace;
    font-size: 12px;
    color: var(--esds-gray-400);
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px dashed rgba(0, 97, 255, 0.15);
    letter-spacing: 0.04em;
}


/* ═══════════════════════════════════════════════════════════════════════════
   §51 · TESTIMONIAL CARDS · Chat-Style Conversation Section (quote bubbles)
   Design pattern: Chat-Style Conversation · speech-bubble card with attribution
═══════════════════════════════════════════════════════════════════════════ */
.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}
.testimonial-card {
    background: #fff;
    border: 1px solid var(--esds-gray-100);
    border-radius: 18px;
    padding: 28px 28px 24px;
    position: relative;
    transition: all 0.25s var(--esds-ease);
    display: flex;
    flex-direction: column;
}
.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 12px; right: 20px;
    font-family: Georgia, serif;
    font-size: 72px;
    line-height: 1;
    color: rgba(0, 97, 255, 0.12);
    font-weight: 800;
    pointer-events: none;
}
.testimonial-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 40px rgba(10, 22, 40, 0.08);
    border-color: rgba(0, 97, 255, 0.22);
}
.testimonial-card__quote {
    font-size: 14.5px;
    color: var(--esds-gray-700);
    line-height: 1.75;
    margin-bottom: 20px;
    font-style: italic;
    flex-grow: 1;
}
.testimonial-card__author {
    padding-top: 16px;
    border-top: 1px solid var(--esds-gray-100);
    display: flex;
    align-items: center;
    gap: 12px;
}
.testimonial-card__avatar {
    width: 44px; height: 44px;
    border-radius: 50%;
    background: #000;
    display: grid;
    place-items: center;
    color: #fff;
    font-family: 'JetBrains Mono', monospace;
    font-size: 14px;
    font-weight: 800;
    flex-shrink: 0;
}
.testimonial-card__name {
    font-size: 14px;
    font-weight: 800;
    color: var(--esds-navy);
}
.testimonial-card__role {
    font-size: 12px;
    color: var(--esds-gray-500);
    margin-top: 2px;
}
@media (max-width: 1024px) { .testimonial-grid { grid-template-columns: 1fr; } }


/* ═══════════════════════════════════════════════════════════════════════════
   §52 · PROCESS STEPS HORIZONTAL · Numbered incident-response timeline
   Design pattern: Milestone Journey · connected numbered steps
═══════════════════════════════════════════════════════════════════════════ */
.process-steps {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 12px;
    position: relative;
}
.process-steps::before {
    content: '';
    position: absolute;
    top: 28px;
    left: 5%;
    right: 5%;
    height: 2px;
    background: linear-gradient(90deg, var(--highlight-blue), var(--highlight-blue-light));
    opacity: 0.3;
    z-index: 0;
}
.process-step {
    text-align: center;
    position: relative;
    z-index: 1;
    background: #fff;
    border-radius: 14px;
    padding: 16px 12px;
    border: 1px solid var(--esds-gray-100);
    transition: all 0.25s var(--esds-ease);
}
.process-step:hover {
    transform: translateY(-4px);
    border-color: var(--highlight-blue);
    box-shadow: 0 10px 28px rgba(0, 97, 255, 0.08);
}
.process-step__num {
    width: 44px; height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--highlight-blue), var(--highlight-blue-light));
    color: #fff;
    font-family: 'JetBrains Mono', monospace;
    font-size: 16px;
    font-weight: 800;
    display: grid;
    place-items: center;
    margin: 0 auto 12px;
    box-shadow: 0 6px 18px rgba(0, 97, 255, 0.3);
}
.process-step h4 {
    font-size: 14px;
    font-weight: 800;
    color: var(--esds-navy);
    margin: 0 0 6px;
}
.process-step p {
    font-size: 11.5px;
    color: var(--esds-gray-500);
    line-height: 1.5;
    margin: 0;
}
@media (max-width: 1024px) {
    .process-steps { grid-template-columns: repeat(3, 1fr); }
    .process-steps::before { display: none; }
}
@media (max-width: 640px) {
    .process-steps { grid-template-columns: repeat(2, 1fr); }
}


/* ═══════════════════════════════════════════════════════════════════════════
   §53 · JOURNEY CARDS · 3-path migration storyboard with bullet lists
   Design pattern: Storyboard · comic-frame with bullet checklist
═══════════════════════════════════════════════════════════════════════════ */
.journey-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}
.journey-card {
    background: #fff;
    border: 1.5px solid var(--esds-gray-100);
    border-radius: 20px;
    padding: 32px 28px;
    transition: all 0.3s var(--esds-ease);
    display: flex;
    flex-direction: column;
}
.journey-card:hover {
    transform: translateY(-4px);
    border-color: var(--highlight-blue);
    box-shadow: 0 16px 40px rgba(0, 97, 255, 0.08);
}
.journey-card--featured {
    border-color: var(--highlight-blue);
    background: linear-gradient(180deg, rgba(0, 97, 255, 0.02), #fff);
}
.journey-card__icon {
    width: 56px; height: 56px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--highlight-blue), var(--highlight-blue-light));
    display: grid;
    place-items: center;
    font-size: 26px;
    margin-bottom: 20px;
    box-shadow: 0 8px 24px rgba(0, 97, 255, 0.2);
}
.journey-card h3 {
    font-size: 19px;
    font-weight: 800;
    color: var(--esds-navy);
    margin: 0 0 10px;
    letter-spacing: -0.3px;
}
.journey-card > p {
    font-size: 13.5px;
    color: var(--esds-gray-500);
    line-height: 1.7;
    margin-bottom: 18px;
}
.journey-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.journey-card ul li {
    font-size: 12.5px;
    color: var(--esds-gray-600);
    line-height: 1.5;
    padding: 5px 0 5px 20px;
    position: relative;
}
.journey-card ul li::before {
    content: '›';
    position: absolute;
    left: 0;
    top: 5px;
    color: var(--highlight-blue);
    font-weight: 800;
    font-size: 15px;
}
@media (max-width: 1024px) { .journey-grid { grid-template-columns: 1fr; } }


/* ═══════════════════════════════════════════════════════════════════════════
   §54 · IMPACT BOX · Case-study split panel (Mega Story Panel)
   Design pattern: Mega Story Panel · prose left + KPI stats right
═══════════════════════════════════════════════════════════════════════════ */
.impact-box {
    background: linear-gradient(135deg, rgba(0, 97, 255, 0.04), rgba(126, 233, 255, 0.03));
    border: 2px solid rgba(0, 97, 255, 0.14);
    border-radius: 24px;
    padding: 48px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    position: relative;
    overflow: hidden;
}
.impact-box::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 6px; height: 100%;
    background: linear-gradient(180deg, var(--highlight-blue), var(--highlight-blue-light));
}
.impact-box h3 {
    font-size: 26px;
    font-weight: 800;
    color: var(--esds-navy);
    margin-bottom: 14px;
    letter-spacing: -0.5px;
    line-height: 1.2;
}
.impact-box p {
    font-size: 15px;
    color: var(--esds-gray-600);
    line-height: 1.75;
    margin: 0;
}
.impact-box__stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}
.impact-stat {
    background: #fff;
    border: 1px solid var(--esds-gray-100);
    border-radius: 14px;
    padding: 22px 16px;
    text-align: center;
    transition: all 0.25s var(--esds-ease);
}
.impact-stat:hover {
    transform: translateY(-3px);
    border-color: var(--highlight-blue);
    box-shadow: 0 8px 24px rgba(0, 97, 255, 0.08);
}
.impact-stat__val {
    font-family: 'JetBrains Mono', monospace;
    font-size: 24px;
    font-weight: 800;
    color: var(--highlight-blue);
    letter-spacing: -1px;
    line-height: 1;
}
.impact-stat__val .u {
    font-size: 0.55em;
    color: var(--highlight-blue-light);
    margin-left: 2px;
}
.impact-stat__label {
    font-size: 11px;
    color: var(--esds-gray-500);
    font-weight: 600;
    margin-top: 8px;
    line-height: 1.4;
}
@media (max-width: 1024px) {
    .impact-box { grid-template-columns: 1fr; padding: 36px 28px; }
}
@media (max-width: 540px) {
    .impact-box__stats { grid-template-columns: 1fr; }
}


/* ═══════════════════════════════════════════════════════════════════════════
   §55 · ARCHITECTURE FLOW · 5-layer horizontal pipeline (Smart City)
   Design pattern: Milestone Journey · L1→L5 pipeline with arrow connectors
═══════════════════════════════════════════════════════════════════════════ */
.arch-flow {
    display: flex;
    align-items: stretch;
    gap: 0;
    flex-wrap: wrap;
    margin-top: 32px;
}
.arch-layer {
    flex: 1;
    min-width: 180px;
    padding: 28px 20px;
    text-align: center;
    position: relative;
    background: #fff;
    border: 1px solid var(--esds-gray-100);
    transition: all 0.25s var(--esds-ease);
}
.arch-layer:first-child { border-radius: 16px 0 0 16px; }
.arch-layer:last-child { border-radius: 0 16px 16px 0; }
.arch-layer::after {
    content: '→';
    position: absolute;
    right: -12px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--highlight-blue);
    font-size: 22px;
    font-weight: 800;
    z-index: 2;
    background: #fff;
    width: 24px; height: 24px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(0, 97, 255, 0.15);
}
.arch-layer:last-child::after { display: none; }
.arch-layer:hover {
    background: var(--esds-gray-50);
    border-color: var(--highlight-blue);
    z-index: 1;
}
.arch-layer__num {
    font-family: 'JetBrains Mono', monospace;
    font-size: 10px;
    font-weight: 800;
    color: var(--highlight-blue);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 8px;
    background: rgba(0, 97, 255, 0.08);
    display: inline-block;
    padding: 3px 10px;
    border-radius: 999px;
}
.arch-layer h4 {
    font-size: 15px;
    font-weight: 800;
    color: var(--esds-navy);
    margin: 6px 0;
}
.arch-layer p {
    font-size: 12px;
    color: var(--esds-gray-500);
    line-height: 1.5;
    margin: 0;
}
@media (max-width: 900px) {
    .arch-flow { flex-direction: column; gap: 12px; }
    .arch-layer {
        border-radius: 14px !important;
        padding: 20px;
    }
    .arch-layer::after {
        right: auto; top: auto;
        bottom: -22px; left: 50%;
        transform: translateX(-50%) rotate(90deg);
    }
}


/* ═══════════════════════════════════════════════════════════════════════════
   §56 · INDUSTRY MINI-CARDS · Small compact icon+text tiles (Enterprise page)
   Design pattern: Multi-Column Card Wall · compact 4-col industry portfolio
═══════════════════════════════════════════════════════════════════════════ */
.industry-wall {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}
.industry-tile {
    background: #fff;
    border: 1px solid var(--esds-gray-100);
    border-radius: 16px;
    padding: 24px 20px;
    transition: all 0.25s var(--esds-ease);
    position: relative;
    overflow: hidden;
}
.industry-tile::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--highlight-blue), var(--highlight-blue-light));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s var(--esds-ease);
}
.industry-tile:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(10, 22, 40, 0.08);
    border-color: var(--highlight-blue);
}
.industry-tile:hover::before { transform: scaleX(1); }
.industry-tile__icon {
    width: 48px; height: 48px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(0, 97, 255, 0.08), rgba(126, 233, 255, 0.04));
    display: grid;
    place-items: center;
    font-size: 22px;
    margin-bottom: 14px;
}
.industry-tile h3 {
    font-size: 15px;
    font-weight: 800;
    color: var(--esds-navy);
    margin: 0 0 6px;
}
.industry-tile p {
    font-size: 12.5px;
    color: var(--esds-gray-500);
    line-height: 1.55;
    margin: 0;
}
@media (max-width: 1024px) { .industry-wall { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .industry-wall { grid-template-columns: 1fr; } }


/* ═══════════════════════════════════════════════════════════════════════════
   §57 · DC CARDS · Data centre facility cards with address + specs
   Design pattern: Floating Islands · facility cards with address footer
═══════════════════════════════════════════════════════════════════════════ */
.dc-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
}
.dc-card {
    background: #fff;
    border: 1.5px solid var(--esds-gray-100);
    border-radius: 20px;
    padding: 32px 28px;
    transition: all 0.3s var(--esds-ease);
    display: flex;
    flex-direction: column;
}
.dc-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 48px rgba(10, 22, 40, 0.08);
    border-color: var(--highlight-blue);
}
.dc-card__header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 16px;
    gap: 16px;
}
.dc-card__name h3 {
    font-size: 22px;
    font-weight: 800;
    color: var(--esds-navy);
    margin: 0 0 4px;
    letter-spacing: -0.5px;
}
.dc-card__tag {
    font-size: 11px;
    color: var(--highlight-blue);
    font-family: 'JetBrains Mono', monospace;
    font-weight: 700;
    letter-spacing: 0.04em;
}
.dc-card__badge {
    background: linear-gradient(135deg, var(--highlight-blue), var(--highlight-blue-light));
    color: #fff;
    padding: 6px 14px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 800;
    font-family: 'JetBrains Mono', monospace;
    letter-spacing: 0.05em;
    box-shadow: 0 4px 14px rgba(0, 97, 255, 0.2);
    white-space: nowrap;
}
.dc-card > p {
    font-size: 14px;
    color: var(--esds-gray-600);
    line-height: 1.7;
    margin-bottom: 20px;
}
.dc-specs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-bottom: 18px;
    padding: 14px 0;
    border-top: 1px dashed var(--esds-gray-100);
    border-bottom: 1px dashed var(--esds-gray-100);
}
.dc-spec { text-align: center; }
.dc-spec__val {
    font-family: 'JetBrains Mono', monospace;
    font-size: 12.5px;
    font-weight: 800;
    color: var(--highlight-blue);
    line-height: 1.2;
}
.dc-spec__label {
    font-size: 10px;
    color: var(--esds-gray-400);
    font-weight: 700;
    margin-top: 4px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}
.dc-addr {
    background: var(--esds-gray-50);
    border-left: 3px solid var(--highlight-blue);
    padding: 12px 16px;
    border-radius: 0 10px 10px 0;
    font-size: 13px;
    color: var(--esds-gray-600);
    line-height: 1.6;
    font-style: italic;
    margin-top: auto;
}
@media (max-width: 1024px) { .dc-grid { grid-template-columns: 1fr; } }


/* ═══════════════════════════════════════════════════════════════════════════
   §58 · SECURITY LAYER GRID · 8-card concentric security layers (7 + SOC bonus)
   Design pattern: Visible Border Card Layout · numbered wireframe security tiles
═══════════════════════════════════════════════════════════════════════════ */
.seclayer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}
.seclayer-card {
    background: #fff;
    border: 2px solid var(--esds-gray-100);
    border-radius: 16px;
    padding: 22px 18px;
    transition: all 0.25s var(--esds-ease);
    position: relative;
}
.seclayer-card:hover {
    transform: translateY(-4px);
    border-color: var(--highlight-blue);
    box-shadow: 0 10px 28px rgba(0, 97, 255, 0.08);
}
.seclayer-card--bonus {
    border-color: var(--highlight-blue);
    background: linear-gradient(180deg, rgba(0, 97, 255, 0.04), #fff);
}
.seclayer-num {
    font-family: 'JetBrains Mono', monospace;
    font-size: 28px;
    font-weight: 800;
    color: var(--highlight-blue);
    letter-spacing: -1px;
    line-height: 1;
    margin-bottom: 10px;
    display: block;
}
.seclayer-card h4 {
    font-size: 14px;
    font-weight: 800;
    color: var(--esds-navy);
    margin: 0 0 6px;
}
.seclayer-card p {
    font-size: 12px;
    color: var(--esds-gray-500);
    line-height: 1.5;
    margin: 0;
}
@media (max-width: 1024px) { .seclayer-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .seclayer-grid { grid-template-columns: 1fr; } }


/* ═══════════════════════════════════════════════════════════════════════════
   §59 · GREEN SPLIT PANEL · Sustainability narrative with 4 green stats
   Design pattern: Split Narrative Layout · copy left · mini-stat grid right
═══════════════════════════════════════════════════════════════════════════ */
.green-split {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.04), rgba(0, 97, 255, 0.02));
    border: 1.5px solid rgba(16, 185, 129, 0.18);
    border-radius: 24px;
    padding: 44px;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 44px;
    align-items: center;
}
.green-split__narrative h3 {
    font-size: 24px;
    font-weight: 800;
    color: var(--esds-navy);
    margin-bottom: 14px;
    letter-spacing: -0.5px;
}
.green-split__narrative p {
    font-size: 14.5px;
    color: var(--esds-gray-600);
    line-height: 1.75;
    margin: 0 0 12px;
}
.green-stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}
.green-stat {
    background: #fff;
    border: 1px solid rgba(16, 185, 129, 0.2);
    border-radius: 14px;
    padding: 20px 16px;
    text-align: center;
    transition: all 0.25s var(--esds-ease);
}
.green-stat:hover {
    transform: translateY(-3px);
    border-color: var(--esds-green);
    box-shadow: 0 8px 22px rgba(16, 185, 129, 0.12);
}
.green-stat__icon {
    font-size: 28px;
    margin-bottom: 6px;
    line-height: 1;
}
.green-stat h4 {
    font-size: 13px;
    font-weight: 800;
    color: var(--esds-navy);
    margin: 6px 0 4px;
}
.green-stat p {
    font-size: 11px;
    color: var(--esds-gray-500);
    line-height: 1.4;
    margin: 0;
}
@media (max-width: 1024px) { .green-split { grid-template-columns: 1fr; padding: 32px 24px; } }
@media (max-width: 480px) { .green-stats-grid { grid-template-columns: 1fr; } }


/* ═══════════════════════════════════════════════════════════════════════════
   §60 · PRODUCT COMPARISON CARDS · 3-card long-feature comparison (WAF/DDoS/FWaaS)
   Design pattern: Comparison Grid · tall cards with feature checklist
═══════════════════════════════════════════════════════════════════════════ */
.prod-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}
.prod-card {
    background: #fff;
    border: 1.5px solid var(--esds-gray-100);
    border-radius: 20px;
    padding: 32px 28px;
    transition: all 0.3s var(--esds-ease);
    display: flex;
    flex-direction: column;
    position: relative;
}
.prod-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 44px rgba(10, 22, 40, 0.08);
    border-color: var(--highlight-blue);
}
.prod-badge {
    display: inline-block;
    font-size: 10.5px;
    font-weight: 800;
    padding: 4px 12px;
    border-radius: 999px;
    font-family: 'JetBrains Mono', monospace;
    letter-spacing: 0.04em;
    margin-bottom: 16px;
    align-self: flex-start;
}
.prod-badge--inhouse {
    background: rgba(16, 185, 129, 0.12);
    color: var(--esds-green);
}
.prod-badge--managed {
    background: rgba(0, 97, 255, 0.1);
    color: var(--highlight-blue);
}
.prod-card h3 {
    font-size: 22px;
    font-weight: 800;
    color: var(--esds-navy);
    margin: 0 0 10px;
    letter-spacing: -0.5px;
}
.prod-card > p {
    font-size: 14px;
    color: var(--esds-gray-600);
    line-height: 1.7;
    margin-bottom: 20px;
}
.prod-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
    border-top: 1px dashed var(--esds-gray-100);
    padding-top: 16px;
}
.prod-card ul li {
    font-size: 13px;
    color: var(--esds-gray-600);
    line-height: 1.6;
    padding: 6px 0 6px 22px;
    position: relative;
}
.prod-card ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 6px;
    color: var(--esds-green);
    font-weight: 800;
    font-family: 'JetBrains Mono', monospace;
}
@media (max-width: 1024px) { .prod-grid { grid-template-columns: 1fr; } }


/* ═══════════════════════════════════════════════════════════════════════════
   §61 · OWASP GRID · 10 numbered vulnerability cards (A01-A10)
   Design pattern: Micro-Cards Grid · numbered OWASP category badges
═══════════════════════════════════════════════════════════════════════════ */
.owasp-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 12px;
}
.owasp-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    padding: 20px 16px;
    transition: all 0.25s var(--esds-ease);
    text-align: left;
}
.owasp-card:hover {
    transform: translateY(-3px);
    border-color: rgba(126, 233, 255, 0.4);
    background: rgba(0, 97, 255, 0.08);
}
.owasp-card__num {
    font-family: 'JetBrains Mono', monospace;
    font-size: 13px;
    font-weight: 800;
    color: var(--highlight-blue-light);
    letter-spacing: 0.08em;
    margin-bottom: 10px;
    display: inline-block;
    background: rgba(126, 233, 255, 0.12);
    padding: 3px 10px;
    border-radius: 999px;
}
.owasp-card h4 {
    font-size: 13px;
    font-weight: 800;
    color: #fff;
    margin: 4px 0 6px;
    line-height: 1.3;
}
.owasp-card p {
    font-size: 11.5px;
    color: var(--esds-gray-400);
    line-height: 1.5;
    margin: 0;
}
@media (max-width: 1024px) { .owasp-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 540px) { .owasp-grid { grid-template-columns: repeat(2, 1fr); } }


/* ═══════════════════════════════════════════════════════════════════════════
   §62 · CASE STUDY CARDS · 8-card Mega Story Panel wall with tag+metrics+quote
   Design pattern: Multi-Column Card Wall · case-study mosaic with structured layout
═══════════════════════════════════════════════════════════════════════════ */
.cs-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}
.cs-card {
    background: #fff;
    border: 1.5px solid var(--esds-gray-100);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s var(--esds-ease);
    display: flex;
    flex-direction: column;
}
.cs-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 48px rgba(10, 22, 40, 0.08);
    border-color: var(--highlight-blue);
}
.cs-card__top {
    padding: 20px 28px 0;
}
.cs-tag {
    display: inline-block;
    font-size: 11px;
    font-weight: 800;
    padding: 5px 12px;
    border-radius: 999px;
    font-family: 'JetBrains Mono', monospace;
    letter-spacing: 0.04em;
    background: rgba(0, 97, 255, 0.1);
    color: var(--highlight-blue);
}
.cs-tag--sap { background: rgba(16, 185, 129, 0.12); color: var(--esds-green); }
.cs-tag--bfsi { background: rgba(0, 97, 255, 0.12); color: var(--highlight-blue); }
.cs-tag--gov { background: rgba(255, 107, 53, 0.12); color: var(--india-saffron); }
.cs-tag--sc { background: rgba(126, 233, 255, 0.15); color: #0891b2; }
.cs-tag--ent { background: rgba(139, 92, 246, 0.12); color: #7c3aed; }
.cs-card__body {
    padding: 16px 28px 28px;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.cs-card__body h3 {
    font-size: 19px;
    font-weight: 800;
    color: var(--esds-navy);
    margin: 0 0 10px;
    line-height: 1.3;
    letter-spacing: -0.3px;
}
.cs-challenge {
    font-size: 13.5px;
    color: var(--esds-gray-500);
    line-height: 1.65;
    margin: 0 0 20px;
}
.cs-results {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    padding: 14px 0;
    border-top: 1px dashed var(--esds-gray-100);
    border-bottom: 1px dashed var(--esds-gray-100);
    margin-bottom: 16px;
}
.cs-metric { text-align: center; }
.cs-metric__val {
    font-family: 'JetBrains Mono', monospace;
    font-size: 17px;
    font-weight: 800;
    color: var(--highlight-blue);
    letter-spacing: -0.5px;
    line-height: 1.1;
}
.cs-metric p {
    font-size: 10.5px;
    color: var(--esds-gray-500);
    line-height: 1.4;
    margin-top: 6px;
}
.cs-quote {
    background: linear-gradient(180deg, var(--esds-gray-50), #fff);
    border-left: 3px solid var(--highlight-blue);
    padding: 14px 16px;
    border-radius: 0 12px 12px 0;
    font-size: 13px;
    color: var(--esds-gray-700);
    line-height: 1.6;
    font-style: italic;
    margin-top: auto;
}
.cs-quote__attr {
    display: block;
    margin-top: 10px;
    font-size: 11.5px;
    color: var(--esds-gray-500);
    font-style: normal;
    font-weight: 700;
    font-family: 'JetBrains Mono', monospace;
}
@media (max-width: 1024px) { .cs-grid { grid-template-columns: 1fr; } }


/* ═══════════════════════════════════════════════════════════════════════════
   §63 · CONTACT SPLIT · 2-column Contact page layout
   Design pattern: Split Narrative Layout · path selector + contact methods left · form right
═══════════════════════════════════════════════════════════════════════════ */
.contact-split {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 40px;
    align-items: start;
}

/* LEFT — 8 path cards */
.path-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-bottom: 36px;
}
.path-card {
    background: #fff;
    border: 1.5px solid var(--esds-gray-100);
    border-radius: 14px;
    padding: 18px 16px;
    cursor: pointer;
    transition: all 0.25s var(--esds-ease);
    user-select: none;
}
.path-card:hover {
    transform: translateY(-3px);
    border-color: var(--highlight-blue);
    box-shadow: 0 8px 22px rgba(0, 97, 255, 0.08);
}
.path-card.selected {
    background: linear-gradient(180deg, rgba(0, 97, 255, 0.05), #fff);
    border-color: var(--highlight-blue);
    box-shadow: 0 10px 28px rgba(0, 97, 255, 0.12);
}
.path-card.selected::after {
    content: '✓';
    position: absolute;
    top: 12px;
    right: 14px;
    color: var(--highlight-blue);
    font-weight: 800;
    font-family: 'JetBrains Mono', monospace;
}
.path-card { position: relative; }
.path-card__icon {
    font-size: 24px;
    margin-bottom: 8px;
    line-height: 1;
}
.path-card h3 {
    font-size: 14px;
    font-weight: 800;
    color: var(--esds-navy);
    margin: 0 0 4px;
}
.path-card p {
    font-size: 11.5px;
    color: var(--esds-gray-500);
    line-height: 1.5;
    margin: 0;
}

/* Contact methods */
.contact-methods {
    margin-bottom: 32px;
}
.contact-methods > h3 {
    font-size: 13px;
    font-weight: 800;
    color: var(--esds-navy);
    margin-bottom: 14px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-family: 'JetBrains Mono', monospace;
}
.method-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}
.contact-method {
    background: var(--esds-gray-50);
    border: 1px solid var(--esds-gray-100);
    border-radius: 12px;
    padding: 14px 16px;
    display: flex;
    gap: 12px;
    align-items: flex-start;
    transition: all 0.2s var(--esds-ease);
}
.contact-method:hover {
    border-color: var(--highlight-blue);
    background: #fff;
}
.contact-method__icon {
    font-size: 20px;
    flex-shrink: 0;
    line-height: 1;
}
.contact-method h4 {
    font-size: 11px;
    font-weight: 700;
    color: var(--esds-gray-500);
    margin: 0 0 3px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.contact-method a {
    font-size: 13px;
    font-weight: 800;
    color: var(--esds-navy);
    text-decoration: none;
    font-family: 'JetBrains Mono', monospace;
}
.contact-method a:hover { color: var(--highlight-blue); }
.contact-method p {
    font-size: 10.5px;
    color: var(--esds-gray-400);
    margin: 3px 0 0;
    line-height: 1.4;
}

.trust-list {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    padding-top: 20px;
    border-top: 1px dashed var(--esds-gray-100);
}
.trust-item {
    font-size: 12px;
    color: var(--esds-gray-600);
    display: flex;
    align-items: center;
    gap: 6px;
}
.trust-item__check {
    color: var(--esds-green);
    font-weight: 800;
}

/* RIGHT — Form panel */
.form-panel {
    background: #fff;
    border: 1.5px solid var(--esds-gray-100);
    border-radius: 20px;
    padding: 32px 28px;
    box-shadow: 0 12px 36px rgba(10, 22, 40, 0.04);
    /* position: sticky; */
    top: 100px;
}
.form-panel > h3 {
    font-size: 22px;
    font-weight: 800;
    color: var(--esds-navy);
    margin: 0 0 6px;
    letter-spacing: -0.3px;
}
.form-panel__sub {
    font-size: 13px;
    color: var(--esds-gray-500);
    margin-bottom: 24px;
    line-height: 1.6;
}
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-bottom: 14px;
}
.form-group { margin-bottom: 14px; }
.form-group label {
    display: block;
    font-size: 12px;
    font-weight: 700;
    color: var(--esds-navy);
    margin-bottom: 6px;
    letter-spacing: 0.02em;
}
.form-group .req { color: var(--india-saffron); }
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 11px 14px;
    background: var(--esds-gray-50);
    border: 1px solid var(--esds-gray-100);
    border-radius: 10px;
    font-size: 13.5px;
    color: var(--esds-navy);
    font-family: inherit;
    transition: all 0.2s var(--esds-ease);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--highlight-blue);
    background: #fff;
    box-shadow: 0 0 0 4px rgba(0, 97, 255, 0.08);
}
.form-group textarea {
    resize: vertical;
    min-height: 90px;
    font-family: inherit;
}
.btn-submit {
    width: 100%;
    background: linear-gradient(135deg, var(--highlight-blue), var(--highlight-blue-light));
    color: #fff;
    border: none;
    padding: 14px 24px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 800;
    cursor: pointer;
    transition: all 0.25s var(--esds-ease);
    font-family: inherit;
    box-shadow: 0 6px 20px rgba(0, 97, 255, 0.25);
    margin-top: 8px;
}
.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(0, 97, 255, 0.35);
}
.form-footer {
    font-size: 11px;
    color: var(--esds-gray-400);
    line-height: 1.6;
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px dashed var(--esds-gray-100);
}

.form-footer a { color: var(--highlight-blue); text-decoration: none; }

@media (max-width: 1024px) {
    .contact-split { grid-template-columns: 1fr; }
    .form-panel { position: static; }
}

@media (max-width: 640px) {
    .path-grid { grid-template-columns: 1fr; }
    .method-list { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
}




/* ═══════════════════════════════════════════════════════════════════
   §S2-C · "GLASS HORIZON" — Horizontal Scroll + Glassmorphism
   ═══════════════════════════════════════════════════════════════════ */
.os3 {
  background: linear-gradient(165deg, var(--esds-navy) 0%, var(--esds-deeper) 100%);
  padding: 100px 0 90px;
  position: relative;
  overflow: hidden;
  color: #fff;
}
.os3::before, .os3::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
}
.os3::before {
  width: 520px; height: 520px;
  background: var(--hi-blue);
  top: -180px; left: -120px;
  opacity: 0.35;
}
.os3::after {
  width: 480px; height: 480px;
  background: var(--hi-cyan);
  bottom: -200px; right: -100px;
  opacity: 0.25;
}
.os3__container {
  position: relative;
  z-index: 1;
}
.os3__head {
  max-width: 1280px;
  margin: 0 auto 56px;
  padding: 0 48px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 32px;
}
.os3__label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.32em;
  color: var(--hi-cyan);
  text-transform: uppercase;
  margin-bottom: 22px;
}
.os3__label-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--hi-cyan);
  box-shadow: 0 0 12px var(--hi-cyan);
}
.os3__title {
  font-size: clamp(36px, 4.6vw, 60px);
  font-weight: 900;
  letter-spacing: -0.025em;
  line-height: 1.04;
  margin: 0 0 16px;
  color: #fff;
}
.os3__title em {
  font-style: italic;
  background: linear-gradient(135deg, var(--hi-blue-2), var(--hi-cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.os3__sub {
  font-size: 17px;
  color: var(--gray-300);
  margin: 0;
  max-width: 640px;
  line-height: 1.5;
}
.os3__nav {
  display: flex; gap: 10px;
  justify-content: flex-end;
}
.os3__navbtn {
  width: 48px; height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(126,233,255,0.3);
  background: rgba(27, 40, 56, 0.4);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: #fff;
  font-size: 18px;
  cursor: pointer;
  transition: all 0.3s var(--ease);
}
.os3__navbtn:hover:not(:disabled) {
  background: var(--hi-blue);
  border-color: var(--hi-blue);
  transform: translateY(-2px);
}
.os3__navbtn:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

.os3__rail-wrap {
  position: relative;
  padding: 0 48px;
}
.os3__rail-wrap::before, .os3__rail-wrap::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 64px;
  z-index: 2;
  pointer-events: none;
}
.os3__rail-wrap::before {
  left: 48px;
  background: linear-gradient(90deg, var(--esds-navy), transparent);
}
.os3__rail-wrap::after {
  right: 48px;
  background: linear-gradient(-90deg, var(--esds-navy), transparent);
}
.os3__rail {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: 8px 0 24px;
}
.os3__rail::-webkit-scrollbar { display: none; }
.os3__rail:focus { outline: none; }

.os3__card {
  flex: 0 0 340px;
  scroll-snap-align: start;
  background: linear-gradient(165deg, rgba(27, 40, 56, 0.85) 0%, rgba(15, 29, 50, 0.7) 100%);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(126, 233, 255, 0.2);
  border-radius: 24px;
  padding: 32px 30px 30px;
  position: relative;
  overflow: hidden;
  transition: all 0.5s var(--ease);
  display: flex;
  flex-direction: column;
}
.os3__card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(126,233,255,0.6), transparent);
}
.os3__card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 24px;
  background: radial-gradient(circle at 50% 0%, rgba(0, 106, 255, 0.18), transparent 60%);
  opacity: 0;
  transition: opacity 0.5s var(--ease);
  pointer-events: none;
}
.os3__card:hover {
  border-color: rgba(126, 233, 255, 0.5);
  transform: translateY(-6px);
  box-shadow: 0 30px 60px -25px rgba(0, 106, 255, 0.55);
}
.os3__card:hover::after { opacity: 1; }
.os3__card-no {
  font-family: var(--mono);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.3em;
  color: var(--hi-cyan);
  text-transform: uppercase;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 22px;
}
.os3__card-stat {
  font-family: var(--font);
  font-size: 88px;
  font-weight: 900;
  line-height: 0.9;
  letter-spacing: -0.04em;
  background: linear-gradient(135deg, #fff 0%, var(--hi-cyan) 100%)!important;
  -webkit-background-clip: text;
  
  margin: 0 0 6px;
}
.os3__card h4 {
  font-size: 19px;
  font-weight: 800;
  color: #fff;
  margin: 0 0 14px;
  letter-spacing: -0.01em;
  line-height: 1.2;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(126, 233, 255, 0.15);
}
.os3__card p {
  font-size: 13.5px;
  color: var(--gray-300);
  line-height: 1.6;
  margin: 0;
  flex-grow: 1;
}

.os3__pager {
  display: flex; gap: 6px;
  justify-content: center;
  margin-top: 18px;
}
.os3__pager span {
  width: 24px; height: 3px;
  border-radius: 2px;
  background: rgba(126,233,255,0.18);
  transition: all 0.3s var(--ease);
}
.os3__pager span.is-active {
  width: 40px;
  background: var(--hi-cyan);
  box-shadow: 0 0 8px var(--hi-cyan);
}

/* ═══════════════════════════════════════════════════════════════════
   §99 · RESPONSIVE
   ═══════════════════════════════════════════════════════════════════ */
@media (max-width: 992px) {
 
  /* os3 */
  .os3__head { padding: 0 32px; grid-template-columns: 1fr; }
  .os3__nav { justify-content: flex-start; }
  .os3__rail-wrap { padding: 0 32px; }
  .os3__rail-wrap::before { left: 32px; }
  .os3__rail-wrap::after { right: 32px; }
}

@media (max-width: 576px) {
  
  .os3 { padding: 64px 0; }
  .os3__head { padding: 0 20px; }
  .os3__rail-wrap { padding: 0 20px; }
  .os3__rail-wrap::before { left: 20px; }
  .os3__rail-wrap::after { right: 20px; }
  .os3__card { flex-basis: 86vw; }
  .os3__card-stat { font-size: 72px; }
}

.os3 {
  background: linear-gradient(165deg, #0A1628 0%, #050B18 100%);
  padding: 80px 0;
  color: #fff;
}

.os3__head {
  max-width: 1100px;
  margin: 0 auto 40px;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.os3__title {
  font-size: 42px;
  font-weight: 900;
}

.os3__title em {
  background: linear-gradient(135deg, #006AFF, #7EE9FF);
  -webkit-background-clip: text;
 
}

.os3__rail {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  padding: 0 20px;
  scroll-behavior: smooth;
}

.os3__card-stat {
    font-family: var(--font);
    font-size: 70px;
    font-weight: 900;
    line-height: 0.9;
    letter-spacing: -0.04em;
    background: linear-gradient(135deg, #fff 0%, var(--hi-cyan) 100%);
    -webkit-background-clip: text;
    
    margin: 0 0 6px;
}


/* ═══════════════════════════════════════════════════════════════════════════
   §71 · GPU 2.0 PAGE — Bespoke section styles (unique-per-section, no boxes)
   Each section gets its own visual personality. No uniform card grids.
═══════════════════════════════════════════════════════════════════════════ */

/* ── 71.1 · QUESTION SLAB (Section 1: Are you ready for AI?) ───────────────
   Design pattern: Layered Overprint · oversized "05" + diagonal accent line   */
.gpu-question {
    padding: 110px 0;
    position: relative;
    overflow: hidden;
}
.gpu-question::before {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%) rotate(-12deg);
    width: 140%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 97, 255, 0.18), transparent);
    pointer-events: none;
}
.gpu-question__inner {
    display: grid;
    grid-template-columns: minmax(280px, 38%) 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
}
.gpu-question__num {
    font-family: 'JetBrains Mono', monospace;
    font-size: clamp(140px, 22vw, 260px);
    font-weight: 800;
    line-height: 0.85;
    letter-spacing: -10px;
    background: linear-gradient(135deg, var(--highlight-blue), var(--highlight-blue-light) 60%, transparent);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
    user-select: none;
}
.gpu-question__num::after {
    content: 'GAPS';
    position: absolute;
    top: 18%; right: -8px;
    font-size: clamp(18px, 1.6vw, 28px);
    font-weight: 800;
    letter-spacing: 0.12em;
    color: var(--esds-navy);
    background: var(--highlight-blue-light);
    padding: 6px 14px;
    border-radius: 4px;
    -webkit-text-fill-color: var(--esds-navy);
}
.gpu-question__copy h2 {
    font-size: clamp(30px, 4.2vw, 56px);
    font-weight: 800;
    color: var(--esds-navy);
    line-height: 1.05;
    letter-spacing: -1.5px;
    margin: 0 0 22px;
}
.gpu-question__copy h2 .accent {
    background: linear-gradient(135deg, var(--highlight-blue), var(--highlight-blue-light));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.gpu-question__copy p {
    font-size: 18px;
    color: var(--esds-gray-600);
    line-height: 1.7;
    max-width: 580px;
    margin: 0;
    font-weight: 500;
}
.gpu-question__copy p strong {
    color: var(--esds-navy);
    font-weight: 800;
}
@media (max-width: 900px) {
    .gpu-question__inner { grid-template-columns: 1fr; gap: 24px; text-align: left; }
    .gpu-question__num { font-size: clamp(120px, 38vw, 200px); letter-spacing: -6px; }
}


/* ── 71.2 · ASYMMETRIC METRIC MOSAIC (Section 2: outcomes) ────────────────
   Design pattern: Floating Islands · 5 metrics with varied size/placement   */
.gpu-outcomes {
    padding: 110px 0;
    background: linear-gradient(180deg, #fff 0%, #f7faff 100%);
    position: relative;
    overflow: hidden;
}
.gpu-outcomes::before {
    content: '';
    position: absolute;
    top: -80px; right: -80px;
    width: 320px; height: 320px;
    background: radial-gradient(circle, rgba(126, 233, 255, 0.18), transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}
.gpu-outcomes__head {
    text-align: center;
    margin-bottom: 64px;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
}
.gpu-outcomes__head .pre-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--highlight-blue);
    margin-bottom: 16px;
}
.gpu-outcomes__head .pre-label::before {
    content: ''; width: 28px; height: 2px;
    background: linear-gradient(90deg, var(--highlight-blue), var(--highlight-blue-light));
    border-radius: 2px;
}
.gpu-outcomes__head h2 {
    font-size: clamp(28px, 3.6vw, 44px);
    font-weight: 800;
    color: var(--esds-navy);
    letter-spacing: -1px;
    margin: 0 0 14px;
    line-height: 1.15;
}
.gpu-outcomes__head h2 em {
    font-style: normal;
    background: linear-gradient(135deg, var(--highlight-blue), var(--highlight-blue-light));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.gpu-mosaic {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: auto auto;
    gap: 20px;
    margin-bottom: 48px;
}
.gpu-metric {
    position: relative;
    padding: 36px 32px;
    background: #fff;
    border: 1px solid rgba(0, 97, 255, 0.08);
    border-radius: 22px;
    transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.4s ease;
    overflow: hidden;
}
.gpu-metric:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 60px -12px rgba(0, 97, 255, 0.18);
}
.gpu-metric::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 0; height: 4px;
    background: linear-gradient(90deg, var(--highlight-blue), var(--highlight-blue-light));
    transition: width 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.gpu-metric:hover::before { width: 100%; }
/* Asymmetric placement */
.gpu-metric--lead { grid-column: span 5; grid-row: span 2; padding: 48px 40px; }
.gpu-metric--med  { grid-column: span 7; }
.gpu-metric--m1   { grid-column: span 4; }
.gpu-metric--m2   { grid-column: span 3; }
.gpu-metric__num {
    font-family: 'JetBrains Mono', monospace;
    font-size: clamp(48px, 5.5vw, 84px);
    font-weight: 800;
    line-height: 1;
    letter-spacing: -3px;
    color: var(--esds-navy);
    margin-bottom: 12px;
    display: block;
}
.gpu-metric__num .u {
    font-size: 0.45em;
    color: var(--highlight-blue);
    margin-left: 4px;
    font-weight: 700;
}
.gpu-metric--lead .gpu-metric__num {
    background: linear-gradient(135deg, var(--highlight-blue), var(--highlight-blue-light));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.gpu-metric__label {
    font-size: 15px;
    font-weight: 700;
    color: var(--esds-gray-600);
    line-height: 1.45;
    letter-spacing: -0.2px;
}
.gpu-metric--lead .gpu-metric__label {
    font-size: 18px;
    color: var(--esds-navy);
}
.gpu-metric__icon {
    position: absolute;
    bottom: 24px; right: 24px;
    width: 32px; height: 32px;
    opacity: 0.12;
    color: var(--highlight-blue);
}
.gpu-outcomes__cta {
    text-align: center;
    margin-top: 40px;
}

@media (max-width: 1024px) {
    .gpu-mosaic { grid-template-columns: repeat(6, 1fr); }
    .gpu-metric--lead { grid-column: span 6; grid-row: auto; }
    .gpu-metric--med  { grid-column: span 6; }
    .gpu-metric--m1   { grid-column: span 3; }
    .gpu-metric--m2   { grid-column: span 3; }
}
@media (max-width: 640px) {
    .gpu-mosaic { grid-template-columns: 1fr; }
    .gpu-metric, .gpu-metric--lead, .gpu-metric--med, .gpu-metric--m1, .gpu-metric--m2 {
        grid-column: 1 / -1; padding: 28px 24px;
    }
}


/* ── 71.3 · MANIFESTO BLOCK (Section 3: AI is racing. $4.8T) ──────────────
   Design pattern: Cinematic Scroll · dark editorial type · progressive reveal */
.gpu-manifesto {
    background: var(--esds-deep);
    color: #fff;
    padding: 140px 0;
    position: relative;
    overflow: hidden;
}
.gpu-manifesto::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(126, 233, 255, 0.018) 1px, transparent 1px),
        linear-gradient(90deg, rgba(126, 233, 255, 0.018) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse 80% 60% at 50% 50%, #000, transparent 80%);
    -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 50%, #000, transparent 80%);
    pointer-events: none;
}
.gpu-manifesto::after {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 900px; height: 900px;
    background: radial-gradient(circle, rgba(0, 97, 255, 0.18) 0%, transparent 60%);
    border-radius: 50%;
    pointer-events: none;
    animation: gpu-pulse-bg 8s ease-in-out infinite;
}
@keyframes gpu-pulse-bg {
    0%, 100% { opacity: 0.6; transform: translate(-50%, -50%) scale(1); }
    50%      { opacity: 1;   transform: translate(-50%, -50%) scale(1.1); }
}
.gpu-manifesto__inner {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 920px;
    margin: 0 auto;
}
.gpu-manifesto__lead {
    font-size: clamp(36px, 6vw, 84px);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -2px;
    margin: 0 0 24px;
}
.gpu-manifesto__lead em {
    font-style: italic;
    background: linear-gradient(135deg, var(--highlight-blue-light), var(--india-saffron));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 800;
}
.gpu-manifesto__price {
    display: inline-block;
    font-family: 'JetBrains Mono', monospace;
    font-size: clamp(28px, 4vw, 48px);
    font-weight: 800;
    color: var(--highlight-blue-light);
    margin-bottom: 32px;
    padding: 10px 24px;
    border: 2px solid rgba(126, 233, 255, 0.3);
    border-radius: 999px;
    backdrop-filter: blur(6px);
    background: rgba(126, 233, 255, 0.04);
}
.gpu-manifesto__divider {
    width: 60px; height: 2px;
    background: linear-gradient(90deg, var(--highlight-blue), var(--highlight-blue-light));
    margin: 36px auto;
    border-radius: 2px;
}
.gpu-manifesto__sub {
    font-size: clamp(20px, 2.4vw, 30px);
    color: var(--esds-gray-300);
    line-height: 1.5;
    font-weight: 500;
    font-style: italic;
}
.gpu-manifesto__sub strong {
    color: #fff;
    font-weight: 700;
    font-style: normal;
}


/* ── 71.4 · CASE STUDY 3-FLOW (Section 4: 50B-param case) ─────────────────
   Design pattern: Storyboard · Challenge → Solution → Outcome with arrows  */
.gpu-case {
    padding: 110px 0;
    background: #fff;
    position: relative;
}
.gpu-case__head {
    max-width: 880px;
    margin: 0 auto 64px;
    text-align: center;
}
.gpu-case__head h2 {
    font-size: clamp(28px, 3.8vw, 44px);
    font-weight: 800;
    color: var(--esds-navy);
    letter-spacing: -1px;
    line-height: 1.15;
    margin: 18px 0 0;
}
.gpu-case__head h2 strong {
    background: linear-gradient(135deg, var(--highlight-blue), var(--highlight-blue-light));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 800;
}
.gpu-case-flow {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 12px;
    align-items: stretch;
    position: relative;
}
.gpu-case-flow__step {
    background: #fff;
    border: 1.5px solid var(--esds-gray-100);
    border-radius: 24px;
    padding: 40px 32px;
    position: relative;
    transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.4s ease;
    display: flex;
    flex-direction: column;
}
.gpu-case-flow__step:hover {
    transform: translateY(-6px);
    box-shadow: 0 28px 60px -16px rgba(0, 97, 255, 0.18);
}
/* Theme variants */
.gpu-case-flow__step--problem {
    background: linear-gradient(180deg, #fff8f5, #fff);
    border-color: rgba(255, 107, 53, 0.18);
}
.gpu-case-flow__step--solution {
    background: linear-gradient(180deg, var(--esds-deep), var(--esds-navy));
    color: #fff;
    border: none;
    box-shadow: 0 24px 48px -12px rgba(0, 97, 255, 0.28);
    transform: translateY(-12px);
}
.gpu-case-flow__step--solution:hover {
    transform: translateY(-18px);
    box-shadow: 0 36px 72px -16px rgba(0, 97, 255, 0.4);
}
.gpu-case-flow__step--outcome {
    background: linear-gradient(180deg, #f0fff4, #fff);
    border-color: rgba(16, 185, 129, 0.22);
}
.gpu-case-flow__tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 10.5px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 6px 12px;
    border-radius: 999px;
    margin-bottom: 18px;
    width: fit-content;
}
.gpu-case-flow__step--problem .gpu-case-flow__tag {
    background: rgba(255, 107, 53, 0.12);
    color: var(--india-saffron);
}
.gpu-case-flow__step--solution .gpu-case-flow__tag {
    background: rgba(126, 233, 255, 0.18);
    color: var(--highlight-blue-light);
    border: 1px solid rgba(126, 233, 255, 0.3);
}
.gpu-case-flow__step--outcome .gpu-case-flow__tag {
    background: rgba(16, 185, 129, 0.14);
    color: var(--esds-green);
}
.gpu-case-flow__step h3 {
    font-size: 22px;
    font-weight: 800;
    line-height: 1.2;
    margin: 0 0 16px;
    letter-spacing: -0.5px;
}
.gpu-case-flow__step--problem h3 { color: var(--esds-navy); }
.gpu-case-flow__step--solution h3 { color: #fff; }
.gpu-case-flow__step--outcome h3 { color: var(--esds-navy); }
.gpu-case-flow__step ul {
    list-style: none;
    padding: 0;
    margin: 0;
    flex-grow: 1;
}
.gpu-case-flow__step ul li {
    font-size: 14px;
    line-height: 1.55;
    padding: 8px 0 8px 28px;
    position: relative;
    color: var(--esds-gray-600);
}
.gpu-case-flow__step--solution ul li {
    color: var(--esds-gray-300);
}
.gpu-case-flow__step--problem ul li::before {
    content: '✕';
    position: absolute; left: 0; top: 8px;
    color: var(--india-saffron);
    font-weight: 800;
    font-family: 'JetBrains Mono', monospace;
}
.gpu-case-flow__step--solution ul li::before {
    content: '◆';
    position: absolute; left: 0; top: 8px;
    color: var(--highlight-blue-light);
    font-size: 12px;
}
.gpu-case-flow__step--outcome ul li::before {
    content: '✓';
    position: absolute; left: 0; top: 8px;
    color: var(--esds-green);
    font-weight: 800;
    font-family: 'JetBrains Mono', monospace;
}
.gpu-case-flow__outcome-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 16px;
}
.gpu-case-flow__metric {
    text-align: center;
    padding: 14px 10px;
    background: rgba(16, 185, 129, 0.06);
    border: 1px solid rgba(16, 185, 129, 0.18);
    border-radius: 12px;
}
.gpu-case-flow__metric-val {
    font-family: 'JetBrains Mono', monospace;
    font-size: 22px;
    font-weight: 800;
    color: var(--esds-green);
    line-height: 1;
    letter-spacing: -0.5px;
}
.gpu-case-flow__metric-val .u { font-size: 0.55em; }
.gpu-case-flow__metric-lbl {
    font-size: 11px;
    color: var(--esds-gray-500);
    margin-top: 6px;
    font-weight: 700;
}
/* Arrow connectors between steps (desktop) */
.gpu-case-flow::before,
.gpu-case-flow::after {
    content: '→';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 22px;
    font-weight: 800;
    color: var(--highlight-blue);
    background: #fff;
    width: 32px; height: 32px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    box-shadow: 0 4px 14px rgba(0, 97, 255, 0.18);
    z-index: 2;
}
.gpu-case-flow::before { left: 33.33%; transform: translate(-50%, -50%); }
.gpu-case-flow::after  { left: 66.66%; transform: translate(-50%, -50%); }
@media (max-width: 900px) {
    .gpu-case-flow { grid-template-columns: 1fr; gap: 24px; }
    .gpu-case-flow__step--solution { transform: none; }
    .gpu-case-flow::before, .gpu-case-flow::after {
        left: 50%; top: auto; bottom: -16px;
        transform: translate(-50%, 0) rotate(90deg);
    }
    .gpu-case-flow::before { display: none; }
    .gpu-case-flow::after { display: none; }
}


/* ── 71.5 · GPU CONFIGURATOR (Section 5: Build Your Own SuperPOD) ─────────
   Design pattern: Comparison Grid + Tabs · interactive GPU model selector  */
.gpu-config {
    padding: 110px 0;
    background: var(--esds-gray-50);
    position: relative;
    overflow: hidden;
}
.gpu-config::before {
    content: '';
    position: absolute;
    bottom: -100px; left: -100px;
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(0, 97, 255, 0.06), transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}
.gpu-config__head {
    text-align: center;
    margin-bottom: 56px;
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
}

/* Tab strip */
.gpu-config__tabs {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 32px;
    padding: 8px;
    background: #fff;
    border-radius: 16px;
    border: 1px solid var(--esds-gray-100);
    box-shadow: 0 2px 8px rgba(10, 22, 40, 0.04);
    max-width: max-content;
    margin-left: auto;
    margin-right: auto;
}
.gpu-config__tab {
    background: transparent;
    border: none;
    padding: 12px 22px;
    border-radius: 10px;
    font-family: inherit;
    font-size: 13.5px;
    font-weight: 700;
    color: var(--esds-gray-600);
    cursor: pointer;
    transition: all 0.25s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}
.gpu-config__tab:hover {
    color: var(--esds-navy);
    background: var(--esds-gray-50);
}
.gpu-config__tab.is-active {
    background: linear-gradient(135deg, var(--highlight-blue), var(--highlight-blue-light));
    color: #fff;
    box-shadow: 0 6px 20px rgba(0, 97, 255, 0.28);
}
.gpu-config__tab__vendor {
    font-family: 'JetBrains Mono', monospace;
    font-size: 9.5px;
    font-weight: 800;
    letter-spacing: 0.1em;
    padding: 2px 6px;
    border-radius: 4px;
    background: rgba(118, 185, 0, 0.18);
    color: #76b900;
}
.gpu-config__tab.is-active .gpu-config__tab__vendor {
    background: rgba(255, 255, 255, 0.22);
    color: #fff;
}
.gpu-config__tab__vendor--amd {
    background: rgba(237, 28, 36, 0.12);
    color: #ED1C24;
}

/* Configurator panel — content swaps when tab changes */
.gpu-config__panel {
    background: #fff;
    border-radius: 28px;
    border: 1px solid var(--esds-gray-100);
    box-shadow: 0 24px 60px -20px rgba(10, 22, 40, 0.12);
    overflow: hidden;
    position: relative;
}
.gpu-config__pane {
    display: none;
    grid-template-columns: minmax(280px, 42%) 1fr;
    gap: 0;
    min-height: 480px;
    animation: gpu-fade-in 0.4s ease;
}
.gpu-config__pane.is-active { display: grid; }
@keyframes gpu-fade-in {
    from { opacity: 0; transform: translateY(12px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Left side — visual / image placeholder */
.gpu-config__visual {
    background: linear-gradient(135deg, var(--esds-navy), var(--esds-deep));
    color: #fff;
    padding: 48px 40px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
}
.gpu-config__visual::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(126, 233, 255, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(126, 233, 255, 0.04) 1px, transparent 1px);
    background-size: 32px 32px;
    pointer-events: none;
}
.gpu-config__visual::after {
    content: '';
    position: absolute;
    top: 30%; right: -100px;
    width: 280px; height: 280px;
    background: radial-gradient(circle, rgba(126, 233, 255, 0.18), transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}
.gpu-config__visual-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 10.5px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 5px 12px;
    border-radius: 999px;
    background: rgba(126, 233, 255, 0.12);
    border: 1px solid rgba(126, 233, 255, 0.24);
    color: var(--highlight-blue-light);
    width: fit-content;
    margin-bottom: 16px;
    position: relative;
    z-index: 2;
}
.gpu-config__visual-img {
    width: 100%;
    aspect-ratio: 4 / 3;
    background: rgba(255, 255, 255, 0.04);
    border: 1px dashed rgba(255, 255, 255, 0.16);
    border-radius: 18px;
    display: grid;
    place-items: center;
    margin: 24px 0;
    position: relative;
    z-index: 2;
    overflow: hidden;
}
.gpu-config__visual-img::before {
    content: '';
    position: absolute;
    width: 80px; height: 80px;
    border: 2px solid rgba(126, 233, 255, 0.4);
    border-radius: 8px;
    transform: rotate(45deg);
}
.gpu-config__visual-img::after {
    content: '🖼️ Image placeholder';
    position: absolute;
    bottom: 16px; right: 16px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 9.5px;
    color: rgba(255, 255, 255, 0.4);
    letter-spacing: 0.05em;
}
.gpu-config__visual-quote {
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    font-weight: 700;
    color: var(--highlight-blue-light);
    letter-spacing: 0.05em;
    line-height: 1.5;
    position: relative;
    z-index: 2;
}

/* Right side — specs + CTA */
.gpu-config__details {
    padding: 48px 44px;
    display: flex;
    flex-direction: column;
}
.gpu-config__model {
    font-family: 'JetBrains Mono', monospace;
    font-size: clamp(26px, 3vw, 38px);
    font-weight: 800;
    color: var(--esds-navy);
    letter-spacing: -1px;
    line-height: 1.1;
    margin: 0 0 6px;
}
.gpu-config__arch {
    font-size: 13px;
    font-weight: 700;
    color: var(--highlight-blue);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 18px;
}
.gpu-config__desc {
    font-size: 15px;
    color: var(--esds-gray-600);
    line-height: 1.7;
    margin: 0 0 26px;
}
.gpu-config__specs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 28px;
}
.gpu-config__spec {
    padding: 14px 16px;
    background: var(--esds-gray-50);
    border: 1px solid var(--esds-gray-100);
    border-radius: 12px;
    transition: all 0.2s ease;
}
.gpu-config__spec:hover {
    border-color: var(--highlight-blue);
    background: rgba(0, 97, 255, 0.03);
}
.gpu-config__spec-lbl {
    font-size: 10.5px;
    font-weight: 700;
    color: var(--esds-gray-400);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 4px;
}
.gpu-config__spec-val {
    font-family: 'JetBrains Mono', monospace;
    font-size: 14px;
    font-weight: 800;
    color: var(--esds-navy);
    line-height: 1.3;
}
.gpu-config__usecases {
    margin-bottom: 28px;
    padding: 16px 18px;
    background: linear-gradient(135deg, rgba(0, 97, 255, 0.04), rgba(126, 233, 255, 0.02));
    border-left: 3px solid var(--highlight-blue);
    border-radius: 0 12px 12px 0;
}
.gpu-config__usecases-lbl {
    font-size: 10.5px;
    font-weight: 800;
    color: var(--highlight-blue);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 6px;
    font-family: 'JetBrains Mono', monospace;
}
.gpu-config__usecases-val {
    font-size: 13.5px;
    color: var(--esds-gray-700);
    line-height: 1.55;
}
.gpu-config__cta-row {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: auto;
}

/* Configurator step tracker (4 steps below the panel) */
.gpu-config__steps {
    display: flex;
    justify-content: center;
    gap: 0;
    margin-top: 32px;
    flex-wrap: wrap;
}
.gpu-config__step-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0 20px;
    position: relative;
}
.gpu-config__step-item:not(:last-child)::after {
    content: '→';
    color: var(--highlight-blue);
    font-weight: 800;
    margin-left: 20px;
    opacity: 0.5;
}
.gpu-config__step-num {
    width: 28px; height: 28px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--highlight-blue), var(--highlight-blue-light));
    color: #fff;
    display: grid;
    place-items: center;
    font-family: 'JetBrains Mono', monospace;
    font-size: 12px;
    font-weight: 800;
    flex-shrink: 0;
}
.gpu-config__step-lbl {
    font-size: 13px;
    font-weight: 700;
    color: var(--esds-gray-600);
}

@media (max-width: 900px) {
    .gpu-config__pane.is-active { grid-template-columns: 1fr; }
    .gpu-config__visual { padding: 32px 28px; }
    .gpu-config__details { padding: 32px 28px; }
    .gpu-config__steps { gap: 4px; }
    .gpu-config__step-item { padding: 0 12px; flex-basis: calc(50% - 8px); }
    .gpu-config__step-item:not(:last-child)::after { display: none; }
}
@media (max-width: 540px) {
    .gpu-config__specs { grid-template-columns: 1fr; }
    .gpu-config__tabs { padding: 6px; }
    .gpu-config__tab { padding: 10px 14px; font-size: 12.5px; }
}


/* ── 71.6 · VISION TABS (Section 6: 5 services tabs) ──────────────────────
   Design pattern: Split Narrative · sidebar tab list · content panel       */
.gpu-vision {
    padding: 110px 0;
    background: #fff;
    position: relative;
}
.gpu-vision__head {
    max-width: 880px;
    margin: 0 auto 56px;
    text-align: center;
}
.gpu-vision__head h2 {
    font-size: clamp(28px, 3.8vw, 46px);
    font-weight: 800;
    color: var(--esds-navy);
    letter-spacing: -1px;
    line-height: 1.1;
    margin: 18px 0 18px;
}
.gpu-vision__head h2 strong {
    background: linear-gradient(135deg, var(--highlight-blue), var(--highlight-blue-light));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 800;
}
.gpu-vision__sub {
    font-size: 16px;
    color: var(--esds-gray-600);
    line-height: 1.7;
    margin-bottom: 28px;
}
.gpu-vision__brands {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    padding: 10px 20px;
    background: var(--esds-gray-50);
    border: 1px solid var(--esds-gray-100);
    border-radius: 999px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 12px;
    font-weight: 800;
    color: var(--esds-gray-600);
    letter-spacing: 0.05em;
}
.gpu-vision__brands span {
    display: flex;
    align-items: center;
    gap: 6px;
}

/* Tabs layout — sidebar + panel */
.gpu-vision__layout {
    display: grid;
    grid-template-columns: 360px 1fr;
    gap: 24px;
    align-items: start;
}
.gpu-vision__tabs {
    display: flex;
    flex-direction: column;
    gap: 8px;
    position: sticky;
    top: 100px;
}
.gpu-vision__tab {
    background: transparent;
    border: 1.5px solid var(--esds-gray-100);
    text-align: left;
    padding: 18px 20px;
    border-radius: 16px;
    cursor: pointer;
    font-family: inherit;
    transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
    display: flex;
    align-items: flex-start;
    gap: 14px;
    position: relative;
}
.gpu-vision__tab:hover {
    border-color: var(--highlight-blue);
    background: var(--esds-gray-50);
    transform: translateX(4px);
}
.gpu-vision__tab.is-active {
    background: linear-gradient(135deg, var(--esds-navy), var(--esds-deep));
    border-color: var(--esds-navy);
    color: #fff;
    box-shadow: 0 14px 32px -10px rgba(0, 97, 255, 0.32);
}
.gpu-vision__tab.is-active::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, var(--highlight-blue-light), var(--highlight-blue));
    border-radius: 16px 0 0 16px;
}
.gpu-vision__tab-num {
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.1em;
    color: var(--highlight-blue);
    flex-shrink: 0;
    width: 28px;
    padding-top: 2px;
}
.gpu-vision__tab.is-active .gpu-vision__tab-num {
    color: var(--highlight-blue-light);
}
.gpu-vision__tab-content {
    flex: 1;
}
.gpu-vision__tab-title {
    font-size: 14px;
    font-weight: 800;
    color: var(--esds-navy);
    line-height: 1.3;
    margin-bottom: 4px;
    letter-spacing: -0.2px;
}
.gpu-vision__tab.is-active .gpu-vision__tab-title { color: #fff; }
.gpu-vision__tab-hint {
    font-size: 12px;
    color: var(--esds-gray-500);
    line-height: 1.4;
}
.gpu-vision__tab.is-active .gpu-vision__tab-hint { color: var(--esds-gray-300); }

/* Panel content */
.gpu-vision__panel {
    background: linear-gradient(180deg, var(--esds-gray-50), #fff);
    border: 1.5px solid var(--esds-gray-100);
    border-radius: 24px;
    padding: 0;
    min-height: 520px;
    position: relative;
    overflow: hidden;
}
.gpu-vision__pane {
    display: none;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    animation: gpu-fade-in 0.4s ease;
    height: 100%;
}
.gpu-vision__pane.is-active { display: grid; }
.gpu-vision__pane-img {
    background: linear-gradient(135deg, var(--esds-navy), var(--esds-deep));
    aspect-ratio: 4 / 3;
    position: relative;
    overflow: hidden;
    border-radius: 22px 0 0 22px;
}
.gpu-vision__pane-img::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(126, 233, 255, 0.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(126, 233, 255, 0.06) 1px, transparent 1px);
    background-size: 28px 28px;
}
.gpu-vision__pane-img::after {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 200px; height: 200px;
    background: radial-gradient(circle, rgba(126, 233, 255, 0.32), transparent 70%);
    border-radius: 50%;
}
.gpu-vision__pane-img-icon {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    font-size: 84px;
    z-index: 2;
    filter: drop-shadow(0 12px 32px rgba(0, 97, 255, 0.4));
}
.gpu-vision__pane-img-tag {
    position: absolute;
    top: 24px; left: 24px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 10.5px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(126, 233, 255, 0.18);
    border: 1px solid rgba(126, 233, 255, 0.32);
    color: var(--highlight-blue-light);
    z-index: 2;
}
.gpu-vision__pane-img-ph {
    position: absolute;
    bottom: 18px; right: 22px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 10px;
    color: rgba(255, 255, 255, 0.4);
    z-index: 2;
}
.gpu-vision__pane-text {
    padding: 44px 40px;
    display: flex;
    flex-direction: column;
}
.gpu-vision__pane-text h3 {
    font-size: 24px;
    font-weight: 800;
    color: var(--esds-navy);
    line-height: 1.2;
    letter-spacing: -0.5px;
    margin: 0 0 16px;
}
.gpu-vision__pane-text > p {
    font-size: 15px;
    color: var(--esds-gray-600);
    line-height: 1.75;
    margin: 0 0 24px;
}
.gpu-vision__pane-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 28px;
}
.gpu-vision__pane-chip {
    background: rgba(0, 97, 255, 0.06);
    border: 1px solid rgba(0, 97, 255, 0.14);
    color: var(--highlight-blue);
    padding: 6px 14px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
    font-family: 'JetBrains Mono', monospace;
}
.gpu-vision__pane-cta {
    margin-top: auto;
}

@media (max-width: 1024px) {
    .gpu-vision__layout { grid-template-columns: 1fr; }
    .gpu-vision__tabs { position: static; flex-direction: row; overflow-x: auto; padding-bottom: 8px; gap: 10px; }
    .gpu-vision__tab { flex: 0 0 280px; }
}
@media (max-width: 768px) {
    .gpu-vision__pane.is-active { grid-template-columns: 1fr; }
    .gpu-vision__pane-img { border-radius: 22px 22px 0 0; aspect-ratio: 16/10; }
    .gpu-vision__pane-text { padding: 28px 24px; }
}


/* ── 71.7 · GPU FINAL CTA (Section 7: Final breakthrough CTA) ─────────────
   Design pattern: Hero-with-Stacked-Callouts · centered impact CTA          */
.gpu-final-cta {
    background: linear-gradient(180deg, var(--esds-navy), var(--esds-deep));
    color: #fff;
    padding: 140px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.gpu-final-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(126, 233, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(126, 233, 255, 0.02) 1px, transparent 1px);
    background-size: 56px 56px;
    mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, #000, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, #000, transparent 70%);
}
.gpu-final-cta::after {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 700px; height: 700px;
    background: radial-gradient(circle, rgba(126, 233, 255, 0.16) 0%, transparent 60%);
    border-radius: 50%;
    pointer-events: none;
}
.gpu-final-cta__inner {
    position: relative;
    z-index: 2;
    max-width: 840px;
    margin: 0 auto;
}
.gpu-final-cta h2 {
    font-size: clamp(32px, 5vw, 64px);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -2px;
    margin: 0 0 20px;
}
.gpu-final-cta h2 .accent {
    background: linear-gradient(135deg, var(--highlight-blue-light), var(--india-saffron));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}
.gpu-final-cta__sub {
    font-size: clamp(16px, 1.6vw, 20px);
    color: var(--esds-gray-300);
    line-height: 1.7;
    margin-bottom: 40px;
    font-weight: 500;
}
.gpu-final-cta__ctas {
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
}
.gpu-final-cta__pulse {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--highlight-blue-light);
    margin-bottom: 24px;
}
.gpu-final-cta__pulse::before {
    content: ''; width: 8px; height: 8px;
    background: var(--highlight-blue-light);
    border-radius: 50%;
    box-shadow: 0 0 0 0 rgba(126, 233, 255, 0.6);
    animation: gpu-cta-pulse 2s infinite;
}
@keyframes gpu-cta-pulse {
    0%   { box-shadow: 0 0 0 0    rgba(126, 233, 255, 0.7); }
    70%  { box-shadow: 0 0 0 14px rgba(126, 233, 255, 0); }
    100% { box-shadow: 0 0 0 0    rgba(126, 233, 255, 0); }
}


/* enterprice cc page */

