/* ================================================================
   OLIVIER NAIMI — MAIN STYLESHEET
   Digital & AI Transformation Executive
   ================================================================ */

/* ── RESET & BASE ── */
html { scroll-behavior: smooth; }

.about-content p:first-child { text-indent: 2.5em; }
.highlights-grid .highlight-item { 
    margin-left: 20px; padding-left: 30px; 
    position: relative;
}
.highlight-item::before {
    content: "→"; position: absolute; left: 0; color: #1e3c72;
}

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

:root {
  --navy:       #0D1B2E;
  --navy2:      #122033;
  --navy3:      #172640;
  --blue:       #1A56DB;
  --blue2:      #2563EB;
  --blue-light: #3B82F6;
  --blue-pale:  #EFF6FF;
  --accent:     #0EA5E9;
  --gold:       #B45309;
  --gold-light: #D97706;
  --white:      #FFFFFF;
  --off-white:  #F8FAFC;
  --gray-50:    #F9FAFB;
  --gray-100:   #F3F4F6;
  --gray-200:   #E5E7EB;
  --gray-300:   #D1D5DB;
  --gray-400:   #9CA3AF;
  --gray-500:   #6B7280;
  --gray-600:   #4B5563;
  --gray-700:   #374151;
  --gray-800:   #1F2937;
  --gray-900:   #111827;
  --text:       #1F2937;
  --text-muted: #6B7280;
  --border:     #E5E7EB;
  --shadow-sm:  0 1px 3px rgba(0,0,0,0.08), 0 1px 2px rgba(0,0,0,0.04);
  --shadow:     0 4px 16px rgba(0,0,0,0.08);
  --shadow-lg:  0 10px 40px rgba(0,0,0,0.1);
  --radius:     8px;
  --radius-lg:  12px;
  --radius-xl:  16px;
  --max-w:      1140px;
  --font-sans:  'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-display: var(--font-sans);
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-sans);
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--blue); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--blue2); }
ul { list-style: none; }

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

/* ── TYPOGRAPHY ── */
h1, h2, h3, h4, h5 {
  font-family: var(--font-sans);
  font-weight: 700;
  line-height: 1.15;
  color: var(--gray-900);
  letter-spacing: -0.02em;
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: all 0.2s;
  border: none;
  text-decoration: none;
  font-family: var(--font-sans);
  white-space: nowrap;
}
.btn-primary {
  background: var(--blue2);
  color: var(--white);
}
.btn-primary:hover { background: var(--blue); color: var(--white); transform: translateY(-1px); box-shadow: 0 4px 14px rgba(37,99,235,0.35); }

.btn-outline {
  background: transparent;
  color: var(--blue2);
  border: 1.5px solid var(--blue2);
}
.btn-outline:hover { background: var(--blue-pale); color: var(--blue); }

.btn-white {
  background: var(--white);
  color: var(--navy);
}
.btn-white:hover { background: var(--off-white); color: var(--navy); transform: translateY(-1px); }

.btn-sm { padding: 8px 18px; font-size: 13px; }
.btn-lg { padding: 16px 36px; font-size: 15px; }

/* ── LABELS ── */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue2);
  margin-bottom: 14px;
}
.eyebrow::before {
  content: '';
  width: 20px;
  height: 2px;
  background: var(--blue2);
  flex-shrink: 0;
}

/* ── SECTION BASE ── */
.section { padding: 88px 0; }
.section-sm { padding: 56px 0; }
.section-lg { padding: 112px 0; }
.section-alt { background: var(--gray-50); }
.section-dark { background: var(--navy); }
.section-blue { background: var(--navy3); }

.section-header { margin-bottom: 52px; }
.section-header.center { text-align: center; }
.section-header.center .eyebrow { justify-content: center; }
.section-header.center .section-body { margin: 0 auto; }

.section-title {
  font-size: clamp(28px, 3.5vw, 42px);
  margin-bottom: 16px;
}
.section-body {
  font-size: 17px;
  color: var(--gray-600);
  max-width: 580px;
  line-height: 1.8;
}

/* ── NAV ── */
#site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s;
}
#site-nav.scrolled { box-shadow: var(--shadow); }

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

.nav-logo {
  display: flex;
  flex-direction: column;
  text-decoration: none;
}
.nav-logo-name {
  font-family: var(--font-sans);
  font-size: 18px;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.02em;
  line-height: 1.1;
}
.nav-logo-name span { color: var(--blue2); }
.nav-logo-tag {
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray-400);
  font-weight: 500;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--gray-600);
  padding: 8px 14px;
  border-radius: 6px;
  transition: all 0.15s;
  text-decoration: none;
}
.nav-links a:hover { color: var(--gray-900); background: var(--gray-100); }
.nav-links a.active { color: var(--blue2); }
.nav-links .nav-cta {
  background: var(--blue2);
  color: var(--white) !important;
  padding: 9px 20px;
  margin-left: 8px;
  border-radius: var(--radius);
}
.nav-links .nav-cta:hover { background: var(--blue) !important; color: var(--white) !important; }

.nav-social {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-right: 12px;
}
.nav-social a {
  width: 34px; height: 34px;
  border-radius: 6px;
  background: var(--gray-100);
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s;
}
.nav-social a:hover { background: var(--gray-200); }
.nav-social svg { width: 16px; height: 16px; }

.nav-mobile-toggle {
  display: none;
  background: none; border: none;
  cursor: pointer; padding: 8px;
  flex-direction: column; gap: 5px;
}
.nav-mobile-toggle span {
  width: 24px; height: 2px;
  background: var(--gray-700); display: block;
  border-radius: 2px; transition: all 0.3s;
}

.nav-mobile-menu {
  display: none;
  padding: 16px 24px 20px;
  border-top: 1px solid var(--border);
  flex-direction: column; gap: 4px;
}
.nav-mobile-menu.open { display: flex; }
.nav-mobile-menu a {
  font-size: 15px; font-weight: 500;
  color: var(--gray-700); padding: 10px 12px;
  border-radius: 6px; text-decoration: none;
}
.nav-mobile-menu a:hover { background: var(--gray-100); }

/* ── HERO ── */
.hero {
  padding: 130px 0 80px;
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy3) 100%);
  position: relative;
  overflow: hidden;
}
.hero::after {
  content: '';
  position: absolute; top: 0; right: 0; bottom: 0; left: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='1' cy='1' r='1' fill='rgba(255,255,255,0.03)'/%3E%3C/svg%3E");
  pointer-events: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 64px;
  align-items: center;
  position: relative; z-index: 1;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  padding: 6px 14px; border-radius: 100px;
  margin-bottom: 24px;
}
.hero-badge-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--accent);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}
.hero-badge span { font-size: 12px; color: rgba(255,255,255,0.8); letter-spacing: 0.08em; }

.hero-title {
  font-size: clamp(36px, 4.5vw, 58px);
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 24px;
  letter-spacing: -0.025em;
}
.hero-title .highlight { color: var(--accent); }

.hero-desc {
  font-size: 17px;
  color: rgba(255,255,255,0.7);
  line-height: 1.8;
  max-width: 520px;
  margin-bottom: 40px;
  font-weight: 300;
}

.hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; }

.hero-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-xl);
  padding: 32px;
  backdrop-filter: blur(10px);
  position: relative;
}
.hero-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 2px;
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
  background: linear-gradient(90deg, var(--blue2), var(--accent));
}
.hero-card-avatar {
  width: 64px; height: 64px; border-radius: 50%;
  background: linear-gradient(135deg, var(--blue2), var(--accent));
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-sans); font-size: 22px; font-weight: 800;
  color: var(--white); margin-bottom: 18px;
  border: 2px solid rgba(255,255,255,0.2);
}
.hero-card-name {
  font-family: var(--font-sans);
  font-size: 18px; font-weight: 700;
  color: var(--white); margin-bottom: 3px;
}
.hero-card-role { font-size: 13px; color: var(--accent); margin-bottom: 24px; }

.stats-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 20px; }
.stat-item {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  padding: 14px 16px;
}
.stat-num {
  font-family: var(--font-sans);
  font-size: 26px; font-weight: 800;
  color: var(--white); line-height: 1; margin-bottom: 4px;
}
.stat-num em { color: var(--accent); font-style: normal; }
.stat-label { font-size: 11px; color: rgba(255,255,255,0.45); line-height: 1.4; }

.skill-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.skill-tag {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  padding: 5px 11px; border-radius: 5px;
  font-size: 12px; color: rgba(255,255,255,0.65);
}

/* ── BRAND STRIP ── */
.brand-strip {
  background: var(--gray-900);
  padding: 20px 0;
  overflow: hidden;
}
.brand-strip-inner {
  display: flex; align-items: center; gap: 24px; padding: 0 24px;
  max-width: var(--max-w); margin: 0 auto;
}
.brand-strip-label {
  font-size: 11px; letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--gray-500); white-space: nowrap; flex-shrink: 0;
}
.brand-divider { width: 1px; height: 20px; background: var(--gray-700); flex-shrink: 0; }
.brand-list { display: flex; align-items: center; gap: 32px; flex-wrap: wrap; }
.brand-item {
  font-family: var(--font-sans);
  font-size: 14px; font-weight: 600;
  color: var(--gray-500); letter-spacing: 0.04em;
  white-space: nowrap; transition: color 0.2s;
}
.brand-item:hover { color: var(--gray-300); }

/* ── HIGHLIGHTS CARDS ── */
.highlights-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.highlight-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  transition: box-shadow 0.25s, transform 0.25s, border-color 0.25s;
}
.highlight-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
  border-color: var(--blue-light);
}
.highlight-icon {
  width: 48px; height: 48px; border-radius: 10px;
  background: var(--blue-pale);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.highlight-icon svg { width: 22px; height: 22px; color: var(--blue2); }
.highlight-num {
  font-size: 11px; font-weight: 700; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--blue2); margin-bottom: 10px;
}
.highlight-title {
  font-family: var(--font-sans);
  font-size: 19px; font-weight: 700;
  color: var(--gray-900); margin-bottom: 12px; line-height: 1.3;
}
.highlight-desc { font-size: 15px; color: var(--gray-600); line-height: 1.7; }

/* ── ABOUT SECTION ── */
.about-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 64px;
  align-items: start;
}
.about-text p {
  font-size: 16px; color: var(--gray-700);
  line-height: 1.9; margin-bottom: 18px;
}
.about-text p strong { color: var(--gray-900); }
.about-text p:last-child { margin-bottom: 0; }

.about-sidebar { display: flex; flex-direction: column; gap: 16px; }
.sidebar-widget {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 22px;
  box-shadow: var(--shadow-sm);
}
.sidebar-widget-title {
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--gray-400); margin-bottom: 14px;
}
.featured-pills { display: flex; flex-wrap: wrap; gap: 7px; }
.featured-pill {
  font-size: 12px; color: var(--gray-600);
  background: var(--gray-100); border: 1px solid var(--border);
  padding: 5px 11px; border-radius: 5px;
}
.speaker-list { display: flex; flex-direction: column; gap: 10px; }
.speaker-item { font-size: 13px; color: var(--gray-700); line-height: 1.5; }
.speaker-item strong { color: var(--gray-900); display: block; font-size: 12px; font-weight: 600; }

/* ── INSIGHT / ARTICLE ── */
/* ── INSIGHT CARD ── */
.insight-card {
  display: block;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.25s, border-color 0.25s;
  text-decoration: none;
  color: inherit;
}
.insight-card:hover { box-shadow: var(--shadow-lg); border-color: var(--gray-300); color: inherit; }
.insight-card-inner {
  display: flex;
  align-items: stretch;
}
.insight-card-body {
  flex: 1 1 0%;
  min-width: 0;
  padding: 44px 48px;
}
.insight-card-visual {
  flex: 0 0 200px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy3) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 32px 20px;
  border-left: 1px solid rgba(255,255,255,0.08);
}
.insight-tag {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--blue-pale); color: var(--blue2);
  padding: 5px 12px; border-radius: 100px;
  font-size: 12px; font-weight: 600;
  letter-spacing: 0.06em; margin-bottom: 16px;
}
.insight-title {
  font-family: var(--font-sans);
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 800; color: var(--gray-900);
  line-height: 1.3; margin-bottom: 14px;
  letter-spacing: -0.01em;
  overflow-wrap: break-word;
  word-break: break-word;
}
.insight-desc { font-size: 15px; color: var(--gray-600); line-height: 1.8; margin-bottom: 24px; overflow-wrap: break-word; }
.insight-actions {
  display: flex;
  gap: 0;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}
.insight-link {
  font-size: 14px; font-weight: 600; color: var(--blue2);
  display: inline-flex; align-items: center; gap: 6px;
  padding: 8px 16px;
  border-radius: var(--radius);
  transition: background 0.15s, color 0.15s;
  text-decoration: none;
}
.insight-link:hover { background: var(--blue-pale); color: var(--blue); }
.insight-sep { color: var(--gray-200); font-size: 18px; margin: 0 4px; line-height: 1; }
.insight-visual-label {
  font-family: var(--font-sans);
  font-size: 28px; font-weight: 900;
  color: var(--accent); line-height: 1.1;
  margin-bottom: 8px; text-align: center;
}
.insight-visual-sub { font-size: 11px; color: rgba(255,255,255,0.5); letter-spacing: 0.1em; text-transform: uppercase; text-align: center; }

/* ── CAREER TIMELINE ── */
.career-list { display: flex; flex-direction: column; gap: 8px; }
.career-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color 0.2s;
}
.career-item:hover { border-color: var(--gray-300); }
.career-item.open { border-color: var(--blue-light); }
.career-item.open .career-toggle-btn { color: var(--blue2); }

.career-header {
  display: grid;
  grid-template-columns: 180px 1fr auto auto;
  gap: 20px;
  align-items: center;
  padding: 20px 24px;
  cursor: pointer;
  user-select: none;
}
.career-co {
  font-family: var(--font-sans);
  font-size: 15px; font-weight: 700; color: var(--gray-900);
}
.career-co small { display: block; font-size: 12px; font-weight: 400; color: var(--gray-500); font-family: var(--font-sans); margin-top: 2px; }
.career-role-title { font-size: 14px; font-weight: 500; color: var(--gray-700); }
.career-tags { display: flex; gap: 6px; flex-wrap: wrap; }
.career-tag {
  font-size: 11px; background: var(--gray-100);
  border: 1px solid var(--border); color: var(--gray-600);
  padding: 3px 9px; border-radius: 4px; white-space: nowrap;
}
.career-toggle-btn {
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--gray-100); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; color: var(--gray-500); flex-shrink: 0;
  transition: all 0.25s;
}
.career-item.open .career-toggle-btn {
  transform: rotate(45deg);
  background: var(--blue-pale);
  border-color: var(--blue-light);
  color: var(--blue2);
}
.career-body {
  display: none;
  padding: 0 24px 22px;
  font-size: 14px; color: var(--gray-600); line-height: 1.8;
  border-top: 1px solid var(--gray-100);
  padding-top: 18px;
  margin-top: 0;
}
.career-item.open .career-body { display: block; }

/* ── PUBLICATIONS ── */
.pub-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.pub-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 26px 22px;
  display: flex; flex-direction: column;
  gap: 10px;
  transition: box-shadow 0.2s, border-color 0.2s, transform 0.2s;
  text-decoration: none; color: inherit;
}
.pub-card:hover {
  box-shadow: var(--shadow);
  border-color: var(--blue-light);
  transform: translateY(-2px);
  color: inherit;
}
.pub-year {
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--blue2);
}
.pub-title {
  font-family: var(--font-sans);
  font-size: 15px; font-weight: 700;
  color: var(--gray-900); line-height: 1.4;
  flex: 1;
}
.pub-desc { font-size: 13px; color: var(--gray-600); line-height: 1.6; }
.pub-pdf {
  font-size: 12px; color: var(--blue2); font-weight: 600;
  display: flex; align-items: center; gap: 5px;
  margin-top: 4px;
}

/* ── QUOTES ── */
.quotes-bar {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 14px; margin-top: 40px;
}
.quote-ref {
  background: var(--gray-50);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px 20px;
  display: flex; align-items: flex-start; gap: 14px;
}
.quote-ref-src {
  font-family: var(--font-sans);
  font-size: 13px; font-weight: 700;
  color: var(--gray-800); white-space: nowrap; min-width: 72px;
}
.quote-ref-link { font-size: 13px; color: var(--gray-600); line-height: 1.5; }
.quote-ref-link a { color: var(--blue2); }
.quote-ref-link a:hover { color: var(--blue); }

/* ── TESTIMONIALS ── */
.testi-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.testi-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 26px 24px;
  display: flex; flex-direction: column;
  box-shadow: var(--shadow-sm);
}
.testi-quote-text {
  font-size: 14px; color: var(--gray-700);
  line-height: 1.8; font-style: italic; flex: 1;
  position: relative; padding-left: 18px;
}
.testi-quote-text::before {
  content: '"';
  position: absolute; left: 0; top: -4px;
  font-size: 28px; color: var(--blue2); line-height: 1;
  font-style: normal; font-family: Georgia, serif;
}
.testi-footer {
  border-top: 1px solid var(--border);
  margin-top: 18px; padding-top: 16px;
}
.testi-name {
  font-family: var(--font-sans);
  font-size: 14px; font-weight: 700; color: var(--gray-900);
}
.testi-role { font-size: 12px; color: var(--gray-500); line-height: 1.4; margin-top: 2px; }
.testi-role .org { color: var(--blue2); }

/* ── CTA BAND ── */
.cta-band {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy3) 100%);
  padding: 88px 0;
  text-align: center;
  position: relative; overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute; top: -50%; left: 50%;
  transform: translateX(-50%);
  width: 800px; height: 800px; border-radius: 50%;
  background: radial-gradient(circle, rgba(14,165,233,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.cta-band .section-title { color: var(--white); }
.cta-band .section-body { color: rgba(255,255,255,0.6); margin: 0 auto 40px; text-align: center; }
.cta-band .eyebrow { color: var(--accent); }
.cta-band .eyebrow::before { background: var(--accent); }
.cta-btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; position: relative; z-index: 1; }

/* ── FOOTER ── */
#site-footer {
  background: var(--gray-900);
  padding: 40px 0;
  border-top: 1px solid var(--gray-800);
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}
.footer-brand-name {
  font-family: var(--font-sans);
  font-size: 16px; font-weight: 800; color: var(--white);
}
.footer-brand-name span { color: var(--blue-light); }
.footer-tag {
  font-size: 12px; color: var(--gray-500); margin-top: 2px;
}
.footer-copy { font-size: 13px; color: var(--gray-500); }
.footer-links { display: flex; gap: 20px; }
.footer-links a {
  font-size: 13px; color: var(--gray-400);
  text-decoration: none; transition: color 0.2s;
}
.footer-links a:hover { color: var(--white); }

/* ── BIO PAGE ── */
.bio-hero {
  padding: 120px 0 72px;
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy3) 100%);
  position: relative;
}
.bio-hero-grid {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 64px;
  align-items: start;
  position: relative; z-index: 1;
}
.bio-hero-title {
  font-size: clamp(32px, 4vw, 52px);
  color: var(--white); margin-bottom: 20px;
  letter-spacing: -0.025em;
}
.bio-hero-desc {
  font-size: 17px; color: rgba(255,255,255,0.7);
  line-height: 1.8; margin-bottom: 32px; font-weight: 300;
}
.bio-meta-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-xl); padding: 28px;
  backdrop-filter: blur(8px);
}
.bio-meta-avatar {
  width: 72px; height: 72px; border-radius: 50%;
  background: linear-gradient(135deg, var(--blue2), var(--accent));
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-sans); font-size: 24px; font-weight: 800;
  color: var(--white); margin-bottom: 16px;
  border: 2px solid rgba(255,255,255,0.2);
}
.bio-meta-name { font-family: var(--font-sans); font-size: 17px; font-weight: 700; color: var(--white); margin-bottom: 3px; }
.bio-meta-title { font-size: 12px; color: var(--accent); margin-bottom: 20px; }
.bio-meta-rows { display: flex; flex-direction: column; gap: 10px; }
.bio-meta-row {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 13px; color: rgba(255,255,255,0.6); line-height: 1.4;
}
.bio-meta-row strong { color: rgba(255,255,255,0.4); font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase; display: block; margin-bottom: 1px; }

/* Bio Content */
.bio-content { padding: 72px 0; }
.bio-content-grid {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 64px;
  align-items: start;
}
.bio-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-bottom: 40px; }
.bio-stat {
  background: var(--navy);
  border-radius: var(--radius);
  padding: 22px 18px; text-align: center;
}
.bio-stat-num {
  font-family: var(--font-sans);
  font-size: 32px; font-weight: 800;
  color: var(--accent); line-height: 1; margin-bottom: 6px;
}
.bio-stat-label { font-size: 12px; color: rgba(255,255,255,0.5); line-height: 1.4; }

.bio-body h2 {
  font-size: 22px; font-weight: 700;
  color: var(--gray-900); margin: 32px 0 14px; letter-spacing: -0.015em;
}
.bio-body h2:first-child { margin-top: 0; }
.bio-body p { font-size: 16px; color: var(--gray-700); line-height: 1.9; margin-bottom: 18px; }
.bio-body p:last-child { margin-bottom: 0; }
.bio-body strong { color: var(--gray-900); }

.bio-pullquote {
  border-left: 3px solid var(--blue2);
  padding: 20px 24px;
  background: var(--blue-pale);
  border-radius: 0 var(--radius) var(--radius) 0;
  margin: 32px 0;
}
.bio-pullquote p {
  font-size: 18px; font-style: italic;
  color: var(--navy); line-height: 1.6;
  margin: 0 !important;
}

.bio-sidebar { display: flex; flex-direction: column; gap: 16px; }

/* ── ARTICLE PAGE ── */
.article-hero {
  padding: 110px 0 60px;
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy3) 100%);
}
.article-hero-inner { position: relative; z-index: 1; }
.article-meta {
  display: flex; align-items: center; gap: 16px;
  margin-bottom: 20px; flex-wrap: wrap;
}
.article-date {
  font-size: 13px; color: rgba(255,255,255,0.5);
  letter-spacing: 0.06em;
}
.article-sep { color: rgba(255,255,255,0.2); }
.article-pdf-link {
  font-size: 13px; color: var(--accent); font-weight: 500;
  display: flex; align-items: center; gap: 5px;
}
.article-pdf-link:hover { color: var(--white); }
.article-title {
  font-size: clamp(28px, 4vw, 48px);
  color: var(--white); line-height: 1.1;
  letter-spacing: -0.025em; margin-bottom: 20px;
}
.article-subtitle {
  font-size: 18px; color: rgba(255,255,255,0.65);
  line-height: 1.7; max-width: 680px;
}

.article-content { padding: 72px 0; }
.article-grid {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 64px;
  align-items: start;
}
.article-body h2 {
  font-size: 22px; font-weight: 700;
  color: var(--gray-900); margin: 36px 0 14px;
  letter-spacing: -0.015em;
}
.article-body h2:first-child { margin-top: 0; }
.article-body p { font-size: 16px; color: var(--gray-700); line-height: 1.9; margin-bottom: 18px; }
.article-body strong { color: var(--gray-900); font-weight: 600; }
.article-body p:last-child { margin-bottom: 0; }

.article-sidebar { display: flex; flex-direction: column; gap: 16px; }
.sidebar-back-link {
  display: flex; align-items: center; gap: 8px;
  font-size: 14px; font-weight: 500; color: var(--blue2);
  text-decoration: none;
}
.sidebar-back-link:hover { color: var(--blue); }

/* ── ANIMATE ── */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.reveal.delay-1 { transition-delay: 0.1s; }
.reveal.delay-2 { transition-delay: 0.2s; }
.reveal.delay-3 { transition-delay: 0.3s; }
.reveal.visible { opacity: 1; transform: none; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-card { display: none; }
  .about-layout { grid-template-columns: 1fr; }
  .insight-card-visual { display: none; }
  .bio-hero-grid { grid-template-columns: 1fr; }
  .bio-content-grid { grid-template-columns: 1fr; }
  .article-grid { grid-template-columns: 1fr; }
  .pub-grid { grid-template-columns: repeat(2, 1fr); }
  .testi-grid { grid-template-columns: repeat(2, 1fr); }
  .quotes-bar { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-social { display: none; }
  .nav-mobile-toggle { display: flex; }
  .highlights-grid { grid-template-columns: 1fr; }
  .career-header { grid-template-columns: 1fr; gap: 8px; }
  .career-tags { display: none; }
  .pub-grid { grid-template-columns: 1fr; }
  .testi-grid { grid-template-columns: 1fr; }
  .bio-stats { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .section { padding: 56px 0; }
  .hero { padding: 100px 0 56px; }
  .bio-stats { grid-template-columns: 1fr; }
}
