/* ============================================================
   Science of Clarity — Global Styles
   Palette: Navy, Green, Blue-Mid, Orange (warm/human)
   ============================================================ */

:root {
  --navy:        #1d3d72;
  --navy-dark:   #152d54;
  --navy-light:  #2a5099;
  --green:       #3aaa35;
  --green-dark:  #2d8729;
  --green-light: #4dc747;
  --blue-mid:    #2e78c7;
  --orange:      #f7941d;
  --orange-dark: #d97d10;
  --warm-cream:  #faf8f5;
  --warm-sand:   #f3efe8;
  --gray-50:     #f8fafc;
  --gray-100:    #f1f5f9;
  --gray-200:    #e2e8f0;
  --gray-300:    #cbd5e1;
  --gray-500:    #64748b;
  --gray-700:    #334155;
  --gray-900:    #0f172a;
  --white:       #ffffff;
  --text:        #1e293b;
  --text-muted:  #64748b;

  --font-sans:   'Inter', system-ui, -apple-system, sans-serif;
  --font-serif:  'Georgia', 'Times New Roman', serif;

  --radius-sm:   6px;
  --radius-md:   12px;
  --radius-lg:   20px;
  --radius-xl:   32px;
  --radius-full: 9999px;

  --shadow-sm:  0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.05);
  --shadow-md:  0 4px 16px rgba(0,0,0,.10), 0 2px 6px rgba(0,0,0,.06);
  --shadow-lg:  0 12px 40px rgba(0,0,0,.12), 0 4px 12px rgba(0,0,0,.07);
  --shadow-xl:  0 24px 64px rgba(0,0,0,.14), 0 8px 24px rgba(0,0,0,.08);

  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ---- Reset & Base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-sans);
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ---- Typography ---- */
h1, h2, h3, h4, h5 { line-height: 1.2; font-weight: 700; }
h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }
h4 { font-size: 1.15rem; }
p  { max-width: 68ch; }
.lead { font-size: 1.2rem; color: var(--text-muted); line-height: 1.8; }

/* ---- Utilities ---- */
.container { max-width: 1180px; margin: 0 auto; padding: 0 1.5rem; }
.container-narrow { max-width: 800px; margin: 0 auto; padding: 0 1.5rem; }
.section { padding: 5rem 0; }
.section-sm { padding: 3rem 0; }
.text-center { text-align: center; }
.text-white { color: var(--white); }
.text-muted { color: var(--text-muted); }
.text-green { color: var(--green); }
.text-navy { color: var(--navy); }
.text-orange { color: var(--orange); }

.eyebrow {
  display: inline-block;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: .75rem;
}
.eyebrow-blue  { color: var(--blue-mid); }
.eyebrow-orange { color: var(--orange); }
.eyebrow-white { color: rgba(255,255,255,.75); }

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .75rem 1.75rem;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: .95rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-primary { background: var(--green); color: var(--white); }
.btn-primary:hover { background: var(--green-dark); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-navy { background: var(--navy); color: var(--white); }
.btn-navy:hover { background: var(--navy-dark); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-outline-white { border-color: rgba(255,255,255,.6); color: var(--white); }
.btn-outline-white:hover { background: var(--white); color: var(--navy); transform: translateY(-2px); }
.btn-ghost { color: var(--navy); border-color: var(--gray-200); }
.btn-ghost:hover { background: var(--gray-50); transform: translateY(-2px); }

/* ---- Navigation ---- */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--gray-200);
  transition: var(--transition);
}
.site-nav.scrolled { box-shadow: var(--shadow-md); }

/* Top row — logo + brand name */
.nav-top {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: .75rem 1.5rem .5rem;
  max-width: 1180px;
  margin: 0 auto;
  border-bottom: 1px solid var(--gray-100);
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: .75rem;
  text-decoration: none;
}
.nav-logo img.site-logo-img {
  height: 38px;
  width: auto;
  display: block;
}
.nav-brand {
  font-weight: 800;
  font-size: 1.6rem;
  color: var(--navy);
  letter-spacing: -.02em;
  white-space: nowrap;
}

/* Bottom row — nav links */
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .25rem;
  max-width: 1180px;
  margin: 0 auto;
  padding: .35rem 1.5rem;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: .1rem;
}
.nav-links a {
  padding: .4rem .75rem;
  border-radius: var(--radius-sm);
  font-size: .84rem;
  font-weight: 500;
  color: var(--gray-700);
  transition: var(--transition);
}
.nav-links a:hover { color: var(--navy); background: var(--gray-50); }
.nav-links a.active { color: var(--green); font-weight: 700; background: #e8f5e9; }
.nav-cta { margin-left: .75rem; font-size: .84rem; padding: .45rem 1rem; }

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: .5rem;
  color: var(--navy);
  font-size: 1.4rem;
}
.mobile-nav {
  display: none;
  position: fixed;
  top: 70px; left: 0; right: 0;
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
  padding: 1rem 1.5rem;
  z-index: 99;
  box-shadow: var(--shadow-lg);
}
.mobile-nav.open { display: block; }
.mobile-nav a {
  display: block;
  padding: .75rem 1rem;
  border-radius: var(--radius-sm);
  font-weight: 500;
  color: var(--gray-700);
  transition: var(--transition);
}
.mobile-nav a:hover { background: var(--gray-50); color: var(--navy); }
.mobile-nav a.active { color: var(--green); background: #e8f5e9; font-weight: 700; }

/* ---- Hero ---- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 9.5rem 0 5rem;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--navy) 0%, #1e4f9e 55%, var(--navy-light) 100%);
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 80% 20%, rgba(58,170,53,.15) 0%, transparent 60%),
    radial-gradient(ellipse 50% 50% at 10% 80%, rgba(247,148,29,.1) 0%, transparent 50%);
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 780px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: var(--radius-full);
  padding: .4rem 1rem;
  font-size: .82rem;
  font-weight: 600;
  color: rgba(255,255,255,.9);
  margin-bottom: 1.75rem;
  backdrop-filter: blur(8px);
}
.hero-badge-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--green-light); }
.hero h1 { color: var(--white); margin-bottom: 1.5rem; }
.hero h1 em { font-style: normal; color: var(--green-light); }
.hero-sub {
  font-size: 1.2rem;
  color: rgba(255,255,255,.8);
  margin-bottom: 2.5rem;
  line-height: 1.8;
  max-width: 600px;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .5rem;
  color: rgba(255,255,255,.5);
  font-size: .78rem;
  animation: bounce 2s infinite;
}
.hero-scroll-hint svg { opacity: .6; }
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(6px); }
}

/* Floating orbs animation */
.hero-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  animation: float linear infinite;
}
.hero-orb-1 {
  width: 340px; height: 340px;
  background: radial-gradient(circle, rgba(58,170,53,.18), transparent 70%);
  top: -80px; right: 5%;
  animation-duration: 18s;
}
.hero-orb-2 {
  width: 240px; height: 240px;
  background: radial-gradient(circle, rgba(247,148,29,.12), transparent 70%);
  bottom: 10%; left: -60px;
  animation-duration: 22s;
  animation-direction: reverse;
}
.hero-orb-3 {
  width: 180px; height: 180px;
  background: radial-gradient(circle, rgba(46,120,199,.2), transparent 70%);
  top: 40%; right: 20%;
  animation-duration: 15s;
}
@keyframes float {
  0%   { transform: translate(0, 0) rotate(0deg); }
  33%  { transform: translate(20px, -30px) rotate(120deg); }
  66%  { transform: translate(-15px, 20px) rotate(240deg); }
  100% { transform: translate(0, 0) rotate(360deg); }
}

/* ---- Stat Chips ---- */
.stat-strip {
  background: var(--warm-cream);
  border-bottom: 1px solid var(--gray-200);
  padding: 2rem 0;
}
.stat-strip .container {
  display: flex;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}
.stat-item { text-align: center; }
.stat-number {
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--navy);
  line-height: 1;
  display: block;
}
.stat-number span { color: var(--green); }
.stat-label {
  font-size: .82rem;
  color: var(--text-muted);
  font-weight: 500;
  margin-top: .3rem;
}

/* ---- Section Headers ---- */
.section-header { margin-bottom: 3rem; }
.section-header.text-center p { margin: .75rem auto 0; }

/* ---- Domain Cards ---- */
.domains-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1.5rem;
}
.domain-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 2rem;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
  cursor: pointer;
  text-decoration: none;
  display: block;
  color: var(--text);
}
.domain-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--card-accent, var(--navy));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .4s cubic-bezier(.4,0,.2,1);
}
.domain-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: transparent; }
.domain-card:hover::before { transform: scaleX(1); }
.domain-card.flagship {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  color: var(--white);
  border-color: transparent;
  grid-column: 1 / -1;
}
.domain-card.flagship .domain-desc { color: rgba(255,255,255,.75); }
.domain-card.flagship::before { background: var(--green-light); transform: scaleX(1); }

.domain-icon {
  width: 52px; height: 52px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.25rem;
  background: var(--icon-bg, #e8eef7);
}
.domain-number {
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: .5rem;
}
.domain-card.flagship .domain-number { color: rgba(255,255,255,.5); }
.domain-card h3 { margin-bottom: .6rem; }
.domain-desc { font-size: .9rem; color: var(--text-muted); line-height: 1.6; }
.domain-researchers {
  margin-top: 1.25rem;
  display: flex;
  gap: .4rem;
  flex-wrap: wrap;
}
.researcher-tag {
  padding: .25rem .7rem;
  background: var(--gray-100);
  border-radius: var(--radius-full);
  font-size: .74rem;
  font-weight: 600;
  color: var(--gray-700);
}
.domain-card.flagship .researcher-tag {
  background: rgba(255,255,255,.15);
  color: rgba(255,255,255,.85);
}
.domain-arrow {
  position: absolute;
  bottom: 1.5rem;
  right: 1.75rem;
  font-size: 1.2rem;
  opacity: .3;
  transition: var(--transition);
}
.domain-card:hover .domain-arrow { opacity: 1; transform: translateX(4px); }

/* ---- Thesis Block ---- */
.thesis-block {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  border-radius: var(--radius-xl);
  padding: 4rem;
  position: relative;
  overflow: hidden;
}
.thesis-block::before {
  content: '"';
  position: absolute;
  top: -1rem; left: 2rem;
  font-size: 14rem;
  font-family: var(--font-serif);
  color: rgba(255,255,255,.06);
  line-height: 1;
  pointer-events: none;
}
.thesis-text {
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  font-weight: 300;
  color: var(--white);
  line-height: 1.8;
  position: relative;
}
.thesis-text strong { color: var(--green-light); font-weight: 700; }
.thesis-attribution {
  margin-top: 1.5rem;
  color: rgba(255,255,255,.5);
  font-size: .85rem;
  font-style: italic;
}

/* ---- Quote Cards ---- */
.quote-card {
  background: var(--warm-cream);
  border-left: 4px solid var(--green);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  padding: 1.75rem 2rem;
}
.quote-card blockquote {
  font-size: 1.2rem;
  font-style: italic;
  color: var(--navy);
  font-weight: 500;
  line-height: 1.7;
  margin-bottom: .75rem;
}
.quote-card cite { font-size: .85rem; color: var(--text-muted); font-style: normal; }

.quote-card.orange { border-color: var(--orange); }
.quote-card.blue   { border-color: var(--blue-mid); }

/* ---- Effect Size Bars ---- */
.effect-chart { display: flex; flex-direction: column; gap: 1.25rem; }
.effect-item {}
.effect-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: .5rem;
}
.effect-label { font-size: .9rem; font-weight: 600; color: var(--text); }
.effect-value { font-size: 1.1rem; font-weight: 800; color: var(--navy); }
.effect-track {
  height: 12px;
  background: var(--gray-200);
  border-radius: var(--radius-full);
  overflow: hidden;
  position: relative;
}
.effect-fill {
  height: 100%;
  border-radius: var(--radius-full);
  background: linear-gradient(90deg, var(--blue-mid), var(--navy));
  width: 0;
  transition: width 1.4s cubic-bezier(.4,0,.2,1);
}
.effect-fill.green { background: linear-gradient(90deg, var(--green), var(--green-dark)); }
.effect-fill.orange { background: linear-gradient(90deg, var(--orange), var(--orange-dark)); }
.effect-hinge {
  position: absolute;
  left: calc(4 / 14 * 100%);
  top: 0; bottom: 0;
  width: 2px;
  background: var(--orange);
}
.effect-hinge-label {
  position: absolute;
  left: calc(4 / 14 * 100% + 4px);
  top: -1.4rem;
  font-size: .68rem;
  color: var(--orange-dark);
  font-weight: 700;
  white-space: nowrap;
}
.effect-note { font-size: .78rem; color: var(--text-muted); margin-top: .35rem; }

/* ---- Researcher Cards ---- */
.researcher-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.25rem;
}
.researcher-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  transition: var(--transition);
}
.researcher-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.researcher-avatar {
  width: 52px; height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--white);
  margin-bottom: 1rem;
}
.researcher-name { font-size: 1.05rem; font-weight: 700; color: var(--navy); margin-bottom: .2rem; }
.researcher-role { font-size: .8rem; color: var(--text-muted); margin-bottom: 1rem; }
.researcher-finding {
  font-size: .88rem;
  line-height: 1.7;
  color: var(--text);
}
.finding-stat {
  display: inline-block;
  background: #e8f5e9;
  color: var(--green-dark);
  font-weight: 700;
  font-size: .82rem;
  padding: .15rem .5rem;
  border-radius: var(--radius-sm);
  margin: .15rem .1rem;
}
.finding-stat.blue { background: #e3f0fb; color: var(--blue-mid); }
.finding-stat.orange { background: #fef3e2; color: var(--orange-dark); }

/* ---- Levels Stepper (Education Domain) ---- */
.levels-stepper {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
}
.levels-stepper::before {
  content: '';
  position: absolute;
  left: 28px;
  top: 40px;
  bottom: 40px;
  width: 2px;
  background: linear-gradient(to bottom, var(--green), var(--navy));
}
.level-item {
  display: flex;
  gap: 1.5rem;
  padding: 1.5rem 0;
}
.level-badge {
  flex-shrink: 0;
  width: 56px; height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1rem;
  color: var(--white);
  position: relative;
  z-index: 1;
  box-shadow: 0 0 0 4px var(--white);
}
.level-body { flex: 1; padding-top: .5rem; }
.level-title { font-size: 1.1rem; font-weight: 700; color: var(--navy); margin-bottom: .4rem; }
.level-desc { font-size: .9rem; color: var(--text-muted); margin-bottom: .75rem; }
.level-key-points { display: flex; flex-wrap: wrap; gap: .5rem; }
.level-point {
  padding: .3rem .8rem;
  background: var(--gray-100);
  border-radius: var(--radius-full);
  font-size: .78rem;
  font-weight: 600;
  color: var(--gray-700);
}

/* ---- Coherence Table ---- */
.coherence-table { width: 100%; border-collapse: collapse; }
.coherence-table th {
  background: var(--navy);
  color: var(--white);
  padding: .85rem 1.25rem;
  text-align: left;
  font-size: .85rem;
  font-weight: 600;
}
.coherence-table th:first-child { border-radius: var(--radius-sm) 0 0 0; }
.coherence-table th:last-child  { border-radius: 0 var(--radius-sm) 0 0; }
.coherence-table td {
  padding: .9rem 1.25rem;
  border-bottom: 1px solid var(--gray-200);
  font-size: .88rem;
  vertical-align: top;
}
.coherence-table tr:nth-child(even) td { background: var(--warm-cream); }
.coherence-table tr:last-child td { border-bottom: none; }
.coherence-table .level-cell {
  font-weight: 700;
  color: var(--navy);
}

/* ---- Pyramid (Lencioni) ---- */
.pyramid-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .4rem;
  padding: 2rem 0;
}
.pyramid-row {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  color: var(--white);
  font-weight: 700;
  text-align: center;
  padding: .85rem 1.5rem;
  font-size: .9rem;
  transition: var(--transition);
}
.pyramid-row:hover { filter: brightness(1.1); transform: scaleX(1.02); }
.pyramid-row:nth-child(1) { width: 32%; background: var(--green); }
.pyramid-row:nth-child(2) { width: 46%; background: var(--blue-mid); }
.pyramid-row:nth-child(3) { width: 60%; background: var(--navy-light); }
.pyramid-row:nth-child(4) { width: 74%; background: var(--navy); }
.pyramid-row:nth-child(5) { width: 88%; background: var(--navy-dark); }
.pyramid-label { font-size: .72rem; font-weight: 500; opacity: .8; margin-top: .2rem; }

/* ---- Cross-Domain Findings Table ---- */
.findings-table { width: 100%; border-collapse: collapse; margin-top: 2rem; }
.findings-table th {
  background: var(--navy);
  color: var(--white);
  padding: 1rem 1.25rem;
  text-align: left;
  font-size: .85rem;
}
.findings-table td {
  padding: 1rem 1.25rem;
  border-bottom: 1px solid var(--gray-200);
  font-size: .88rem;
  vertical-align: top;
  line-height: 1.6;
}
.findings-table tr:nth-child(even) td { background: var(--warm-cream); }
.findings-table .finding-cell { font-weight: 600; color: var(--navy); }

/* ---- Page Hero (inner pages) ---- */
.page-hero {
  padding: 9.5rem 0 4rem;
  background: linear-gradient(135deg, var(--navy) 0%, #1e4f9e 60%, var(--navy-light) 100%);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 60% at 80% 30%, rgba(58,170,53,.15), transparent 65%);
}
.page-hero-content { position: relative; z-index: 1; }
.page-hero h1 { color: var(--white); margin-bottom: .75rem; }
.page-hero .lead { color: rgba(255,255,255,.75); max-width: 600px; }
.domain-breadcrumb {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .82rem;
  color: rgba(255,255,255,.5);
  margin-bottom: 1.25rem;
}
.domain-breadcrumb a { color: rgba(255,255,255,.6); transition: var(--transition); }
.domain-breadcrumb a:hover { color: var(--white); }
.domain-breadcrumb span { opacity: .4; }

/* ---- Info Cards ---- */
.info-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 1.25rem; }
.info-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  transition: var(--transition);
}
.info-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.info-card-icon {
  width: 44px; height: 44px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 1rem;
}
.info-card h4 { color: var(--navy); margin-bottom: .4rem; }
.info-card p  { font-size: .88rem; color: var(--text-muted); }

/* ---- Highlight Box ---- */
.highlight-box {
  background: linear-gradient(135deg, #e8f5e9 0%, #e3f0fb 100%);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  border: 1px solid rgba(58,170,53,.2);
}
.highlight-box.orange-bg {
  background: linear-gradient(135deg, #fef3e2 0%, #fde8c8 100%);
  border-color: rgba(247,148,29,.2);
}
.highlight-box.navy-bg {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  color: var(--white);
  border: none;
}
.highlight-box.navy-bg p, .highlight-box.navy-bg h3 { color: var(--white); }

/* ---- Goal Percentage Vis ---- */
.goal-vis {
  display: flex;
  align-items: flex-end;
  gap: 1.5rem;
  padding: 2rem 0;
}
.goal-bar-wrap { text-align: center; flex: 1; }
.goal-bar {
  width: 100%;
  border-radius: var(--radius-sm) var(--radius-sm) 0 0;
  margin: 0 auto 0.5rem;
  max-width: 80px;
  transition: height 1.4s cubic-bezier(.4,0,.2,1);
}
.goal-bar-label { font-size: .78rem; font-weight: 600; color: var(--text-muted); }
.goal-bar-value { font-size: 1.4rem; font-weight: 900; color: var(--navy); margin-bottom: .25rem; }

/* ---- Footer ---- */
.site-footer {
  background: var(--gray-900);
  color: rgba(255,255,255,.7);
  padding: 4rem 0 2rem;
}
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer-brand { max-width: 320px; }
.footer-brand h3 { color: var(--white); margin-bottom: .75rem; font-size: 1.1rem; }
.footer-brand p { font-size: .88rem; line-height: 1.7; }
.footer-col h4 { color: var(--white); font-size: .9rem; margin-bottom: 1rem; }
.footer-col a {
  display: block;
  color: rgba(255,255,255,.55);
  font-size: .85rem;
  padding: .25rem 0;
  transition: var(--transition);
}
.footer-col a:hover { color: var(--green-light); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  font-size: .8rem;
  color: rgba(255,255,255,.35);
}

/* ---- Scroll Animations ---- */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .7s ease, transform .7s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}
.fade-in {
  opacity: 0;
  transition: opacity .8s ease;
}
.fade-in.visible { opacity: 1; }
.slide-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity .7s ease, transform .7s ease;
}
.slide-left.visible { opacity: 1; transform: translateX(0); }
.slide-right {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity .7s ease, transform .7s ease;
}
.slide-right.visible { opacity: 1; transform: translateX(0); }

/* Stagger delays */
.delay-1 { transition-delay: .1s; }
.delay-2 { transition-delay: .2s; }
.delay-3 { transition-delay: .3s; }
.delay-4 { transition-delay: .4s; }
.delay-5 { transition-delay: .5s; }
.delay-6 { transition-delay: .6s; }

/* ---- Responsive ---- */
@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .mobile-menu-btn { display: block; }
  .hero { padding: 9rem 0 4rem; }
  .nav-top { padding: .6rem 1rem .4rem; }
  .nav-brand { font-size: 1rem; }
  .nav-logo img.site-logo-img { height: 28px; }
  .hero-actions { flex-direction: column; }
  .domains-grid { grid-template-columns: 1fr; }
  .domain-card.flagship { grid-column: 1; }
  .thesis-block { padding: 2.5rem 1.75rem; }
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; gap: .5rem; }
  .stat-strip .container { gap: 1.5rem; }
  .goal-vis { flex-direction: column; align-items: center; }
}
@media (max-width: 480px) {
  .researcher-grid { grid-template-columns: 1fr; }
  .info-grid { grid-template-columns: 1fr; }
}
