/* =============================================
   CYSECURE — SHARED STYLESHEET
   Used by index, about, services, industries, contact
   ============================================= */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  /* Mandiant-tier palette — premium dark blue surfaces, hairline borders, sparing accent.
     Slight blue cast aligned with the brand logo's own #1A2238 dark. */
  --navy:        #0F1A3A;       /* dark blue, primary dark surface */
  --navy-soft:   #122244;       /* slightly elevated dark blue */
  --navy-card:   #1A2D55;       /* card on dark */
  --navy-hover:  #1F3766;
  --teal:        #0B7B8A;
  --teal-light:  #E6F4F6;
  --sky:         #7DD3FC;       /* accent — sparing */
  --blue:        #1D4ED8;       /* royal blue accent (also used on Industries) */
  --green-accent:#C8EDD6;
  --white:       #FFFFFF;
  --off-white:   #F4F5F8;
  --light-grey:  #F0F2F5;
  --mid-grey:    #9CA3AF;
  --border:      rgba(0,0,0,0.08);
  --border-strong: rgba(0,0,0,0.14);
  --border-dark: rgba(255,255,255,0.08);
  --border-dark-strong: rgba(255,255,255,0.14);
  --body-text:   #4B5563;
  --dark-text:   #0A0E1A;
  --card-shadow: none;
  --card-shadow-hover: none;
  --radius-sm:   4px;
  --radius:      8px;
  --radius-lg:   12px;
}

html { scroll-behavior: smooth; }

/* ── ACCESSIBILITY: SKIP LINK + GLOBAL FOCUS ── */
.skip-link {
  position: absolute;
  top: -100px; left: 12px;
  background: var(--navy); color: white;
  padding: 10px 16px; border-radius: 6px;
  font-size: 14px; font-weight: 700;
  text-decoration: none; z-index: 1000;
  transition: top 0.15s ease;
}
.skip-link:focus { top: 12px; outline: 2px solid var(--sky); outline-offset: 2px; }

:focus-visible {
  outline: 2px solid var(--teal);
  outline-offset: 2px;
  border-radius: 4px;
}
a:focus-visible,
button:focus-visible,
.nav-cta:focus-visible,
.btn-primary:focus-visible,
.btn-secondary:focus-visible,
.btn-white:focus-visible,
.btn-outline-white:focus-visible,
.service-card:focus-visible,
.practice-card:focus-visible,
.exec-card:focus-visible,
.senior-card:focus-visible,
.heritage-link:focus-visible,
.heritage-tile-cta:focus-visible,
.hero-jumplink:focus-visible,
.contact-detail-value:focus-visible,
.strip-value:focus-visible,
.ir-call-btn:focus-visible,
.cta-btn:focus-visible {
  outline: 2px solid var(--teal);
  outline-offset: 3px;
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

body {
  font-family: 'Inter', 'Segoe UI', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--dark-text);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a { color: inherit; }
img, svg { display: block; max-width: 100%; }
ul { list-style: none; }

/* ── ANNOUNCEMENT BANNER ── */
.banner {
  background: #F8F5EE;            /* warm ivory — editorial masthead-notice feel */
  color: var(--navy);
  text-align: center;
  padding: 11px 24px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.01em;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.banner::before {
  content: '';
  display: inline-block;
  width: 6px; height: 6px;
  background: var(--teal);
  border-radius: 50%;
  margin-right: 12px;
  vertical-align: middle;
  position: relative; top: -1px;
}
.banner a { color: var(--teal); text-decoration: none; margin-left: 8px; }
.banner a:hover { text-decoration: underline; }

/* ── NAVIGATION ── */
nav.site-nav {
  background: white;
  border-bottom: 1px solid var(--border);
  padding: 0 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  position: sticky;
  top: 0;
  z-index: 100;
}
/* Left-side attribution link (text block) */
.nav-attribution {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 2px;
  text-decoration: none;
}
.nav-attribution-main {
  font-size: 22px;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.01em;
  line-height: 1.05;
}
.nav-attribution-sub {
  font-size: 14px;
  color: var(--navy);
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0.02em;
}

/* Right-side logo mark (image only) */
.nav-mark {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}
.nav-mark-img {
  height: 48px;
  width: auto;
  display: block;
}

/* Legacy .nav-logo* classes preserved for any cached HTML — harmless on the
   new build but they keep older snapshots from regressing visually. */
.nav-logo { display: flex; flex-direction: row; align-items: center; gap: 14px; text-decoration: none; }
.nav-logo-img { height: 44px; width: auto; display: block; }
.nav-logo-divider { width: 1px; height: 42px; background: var(--border-strong); display: block; flex-shrink: 0; }
.nav-logo-attribution { display: flex; flex-direction: column; justify-content: center; gap: 1px; }
.nav-logo-attribution-main { font-size: 22px; font-weight: 700; color: var(--navy); letter-spacing: -0.01em; line-height: 1.05; }
.nav-logo-attribution-sub { font-size: 11px; color: var(--mid-grey); font-weight: 500; line-height: 1.2; letter-spacing: 0.02em; }
/* Legacy alias kept so any cached HTML still receives sub-line styling. */
.nav-logo-sub {
  font-size: 11px;
  color: var(--body-text);
  display: block;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0.01em;
}
/* Legacy nav-logo-icon / nav-logo-text rules kept for backward compatibility
   in case any embed re-uses them — harmless on the current build. */
.nav-logo-icon {
  width: 32px; height: 32px;
  background: var(--navy);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  color: white;
}
.nav-logo-icon i { font-size: 18px; }
.nav-logo-text { font-weight: 700; font-size: 16px; color: var(--navy); letter-spacing: -0.01em; }

.nav-links { display: flex; gap: 32px; list-style: none; align-items: center; }
.nav-links > li { position: relative; display: flex; align-items: center; }
.nav-links a {
  text-decoration: none; color: var(--body-text);
  font-size: 14px; font-weight: 500;
  transition: color 0.15s;
}
.nav-links a:hover { color: var(--navy); }
.nav-links a.active {
  color: var(--teal); font-weight: 700;
  border-bottom: 2px solid var(--teal); padding-bottom: 2px;
}

/* Dropdown */
.nav-dropdown > a { display: flex; align-items: center; gap: 4px; cursor: pointer; }
.nav-dropdown > a .chev { transition: transform 0.2s; font-size: 10px; }
.nav-dropdown:hover > a .chev,
.nav-dropdown:focus-within > a .chev { transform: rotate(180deg); }
.nav-dropdown-menu {
  display: none; position: absolute; top: calc(100% + 14px); left: 50%;
  transform: translateX(-50%);
  background: white; border: 1px solid var(--border); border-radius: 14px;
  padding: 8px; min-width: 270px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.13); z-index: 300;
}
/* Invisible bridge: covers the 14px gap between nav link and dropdown
   so hover doesn't break when the mouse moves toward the menu */
.nav-dropdown-menu::before {
  content: '';
  position: absolute;
  top: -14px;
  left: 0;
  right: 0;
  height: 14px;
  background: transparent;
}
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu { display: block; }
.nav-dropdown-menu a {
  display: block; padding: 9px 14px; font-size: 13px; border-radius: 8px;
  color: var(--body-text); text-decoration: none; font-weight: 500;
  line-height: 1.4; border: none;
}
.nav-dropdown-menu a:hover { background: var(--off-white); color: var(--navy); }

.nav-cta {
  background: var(--navy); color: white;
  padding: 10px 18px; border-radius: var(--radius-sm);
  font-size: 13px; font-weight: 600;
  text-decoration: none; display: flex; align-items: center; gap: 8px;
  transition: background 0.15s;
  letter-spacing: 0.01em;
}
.nav-cta:hover { background: var(--navy-hover); }

/* Mobile menu toggle */
.nav-toggle {
  display: none; background: none; border: none; cursor: pointer;
  font-size: 22px; color: var(--navy); padding: 8px;
}

/* ── BUTTONS ── */
.btn-primary, .btn-secondary, .btn-white, .btn-outline-white {
  padding: 14px 26px; border-radius: var(--radius);
  font-size: 14px; font-weight: 600;
  text-decoration: none;
  display: inline-flex; align-items: center; gap: 10px;
  cursor: pointer; border: 1px solid transparent;
  transition: background 0.15s, border-color 0.15s, color 0.15s;
  letter-spacing: 0.01em;
}
.btn-primary {
  background: var(--navy); color: white;
  border-color: var(--navy);
}
.btn-primary:hover { background: var(--navy-hover); border-color: var(--navy-hover); }
.btn-secondary {
  background: transparent; color: var(--navy);
  border: 1px solid var(--navy);
}
.btn-secondary:hover { background: var(--navy); color: white; }
.btn-white {
  background: white; color: var(--navy); font-weight: 700;
  border-color: white;
}
.btn-white:hover { background: rgba(255,255,255,0.92); }
.btn-outline-white {
  background: transparent; color: white;
  border: 1px solid rgba(255,255,255,0.35);
}
.btn-outline-white:hover { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.6); }

/* ── SHARED SECTION UTILITIES ── */
section { padding: 112px 48px; }
.eyebrow {
  font-size: 12px; font-weight: 700; letter-spacing: 0.22em;
  color: var(--teal); text-transform: uppercase; margin-bottom: 20px;
}
h1, h2, h3, h4 { color: var(--navy); line-height: 1.1; }
h2 { font-size: 42px; font-weight: 800; margin-bottom: 22px; letter-spacing: -1px; }
h3 { font-size: 19px; font-weight: 700; margin-bottom: 10px; letter-spacing: -0.2px; }
.section-center { text-align: center; max-width: 720px; margin: 0 auto 64px; }
.section-inner { max-width: 1140px; margin: 0 auto; }

/* ── FOOTER ── */
footer.site-footer { background: var(--navy); color: white; padding: 80px 48px 32px; border-top: 1px solid var(--border-dark); }
footer.site-footer .footer-tagline { color: white; }
footer.site-footer .footer-contact { color: rgba(255,255,255,0.65); }
footer.site-footer .footer-contact a:hover { color: var(--sky); }
footer.site-footer .footer-col h4 { color: rgba(255,255,255,0.4); }
footer.site-footer .footer-col a { color: rgba(255,255,255,0.7); }
footer.site-footer .footer-col a:hover { color: white; }
footer.site-footer .footer-bottom { border-top: 1px solid var(--border-dark); }
footer.site-footer .footer-bottom p { color: rgba(255,255,255,0.5); }
footer.site-footer .footer-sub { color: rgba(255,255,255,0.4); }
footer.site-footer .social-icon {
  background: rgba(255,255,255,0.06); border: 1px solid var(--border-dark);
}
footer.site-footer .social-icon:hover { background: var(--teal); border-color: var(--teal); }
.footer-top {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px; margin-bottom: 48px;
  max-width: 1200px; margin-left: auto; margin-right: auto;
}
.footer-tagline {
  font-size: 17px; font-weight: 700; color: var(--navy);
  line-height: 1.5; max-width: 300px; margin-bottom: 20px;
}
.footer-contact { font-size: 13px; color: var(--body-text); line-height: 1.8; }
.footer-contact a { color: inherit; text-decoration: none; }
.footer-contact a:hover { color: var(--teal); }
.footer-col h4 {
  font-size: 12px; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--mid-grey);
  margin-bottom: 16px;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 10px; }
.footer-col a {
  text-decoration: none; color: var(--body-text); font-size: 14px;
  transition: color 0.15s;
}
.footer-col a:hover { color: var(--navy); }
.footer-bottom {
  border-top: 1px solid var(--border); padding-top: 24px;
  display: flex; justify-content: space-between; align-items: center;
  max-width: 1200px; margin: 0 auto;
}
.footer-bottom p { font-size: 12px; color: var(--mid-grey); }
.footer-bottom .footer-sub { font-size: 11px; color: var(--mid-grey); }
.footer-social { display: flex; gap: 12px; }
.social-icon {
  width: 32px; height: 32px; background: var(--navy);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  color: white; text-decoration: none; font-size: 14px;
  transition: background 0.15s;
}
.social-icon:hover { background: var(--teal); }

/* =============================================
   HOME PAGE
   ============================================= */
.hero {
  background-color: var(--navy);
  background-image:
    linear-gradient(90deg, rgba(15,26,58,0.92) 0%, rgba(15,26,58,0.78) 35%, rgba(15,26,58,0.45) 70%, rgba(15,26,58,0.30) 100%),
    url('assets/hero-home.jpg');
  background-size: auto, cover;
  background-position: 0 0, 100% center;
  background-repeat: no-repeat;
  padding: 120px 48px 100px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 80px;
  align-items: center;
  min-height: 640px;
  position: relative;
  overflow: hidden;
  color: white;
}

.hero::after {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 80% 30%, rgba(125,211,252,0.06) 0%, transparent 55%);
  pointer-events: none;
}
.hero-content { position: relative; z-index: 1; }
.hero-eyebrow {
  font-size: 14px; font-weight: 700; letter-spacing: 0.78em;
  color: var(--sky); text-transform: uppercase; margin-bottom: 28px;
}
.hero h1 {
  font-size: 56px; font-weight: 800;
  line-height: 1.05; color: white;
  margin-bottom: 24px; letter-spacing: -1.6px;
}
.hero h1 .hero-h1-sub {
  font-size: 0.46em;
  font-weight: 600;
  color: rgba(255,255,255,0.65);
  letter-spacing: -0.2px;
  display: inline;
}
.hero-sub {
  font-size: 17px; color: rgba(255,255,255,0.7);
  line-height: 1.7; margin-bottom: 16px;
}
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; }

/* Hero SVG visual (hidden when hero uses background image — kept for fallback) */
.hero-visual {
  display: none;
}
.hero-visual-fallback {
  display: flex; justify-content: center; align-items: center;
  position: relative; z-index: 1;
}
.hero-visual-card {
  width: 100%; max-width: 440px; height: 400px;
  background: var(--navy-soft);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-lg);
  position: relative; overflow: hidden;
}
.hero-visual-card svg { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero-visual-overlay {
  position: absolute; left: 32px; right: 32px; bottom: 32px;
  color: white; font-family: 'JetBrains Mono', 'SF Mono', Menlo, monospace;
  font-size: 12px; line-height: 1.8;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  backdrop-filter: blur(8px);
  border-radius: 10px; padding: 16px 18px;
}
.hero-visual-overlay .ok { color: #6EE7B7; }
.hero-visual-overlay .label { color: rgba(255,255,255,0.55); }

.chat-bubble {
  position: absolute; right: -10px; top: 60px;
  background: white; border-radius: var(--radius);
  padding: 16px 20px;
  border: 1px solid var(--border);
  min-width: 220px; z-index: 2;
  text-decoration: none; color: inherit;
  display: block;
  transition: border-color 0.15s, transform 0.15s;
}
.chat-bubble:hover {
  transform: translateY(-2px);
  border-color: var(--navy);
}
.chat-bubble-brand {
  font-size: 11px; font-weight: 700;
  color: var(--navy); margin-bottom: 4px;
  display: flex; align-items: center; gap: 6px;
}
.chat-bubble-brand::before {
  content: ''; width: 8px; height: 8px; border-radius: 50%;
  background: #10B981;
}
.chat-bubble-text { font-size: 13px; color: var(--body-text); line-height: 1.5; }
.chat-bubble-text small { color: var(--mid-grey); font-size: 11px; }

/* Heritage */
.heritage { background: var(--off-white); padding: 112px 48px; }
.heritage-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px;
  max-width: 1140px; margin: 0 auto;
  align-items: stretch;
}
.heritage-grid > :first-child {
  display: flex; flex-direction: column;
  justify-content: flex-start;
}
.heritage h2 { font-size: 36px; margin-bottom: 26px; letter-spacing: -0.8px; }
.heritage p { color: var(--body-text); margin-bottom: 20px; font-size: 17px; line-height: 1.75; }
.heritage-link {
  color: var(--teal); font-weight: 700; text-decoration: none;
  font-size: 15px; display: inline-flex; align-items: center; gap: 6px;
  margin-top: auto; padding-top: 12px;
  border-bottom: 1px solid transparent; padding-bottom: 2px;
  transition: border-color 0.15s;
  align-self: flex-start;
}
.heritage-link:hover { border-bottom-color: var(--teal); }

.heritage-tiles {
  display: flex; flex-direction: column; gap: 14px;
  height: 100%;
}
.heritage-tile {
  background: white; color: var(--navy);
  padding: 28px 32px;
  border: 1px solid var(--border);
  border-left: 4px solid var(--teal);
  border-radius: var(--radius);
  flex: 1;
  display: flex; flex-direction: column; justify-content: center;
  transition: border-color 0.15s, transform 0.15s, box-shadow 0.15s;
}
.heritage-tile:hover {
  border-color: var(--navy);
  border-left-color: var(--teal);
  transform: translateX(2px);
}
.heritage-tile h4 {
  font-size: 22px; font-weight: 900; letter-spacing: 0.02em;
  margin-bottom: 12px; color: var(--navy);
  line-height: 1.1;
}
.heritage-tile p {
  font-size: 17px; color: var(--navy);
  margin: 0; line-height: 1.5; font-weight: 500;
}
.heritage-tile-cta {
  background: var(--navy); color: white;
  padding: 16px 24px;
  text-align: center; text-decoration: none;
  font-size: 14px; font-weight: 700;
  display: flex; align-items: center; justify-content: center; gap: 8px;
  border-radius: var(--radius);
  transition: background 0.15s;
  letter-spacing: 0.02em;
  margin-top: 0;
  flex: 0 0 auto;
}
.heritage-tile-cta:hover { background: var(--navy-hover); }

/* About section (Home page) */
.about-home { background: white; }
.about-home-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 96px;
  align-items: center; max-width: 1140px; margin: 0 auto;
}
.about-home-visual {
  width: 100%; height: 420px;
  background: var(--navy);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-lg);
  position: relative; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.about-home-img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  display: block;
}
.about-home p { color: var(--body-text); font-size: 15px; line-height: 1.75; margin-bottom: 28px; }
.about-stats {
  display: flex; gap: 0; border: 1px solid var(--border);
  border-radius: var(--radius); overflow: hidden; margin-bottom: 32px;
}
.about-stat {
  flex: 1; padding: 28px 28px 24px;
  border-right: 1px solid var(--border);
}
.about-stat:last-child { border-right: none; }
.about-stat-num {
  font-size: 52px; font-weight: 900;
  color: var(--navy); display: block;
  line-height: 1.0; letter-spacing: -2px;
  margin-bottom: 10px;
}
.about-stat-label { font-size: 12.5px; color: var(--mid-grey); line-height: 1.4; font-weight: 500; }

/* What we do */
.what-we-do { background: var(--off-white); }
.services-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
  max-width: 1100px; margin: 0 auto;
}
.service-card {
  background: white; border-radius: var(--radius);
  padding: 32px 28px;
  border: 1px solid var(--border);
  position: relative; overflow: hidden;
  transition: border-color 0.15s, transform 0.15s;
  text-decoration: none; color: inherit;
  display: flex; flex-direction: column;
}
.service-card:hover {
  border-color: var(--navy);
  transform: translateY(-2px);
}
.service-card { align-items: center; text-align: center; }
.service-icon {
  width: 40px; height: 40px;
  background: var(--navy); border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px; color: white; font-size: 18px;
  position: relative; z-index: 1;
}
.service-card h3 { font-size: 17px; margin-bottom: 10px; letter-spacing: -0.2px; }
.service-card p { font-size: 14px; color: var(--body-text); line-height: 1.65; }

/* Dark panel + stats */
.dark-panel { background: var(--navy); padding: 112px 48px; text-align: center; }
.dark-panel .eyebrow { color: var(--sky); }
.dark-panel h2 { color: white; max-width: 780px; margin: 0 auto 64px; font-size: 36px; letter-spacing: -0.8px; }
.stats-bar {
  display: grid; grid-template-columns: repeat(4,1fr); gap: 1px;
  background: var(--border-dark);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius);
  overflow: hidden;
  max-width: 1000px; margin: 0 auto;
}
.stat-item { background: var(--navy-soft); padding: 40px 24px; text-align: center; }
.stat-num { font-size: 44px; font-weight: 900; color: white; display: block; line-height: 1; margin-bottom: 10px; letter-spacing: -1px; }
.stat-label { font-size: 13.5px; color: rgba(255,255,255,0.65); line-height: 1.45; letter-spacing: 0.04em; }
.stats-footnote {
  font-size: 11px; font-weight: 700; letter-spacing: 0.18em;
  text-transform: uppercase; color: rgba(255,255,255,0.4);
  text-align: center; margin-top: 28px;
}

/* =============================================
   CASE STUDIES PAGE
   ============================================= */
.cs-list { background: white; padding: 80px 48px 40px; }
.cs-list-inner {
  max-width: 1140px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 24px;
}
.cs-item {
  display: flex; flex-direction: column; gap: 18px;
  padding: 32px 32px 36px;
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color 0.15s, transform 0.15s;
  position: relative;
}
.cs-item:hover { border-color: var(--navy); transform: translateY(-2px); }
.cs-num {
  font-size: 11px; font-weight: 800; letter-spacing: 0.22em;
  color: var(--mid-grey);
}
.cs-body { display: flex; flex-direction: column; gap: 16px; flex: 1; }
.cs-meta { display: flex; gap: 8px; flex-wrap: wrap; }
.cs-tag {
  padding: 4px 12px; border-radius: var(--radius-sm);
  font-size: 10px; font-weight: 800; letter-spacing: 0.18em;
  text-transform: uppercase;
  background: var(--off-white); color: var(--body-text);
  border: 1px solid var(--border);
}
.cs-tag.tag-retail   { color: #B45309; border-color: #FCD34D; background: #FFFBEB; }
.cs-tag.tag-finance  { color: #1D4ED8; border-color: #BFDBFE; background: #EFF6FF; }
.cs-tag.tag-health   { color: #047857; border-color: #A7F3D0; background: #ECFDF5; }
.cs-tag.tag-mfg      { color: #374151; border-color: #D1D5DB; background: #F9FAFB; }
.cs-tag.tag-domain   { color: var(--teal); border-color: rgba(11,123,138,0.2); background: var(--teal-light); }
.cs-headline {
  font-size: 19px; font-weight: 800; color: var(--navy);
  line-height: 1.35; letter-spacing: -0.3px; margin: 0;
  flex: 1;
}
.cs-download {
  display: inline-flex; align-items: center; gap: 10px;
  color: var(--navy); font-size: 14px; font-weight: 700;
  text-decoration: none; padding: 10px 16px; border-radius: var(--radius);
  border: 1px solid var(--border-strong);
  background: white;
  transition: background 0.15s, color 0.15s, border-color 0.15s;
  align-self: flex-start;
  letter-spacing: 0.01em;
}
.cs-download:hover { background: var(--navy); color: white; border-color: var(--navy); }
.cs-download i { font-size: 12px; }

/* News page */
.news-list { background: white; padding: 80px 48px 96px; }
.news-list-inner { max-width: 1140px; margin: 0 auto; }

/* Featured (top article) */
.news-featured {
  display: block;
  background: var(--navy);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-lg);
  padding: 48px 48px 44px;
  color: white;
  text-decoration: none;
  margin-bottom: 32px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.15s, transform 0.15s;
}
.news-featured:hover { border-color: var(--sky); transform: translateY(-2px); }
.news-featured::after {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 90% 20%, rgba(125,211,252,0.08) 0%, transparent 60%);
  pointer-events: none;
}
.news-featured > * { position: relative; z-index: 1; }
.news-featured-tag {
  display: inline-block; padding: 4px 12px;
  border: 1px solid rgba(125,211,252,0.4); border-radius: var(--radius-sm);
  font-size: 10px; font-weight: 800; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--sky);
  margin-bottom: 22px;
}
.news-featured-meta {
  font-size: 12px; font-weight: 600; letter-spacing: 0.04em;
  color: rgba(255,255,255,0.55); margin-bottom: 18px;
  display: flex; gap: 10px; align-items: center;
}
.news-featured-title {
  font-size: 36px; font-weight: 800; color: white;
  letter-spacing: -0.8px; line-height: 1.15;
  margin-bottom: 18px; max-width: 820px;
}
.news-featured-dek {
  font-size: 16px; color: rgba(255,255,255,0.72);
  line-height: 1.7; max-width: 760px; margin-bottom: 24px;
}
.news-featured .news-link { color: var(--sky); }

/* Grid */
.news-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border); border: 1px solid var(--border);
  border-radius: var(--radius); overflow: hidden;
}
.news-card {
  background: white;
  padding: 28px 28px 32px;
  display: flex; flex-direction: column; gap: 14px;
  text-decoration: none; color: inherit;
  transition: background 0.15s;
  min-height: 280px;
}
.news-card:hover { background: var(--off-white); }
.news-card-eyebrow {
  font-size: 11px; font-weight: 700; letter-spacing: 0.08em;
  color: var(--teal); text-transform: uppercase;
  display: flex; gap: 8px; align-items: center;
}
.news-source { font-weight: 800; }
.news-date { color: var(--mid-grey); font-weight: 600; }
.news-dot { color: var(--mid-grey); }
.news-card-title {
  font-size: 18px; font-weight: 800; color: var(--navy);
  line-height: 1.3; letter-spacing: -0.3px; margin: 0;
  flex: 0 0 auto;
}
.news-card-dek {
  font-size: 14px; color: var(--body-text); line-height: 1.6;
  flex: 1;
}
.news-link {
  font-size: 13px; font-weight: 700; color: var(--teal);
  display: inline-flex; align-items: center; gap: 8px;
  border-bottom: 1px solid transparent; padding-bottom: 2px;
  align-self: flex-start;
}
.news-card:hover .news-link { border-bottom-color: var(--teal); }

/* External coverage indicator */
.news-card-external .news-source { color: var(--navy); }
.news-card-external .news-card-eyebrow { color: var(--navy); }
.news-ext-tag {
  margin-left: auto;
  color: var(--mid-grey); font-size: 10px;
  display: inline-flex; align-items: center;
}
.news-card-external:hover .news-ext-tag { color: var(--teal); }
.news-card-external .news-link i { font-size: 11px; }

/* Coming-soon / placeholder states (pre-launch, no content yet) */
.news-featured-pending { cursor: default; }
.news-featured-pending:hover { border-color: var(--border-dark); transform: none; }
.news-featured-pending .news-featured-dek { color: rgba(255,255,255,0.6); margin-bottom: 22px; }
.news-card-pending { background: var(--off-white); cursor: default; }
.news-card-pending:hover { background: var(--off-white); }
.news-pending-tag {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 4px 12px; border-radius: var(--radius-sm);
  font-size: 10px; font-weight: 800; letter-spacing: 0.16em;
  text-transform: uppercase;
}
.news-featured-pending .news-pending-tag {
  border: 1px solid rgba(125,211,252,0.4);
  color: var(--sky); background: rgba(125,211,252,0.06);
}
.news-card-pending .news-pending-tag {
  border: 1px solid var(--border);
  color: var(--mid-grey); background: white;
}
.skeleton-line {
  height: 13px; border-radius: 6px;
  background: rgba(15,26,58,0.08);
  margin-top: 14px;
}
.skeleton-line-lg { height: 18px; width: 88%; }
.skeleton-line-short { width: 52%; }
.skeleton-line + .skeleton-line { margin-top: 11px; }

/* Press CTA */
.news-press {
  margin-top: 56px;
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 40px;
  display: grid; grid-template-columns: 1fr auto;
  gap: 36px; align-items: center;
}
.news-press-eyebrow {
  font-size: 11px; font-weight: 800; letter-spacing: 0.22em;
  color: var(--teal); text-transform: uppercase; margin-bottom: 10px;
}
.news-press h3 { font-size: 22px; letter-spacing: -0.4px; margin-bottom: 8px; }
.news-press p {
  font-size: 14.5px; color: var(--body-text); line-height: 1.65;
  max-width: 560px;
}

/* News article (template detail page) */
.article-hero {
  position: relative;
  background:
    radial-gradient(130% 150% at 100% 0%, rgba(125,211,252,0.10) 0%, rgba(125,211,252,0) 55%),
    var(--navy);
  padding: clamp(48px, 7vw, 76px) clamp(20px, 5vw, 48px) clamp(40px, 6vw, 64px);
  color: white;
  border-bottom: 1px solid var(--border-dark);
  overflow: hidden;
}
.article-hero::after {
  content: "";
  position: absolute; left: 0; right: 0; bottom: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--teal) 0%, var(--sky) 100%);
}
.article-hero-inner { max-width: 880px; margin: 0 auto; position: relative; }
.article-back {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; font-weight: 700; letter-spacing: 0.08em;
  color: var(--sky); text-decoration: none; text-transform: uppercase;
  margin-bottom: 34px;
  transition: gap 0.15s ease, color 0.15s ease;
}
.article-back:hover { color: white; gap: 12px; }
.article-meta {
  display: flex; gap: 12px; align-items: center; flex-wrap: wrap;
  font-size: 13px; font-weight: 500; letter-spacing: 0.02em;
  color: rgba(255,255,255,0.62); margin-bottom: 22px;
}
.article-meta .news-source {
  display: inline-flex; align-items: center;
  padding: 5px 12px; border-radius: 999px;
  background: rgba(125,211,252,0.12);
  border: 1px solid rgba(125,211,252,0.32);
  color: var(--sky);
  font-size: 11px; font-weight: 700; letter-spacing: 0.10em;
  text-transform: uppercase;
}
.article-meta .news-dot { display: none; }
.article-hero h1 {
  font-size: clamp(29px, 4.4vw, 46px); font-weight: 800; color: white;
  letter-spacing: -1px; line-height: 1.13; margin-bottom: 22px;
}
.article-dek {
  font-size: clamp(17px, 2vw, 20px); color: rgba(255,255,255,0.80);
  line-height: 1.55; max-width: 62ch; font-weight: 400;
}
.article-body { background: white; padding: clamp(48px, 7vw, 76px) clamp(20px, 5vw, 48px) clamp(64px, 8vw, 96px); }
.article-body-inner { max-width: 720px; margin: 0 auto; }
.article-body p {
  font-size: 17px; color: var(--dark-text);
  line-height: 1.8; margin-bottom: 24px;
}
.article-body a {
  color: var(--teal); text-decoration: underline;
  text-decoration-thickness: 1px; text-underline-offset: 2px;
  transition: color 0.15s ease;
}
.article-body a:hover { color: var(--navy); }
.article-body h2 {
  font-size: 22px; font-weight: 800; color: var(--navy);
  margin: 52px 0 16px; letter-spacing: -0.4px;
}
.article-body h2::before {
  content: ""; display: block;
  width: 34px; height: 3px; border-radius: 2px;
  background: var(--teal); margin-bottom: 16px;
}
.article-body blockquote {
  position: relative;
  margin: 40px 0; padding: 28px 30px 26px 32px;
  background: var(--off-white);
  border-left: 3px solid var(--teal);
  border-radius: 0 var(--radius) var(--radius) 0;
  overflow: hidden;
}
.article-body blockquote::before {
  content: "\201C";
  position: absolute; top: 2px; right: 20px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 86px; line-height: 1; color: var(--teal);
  opacity: 0.14; pointer-events: none;
}
.article-body blockquote p {
  position: relative;
  font-size: 21px; font-style: normal; font-weight: 500;
  color: var(--navy); line-height: 1.5; letter-spacing: -0.2px;
  margin-bottom: 16px;
}
.article-body blockquote cite {
  display: block; font-style: normal; margin-top: 14px;
  font-size: 17px; font-weight: 700; letter-spacing: 0.02em;
  color: var(--navy);
}
.article-body blockquote cite::before { content: "\2014  "; color: var(--teal); }
.article-foot {
  border-top: 1px solid var(--border);
  margin-top: 56px; padding-top: 32px;
  display: flex; justify-content: space-between; align-items: center;
  gap: 16px; flex-wrap: wrap;
}
.article-foot-cta {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 700; color: var(--teal); text-decoration: none;
  transition: gap 0.15s ease, color 0.15s ease;
}
.article-foot-cta:hover { color: var(--navy); gap: 12px; }
.article-share {
  display: flex; align-items: center; gap: 12px;
  margin-top: 48px; padding-top: 28px;
  border-top: 1px solid var(--border);
  flex-wrap: wrap;
}
.article-share-label {
  font-size: 13px; font-weight: 700; letter-spacing: 0.06em;
  text-transform: uppercase; color: var(--mid-grey);
  margin-right: 4px;
}
.article-share-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 40px; height: 40px; border-radius: 50%;
  border: 1px solid var(--border-strong); background: #fff;
  text-decoration: none;
  transition: transform 0.15s ease, border-color 0.15s ease, background 0.15s ease;
}
.article-share-icon svg { width: 18px; height: 18px; display: block; fill: var(--navy); transition: fill 0.15s ease; }
.article-share-icon:hover { transform: translateY(-2px); border-color: transparent; }
.article-share-x:hover  { background: #000000; }
.article-share-fb:hover { background: #1877F2; }
.article-share-li:hover { background: #0A66C2; }
.article-share-rd:hover { background: #FF4500; }
.article-share-icon:hover svg { fill: #ffffff; }

/* Case studies (Home) */
.case-studies { background: white; }
.cs-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px;
  max-width: 1140px; margin: 0 auto;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.cs-card {
  background: white;
  padding: 36px 32px;
  display: flex; flex-direction: column; justify-content: space-between;
  min-height: 240px;
  transition: background 0.15s;
  text-decoration: none; color: inherit;
}
.cs-card:hover { background: var(--off-white); }
.cs-allcta { text-align: center; margin-top: 56px; }
.cs-all-link {
  color: white; font-size: 14px; font-weight: 700; letter-spacing: 0.02em;
  text-decoration: none; display: inline-flex; align-items: center; gap: 10px;
  background: var(--teal); border: 1px solid var(--teal);
  padding: 13px 26px;
  border-radius: var(--radius);
  transition: background 0.15s, border-color 0.15s, transform 0.15s;
}
.cs-all-link:hover { background: #0a6571; border-color: #0a6571; transform: translateY(-1px); }
.cs-sector {
  font-size: 10px; font-weight: 800; letter-spacing: 0.22em;
  color: var(--teal); text-transform: uppercase; margin-bottom: 16px;
}
.cs-card p {
  font-size: 17px; color: var(--navy); line-height: 1.5;
  margin-bottom: 24px; font-weight: 600; letter-spacing: -0.2px;
}
.cs-btn {
  font-size: 13px; font-weight: 700; color: var(--teal);
  text-decoration: none; display: inline-flex; align-items: center; gap: 8px;
  border-bottom: 1px solid transparent; padding-bottom: 2px;
  align-self: flex-start;
  transition: border-color 0.15s;
}
.cs-btn:hover { border-bottom-color: var(--teal); }

/* What sets us apart */
.wsa { background: white; }
.wsa-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1px;
  max-width: 1140px; margin: 0 auto;
  background: var(--border); border: 1px solid var(--border);
  border-radius: var(--radius); overflow: hidden;
}
.wsa-card {
  background: white;
  padding: 44px 40px;
  border-radius: 0;
  position: relative;
  transition: background-color 0.25s ease;
}
/* Top accent line — reveals left-to-right on hover */
.wsa-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--teal);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.35s ease;
}
.wsa-card:hover { background-color: var(--off-white); }
.wsa-card:hover::before { transform: scaleX(1); }
.wsa-card h3 {
  font-size: 20px;
  margin-bottom: 10px;
  letter-spacing: -0.4px;
}
.wsa-card p {
  font-size: 14.5px;
  color: var(--body-text);
  line-height: 1.7;
  margin: 0;
}

/* Why Cysecure — 4x1 numbered editorial list (compact) */
.why { background: var(--off-white); padding: 80px 48px; }
.why-list {
  max-width: 1140px; margin: 0 auto;
  padding: 0 24px;
  display: flex; flex-direction: column;
}
.why-row {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 40px;
  padding: 24px 0;
  border-top: 1px solid var(--border);
  align-items: center;
  transition: padding-left 0.25s ease;
}
.why-row:last-child { border-bottom: 1px solid var(--border); }
.why-row:hover { padding-left: 10px; }
.why-num {
  font-size: 64px;
  font-weight: 200;
  color: var(--navy);
  opacity: 0.18;
  line-height: 1.0;
  letter-spacing: -2px;
  font-feature-settings: 'tnum';
  transition: opacity 0.25s ease, color 0.25s ease;
}
.why-row:hover .why-num { opacity: 0.55; color: var(--teal); }
.why-content h3 {
  font-size: 19px;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.4px;
  line-height: 1.25;
  margin-bottom: 6px;
}
.why-content p {
  font-size: 14.5px;
  color: var(--body-text);
  line-height: 1.6;
  max-width: 760px;
  margin: 0;
}

/* How we work (pillars) — 1x4, editorial */
.how { background: var(--navy); color: white; }
.how .eyebrow { color: var(--sky); }
.how h2 { color: white; }
.how-sub { font-size: 17px; color: rgba(255,255,255,0.6); text-align: center; margin-bottom: 64px; }
.how .section-center { margin-bottom: 14px; }

/* Four pillars side by side, full width container */
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Each pillar card — dark panel with top accent stripe and subtle inner glow */
.pillar-card {
  position: relative;
  background: linear-gradient(180deg, rgba(255,255,255,0.025) 0%, rgba(255,255,255,0) 60%), var(--navy-soft);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 14px;
  padding: 38px 26px 32px;
  display: flex; flex-direction: column;
  overflow: hidden;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}
.pillar-card:hover {
  transform: translateY(-3px);
  border-color: rgba(255,255,255,0.14);
  box-shadow: 0 18px 48px rgba(0,0,0,0.35);
}
/* Top accent stripe — color varies per pillar */
.pillar-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--sky);
}
.pillar-card.green::before  { background: linear-gradient(90deg, #6EE7B7, #34D399); }
.pillar-card.mint::before   { background: linear-gradient(90deg, #7DD3FC, #38BDF8); }
.pillar-card.purple::before { background: linear-gradient(90deg, #C4B5FD, #A78BFA); }
.pillar-card.amber::before  { background: linear-gradient(90deg, #FCD34D, #F59E0B); }

/* Pillar one / two / three / four label */
.pillar-badge {
  display: inline-block;
  padding: 0;
  border: none;
  font-size: 10px; font-weight: 800; letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.42);
  margin-bottom: 18px;
}

/* Big pillar name */
.pillar-title {
  font-size: 30px; font-weight: 800;
  color: white;
  letter-spacing: -0.7px;
  line-height: 1.05;
  margin-bottom: 14px;
}

/* Short description sentence */
.pillar-desc {
  font-size: 13.5px; line-height: 1.65;
  color: rgba(255,255,255,0.65);
  margin-bottom: 28px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

/* Steps strip — vertical list, tighter now that bodies are gone */
.pillar-steps {
  display: flex; flex-direction: column; gap: 14px;
  margin-top: auto;
}
.pillar-steps > div {
  padding: 12px 14px;
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 8px;
  transition: background 0.2s ease, border-color 0.2s ease;
}
.pillar-card:hover .pillar-steps > div {
  background: rgba(255,255,255,0.04);
  border-color: rgba(255,255,255,0.09);
}
.pillar-step-label {
  font-size: 9px; font-weight: 700; letter-spacing: 0.22em;
  color: rgba(255,255,255,0.4);
  text-transform: uppercase;
  margin-bottom: 4px;
}
.pillar-step-title {
  font-size: 15px; font-weight: 700;
  color: white;
  letter-spacing: -0.1px;
}
/* Accent dot beside step title — per-pillar color */
.pillar-step-title::before {
  content: '';
  display: inline-block;
  width: 5px; height: 5px;
  border-radius: 50%;
  margin-right: 9px;
  vertical-align: middle;
  background: var(--sky);
  position: relative; top: -2px;
}
.pillar-card.green  .pillar-step-title::before { background: #34D399; }
.pillar-card.mint   .pillar-step-title::before { background: #38BDF8; }
.pillar-card.purple .pillar-step-title::before { background: #A78BFA; }
.pillar-card.amber  .pillar-step-title::before { background: #F59E0B; }

/* CTA panel (Home) */
.cta-panel-wrap { padding: 112px 48px; }
.cta-panel-wrap.spaced { padding-top: 112px; }
.cta-panel {
  background: var(--navy);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-lg); padding: 72px 56px;
  text-align: center;
  max-width: 1240px; margin: 0 auto;
  position: relative; overflow: hidden;
}
.cta-panel::after {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(125,211,252,0.08) 0%, transparent 60%);
  pointer-events: none;
}
.cta-panel-logo {
  width: 48px; height: 48px; background: rgba(255,255,255,0.06);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius); margin: 0 auto 24px;
  display: flex; align-items: center; justify-content: center;
  color: var(--sky); font-size: 20px;
  position: relative; z-index: 1;
}
.cta-panel h2 { color: white; font-size: 42px; margin-bottom: 18px; letter-spacing: -0.8px; position: relative; z-index: 1; }
.cta-panel p {
  color: rgba(255,255,255,0.65); font-size: 16px;
  max-width: 600px; margin: 0 auto 36px; line-height: 1.7;
  position: relative; z-index: 1;
}
.cta-panel-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; position: relative; z-index: 1; }

/* =============================================
   ABOUT PAGE
   ============================================= */
.about-hero {
  background: linear-gradient(160deg, #0A1530 0%, #0E2740 100%);
  padding: 96px 48px 88px;
  position: relative; overflow: hidden;
}
.about-hero::after {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 65% 50%, rgba(11,123,138,0.2) 0%, transparent 60%);
  pointer-events: none;
}
.about-hero-inner { max-width: 1140px; position: relative; z-index: 1; margin: 0 auto; }
.about-hero-inner .hero-eyebrow { color: var(--sky); }
.about-hero h1 {
  font-size: 52px; font-weight: 900; line-height: 1.07;
  color: white; letter-spacing: -1.5px; margin-bottom: 28px;
}
.about-hero h1 em { font-style: normal; color: var(--sky); }
.about-hero-sub {
  font-size: 17px; color: rgba(255,255,255,0.72);
  line-height: 1.75; max-width: 660px; margin-bottom: 40px;
}
.hero-jumplinks { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-jumplink {
  padding: 10px 20px; border-radius: 50px;
  font-size: 13px; font-weight: 700;
  text-decoration: none; transition: transform 0.15s;
}
.hero-jumplink.primary { background: white; color: var(--navy); }
.hero-jumplink.secondary {
  background: rgba(255,255,255,0.12); color: white;
  border: 1px solid rgba(255,255,255,0.25);
}
.hero-jumplink:hover { transform: translateY(-1px); }

.transition-section { background: var(--white); padding: 88px 48px; }
.section-eyebrow {
  font-size: 11px; font-weight: 800; letter-spacing: 0.16em;
  color: var(--teal); text-transform: uppercase; margin-bottom: 12px;
}
.section-heading {
  font-size: 36px; font-weight: 900; color: var(--navy);
  line-height: 1.15; margin-bottom: 16px; letter-spacing: -0.7px;
}
.section-sub {
  font-size: 16px; color: var(--body-text);
  line-height: 1.75; margin-bottom: 48px; max-width: 720px;
}
/* "What happened" body: full container width, tighter gaps between paragraphs */
.transition-section .section-sub { max-width: none; }
.transition-section .section-sub:not(:last-of-type) { margin-bottom: 16px; }

/* Brand flow — 3 stages with arrows between */
.brand-flow {
  display: grid; grid-template-columns: 1fr 56px 1fr 56px 1fr;
  gap: 0; align-items: stretch;
  margin-bottom: 72px;
}
.brand-node {
  background: #EEF1F6;
  border-radius: var(--radius-lg);
  padding: 36px 28px 32px;
  border: 2px solid #94A3B8;
  text-align: center;
  display: flex; flex-direction: column;
  position: relative;
  transition: border-color 0.15s, transform 0.15s;
}
.brand-node:hover { transform: translateY(-2px); border-color: #64748B; }
.brand-node.current {
  background: var(--navy); border-color: var(--navy);
  box-shadow: 0 12px 32px rgba(13,27,62,0.18);
  transform: scale(1.04);
}
.brand-node.current:hover { transform: scale(1.04) translateY(-2px); }
.brand-node.future { background: var(--teal); border-color: var(--teal); }
.brand-node-label {
  font-size: 11px; font-weight: 800; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--mid-grey); margin-bottom: 14px;
}
.brand-node.current .brand-node-label { color: rgba(255,255,255,0.6); }
.brand-node.future  .brand-node-label { color: rgba(255,255,255,0.7); }
.brand-node-name {
  font-size: 22px; font-weight: 900; color: var(--navy);
  line-height: 1.15; margin-bottom: 14px; letter-spacing: -0.3px;
}
.brand-node.current .brand-node-name,
.brand-node.future  .brand-node-name { color: white; }
.brand-node-name-sub {
  display: block;
  font-size: 13px; font-weight: 600;
  letter-spacing: 0; line-height: 1.3;
  margin-top: 3px;
  color: var(--mid-grey);
}
.brand-node.current .brand-node-name-sub { color: rgba(255,255,255,0.6); }
.brand-node-desc {
  font-size: 13.5px; color: var(--body-text);
  line-height: 1.65; margin-top: auto;
}
.brand-node.current .brand-node-desc,
.brand-node.future  .brand-node-desc { color: rgba(255,255,255,0.82); }
.brand-arrow {
  text-align: center; font-size: 18px;
  color: var(--mid-grey);
  display: flex; align-items: center; justify-content: center;
  align-self: center;
}

/* Key facts — three context cards below the brand flow */
.key-facts {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.key-fact {
  padding: 36px 32px;
  background: white;
  display: flex; flex-direction: column;
  transition: background 0.15s;
}
.key-fact:hover { background: var(--off-white); }
.key-fact-icon {
  font-size: 18px; margin-bottom: 20px; color: var(--teal);
  width: 48px; height: 48px; border-radius: var(--radius);
  background: var(--teal-light);
  border: 1px solid rgba(11,123,138,0.18);
  display: flex; align-items: center; justify-content: center;
}
.key-fact-title {
  font-size: 17px; font-weight: 800; color: var(--navy);
  margin-bottom: 10px; letter-spacing: -0.2px;
}
.key-fact-text {
  font-size: 14.5px; color: var(--body-text); line-height: 1.7;
}

.investor-section { background: var(--navy); padding: 72px 48px; }
.investor-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 64px; align-items: center;
  max-width: 1100px; margin: 0 auto;
}
.investor-text .eyebrow { color: var(--sky); }
.investor-text h2 {
  font-size: 34px; color: white;
  margin-bottom: 20px; letter-spacing: -0.6px;
}
.investor-text p {
  font-size: 16px; color: rgba(255,255,255,0.7);
  line-height: 1.8; margin-bottom: 20px;
}
.investor-cards { display: flex; flex-direction: column; gap: 18px; }
.investor-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 14px; padding: 24px 26px;
}
.investor-card-label {
  font-size: 11px; font-weight: 800; letter-spacing: 0.12em;
  text-transform: uppercase; color: rgba(125,211,252,0.7); margin-bottom: 8px;
}
.investor-card-text {
  font-size: 15px; color: white; font-weight: 600; line-height: 1.5;
}

/* For Our Clients / For Our People */
.clients-section { background: var(--off-white); padding: 88px 48px; }
.people-section  { background: var(--white);     padding: 88px 48px; }
.audience-header { display: flex; align-items: center; gap: 16px; margin-bottom: 28px; }
.audience-badge {
  padding: 6px 16px; border-radius: 20px;
  font-size: 11px; font-weight: 800; letter-spacing: 0.12em;
  text-transform: uppercase; background: var(--teal); color: white;
}
.audience-badge.people { background: #D97706; }
.audience-heading {
  font-size: 34px; font-weight: 900; color: var(--navy);
  letter-spacing: -0.6px; line-height: 1.15; margin-bottom: 16px;
}
.audience-intro {
  font-size: 16px; color: var(--body-text);
  line-height: 1.8; max-width: 800px; margin-bottom: 40px;
}
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.continuity-card {
  background: white; border-radius: 16px;
  padding: 32px 28px; border: 1px solid var(--border);
}
.continuity-card.change { background: var(--navy); }
.continuity-title {
  font-size: 13px; font-weight: 800; letter-spacing: 0.1em;
  text-transform: uppercase; margin-bottom: 20px;
  display: flex; align-items: center; gap: 10px;
}
.continuity-title.stays { color: var(--teal); }
.continuity-title.gains { color: var(--sky); }
.continuity-dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
.continuity-dot.stays { background: var(--teal); }
.continuity-dot.gains { background: var(--sky); }
.continuity-list { list-style: none; padding: 0; }
.continuity-list li {
  font-size: 14px; color: var(--body-text);
  padding: 10px 0; border-bottom: 1px solid #F0F2F5;
  line-height: 1.55; display: flex; align-items: flex-start; gap: 10px;
}
.continuity-list li:last-child { border-bottom: none; padding-bottom: 0; }
.continuity-card.change .continuity-list li {
  color: rgba(255,255,255,0.8);
  border-color: rgba(255,255,255,0.1);
}
.continuity-list li::before {
  content: ''; width: 6px; height: 6px; border-radius: 50%;
  flex-shrink: 0; margin-top: 8px;
}
.stays li::before { background: #10B981; }
.gains li::before { background: var(--sky); }

.people-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.people-card {
  background: var(--off-white); border-radius: 16px;
  padding: 28px 24px; border: 1px solid var(--border);
  position: relative; overflow: hidden;
}
.people-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, #F59E0B, #FCD34D);
}
.people-card-icon {
  width: 44px; height: 44px; border-radius: 11px;
  background: #FEF3C7; color: #D97706;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px; font-size: 18px;
}
.people-card h3 { font-size: 16px; font-weight: 800; color: var(--navy); margin-bottom: 8px; }
.people-card p { font-size: 13px; color: var(--body-text); line-height: 1.65; }

.people-commitment {
  margin-top: 36px; background: var(--navy);
  border-radius: 16px; padding: 36px 40px;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 48px; align-items: center;
}
.commitment-text h3 {
  font-size: 22px; font-weight: 900; color: white;
  margin-bottom: 14px; line-height: 1.3;
}
.commitment-text p { font-size: 14px; color: rgba(255,255,255,0.7); line-height: 1.75; }
.commitment-list { list-style: none; padding: 0; }
.commitment-list li {
  font-size: 14px; color: rgba(255,255,255,0.8);
  padding: 11px 0; border-bottom: 1px solid rgba(255,255,255,0.08);
  display: flex; gap: 12px; align-items: flex-start;
}
.commitment-list li:last-child { border-bottom: none; }
.commitment-list li::before { content: '\2192'; color: var(--sky); font-weight: 700; flex-shrink: 0; }

/* Vision section */
.vision-section { background: var(--navy); padding: 88px 48px; }
.vision-section .section-eyebrow { color: var(--sky); }
.vision-heading {
  font-size: 40px; font-weight: 900; color: white;
  line-height: 1.1; margin-bottom: 20px; letter-spacing: -1px;
}
.vision-heading em { font-style: normal; color: var(--sky); }
.vision-sub {
  font-size: 16px; color: rgba(255,255,255,0.6);
  line-height: 1.8; max-width: 720px; margin-bottom: 56px;
}
.vision-sub:not(:last-of-type) { margin-bottom: 16px; }
.vision-pillars { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.vision-pillar {
  background: rgba(255,255,255,0.05); border-radius: 16px; padding: 32px 28px;
  border: 1px solid rgba(255,255,255,0.08);
}
.vision-pillar-num {
  font-size: 11px; font-weight: 800;
  color: rgba(125,211,252,0.5); letter-spacing: 0.1em; margin-bottom: 12px;
}
.vision-pillar h3 {
  font-size: 18px; font-weight: 800; color: white;
  margin-bottom: 12px; line-height: 1.3;
}
.vision-pillar p { font-size: 13px; color: rgba(255,255,255,0.65); line-height: 1.7; }

/* Leadership */
.leadership-section { background: var(--off-white); padding: 88px 48px; }
.tier-block { margin-bottom: 56px; }
.tier-block:last-child { margin-bottom: 0; }
.tier-label {
  font-size: 11px; font-weight: 800; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--mid-grey);
  margin-bottom: 24px; padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}
.exec-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.exec-card {
  background: white; border-radius: 18px; border: 1px solid var(--border);
  overflow: hidden; transition: box-shadow 0.2s, transform 0.15s;
  display: flex; flex-direction: column;
}
.exec-card:hover {
  box-shadow: var(--card-shadow-hover);
  transform: translateY(-3px);
}
.exec-photo {
  width: 100%; height: 200px;
  background: linear-gradient(160deg, #F0F2F5 0%, #E5E7EB 100%);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 10px;
  position: relative; flex-shrink: 0;
}
.exec-photo-silhouette {
  width: 72px; height: 72px; border-radius: 50%;
  background: #D1D5DB; display: flex; align-items: center; justify-content: center;
  color: var(--mid-grey); font-size: 30px;
  box-shadow: 0 0 0 6px rgba(209,213,219,0.4);
}
.exec-photo-label {
  font-size: 10px; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: #B0B7C3;
  background: white; padding: 4px 10px; border-radius: 20px;
  border: 1px solid var(--border);
}
.exec-photo-initials {
  position: absolute; bottom: 12px; left: 12px;
  width: 36px; height: 36px; border-radius: 9px;
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 800; color: white;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}
.exec-body { padding: 22px 22px 26px; display: flex; flex-direction: column; flex: 1; }
.exec-name { font-size: 17px; font-weight: 800; color: var(--navy); margin-bottom: 3px; }
.exec-title {
  font-size: 11px; font-weight: 700; color: var(--teal);
  text-transform: uppercase; letter-spacing: 0.07em; margin-bottom: 14px;
}
.exec-bio { font-size: 13px; color: var(--body-text); line-height: 1.7; flex: 1; }
.bio-pending {
  font-size: 11px; color: var(--mid-grey); font-style: italic;
  margin-top: 10px; padding-top: 10px; border-top: 1px solid #F0F2F5;
}

/* Senior leadership: compact, matches practice directors (image + name + title only) */
.senior-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.senior-card {
  background: white; border-radius: var(--radius);
  border: 1px solid var(--border);
  overflow: hidden; display: flex;
  transition: border-color 0.15s, transform 0.15s;
}
.senior-card:hover { border-color: var(--navy); transform: translateY(-2px); }
.senior-photo {
  width: 96px; flex-shrink: 0;
  background: linear-gradient(160deg, #F0F2F5 0%, #E5E7EB 100%);
  display: flex; align-items: center; justify-content: center;
  position: relative;
}
.senior-photo-circle {
  width: 44px; height: 44px; border-radius: 50%;
  background: #D1D5DB; display: flex; align-items: center; justify-content: center;
  color: var(--mid-grey); font-size: 18px;
}
.senior-photo-initials {
  position: absolute; bottom: 8px; left: 8px;
  width: 26px; height: 26px; border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  font-size: 10px; font-weight: 800; color: white;
}
.senior-body { padding: 18px 20px; display: flex; flex-direction: column; justify-content: center; }
.senior-name { font-size: 15px; font-weight: 700; color: var(--navy); margin-bottom: 4px; letter-spacing: -0.2px; }
.senior-title {
  font-size: 11px; font-weight: 700; color: var(--teal);
  text-transform: uppercase; letter-spacing: 0.08em;
}

.director-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.director-card {
  background: white; border-radius: 12px; border: 1px solid var(--border);
  overflow: hidden; display: flex;
}
.director-photo {
  width: 80px; flex-shrink: 0;
  background: linear-gradient(160deg, #F0F2F5 0%, #E5E7EB 100%);
  display: flex; align-items: center; justify-content: center;
  position: relative;
}
.director-photo-circle {
  width: 38px; height: 38px; border-radius: 50%;
  background: #D1D5DB; display: flex; align-items: center; justify-content: center;
  color: var(--mid-grey); font-size: 16px;
}
.director-photo-initials {
  position: absolute; bottom: 6px; left: 6px;
  width: 22px; height: 22px; border-radius: 5px;
  display: flex; align-items: center; justify-content: center;
  font-size: 9px; font-weight: 800; color: white; background: #4B5563;
}
.director-body { padding: 14px 14px; }
.director-name { font-size: 13px; font-weight: 700; color: var(--navy); margin-bottom: 2px; }
.director-title { font-size: 11px; color: var(--mid-grey); font-weight: 500; }

/* Unified leadership bios — 3 columns × 5 rows. Horizontal card:
   rectangular headshot on left, name + title (and view-profile) stacked right. */
.bio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1140px; margin: 0 auto;
}
.bio-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px;
  display: grid;
  grid-template-columns: 180px 1fr;
  column-gap: 22px;
  align-items: center;
  text-align: left;
  transition: border-color 0.15s, transform 0.15s, box-shadow 0.15s;
}
.bio-card:hover { border-color: var(--navy); transform: translateY(-2px); }
.bio-photo {
  width: 180px; height: 225px;
  border-radius: 8px;
  background: linear-gradient(160deg, #F0F2F5 0%, #E5E7EB 100%);
  display: flex; align-items: center; justify-content: center;
  color: var(--mid-grey); font-size: 36px;
  flex-shrink: 0;
  overflow: hidden;
  position: relative;
}
.bio-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 22%;
  display: block;
}
.bio-info {
  display: flex; flex-direction: column;
  justify-content: center;
  gap: 4px;
  min-width: 0;
}
.bio-name {
  font-size: 19px; font-weight: 800; color: var(--navy);
  letter-spacing: -0.4px;
  line-height: 1.2;
}
.bio-title {
  font-size: 12.5px; font-weight: 500;
  color: var(--mid-grey);
  letter-spacing: 0.01em;
  line-height: 1.4;
}
.bio-text {
  font-size: 13px; color: var(--body-text);
  line-height: 1.6;
}
@media (max-width: 960px) {
  .bio-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .bio-grid { grid-template-columns: 1fr; }
  .bio-title { min-height: 0; }
}

/* CTA strip (About) */
.cta-strip { background: var(--teal); padding: 88px 48px; text-align: center; }
.cta-strip h2 {
  font-size: 38px; font-weight: 900; color: white;
  margin-bottom: 16px; letter-spacing: -0.8px; line-height: 1.15;
}
.cta-strip p {
  font-size: 16px; color: rgba(255,255,255,0.85);
  margin-bottom: 32px; max-width: 520px; margin-left: auto; margin-right: auto;
  line-height: 1.7;
}
.cta-strip .cta-btn {
  display: inline-block; background: white; color: var(--teal);
  padding: 15px 34px; border-radius: 50px;
  font-size: 15px; font-weight: 800; text-decoration: none;
  transition: transform 0.15s;
}
.cta-strip .cta-btn:hover { transform: translateY(-2px); }

/* =============================================
   SERVICES PAGE
   ============================================= */
.page-hero {
  background: linear-gradient(160deg, #0A1530 0%, #0E2740 100%);
  padding: 96px 48px 88px;
  position: relative; overflow: hidden;
}
.page-hero::before {
  position: absolute; bottom: -20px; right: -10px;
  font-size: 160px; font-weight: 900;
  color: rgba(255,255,255,0.04); letter-spacing: -4px;
  pointer-events: none;
}
.page-hero.services::before { content: 'Services'; }
.page-hero.industries::before { content: 'Industries'; }
.page-hero.contact::before    { content: 'Contact'; }
.page-hero-inner { max-width: 1140px; position: relative; z-index: 1; margin: 0 auto; }
.page-hero-eyebrow {
  font-size: 11px; font-weight: 700; letter-spacing: 0.18em;
  color: var(--sky); text-transform: uppercase; margin-bottom: 18px;
}
.page-hero-eyebrow span { opacity: 0.45; margin: 0 6px; }
.page-hero h1 {
  font-size: 52px; font-weight: 900; line-height: 1.08;
  color: white; margin-bottom: 22px; letter-spacing: -1.5px;
}
.page-hero-sub {
  font-size: 16px; color: rgba(255,255,255,0.72);
  line-height: 1.75; max-width: 640px;
}
.page-hero-sub + .page-hero-sub { margin-top: 14px; }

.practice-overview { background: var(--off-white); padding: 72px 48px; }
.practice-overview-header { text-align: center; margin-bottom: 52px; }
.practice-overview-header h2 {
  font-size: 34px; color: var(--navy); margin-bottom: 14px;
}
.practice-overview-header p {
  font-size: 16px; color: var(--body-text);
  max-width: 600px; margin: 0 auto; line-height: 1.7;
}

.practice-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
  max-width: 1100px; margin: 0 auto;
}
.practice-card {
  background: white; border-radius: 16px;
  overflow: hidden; box-shadow: var(--card-shadow);
  transition: transform 0.15s, box-shadow 0.15s;
  text-decoration: none; color: inherit;
  display: flex; flex-direction: column;
}
.practice-card:hover { transform: translateY(-3px); box-shadow: 0 8px 32px rgba(0,0,0,0.12); }
.practice-card-top {
  height: 120px; display: flex; align-items: flex-end;
  padding: 20px; position: relative; overflow: hidden;
}
.practice-card-top::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to bottom, transparent 30%, rgba(0,0,0,0.35));
}
.practice-card-num {
  font-size: 10px; font-weight: 800; letter-spacing: 0.15em;
  color: rgba(255,255,255,0.6); text-transform: uppercase;
  position: relative; z-index: 1;
}
.practice-card-body {
  padding: 22px 22px 28px; flex: 1;
  display: flex; flex-direction: column;
}
.practice-card-title { font-size: 18px; font-weight: 800; color: var(--navy); margin-bottom: 6px; line-height: 1.2; }
.practice-card-tag {
  font-size: 13px; font-style: italic; color: var(--teal);
  margin-bottom: 16px; line-height: 1.45; font-weight: 500;
}
.practice-card-services {
  list-style: none; padding: 0;
  border-top: 1px solid var(--border); padding-top: 16px; flex: 1;
}
.practice-card-services li {
  font-size: 13px; color: var(--body-text);
  padding: 5px 0 5px 14px; position: relative; line-height: 1.45;
}
.practice-card-services li::before {
  content: '\2014'; position: absolute; left: 0;
  color: var(--teal); font-size: 11px; top: 7px;
}
.practice-card-link {
  margin-top: 18px; font-size: 13px; font-weight: 700;
  color: var(--teal); display: flex; align-items: center; gap: 4px;
}

/* Practice card tops: muted single tones, one subtle accent per category */
.ct-ai    { background: #0E1F22; }
.ct-risk  { background: #0F1A2E; }
.ct-cloud { background: #0E1B26; }
.ct-iam   { background: #161426; }
.ct-spm   { background: #11221A; }
.ct-data  { background: #1E1518; }
.ct-ir    { background: #1B1611; }

/* Center the orphan 7th service card on Home */
.services-grid .service-card:nth-child(7):nth-last-child(1) { grid-column: 2; }
.practice-card.wide { grid-column: 2; }

.creds-bar { background: var(--navy); padding: 52px 48px; }
.creds-bar-inner {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px;
  background: rgba(255,255,255,0.1); border-radius: 12px; overflow: hidden;
}
.cred-item { background: rgba(255,255,255,0.05); padding: 28px 24px; text-align: center; }
.cred-num { font-size: 38px; font-weight: 900; color: white; display: block; line-height: 1; margin-bottom: 8px; }
.cred-label { font-size: 13px; color: rgba(255,255,255,0.6); line-height: 1.4; }

.certs-box {
  max-width: 1100px; margin: 32px auto 0;
  padding: 24px 28px;
  background: rgba(255,255,255,0.06);
  border-radius: 12px; border: 1px solid rgba(255,255,255,0.1);
}
.certs-label {
  font-size: 11px; font-weight: 800; letter-spacing: 0.15em;
  color: rgba(255,255,255,0.4); text-transform: uppercase; margin-bottom: 14px;
}
.certs-pills { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 16px; }
.cert-pill {
  background: rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.85);
  border-radius: 20px; padding: 5px 13px;
  font-size: 12px; font-weight: 600;
}
.cert-pill.compliance { background: rgba(11,123,138,0.35); color: rgba(255,255,255,0.9); }

.practice-section {
  padding: 80px 48px;
  border-bottom: 1px solid var(--border);
}
.practice-section:nth-child(odd)  { background: var(--white); }
.practice-section:nth-child(even) { background: var(--off-white); }
.practice-inner {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: 320px 1fr; gap: 72px;
  align-items: start;
}
.practice-left { position: sticky; top: 84px; }
.practice-number {
  font-size: 11px; font-weight: 800; letter-spacing: 0.15em;
  color: var(--mid-grey); text-transform: uppercase; margin-bottom: 10px;
}
.practice-icon {
  width: 52px; height: 52px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px; color: white; font-size: 22px;
}
.practice-title {
  font-size: 26px; font-weight: 800;
  color: var(--navy); line-height: 1.2; margin-bottom: 10px;
}
.practice-tag {
  font-size: 14px; font-style: italic; color: var(--teal);
  margin-bottom: 20px; line-height: 1.5; font-weight: 500;
}
.practice-creds { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 20px; }
.practice-cred-chip {
  background: var(--teal-light);
  border: 1px solid rgba(11,123,138,0.2);
  border-radius: 20px; padding: 6px 14px;
  font-size: 12px; font-weight: 700; color: var(--teal);
}

.practice-overview-p {
  font-size: 15px; color: var(--body-text);
  line-height: 1.8; margin-bottom: 36px;
  padding-bottom: 36px; border-bottom: 1px solid var(--border);
}
.practice-block { margin-bottom: 32px; }
.practice-block:last-child { margin-bottom: 0; }
.practice-block-title {
  font-size: 12px; font-weight: 800; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--navy);
  margin-bottom: 14px; display: flex; align-items: center; gap: 8px;
}
.practice-block-title::after { content: ''; flex: 1; height: 1px; background: var(--border); }

.trigger-list {
  list-style: none; padding: 0;
  display: flex; flex-direction: column; gap: 9px;
}
.trigger-list li {
  font-size: 14px; color: var(--body-text); line-height: 1.6;
  padding: 12px 16px;
  background: #F9FAFB; border-radius: 8px; border: 1px solid var(--border);
  border-left: 2px solid var(--teal);
}

.service-list {
  list-style: none; padding: 0;
  display: grid; grid-template-columns: 1fr 1fr; gap: 10px;
}
.service-list li {
  font-size: 14px; line-height: 1.5;
  padding: 12px 14px 12px 38px;
  background: var(--navy); border-radius: 8px;
  color: rgba(255,255,255,0.88);
  position: relative;
}
.service-list li::before {
  content: '\2192'; position: absolute; left: 14px; top: 13px;
  font-size: 13px; color: var(--sky);
}

/* =============================================
   INDUSTRIES PAGE
   ============================================= */
.industry-tabs-section { background: var(--off-white); padding: 72px 48px; }
.industry-tabs-inner { max-width: 1100px; margin: 0 auto; }
.tile-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
  margin-bottom: 40px;
}
.ind-tile {
  border: none; background: none; cursor: pointer; text-align: left;
  padding: 0; border-radius: 14px; overflow: hidden;
  transition: transform 0.15s, box-shadow 0.15s;
}
.ind-tile:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(0,0,0,0.16); }
.ind-tile:focus-visible {
  outline: 2px solid var(--teal);
  outline-offset: 3px;
}
.ind-tile.active {
  transform: translateY(-2px);
  box-shadow: 0 0 0 3px white, 0 0 0 4px var(--teal);
}
.tile-inner {
  height: 150px; padding: 18px;
  display: flex; flex-direction: column;
  justify-content: space-between;
  position: relative; overflow: hidden;
}
.tile-inner::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.55) 0%, transparent 55%);
}
.tile-icon { position: relative; z-index: 1; color: rgba(255,255,255,0.9); font-size: 24px; }
.tile-label { position: relative; z-index: 1; }
.tile-name { font-size: 14px; font-weight: 800; color: white; line-height: 1.25; }
.tile-sub  { font-size: 11px; color: rgba(255,255,255,0.65); margin-top: 2px; }

/* Muted, near-monochrome tile palette (subtle hue per sector, not a Crayola box) */
.tile-energy  .tile-inner { background: #0F1A2E; }
.tile-energy  .tile-icon  { color: #F59E0B; }
.tile-finance .tile-inner { background: #0E1A2E; }
.tile-finance .tile-icon  { color: #60A5FA; }
.tile-health  .tile-inner { background: #0E1F22; }
.tile-health  .tile-icon  { color: #5EEAD4; }
.tile-mfg     .tile-inner { background: #131820; }
.tile-mfg     .tile-icon  { color: #9CA3AF; }
.tile-retail  .tile-inner { background: #1E1417; }
.tile-retail  .tile-icon  { color: #F87171; }
.tile-tmt     .tile-inner { background: #161426; }
.tile-tmt     .tile-icon  { color: #A78BFA; }
.tile-legal   .tile-inner { background: #1B1611; }
.tile-legal   .tile-icon  { color: #FBBF24; }
.tile-lifesci .tile-inner { background: #0F1C18; }
.tile-lifesci .tile-icon  { color: #34D399; }
.ind-tile { border: 1px solid var(--border-dark); }
.tile-inner::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.55) 0%, transparent 65%);
}

.content-panel {
  background: white; border-radius: 20px;
  box-shadow: 0 4px 32px rgba(0,0,0,0.08);
  overflow: hidden;
  display: grid; grid-template-columns: 260px 1fr;
  min-height: 420px;
}
.panel-left {
  padding: 40px 32px;
  display: flex; flex-direction: column;
  border-right: 1px solid var(--border);
}
.panel-accent { width: 36px; height: 4px; border-radius: 4px; margin-bottom: 20px; }
.panel-sector-label {
  font-size: 11px; font-weight: 800; letter-spacing: 0.14em;
  color: var(--mid-grey); text-transform: uppercase; margin-bottom: 8px;
}
.panel-sector-name {
  font-size: 22px; font-weight: 800; color: var(--navy);
  line-height: 1.2; margin-bottom: 28px;
}
.panel-client-label {
  font-size: 11px; font-weight: 800; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--mid-grey); margin-bottom: 12px;
}
.panel-clients {
  list-style: none; padding: 0;
  display: flex; flex-direction: column; gap: 8px;
}
.panel-clients li {
  font-size: 13px; color: var(--body-text);
  padding-left: 14px; position: relative; line-height: 1.45;
}
.panel-clients li::before {
  content: '\2022'; position: absolute; left: 3px;
  font-size: 14px; line-height: 1.1; color: var(--teal);
}
.panel-right { padding: 40px 44px; }
.panel-overview {
  font-size: 15px; color: var(--body-text);
  line-height: 1.85; margin-bottom: 32px;
  padding-bottom: 32px; border-bottom: 1px solid #F3F4F6;
}
.panel-block-label {
  font-size: 11px; font-weight: 800; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--dark-text);
  margin-bottom: 14px;
  display: flex; align-items: center; gap: 8px;
}
.panel-block-label::after { content: ''; flex: 1; height: 1px; background: var(--border); }
.panel-pills { display: flex; flex-wrap: wrap; gap: 9px; margin-bottom: 28px; }
.panel-pill {
  padding: 7px 15px; border-radius: 50px;
  font-size: 13px; font-weight: 600; border: 1.5px solid;
  white-space: nowrap;
}
.panel-services { display: grid; grid-template-columns: 1fr 1fr; gap: 9px; }
.panel-service {
  background: var(--navy); color: rgba(255,255,255,0.88);
  border-radius: 8px; padding: 11px 14px 11px 36px;
  font-size: 13px; line-height: 1.45; position: relative;
}
.panel-service::before {
  content: '\2192'; position: absolute; left: 13px; top: 12px;
  font-size: 12px; color: var(--sky);
}

/* Stats bar (Industries / Services share) */
.stats-section { background: var(--navy); padding: 60px 48px; }
.stats-section-inner {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px;
  background: rgba(255,255,255,0.1); border-radius: 14px; overflow: hidden;
}

/* =============================================
   CONTACT PAGE
   ============================================= */
.contact-hero {
  background: linear-gradient(160deg, #0A1530 0%, #0E2740 100%);
  padding: 80px 48px 72px;
  position: relative; overflow: hidden;
}
.contact-hero::before {
  content: 'Contact';
  position: absolute; bottom: -30px; right: -10px;
  font-size: 140px; font-weight: 900;
  color: rgba(255,255,255,0.03); letter-spacing: -4px;
  pointer-events: none;
}
.contact-hero-inner { max-width: 1140px; margin: 0 auto; position: relative; z-index: 1; }
.contact-hero-inner .hero-eyebrow,
.contact-hero-inner .page-hero-eyebrow { color: var(--sky); }
.contact-hero h1 {
  font-size: 48px; font-weight: 900; line-height: 1.1;
  color: white; margin-bottom: 20px; letter-spacing: -1.5px;
}
.contact-hero-sub {
  font-size: 16px; color: rgba(255,255,255,0.72);
  line-height: 1.75; max-width: 600px;
}

.contact-main { padding: 80px 48px; background: white; }
.contact-main-inner {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1.4fr; gap: 72px;
  align-items: start;
}
.contact-detail-label {
  font-size: 11px; font-weight: 800; letter-spacing: 0.14em;
  color: var(--mid-grey); text-transform: uppercase; margin-bottom: 24px;
}
.contact-details {
  display: flex; flex-direction: column; gap: 20px; margin-bottom: 48px;
}
.contact-detail-card {
  display: flex; gap: 16px; align-items: flex-start;
  padding: 20px; border-radius: 12px;
  border: 1px solid var(--border); background: var(--off-white);
}
.contact-detail-icon {
  width: 40px; height: 40px; border-radius: 10px;
  background: var(--navy); flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  color: white; font-size: 16px;
}
.contact-detail-type {
  font-size: 11px; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--mid-grey); margin-bottom: 4px;
}
.contact-detail-value {
  font-size: 15px; font-weight: 600; color: var(--navy);
  text-decoration: none; line-height: 1.5;
}
.contact-detail-value:hover { color: var(--teal); }
.contact-detail-sub { font-size: 13px; color: var(--body-text); margin-top: 2px; line-height: 1.5; }

.expect-box { background: var(--navy); border-radius: 16px; padding: 28px; }
.expect-title { font-size: 14px; font-weight: 800; color: white; margin-bottom: 16px; }
.expect-steps { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 14px; }
.expect-step { display: flex; gap: 12px; align-items: flex-start; }
.expect-step-num {
  width: 24px; height: 24px; border-radius: 50%;
  background: rgba(125,211,252,0.15);
  border: 1px solid rgba(125,211,252,0.3);
  font-size: 11px; font-weight: 800; color: var(--sky);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; margin-top: 1px;
}
.expect-step-text { font-size: 13px; color: rgba(255,255,255,0.75); line-height: 1.6; }
.expect-step-text strong { color: white; font-weight: 600; }

.contact-form-wrap {
  background: var(--off-white); border-radius: 20px;
  padding: 44px 40px; border: 1px solid var(--border);
}
.form-heading { font-size: 24px; font-weight: 800; color: var(--navy); margin-bottom: 6px; }
.form-sub { font-size: 14px; color: var(--body-text); margin-bottom: 32px; line-height: 1.6; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.form-group label {
  font-size: 12px; font-weight: 700;
  color: var(--dark-text); letter-spacing: 0.04em;
}
.form-group input,
.form-group textarea,
.form-group select {
  padding: 12px 16px; border-radius: 8px;
  border: 1.5px solid var(--border); background: white;
  font-size: 14px; color: var(--dark-text);
  font-family: inherit; outline: none;
  transition: border-color 0.15s;
  width: 100%;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus { border-color: var(--teal); }
.form-group textarea { resize: vertical; min-height: 140px; }
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--mid-grey); }

/* Honeypot — hidden from real users */
.honeypot { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.form-submit {
  width: 100%; padding: 14px;
  background: var(--navy); color: white;
  border: none; border-radius: 50px;
  font-size: 15px; font-weight: 700;
  cursor: pointer; letter-spacing: 0.02em;
  transition: background 0.15s;
  font-family: inherit;
  margin-top: 8px;
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
}
.form-submit:hover { background: var(--navy-hover); }
.form-note { font-size: 12px; color: var(--mid-grey); text-align: center; margin-top: 14px; line-height: 1.6; }
.form-note a { color: var(--teal); text-decoration: none; }
.form-note a:hover { text-decoration: underline; }

.form-fieldset {
  border: none; padding: 0; margin: 0;
}
.form-legend {
  position: absolute; left: -9999px;
  width: 1px; height: 1px; overflow: hidden;
}
.form-success,
.form-error {
  display: none;
  border-radius: 12px; padding: 20px; margin-bottom: 16px;
  font-size: 14px; line-height: 1.6;
}
.form-success {
  background: #ECFDF5; border: 1px solid #6EE7B7; color: #065F46;
}
.form-error {
  background: #FEF2F2; border: 1px solid #FECACA; color: #991B1B;
}
.form-success.show,
.form-error.show { display: block; }

.form-submit .form-submit-loading { display: none; }
.form-submit.is-loading .form-submit-label { display: none; }
.form-submit.is-loading .form-submit-loading { display: inline; }
.form-submit:disabled { opacity: 0.7; cursor: progress; }

.nav-cta-active { background: var(--teal); }
.nav-cta-active:hover { background: #0a6571; }

.strip-icon-alert { background: #FEE2E2; color: #DC2626; }
.strip-label-alert { color: #DC2626; }
.strip-sub-tight { margin-bottom: 6px; }

.contact-strip {
  background: var(--off-white); padding: 60px 48px;
  border-top: 1px solid var(--border);
}
.contact-strip-inner {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px;
}
.strip-card { display: flex; flex-direction: column; gap: 6px; }
.strip-icon {
  width: 44px; height: 44px; border-radius: 12px;
  background: var(--teal-light); color: var(--teal); font-size: 18px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 8px;
}
.strip-label {
  font-size: 11px; font-weight: 800; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--mid-grey);
}
.strip-value {
  font-size: 15px; font-weight: 600; color: var(--navy);
  text-decoration: none;
}
.strip-value:hover { color: var(--teal); }
.strip-sub { font-size: 13px; color: var(--body-text); line-height: 1.55; }
.ir-call-btn {
  display: inline-flex; align-items: center; gap: 8px;
  background: #DC2626; color: white;
  padding: 10px 18px; border-radius: 50px;
  font-size: 14px; font-weight: 700; text-decoration: none;
  letter-spacing: 0.01em; transition: background 0.15s;
  width: fit-content; margin-top: 6px;
}
.ir-call-btn:hover { background: #B91C1C; }

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 960px) {
  nav.site-nav { padding: 0 20px; }
  .nav-toggle { display: inline-flex; }
  .nav-cta { padding: 8px 14px; font-size: 13px; }
  .nav-attribution-main { font-size: 18px; }
  .nav-attribution-sub { font-size: 13px; }
  .nav-mark-img { height: 40px; }

  /* Mobile menu (toggled via JS). Animates open/close. */
  .nav-links {
    display: flex; flex-direction: column;
    position: absolute; top: 100%; left: 0; right: 0;
    background: white; border-bottom: 1px solid var(--border);
    padding: 16px 20px; gap: 4px; align-items: stretch;
    box-shadow: 0 12px 32px rgba(0,0,0,0.10);
    visibility: hidden; opacity: 0; transform: translateY(-8px);
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0s linear 0.2s;
  }
  .nav-links.open {
    visibility: visible; opacity: 1; transform: translateY(0);
    pointer-events: auto;
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0s linear 0s;
  }
  .nav-links.open > li { width: 100%; }
  .nav-links.open a { padding: 12px 0; display: block; }
  .nav-links.open .nav-dropdown-menu { display: none; }
  .nav-links.open .nav-dropdown > a .chev { display: none; }

  section, .heritage, .what-we-do, .dark-panel, .wsa,
  .why, .how, .cta-panel-wrap,
  .about-hero, .transition-section, .clients-section, .people-section,
  .investor-section, .vision-section, .leadership-section, .cta-strip,
  .page-hero, .practice-overview, .creds-bar, .practice-section,
  .industry-tabs-section, .stats-section,
  .contact-hero, .contact-main, .contact-strip {
    padding: 56px 24px;
  }

  .hero {
    grid-template-columns: 1fr;
    padding: 60px 24px;
    min-height: 0;
    gap: 40px;
    animation: none;
    background-position: 0 0, 75% center;
    background-image:
      linear-gradient(180deg, rgba(15,26,58,0.92) 0%, rgba(15,26,58,0.88) 60%, rgba(15,26,58,0.78) 100%),
      url('assets/hero-home.jpg');
  }
  .hero h1 { font-size: 34px; }
  .hero-visual-card { max-width: 100%; height: 320px; }

  .heritage-grid, .about-home-grid { grid-template-columns: 1fr; gap: 40px; }
  .services-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  .cs-grid { grid-template-columns: 1fr; }
  .services-grid .service-card:nth-child(7):nth-last-child(1) { grid-column: auto; }
  .stats-bar, .stats-section-inner, .creds-bar-inner { grid-template-columns: 1fr 1fr; }
  .wsa-grid { grid-template-columns: 1fr; }
  .why-row { grid-template-columns: 1fr; gap: 14px; padding: 32px 0; }
  .why-row:hover { padding-left: 0; }
  .why-num { font-size: 64px; }
  .pillars-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }

  .about-hero h1 { font-size: 36px; }
  .brand-flow { grid-template-columns: 1fr; gap: 12px; }
  .brand-arrow { transform: rotate(90deg); }
  .key-facts, .two-col, .people-cards, .vision-pillars,
  .investor-grid, .people-commitment { grid-template-columns: 1fr; gap: 28px; }
  .exec-grid, .senior-grid { grid-template-columns: 1fr; }
  .director-grid { grid-template-columns: 1fr; }

  .practice-grid { grid-template-columns: 1fr; }
  .practice-card.wide { grid-column: 1; }
  .practice-inner { grid-template-columns: 1fr; gap: 32px; }
  .practice-left { position: static; }
  .service-list { grid-template-columns: 1fr; }

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

  .contact-main-inner { grid-template-columns: 1fr; gap: 40px; }
  .contact-strip-inner { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 32px 24px; }

  .page-hero h1, .about-hero h1, .contact-hero h1 { font-size: 36px; }
  h2 { font-size: 28px; }

  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
}

@media (max-width: 560px) {
  .services-grid { grid-template-columns: 1fr; }
  .tile-grid { grid-template-columns: 1fr; }
  .stats-bar, .stats-section-inner, .creds-bar-inner { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .hero h1, .about-hero h1, .page-hero h1, .contact-hero h1 { font-size: 30px; }
  .cta-panel h2, .cta-strip h2 { font-size: 28px; }
  .nav-attribution-main { font-size: 15px; }
  .nav-attribution-sub { font-size: 11px; }
  .nav-mark-img { height: 34px; }
  .pillars-grid { grid-template-columns: 1fr; }
  .pillar-card { padding: 30px 22px 26px; }
}

/* =============================================
   STATS FADE-UP REVEAL ON SCROLL
   Initial hidden state only applies when JS sets html.has-stats-reveal,
   so non-JS / older browser users see stats at full visibility.
   ============================================= */
.has-stats-reveal .stat-item,
.has-stats-reveal .cred-item,
.has-stats-reveal .about-stat {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.6s ease, transform 0.6s ease;
  will-change: opacity, transform;
}
.has-stats-reveal .stat-item.is-revealed,
.has-stats-reveal .cred-item.is-revealed,
.has-stats-reveal .about-stat.is-revealed {
  opacity: 1;
  transform: translateY(0);
}


/* =============================================
   INDUSTRIES — sector-section pattern
   All 8 sectors render fully expanded; tile grid above acts as quick-jump nav.
   ============================================= */
.ind-quicknav-eyebrow {
  font-size: 11px; font-weight: 800; letter-spacing: 0.22em;
  color: var(--mid-grey); text-transform: uppercase;
  margin-bottom: 18px; text-align: center;
}
.ind-tile { text-decoration: none; color: inherit; }

.sector-section {
  padding: 88px 48px;
  border-bottom: 1px solid var(--border);
  scroll-margin-top: 88px;  /* clear sticky nav on anchor jump */
}
.sector-section:nth-child(odd)  { background: var(--white); }
.sector-section:nth-child(even) { background: var(--off-white); }
.sector-inner {
  max-width: 1140px; margin: 0 auto;
  display: grid; grid-template-columns: 300px 1fr; gap: 72px;
  align-items: start;
}
.sector-left { position: sticky; top: 96px; }
.sector-accent {
  width: 40px; height: 4px; border-radius: 4px; margin-bottom: 22px;
}
.sector-num {
  font-size: 11px; font-weight: 800; letter-spacing: 0.22em;
  color: var(--mid-grey); text-transform: uppercase; margin-bottom: 12px;
}
.sector-name {
  font-size: 26px; font-weight: 800; color: var(--navy);
  line-height: 1.15; margin-bottom: 26px; letter-spacing: -0.4px;
}
.sector-clients-label {
  font-size: 11px; font-weight: 800; letter-spacing: 0.18em;
  color: var(--mid-grey); text-transform: uppercase; margin-bottom: 14px;
}
.sector-clients {
  list-style: none; padding: 0;
  display: flex; flex-direction: column; gap: 9px;
}
.sector-clients li {
  font-size: 14px; color: var(--body-text);
  padding-left: 14px; position: relative; line-height: 1.5;
}
.sector-clients li::before {
  content: '\2022'; position: absolute; left: 3px;
  color: var(--teal); font-size: 14px; line-height: 1.1;
}

.sector-overview {
  font-size: 15.5px; color: var(--body-text); line-height: 1.85;
  margin-bottom: 36px; padding-bottom: 36px;
  border-bottom: 1px solid var(--border);
}
.sector-block-label {
  font-size: 12px; font-weight: 800; letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--mid-grey);
  margin-bottom: 14px;
  display: flex; align-items: center; gap: 10px;
}
.sector-block-label::after {
  content: ''; flex: 1; height: 1px; background: var(--border);
}
.sector-pills {
  display: flex; flex-wrap: wrap; gap: 9px; margin-bottom: 32px;
}
.sector-pill {
  padding: 7px 15px; border-radius: 50px;
  font-size: 13px; font-weight: 600; border: 1.5px solid;
  white-space: nowrap;
}
.sector-services {
  display: grid; grid-template-columns: 1fr 1fr; gap: 9px;
}
.sector-service {
  background: var(--navy); color: rgba(255,255,255,0.88);
  border-radius: 8px; padding: 11px 14px 11px 36px;
  font-size: 13.5px; line-height: 1.45; position: relative;
}
.sector-service::before {
  content: '\2192'; position: absolute; left: 13px; top: 12px;
  font-size: 12px; color: var(--sky);
}

@media (max-width: 960px) {
  .sector-section { padding: 56px 24px; }
  .sector-inner { grid-template-columns: 1fr; gap: 32px; padding: 56px 0; }
  .sector-services { grid-template-columns: 1fr; }
  .sector-name { font-size: 30px; }
}
@media (max-width: 560px) {
  .sector-name { font-size: 26px; }
  .sector-overview { font-size: 14.5px; }
  .sector-pills { gap: 6px; }
  .sector-pill { font-size: 12px; padding: 6px 12px; }
  .about-stat-num { font-size: 42px; letter-spacing: -1.5px; }
}

/* ============================================================
   LEADERSHIP DETAIL PAGES (leadership-firstname-lastname.html)
   ============================================================ */
.lead-hero {
  background: linear-gradient(160deg, #0A1530 0%, #0E2740 100%);
  padding: 64px 48px 56px;
  position: relative; overflow: hidden;
}
.lead-hero::after {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 75% 50%, rgba(11,123,138,0.18) 0%, transparent 60%);
  pointer-events: none;
}
.lead-hero-inner {
  max-width: 1140px; margin: 0 auto;
  position: relative; z-index: 1;
}
.lead-hero .hero-eyebrow { color: var(--sky); margin-bottom: 16px; }
.lead-hero h1 {
  font-size: 48px; font-weight: 800;
  color: white; letter-spacing: -1.2px;
  line-height: 1.05; margin-bottom: 10px;
}
.lead-title {
  font-size: 16px; font-weight: 600;
  color: rgba(255,255,255,0.75);
  letter-spacing: 0.01em;
  margin: 0;
}
.lead-back {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 600;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  margin-bottom: 28px;
  transition: color 0.2s ease;
}
.lead-back:hover { color: var(--sky); }
.lead-back i { font-size: 11px; }

.lead-main {
  background: white;
  padding: 80px 48px;
}
.lead-main-inner {
  max-width: 1000px; margin: 0 auto;
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 64px;
  align-items: start;
}
.lead-photo {
  width: 100%;
  aspect-ratio: 3 / 4;
  border-radius: 12px;
  overflow: hidden;
  background: linear-gradient(160deg, #F0F2F5 0%, #E5E7EB 100%);
  position: sticky;
  top: 92px;
}
.lead-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 15%;
  display: block;
}
.lead-bio p {
  font-size: 16px;
  color: var(--body-text);
  line-height: 1.75;
  margin: 0 0 22px;
}
.lead-bio p:last-child { margin-bottom: 0; }

.lead-cta {
  background: var(--off-white);
  padding: 48px 48px 64px;
  border-top: 1px solid var(--border);
}
.lead-cta-inner {
  max-width: 1000px; margin: 0 auto;
  display: flex; gap: 16px; flex-wrap: wrap;
  justify-content: center;
}
.btn-outline-navy {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 13px 26px;
  font-size: 14px; font-weight: 700;
  color: var(--navy); text-decoration: none;
  background: white;
  border: 1px solid var(--border-strong);
  border-radius: var(--radius);
  transition: border-color 0.2s ease, transform 0.2s ease;
}
.btn-outline-navy:hover { border-color: var(--navy); transform: translateY(-1px); }

/* Bio card that links to a leadership detail page */
.bio-card-link {
  text-decoration: none;
  color: inherit;
}
.bio-card-link:hover {
  border-color: var(--navy);
  box-shadow: 0 8px 22px rgba(15,26,58,0.08);
}
.bio-view-profile {
  font-size: 10.5px; font-weight: 700;
  color: var(--teal);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-top: 8px;
  display: inline-flex; align-items: center; gap: 6px;
  opacity: 0;
  transition: opacity 0.2s ease;
}
.bio-view-profile i { font-size: 9px; }
.bio-card-link:hover .bio-view-profile { opacity: 1; }

@media (max-width: 960px) {
  .lead-hero { padding: 48px 24px 40px; }
  .lead-hero h1 { font-size: 36px; }
  .lead-main { padding: 56px 24px; }
  .lead-main-inner { grid-template-columns: 1fr; gap: 40px; }
  .lead-photo { max-width: 200px; margin: 0 auto; position: static; }
  .lead-cta-inner { flex-direction: column; align-items: stretch; }
}
.article-engage-label { font-size: 12px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--mid-grey); margin: 26px 0 12px; }
.article-engage { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px 28px; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }
.article-engage li { font-size: 15px; line-height: 1.45; }
.article-engage a { display: inline-flex; align-items: baseline; gap: 8px; color: var(--teal); text-decoration: none; font-weight: 600; }
.article-engage a:hover { color: var(--navy); }
.article-engage a::before { content: "\2192"; color: var(--teal); }
