/* =========================================================
   Innovata Analytics — Website Rebuild 2026
   Built from the Master Reference content + official brand palette.
   Static prototype (no build step) — portable to Astro later.
   ========================================================= */

/* ---------- Brand tokens (from Innovata Logo Guide 2022) ---------- */
:root {
  --blue:        #1d4e89;   /* primary  */
  --blue-deep:   #163a66;
  --green:       #7dcfb6;   /* primary  */
  --beige:       #fbd1a2;   /* secondary */
  --teal:        #00b2ca;   /* secondary */
  --slate:       #313b3f;   /* secondary */
  --grey:        #b6c1c6;   /* secondary */

  --ink:         #1b2327;   /* body text on light */
  --ink-soft:    #51616a;
  --paper:       #ffffff;
  --paper-2:     #f4f7f9;   /* tinted section bg */
  --paper-3:     #eaf0f3;
  --line:        #e0e7eb;

  --maxw: 1160px;
  --radius: 16px;
  --radius-sm: 10px;
  --shadow-sm: 0 1px 2px rgba(27,35,39,.06), 0 4px 16px rgba(27,35,39,.06);
  --shadow-md: 0 8px 30px rgba(27,35,39,.10);
  --shadow-lg: 0 20px 60px rgba(22,58,102,.18);

  --font-display: "Sora", "Segoe UI", system-ui, sans-serif;
  --font-body: "Inter", "Segoe UI", system-ui, sans-serif;

  --ease: cubic-bezier(.22,.61,.36,1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 84px; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: var(--blue); text-decoration: none; }
h1, h2, h3, h4 { font-family: var(--font-display); line-height: 1.12; margin: 0; letter-spacing: -.02em; color: var(--ink); }
p { margin: 0; }
ul { margin: 0; padding: 0; list-style: none; }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

/* ---------- Reusable bits ---------- */
.eyebrow {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: .82rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--teal);
  margin: 0 0 14px;
}
.eyebrow--mark { display: inline-flex; align-items: center; gap: 10px; color: var(--blue); }
.eyebrow--mark::before { content: ""; width: 26px; height: 2px; background: var(--teal); border-radius: 2px; }

.section-title {
  font-size: clamp(1.7rem, 3.4vw, 2.6rem);
  font-weight: 700;
}
.section-title--invert { color: #fff; }

.section-lead {
  color: var(--ink-soft);
  font-size: 1.12rem;
  max-width: 60ch;
  margin-top: 14px;
}
.section-head { max-width: 760px; margin-bottom: 48px; }
.section-head--row {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 28px; max-width: none;
}

.grad-text {
  background: linear-gradient(100deg, var(--teal), var(--blue) 60%, var(--green));
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-weight: 600; font-size: 1rem;
  padding: 14px 26px; border-radius: 999px;
  border: 1.5px solid transparent; cursor: pointer;
  transition: transform .2s var(--ease), box-shadow .2s var(--ease), background .2s, color .2s, border-color .2s;
  white-space: nowrap;
}
.btn--primary { background: var(--blue); color: #fff; box-shadow: 0 8px 22px rgba(29,78,137,.28); }
.btn--primary:hover { background: var(--blue-deep); transform: translateY(-2px); box-shadow: 0 12px 28px rgba(29,78,137,.34); }
.btn--ghost { background: transparent; color: var(--blue); border-color: var(--grey); }
.btn--ghost:hover { border-color: var(--blue); transform: translateY(-2px); }
.btn--lg { padding: 17px 36px; font-size: 1.08rem; }
.btn--sm { padding: 10px 20px; font-size: .92rem; }

.link-arrow {
  font-family: var(--font-display); font-weight: 600; font-size: .98rem;
  display: inline-flex; align-items: center; gap: 8px; color: var(--blue);
  margin-top: auto;
}
.link-arrow span { transition: transform .2s var(--ease); }
.link-arrow:hover span { transform: translateX(5px); }

/* =========================================================
   HEADER
   ========================================================= */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  transition: background .3s var(--ease), box-shadow .3s var(--ease), backdrop-filter .3s;
}
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.brand-logo { height: 36px; width: auto; }
.brand-logo--dark { display: none; }   /* color logo shown after scroll */

.main-nav { display: flex; align-items: center; gap: 30px; }
.main-nav a {
  font-family: var(--font-display); font-weight: 500; font-size: .98rem;
  color: rgba(255,255,255,.92); transition: color .2s;
}
.main-nav a:hover { color: #fff; }
.nav-cta {
  background: rgba(255,255,255,.14); border: 1px solid rgba(255,255,255,.35);
  padding: 9px 20px; border-radius: 999px; backdrop-filter: blur(4px);
}
.nav-cta:hover { background: #fff; color: var(--blue) !important; }

/* scrolled state -> solid white header with dark text */
.site-header.scrolled { background: rgba(255,255,255,.92); backdrop-filter: blur(12px); box-shadow: var(--shadow-sm); }
.site-header.scrolled .brand-logo--light { display: none; }
.site-header.scrolled .brand-logo--dark { display: block; }
.site-header.scrolled .main-nav a { color: var(--ink); }
.site-header.scrolled .main-nav a:hover { color: var(--blue); }
.site-header.scrolled .nav-cta { background: var(--blue); color: #fff !important; border-color: var(--blue); }
.site-header.scrolled .nav-cta:hover { background: var(--blue-deep); }
.site-header.scrolled .nav-toggle span { background: var(--ink); }

.nav-toggle { display: none; background: none; border: 0; cursor: pointer; padding: 8px; flex-direction: column; gap: 5px; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: #fff; border-radius: 2px; transition: .25s var(--ease); }

/* =========================================================
   HERO
   ========================================================= */
.hero {
  position: relative; overflow: hidden;
  background: linear-gradient(160deg, #0f2f57 0%, var(--blue) 45%, #16608f 100%);
  color: #fff;
  padding: 168px 0 120px;
  isolation: isolate;
}
.hero-bg { position: absolute; inset: 0; z-index: -1; filter: blur(40px); opacity: .55; }
.blob { position: absolute; border-radius: 50%; mix-blend-mode: screen; animation: float 16s var(--ease) infinite alternate; }
.blob--blue   { width: 460px; height: 460px; background: var(--blue);  top: -120px; left: -80px; }
.blob--teal   { width: 420px; height: 420px; background: var(--teal);  top: 40px;  right: -60px; animation-delay: -4s; }
.blob--green  { width: 360px; height: 360px; background: var(--green); bottom: -140px; left: 22%; animation-delay: -8s; }
.blob--beige  { width: 300px; height: 300px; background: var(--beige); bottom: -90px; right: 18%; animation-delay: -12s; }
@keyframes float { to { transform: translate3d(40px, -30px, 0) scale(1.12); } }

.hero-inner { position: relative; max-width: 880px; }
.hero .eyebrow { color: var(--green); }
.hero-title {
  font-size: clamp(2.5rem, 6vw, 4.4rem);
  font-weight: 800; color: #fff; letter-spacing: -.03em;
  margin-bottom: 22px;
}
.hero-title .grad-text {
  background: linear-gradient(100deg, var(--green), var(--teal) 55%, var(--beige));
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.hero-sub { font-size: clamp(1.1rem, 2vw, 1.35rem); color: rgba(255,255,255,.86); max-width: 60ch; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 36px; }
.hero .btn--ghost { color: #fff; border-color: rgba(255,255,255,.5); }
.hero .btn--ghost:hover { background: rgba(255,255,255,.1); border-color: #fff; }

.hero-pills { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 40px; }
.hero-pills li {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-display); font-weight: 500; font-size: .95rem;
  background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.2);
  padding: 9px 18px; border-radius: 999px; backdrop-filter: blur(4px);
}
.dot { width: 9px; height: 9px; border-radius: 50%; }
.dot--analytics { background: var(--teal); }
.dot--strategy { background: var(--green); }
.dot--engineering { background: var(--beige); }

/* =========================================================
   CLIENT TRUST STRIP
   ========================================================= */
.trust-strip { background: var(--paper); border-bottom: 1px solid var(--line); padding: 34px 0; }
.trust-strip__label {
  text-align: center; font-family: var(--font-display); font-weight: 600;
  font-size: .8rem; letter-spacing: .12em; text-transform: uppercase;
  color: var(--ink-soft); margin-bottom: 22px;
}
.logo-marquee {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: center;
  gap: 18px 44px;
}
.logo-marquee span {
  font-family: var(--font-display); font-weight: 700; font-size: 1.15rem;
  color: var(--slate); opacity: .5; letter-spacing: -.01em;
  transition: opacity .2s, color .2s;
}
.logo-marquee span:hover { opacity: 1; color: var(--blue); }

/* =========================================================
   DISRUPTION
   ========================================================= */
.disruption { background: var(--slate); color: #fff; padding: 100px 0; }
.disruption .section-title { max-width: 18ch; margin-bottom: 56px; }
.shift-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.shift { border-top: 2px solid rgba(255,255,255,.16); padding-top: 26px; }
.shift__num {
  font-family: var(--font-display); font-weight: 800; font-size: 1rem;
  color: var(--teal); letter-spacing: .1em;
}
.shift h3 { color: #fff; font-size: 1.4rem; margin: 14px 0 12px; }
.shift p { color: rgba(255,255,255,.74); font-size: 1.02rem; }
.disruption__close {
  margin-top: 56px; max-width: 70ch; font-family: var(--font-display);
  font-size: clamp(1.15rem, 2.2vw, 1.5rem); font-weight: 500; line-height: 1.4;
  color: #fff;
}
.disruption__close::before { content: ""; display: block; width: 48px; height: 3px; background: var(--teal); margin-bottom: 24px; border-radius: 3px; }

/* =========================================================
   PILLARS
   ========================================================= */
.pillars { padding: 110px 0; background: var(--paper); }
.pillar-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.pillar-card {
  display: flex; flex-direction: column;
  background: var(--paper); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 34px 30px; min-height: 320px;
  box-shadow: var(--shadow-sm);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), border-color .25s;
}
.pillar-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: transparent; }
.pillar-card__bar { width: 46px; height: 5px; border-radius: 5px; margin-bottom: 22px; }
.pillar-card__bar--analytics  { background: var(--teal); }
.pillar-card__bar--strategy   { background: var(--green); }
.pillar-card__bar--engineering{ background: var(--beige); }
.pillar-card h3 { font-size: 1.32rem; margin-bottom: 12px; }
.pillar-card__tag { font-family: var(--font-display); font-weight: 600; color: var(--blue); margin-bottom: 12px; }
.pillar-card__body { color: var(--ink-soft); margin-bottom: 24px; }
.pillars__note {
  text-align: center; margin-top: 48px; font-size: 1.12rem; color: var(--ink-soft);
}
.pillars__note strong { color: var(--ink); }

/* =========================================================
   WHY INNOVATA
   ========================================================= */
.why { padding: 110px 0; background: var(--paper-2); }
.why-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.why-copy { position: sticky; top: 100px; }
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.why-grid li {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-sm);
  padding: 24px; box-shadow: var(--shadow-sm);
}
.why-grid strong { display: block; font-family: var(--font-display); font-size: 1.08rem; margin-bottom: 8px; color: var(--ink); }
.why-grid span { color: var(--ink-soft); font-size: .98rem; }

/* =========================================================
   INDUSTRIES
   ========================================================= */
.industries { padding: 110px 0; background: var(--paper); }
.industries .section-head { margin-left: auto; margin-right: auto; text-align: center; }
.industries .section-lead { margin-left: auto; margin-right: auto; }
.industry-list {
  display: flex; flex-wrap: wrap; gap: 14px;
  justify-content: center; max-width: 720px; margin: 0 auto;
}
.industry-list li {
  font-family: var(--font-display); font-weight: 600; font-size: 1.05rem;
  color: var(--ink);
  border: 1px solid var(--line); border-radius: 999px;
  padding: 13px 26px; background: var(--paper-2);
  transition: transform .2s var(--ease), border-color .2s, color .2s, background .2s;
}
.industry-list li:hover { transform: translateY(-3px); border-color: var(--teal); color: var(--blue); background: #fff; }

/* =========================================================
   TESTIMONIALS
   ========================================================= */
.testimonials { padding: 110px 0; background: var(--paper-2); }
.quote-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.quote-card {
  display: flex; flex-direction: column;
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 30px; margin: 0; box-shadow: var(--shadow-sm);
}
.quote-card blockquote { margin: 0; flex: 1; }
.quote-card blockquote::before {
  content: "\201C"; font-family: Georgia, serif; font-size: 3rem; line-height: 0;
  color: var(--green); display: block; height: 24px;
}
.quote-snippet { font-size: 1.1rem; font-weight: 500; color: var(--ink); }
.quote-full { margin-top: 14px; color: var(--ink-soft); font-size: 1rem; }
.quote-toggle {
  align-self: flex-start; background: none; border: 0; cursor: pointer;
  font-family: var(--font-display); font-weight: 600; font-size: .92rem;
  color: var(--blue); padding: 14px 0 0;
}
.quote-toggle:hover { text-decoration: underline; }
.quote-card figcaption { margin-top: 22px; padding-top: 20px; border-top: 1px solid var(--line); }
.quote-card figcaption strong { display: block; font-family: var(--font-display); color: var(--ink); }
.quote-card figcaption span { font-size: .92rem; color: var(--ink-soft); }

/* =========================================================
   INSIGHTS
   ========================================================= */
.insights { padding: 110px 0; background: var(--paper); }
.insight-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.insight-card {
  display: flex; flex-direction: column; overflow: hidden;
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.insight-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.insight-card__thumb {
  aspect-ratio: 16 / 9; position: relative; overflow: hidden;
  display: flex; align-items: flex-end; padding: 18px;
}
.insight-card__type {
  position: relative; z-index: 1;
  font-family: var(--font-display); font-weight: 700; font-size: .72rem;
  letter-spacing: .1em; text-transform: uppercase; color: #fff;
  background: rgba(0,0,0,.28); border: 1px solid rgba(255,255,255,.4);
  padding: 5px 12px; border-radius: 999px; backdrop-filter: blur(4px);
}
.insight-card__body { padding: 24px 26px 28px; display: flex; flex-direction: column; flex: 1; }
.insight-card__meta { font-size: .85rem; color: var(--ink-soft); margin-bottom: 10px; }
.insight-card h3 { font-size: 1.2rem; margin-bottom: 10px; }
.insight-card h3 a { color: var(--ink); transition: color .2s; }
.insight-card h3 a:hover { color: var(--blue); }
.insight-card p { color: var(--ink-soft); font-size: .98rem; margin-bottom: 18px; }
.insight-card .link-arrow { font-size: .92rem; }

/* gradient thumbnails per content type */
.thumb--article  { background: linear-gradient(135deg, var(--blue), var(--teal)); }
.thumb--whitepaper { background: linear-gradient(135deg, var(--slate), var(--blue)); }
.thumb--guide { background: linear-gradient(135deg, var(--teal), var(--green)); }
.thumb--news { background: linear-gradient(135deg, var(--blue-deep), #2a6aa0); }
.insight-card__thumb::after {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(120% 120% at 80% 0%, rgba(255,255,255,.28), transparent 55%);
}

/* =========================================================
   FINAL CTA
   ========================================================= */
.cta {
  background: linear-gradient(160deg, var(--blue-deep), var(--blue) 55%, var(--teal));
  color: #fff; padding: 120px 0; text-align: center;
}
.cta-inner { max-width: 720px; margin: 0 auto; }
.cta-title { font-size: clamp(2.2rem, 5vw, 3.4rem); font-weight: 800; color: #fff; margin-bottom: 18px; }
.cta-sub { font-size: 1.2rem; color: rgba(255,255,255,.88); margin-bottom: 36px; }
.cta .btn--primary { background: #fff; color: var(--blue); box-shadow: 0 12px 30px rgba(0,0,0,.2); }
.cta .btn--primary:hover { background: var(--beige); color: var(--slate); }
.cta-or { margin-top: 20px; font-size: .98rem; color: rgba(255,255,255,.8); }
.cta-or a { color: #fff; text-decoration: underline; }

/* =========================================================
   FOOTER
   ========================================================= */
.site-footer { background: var(--slate); color: rgba(255,255,255,.7); padding: 64px 0 28px; }
.footer-inner { display: grid; grid-template-columns: 1.4fr 2fr; gap: 48px; }
.footer-logo { height: 40px; margin-bottom: 16px; }
.footer-tagline { font-family: var(--font-display); color: rgba(255,255,255,.9); }
.footer-cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.footer-col h4 { font-size: .82rem; letter-spacing: .1em; text-transform: uppercase; color: var(--green); margin-bottom: 16px; }
.footer-col a { display: block; color: rgba(255,255,255,.7); padding: 6px 0; transition: color .2s; }
.footer-col a:hover { color: #fff; }
.footer-bottom { margin-top: 48px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.12); }
.footer-bottom p { font-size: .9rem; color: rgba(255,255,255,.55); }

/* =========================================================
   CONTACT PAGE
   ========================================================= */
.contact { padding: 140px 0 100px; background: var(--paper-2); }
.contact-inner { display: grid; grid-template-columns: 1fr 1.05fr; gap: 56px; align-items: start; }
.contact-intro { position: sticky; top: 100px; }
.contact-intro .breadcrumb { color: var(--ink-soft); font-size: .92rem; margin-bottom: 16px; }
.contact-title { font-size: clamp(2rem, 4.4vw, 3rem); font-weight: 800; margin-bottom: 18px; }
.contact-lead { color: var(--ink-soft); font-size: 1.15rem; max-width: 46ch; }
.contact-points { margin-top: 30px; display: grid; gap: 16px; }
.contact-points li { position: relative; padding-left: 30px; color: var(--ink-soft); }
.contact-points li::before {
  content: "\2713"; position: absolute; left: 0; top: 0;
  color: #fff; background: var(--teal); width: 20px; height: 20px; border-radius: 50%;
  font-size: .72rem; display: flex; align-items: center; justify-content: center; font-weight: 700;
}
.contact-points strong { color: var(--ink); }

.contact-card {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 38px; box-shadow: var(--shadow-md);
}
.contact-form .field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.contact-form .field { margin-bottom: 20px; display: flex; flex-direction: column; }
.contact-form label { font-family: var(--font-display); font-weight: 600; font-size: .92rem; color: var(--ink); margin-bottom: 8px; }
.contact-form .req { color: var(--teal); }
.contact-form .opt { color: var(--ink-soft); font-weight: 400; }
.contact-form input,
.contact-form select,
.contact-form textarea {
  font-family: var(--font-body); font-size: 1rem; color: var(--ink);
  background: var(--paper); border: 1.5px solid var(--line); border-radius: var(--radius-sm);
  padding: 13px 15px; width: 100%; transition: border-color .2s, box-shadow .2s;
}
.contact-form textarea { resize: vertical; min-height: 120px; }
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none; border-color: var(--blue); box-shadow: 0 0 0 3px rgba(29,78,137,.14);
}
.contact-form input:invalid:not(:placeholder-shown),
.contact-form textarea:invalid:not(:placeholder-shown) { border-color: #d9534f; }
.contact-form .form-submit { width: 100%; margin-top: 6px; }
.contact-form .hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form-fineprint { font-size: .82rem; color: var(--ink-soft); margin-top: 16px; text-align: center; }
.form-status { margin-top: 14px; font-size: .95rem; text-align: center; min-height: 1.2em; }
.form-status.is-error { color: #c0392b; font-weight: 500; }

.form-success { text-align: center; padding: 24px 8px; }
.form-success__check {
  width: 64px; height: 64px; border-radius: 50%; margin: 0 auto 20px;
  background: var(--green); color: #fff; font-size: 2rem;
  display: flex; align-items: center; justify-content: center;
}
.form-success h2 { font-size: 1.5rem; margin-bottom: 12px; }
.form-success p { color: var(--ink-soft); }

/* =========================================================
   PRINCIPAL CONSULTANT — homepage teaser
   ========================================================= */
.leader { padding: 110px 0; background: var(--paper); }
.leader-inner { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 56px; align-items: center; }
.leader-photo { margin: 0; position: relative; }
.leader-photo img {
  width: 100%; border-radius: var(--radius); box-shadow: var(--shadow-lg);
  aspect-ratio: 4 / 5; object-fit: cover; object-position: center top;
}
.leader-photo::before {
  content: ""; position: absolute; inset: -16px -16px 24px 24px; z-index: -1;
  background: linear-gradient(135deg, var(--green), var(--teal));
  border-radius: var(--radius); opacity: .25;
}
.leader-stats { display: flex; flex-wrap: wrap; gap: 28px 36px; margin: 28px 0 32px; }
.leader-stats li { display: flex; flex-direction: column; }
.leader-stats strong { font-family: var(--font-display); font-size: 2rem; font-weight: 800; color: var(--blue); line-height: 1; }
.leader-stats span { font-size: .92rem; color: var(--ink-soft); margin-top: 6px; max-width: 18ch; }

/* =========================================================
   ABOUT / PROFILE PAGE
   ========================================================= */
.profile-hero { background: linear-gradient(160deg, #0f2f57, var(--blue) 70%, #16608f); color: #fff; padding: 140px 0 72px; }
.profile-hero__inner { display: grid; grid-template-columns: 300px 1fr; gap: 52px; align-items: center; }
.profile-photo { margin: 0; }
.profile-photo img {
  width: 100%; border-radius: var(--radius); aspect-ratio: 4 / 5; object-fit: cover; object-position: center top;
  box-shadow: var(--shadow-lg); border: 3px solid rgba(255,255,255,.18);
}
.profile-hero .breadcrumb { color: rgba(255,255,255,.7); font-size: .92rem; margin-bottom: 16px; }
.profile-hero .breadcrumb a { color: rgba(255,255,255,.9); }
.profile-intro h1 { color: #fff; font-size: clamp(2.4rem, 5vw, 3.6rem); font-weight: 800; }
.profile-role { font-family: var(--font-display); font-weight: 600; font-size: 1.2rem; color: var(--green); margin: 8px 0 18px; }
.profile-lead { color: rgba(255,255,255,.88); font-size: 1.15rem; max-width: 56ch; }
.profile-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; }
.profile-hero .btn--ghost { color: #fff; border-color: rgba(255,255,255,.5); }
.profile-hero .btn--ghost:hover { background: rgba(255,255,255,.1); border-color: #fff; }

.proof-bar { background: var(--slate); color: #fff; }
.proof-bar__inner { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; padding: 36px 24px; text-align: center; }
.proof-bar strong { display: block; font-family: var(--font-display); font-size: 2.1rem; font-weight: 800; color: var(--green); line-height: 1; }
.proof-bar span { display: block; font-size: .92rem; color: rgba(255,255,255,.78); margin-top: 8px; }

.bio { padding: 90px 0; background: var(--paper); }
.bio__inner { display: grid; grid-template-columns: 1.6fr 1fr; gap: 56px; align-items: start; }
.bio__main p { font-size: 1.12rem; color: #2a363c; margin-bottom: 20px; }
.bio__main .section-title { margin-bottom: 22px; }
.bio__aside {
  background: var(--paper-2); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 30px; position: sticky; top: 100px;
}
.bio__aside h3 { font-size: .82rem; letter-spacing: .12em; text-transform: uppercase; color: var(--blue); margin-bottom: 18px; }
.focus-list li { position: relative; padding-left: 26px; margin-bottom: 14px; color: var(--ink); font-weight: 500; }
.focus-list li::before { content: ""; position: absolute; left: 0; top: 9px; width: 9px; height: 9px; border-radius: 50%; background: var(--teal); }

.engagements { padding: 100px 0; background: var(--paper-2); }
.eng-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.eng-grid--quad { grid-template-columns: repeat(2, 1fr); }
.eng-card {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 28px; box-shadow: var(--shadow-sm);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.eng-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.eng-card__head { margin-bottom: 14px; padding-bottom: 14px; border-bottom: 1px solid var(--line); }
.eng-card__head h3 { font-size: 1.25rem; }
.eng-card__head span { font-family: var(--font-display); font-weight: 600; font-size: .82rem; letter-spacing: .04em; text-transform: uppercase; color: var(--teal); }
.eng-card p { color: var(--ink-soft); font-size: .98rem; }
.eng-note { text-align: center; max-width: 70ch; margin: 44px auto 0; color: var(--ink-soft); font-size: 1.05rem; }

.education { padding: 90px 0; background: var(--paper); }
.education__inner { max-width: 740px; }
.education .section-title { margin-bottom: 28px; }
.edu-list { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.edu-list li {
  background: var(--paper-2); border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 24px;
}
.edu-list strong { display: block; font-family: var(--font-display); font-size: 1.2rem; color: var(--ink); margin-bottom: 6px; }
.edu-list span { color: var(--ink-soft); font-size: .96rem; }

/* =========================================================
   ARTICLE (single insight page)
   ========================================================= */
.article-hero { background: linear-gradient(160deg, #0f2f57, var(--blue) 70%, #16608f); color: #fff; padding: 150px 0 64px; }
.article-hero .breadcrumb { color: rgba(255,255,255,.7); font-size: .92rem; margin-bottom: 18px; }
.article-hero .breadcrumb a { color: rgba(255,255,255,.9); }
.article-kicker {
  font-family: var(--font-display); font-weight: 700; font-size: .74rem;
  letter-spacing: .12em; text-transform: uppercase; color: var(--green);
  display: inline-block; margin-bottom: 16px;
}
.article-hero h1 { color: #fff; font-size: clamp(2rem, 4.6vw, 3.1rem); font-weight: 800; max-width: 22ch; }
.article-meta { color: rgba(255,255,255,.8); margin-top: 18px; font-size: .98rem; }

.article-body { padding: 64px 0 100px; background: var(--paper); }
.article-body .container { max-width: 740px; }
.article-body h2 { font-size: 1.6rem; margin: 44px 0 14px; }
.article-body h3 { font-size: 1.25rem; margin: 32px 0 10px; }
.article-body p { font-size: 1.12rem; color: #2a363c; margin-bottom: 20px; }
.article-body ul.bullets { margin: 0 0 22px; padding-left: 0; }
.article-body ul.bullets li { position: relative; padding-left: 28px; margin-bottom: 12px; font-size: 1.1rem; color: #2a363c; }
.article-body ul.bullets li::before { content: ""; position: absolute; left: 0; top: 12px; width: 9px; height: 9px; border-radius: 50%; background: var(--teal); }
.article-body blockquote {
  margin: 32px 0; padding: 8px 0 8px 26px; border-left: 4px solid var(--green);
  font-family: var(--font-display); font-size: 1.3rem; font-weight: 500; color: var(--ink); line-height: 1.4;
}
.article-lead { font-size: 1.28rem !important; color: var(--ink) !important; font-weight: 500; }
.article-cta {
  margin-top: 56px; padding: 36px; border-radius: var(--radius);
  background: var(--paper-2); border: 1px solid var(--line); text-align: center;
}
.article-cta h3 { font-size: 1.4rem; margin-bottom: 10px; }
.article-cta p { color: var(--ink-soft); margin-bottom: 22px; }
.article-share { margin-top: 40px; padding-top: 24px; border-top: 1px solid var(--line); display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.article-share span { font-family: var(--font-display); font-weight: 600; color: var(--ink-soft); }

/* =========================================================
   SCROLL REVEAL
   ========================================================= */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .blob { animation: none; }
  html { scroll-behavior: auto; }
}

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 940px) {
  .shift-grid, .pillar-grid, .quote-grid, .insight-grid, .eng-grid { grid-template-columns: 1fr 1fr; }
  .why-inner { grid-template-columns: 1fr; gap: 36px; }
  .why-copy { position: static; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .leader-inner { grid-template-columns: 1fr; gap: 36px; }
  .leader-photo { max-width: 380px; }
  .contact-inner { grid-template-columns: 1fr; gap: 40px; }
  .contact-intro { position: static; }
  .profile-hero__inner { grid-template-columns: 220px 1fr; gap: 36px; }
  .bio__inner { grid-template-columns: 1fr; gap: 36px; }
  .bio__aside { position: static; }
  .proof-bar__inner { grid-template-columns: repeat(2, 1fr); gap: 28px; }
}
@media (max-width: 720px) {
  body { font-size: 16px; }
  .nav-toggle { display: flex; }
  .main-nav {
    position: fixed; inset: 72px 0 auto 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: rgba(255,255,255,.98); backdrop-filter: blur(12px);
    padding: 12px 24px 24px; box-shadow: var(--shadow-md);
    transform: translateY(-130%); transition: transform .3s var(--ease);
  }
  .main-nav.open { transform: translateY(0); }
  .main-nav a { color: var(--ink); padding: 14px 0; border-bottom: 1px solid var(--line); }
  .main-nav .nav-cta { text-align: center; margin-top: 14px; background: var(--blue); color: #fff; border-color: var(--blue); }
  .shift-grid, .pillar-grid, .quote-grid, .insight-grid, .why-grid, .eng-grid, .edu-list { grid-template-columns: 1fr; }
  .section-head--row { flex-direction: column; align-items: flex-start; gap: 18px; }
  .hero { padding: 130px 0 90px; }
  .footer-cols { grid-template-columns: 1fr 1fr; }
  .profile-hero__inner { grid-template-columns: 1fr; gap: 28px; text-align: center; }
  .profile-photo { max-width: 240px; margin: 0 auto; }
  .profile-lead { margin-left: auto; margin-right: auto; }
  .profile-actions { justify-content: center; }
  .profile-hero .breadcrumb { text-align: left; }
  .proof-bar__inner { grid-template-columns: 1fr 1fr; }
  .leader-stats { gap: 22px 28px; }
  .contact-form .field-row { grid-template-columns: 1fr; gap: 0; }
  .contact-card { padding: 26px; }
  .contact { padding: 120px 0 80px; }
}
