/* ============================================================
   ALADRO Advisory Board — Styles v2
   Navy #1D2D4F · Gold #C9922A
   ============================================================ */

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

:root {
  --navy:      #1D2D4F;
  --navy-dark: #111E36;
  --navy-mid:  #243660;
  --gold:      #C9922A;
  --gold-light:#E0A83A;
  --gold-dim:  rgba(201,146,42,.15);
  --white:     #FFFFFF;
  --gray-50:   #F8F9FB;
  --gray-100:  #F0F2F6;
  --gray-200:  #E2E6EE;
  --gray-500:  #6B7280;
  --gray-700:  #374151;
  --text:      #0F1729;
  --font:      'Inter', system-ui, sans-serif;
  --r:         10px;
  --r-lg:      16px;
  --shadow:    0 4px 20px rgba(17,30,54,.10);
  --shadow-lg: 0 12px 48px rgba(17,30,54,.18);
}

html { scroll-behavior: smooth; }
body { font-family: var(--font); color: var(--text); background: var(--white); line-height: 1.65; -webkit-font-smoothing: antialiased; overflow-x: hidden; }
.container { max-width: 1100px; margin: 0 auto; padding: 0 1.5rem; }

/* ── PROGRESS BAR ── */
.progress-bar {
  position: fixed; top: 0; left: 0; z-index: 200;
  height: 3px; width: 0%;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transition: width .1s linear;
  box-shadow: 0 0 10px rgba(201,146,42,.6);
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .8rem 2rem; border-radius: var(--r);
  font-weight: 600; font-size: .95rem; text-decoration: none;
  transition: transform .25s, box-shadow .25s, background .2s;
  cursor: pointer; border: none; letter-spacing: .01em;
}
.btn--gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--white);
  box-shadow: 0 4px 20px rgba(201,146,42,.4);
}
.btn--gold:hover { transform: translateY(-3px); box-shadow: 0 8px 32px rgba(201,146,42,.5); }
.btn--large { padding: 1rem 2.5rem; font-size: 1.05rem; margin-top: 2rem; }

/* ── NAV ── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(17,30,54,.92);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(201,146,42,.1);
  transition: box-shadow .3s;
}
.nav.scrolled { box-shadow: 0 4px 32px rgba(0,0,0,.3); }
.nav__inner { max-width: 1100px; margin: 0 auto; padding: 0 1.5rem; display: flex; align-items: center; justify-content: space-between; height: 64px; }
.nav__logo { font-size: 1.4rem; font-weight: 900; color: var(--white); text-decoration: none; letter-spacing: .06em; display: flex; align-items: center; gap: 8px; }
.nav__logo-mark { width: 18px; height: 20px; color: var(--gold); flex-shrink: 0; }
.nav__links { display: flex; gap: 2rem; list-style: none; }
.nav__links a { color: rgba(255,255,255,.75); text-decoration: none; font-size: .875rem; font-weight: 500; transition: color .2s; }
.nav__links a:hover { color: var(--gold); }
.nav__cta { background: var(--gold) !important; color: var(--white) !important; padding: .4rem 1.1rem; border-radius: 6px; transition: background .2s, transform .2s !important; }
.nav__cta:hover { background: var(--gold-light) !important; transform: translateY(-1px); }
.nav__burger { display: none; background: none; border: none; cursor: pointer; flex-direction: column; gap: 5px; padding: 4px; }
.nav__burger span { display: block; width: 22px; height: 2px; background: var(--white); border-radius: 2px; transition: transform .3s, opacity .3s; }
.nav__burger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__burger.active span:nth-child(2) { opacity: 0; }
.nav__burger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── HERO ── */
.hero {
  position: relative; min-height: 100vh;
  background: linear-gradient(150deg, var(--navy-dark) 0%, var(--navy) 55%, #1A3060 100%);
  display: flex; align-items: center; justify-content: center;
  text-align: center; overflow: hidden; padding: 6rem 1.5rem 5rem;
}
#particles { position: absolute; inset: 0; width: 100%; height: 100%; pointer-events: none; }
.hero__bg-gradient {
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 70% 50% at 80% 15%, rgba(201,146,42,.07) 0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at 15% 85%, rgba(201,146,42,.05) 0%, transparent 60%),
    radial-gradient(ellipse 40% 60% at 50% 50%, rgba(29,45,79,.4) 0%, transparent 70%);
}
.hero__content { position: relative; z-index: 2; max-width: 680px; }

/* Hero entrance animations */
.hero__anim {
  opacity: 0;
  transform: translateY(28px);
  animation: heroIn .8s cubic-bezier(.22,1,.36,1) forwards;
  animation-delay: calc(var(--d) * 0.12s + 0.2s);
}
@keyframes heroIn {
  to { opacity: 1; transform: translateY(0); }
}

.hero__expert-badge {
  display: inline-block;
  font-size: .72rem; font-weight: 800; letter-spacing: .16em; text-transform: uppercase;
  color: var(--navy-dark); background: var(--gold);
  padding: .35rem 1rem; border-radius: 4px; margin-bottom: 1rem;
}
.hero__label { font-size: .82rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: rgba(255,255,255,.55); margin-bottom: 1.25rem; }
.hero__title { font-size: clamp(4rem, 12vw, 8rem); font-weight: 900; color: var(--white); line-height: .9; letter-spacing: -.03em; margin-bottom: .4rem; display: flex; align-items: center; justify-content: center; gap: 0.12em; }
.hero__logo-mark { height: 0.75em; width: auto; color: var(--gold); flex-shrink: 0; }
.hero__title--main {
  background: linear-gradient(135deg, #fff 30%, rgba(201,146,42,.9) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.hero__subtitle { font-size: clamp(1.1rem, 2.5vw, 1.6rem); font-weight: 300; color: rgba(255,255,255,.65); letter-spacing: .2em; text-transform: uppercase; margin-bottom: .75rem; }
.hero__tagline { font-size: .875rem; color: rgba(255,255,255,.4); letter-spacing: .08em; margin-bottom: 2rem; }
.hero__badges { display: flex; flex-wrap: wrap; gap: .5rem; justify-content: center; margin-bottom: 2.5rem; }
.badge { padding: .3rem .9rem; border: 1px solid rgba(201,146,42,.35); border-radius: 100px; font-size: .78rem; font-weight: 500; color: rgba(255,255,255,.75); background: rgba(201,146,42,.07); letter-spacing: .02em; }

/* Floating decoration cards */
.hero__floats { position: absolute; inset: 0; pointer-events: none; z-index: 1; }
.float-card {
  position: absolute;
  background: rgba(255,255,255,.06);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--r);
  padding: .9rem 1.25rem;
  display: flex; flex-direction: column; gap: .2rem;
  animation: float 6s ease-in-out infinite;
}
.float-card--1 { top: 22%; left: 6%; animation-delay: 0s; }
.float-card--2 { top: 30%; right: 5%; animation-delay: -2s; }
.float-card--3 { bottom: 22%; left: 8%; animation-delay: -4s; }
@keyframes float { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-12px)} }
.float-card__num { font-size: 1.4rem; font-weight: 800; color: var(--gold); line-height: 1; }
.float-card__icon { font-size: 1.4rem; line-height: 1; }
.float-card__label { font-size: .72rem; color: rgba(255,255,255,.55); font-weight: 500; }

/* Hero scroll indicator */
.hero__scroll { position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%); display: flex; flex-direction: column; align-items: center; gap: .5rem; opacity: 0; animation: heroIn .6s .9s forwards; }
.hero__scroll-line { width: 1px; height: 48px; background: linear-gradient(to bottom, transparent, var(--gold)); animation: scrollPulse 2s ease-in-out infinite; }
.hero__scroll-text { font-size: .65rem; letter-spacing: .15em; text-transform: uppercase; color: rgba(255,255,255,.3); }
@keyframes scrollPulse { 0%,100%{opacity:.3} 50%{opacity:1} }

/* ── STATS STRIP ── */
.stats-strip {
  background: var(--navy-dark);
  border-top: 1px solid rgba(201,146,42,.15);
  border-bottom: 1px solid rgba(201,146,42,.15);
  padding: 2.5rem 0;
}
.stats__grid { display: flex; justify-content: space-around; flex-wrap: wrap; gap: 1.5rem; }
.stat { text-align: center; display: flex; flex-direction: column; align-items: center; gap: .25rem; }
.stat__val { display: flex; align-items: baseline; gap: .1rem; }
.stat__num { font-size: 2.75rem; font-weight: 900; color: var(--gold); line-height: 1; font-variant-numeric: tabular-nums; }
.stat__sfx { font-size: 1.5rem; font-weight: 700; color: var(--gold); }
.stat__pfx { font-size: .8rem; font-weight: 500; color: rgba(255,255,255,.5); margin-right: .35rem; margin-bottom: .1rem; align-self: flex-end; }
.stat__val--text { font-size: 2rem; font-weight: 800; color: var(--gold-light); }
.stat__label { font-size: .78rem; font-weight: 500; color: rgba(255,255,255,.45); letter-spacing: .08em; text-transform: uppercase; }

/* ── SECTIONS ── */
.section { padding: 6rem 0; }
.section--dark { background: var(--navy); color: var(--white); }
.section--cta { background: var(--navy-dark); color: var(--white); text-align: center; padding: 7rem 0; }

.section__header { display: flex; align-items: baseline; gap: 1rem; margin-bottom: 3rem; }
.section__num { font-size: 2.5rem; font-weight: 900; color: var(--gray-200); line-height: 1; }
.section--dark .section__num, .section__header--light .section__num { color: rgba(255,255,255,.08); }
.section__title { font-size: clamp(1.5rem, 3vw, 2.2rem); font-weight: 800; color: var(--navy); }
.section--dark .section__title, .section__header--light .section__title { color: var(--white); }
.section__intro { max-width: 680px; margin: -1.5rem 0 3rem; font-size: 1.05rem; color: rgba(255,255,255,.7); }
.section__intro strong { color: var(--white); }

/* ── CONTEXT ── */
.context__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3.5rem; align-items: start; }
.context__text h3 { font-size: 1.2rem; font-weight: 700; color: var(--navy); margin-bottom: 1.1rem; }
.context__text p { color: var(--gray-500); margin-bottom: 1rem; }
.context__text p strong { color: var(--navy); }

.context__visual h3 { font-size: 1.1rem; font-weight: 700; color: var(--navy); margin-bottom: 1rem; }
.market__cards { display: flex; flex-direction: column; gap: .75rem; }
.market__card {
  display: flex; align-items: flex-start; gap: 1rem;
  padding: 1rem 1.25rem;
  background: var(--gray-50); border: 1px solid var(--gray-200);
  border-radius: var(--r);
  transition: transform .2s, box-shadow .2s, border-color .2s;
}
.market__card:hover { transform: translateX(4px); box-shadow: var(--shadow); border-color: rgba(201,146,42,.3); }
.market__card--highlight { background: rgba(201,146,42,.06); border-color: rgba(201,146,42,.3); }
.market__card-icon { font-size: 1.3rem; flex-shrink: 0; margin-top: .1rem; }
.market__card-title { font-weight: 700; font-size: .9rem; color: var(--navy); margin-bottom: .2rem; }
.market__card-sub { font-size: .82rem; color: var(--gray-500); }

/* ── CONNECTION SECTION ── */
.connection {
  position: relative;
  background: var(--navy-dark);
  padding: 5.5rem 0;
  overflow: hidden;
}
.connection__bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 50% 50%, rgba(29,45,79,.5) 0%, transparent 70%),
    radial-gradient(ellipse 80% 40% at 20% 80%, rgba(201,146,42,.04) 0%, transparent 60%);
}
.connection__inner { position: relative; z-index: 1; }
.connection__header { text-align: center; margin-bottom: 3rem; }
.connection__label { font-size: .78rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--gold); margin-bottom: .75rem; }
.connection__title { font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 900; color: var(--white); margin-bottom: .5rem; }
.conn-arrow { color: var(--gold); }
.connection__sub { font-size: .95rem; color: rgba(255,255,255,.45); }

.connection__map-wrapper { display: flex; flex-direction: column; align-items: center; gap: 2.5rem; }
.connection__svg { width: 100%; max-width: 880px; }

/* SVG animations */
.flight-path-line {
  stroke-dasharray: 800;
  stroke-dashoffset: 800;
  transition: stroke-dashoffset 2.5s cubic-bezier(.4,0,.2,1);
}
.flight-path-line.animated { stroke-dashoffset: 0; }

.pulse-ring {
  transform-origin: center;
  animation: pulse 2.5s ease-out infinite;
}
.pulse-ring--2 { animation-delay: .4s; }
.pulse-ring--delayed { animation-delay: 1.2s; }
.pulse-ring--2.pulse-ring--delayed { animation-delay: 1.6s; }
@keyframes pulse { 0%{opacity:.8;transform:scale(1)} 100%{opacity:0;transform:scale(2)} }

#airplane {
  offset-path: path("M 230,230 C 280,100 580,60 650,145");
  offset-distance: 0%;
  animation: fly 3s 1.2s cubic-bezier(.4,0,.2,1) forwards;
}
@keyframes fly {
  0%  { offset-distance:  0%; opacity: 0; }
  5%  { opacity: 1; }
  95% { opacity: 1; }
  100%{ offset-distance: 100%; opacity: 0; }
}

.connection__callouts { display: flex; gap: 2rem; flex-wrap: wrap; justify-content: center; }
.callout {
  text-align: center;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--r);
  padding: 1.25rem 2rem;
  transition: background .2s, transform .2s;
}
.callout:hover { background: rgba(255,255,255,.09); transform: translateY(-3px); }
.callout__num { display: block; font-size: 2rem; font-weight: 900; color: var(--gold); line-height: 1; margin-bottom: .25rem; }
.callout__label { font-size: .78rem; color: rgba(255,255,255,.5); text-transform: uppercase; letter-spacing: .08em; }

/* ── PILLARS ── */
.pillars { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; margin-bottom: 3.5rem; }
.pillar {
  padding: 2rem; border-radius: var(--r-lg);
  transition: transform .25s, box-shadow .25s;
}
.pillar:hover { transform: translateY(-4px); }
.pillar--navy { background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1); }
.pillar--navy:hover { box-shadow: 0 8px 32px rgba(0,0,0,.3); }
.pillar--gold { background: rgba(201,146,42,.1); border: 1px solid rgba(201,146,42,.3); }
.pillar--gold:hover { box-shadow: 0 8px 32px rgba(201,146,42,.2); }
.pillar__num {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(201,146,42,.2);
  border: 1.5px solid rgba(201,146,42,.5);
  display: flex; align-items: center; justify-content: center;
  font-size: .85rem; font-weight: 800; color: var(--gold);
  margin-bottom: 1rem;
}
.pillar__title { font-size: 1.05rem; font-weight: 700; color: var(--white); margin-bottom: 1.1rem; }
.pillar__list { list-style: none; display: flex; flex-direction: column; gap: .65rem; }
.pillar__list li { font-size: .875rem; color: rgba(255,255,255,.7); padding-left: 1.25rem; position: relative; }
.pillar__list li::before { content: '▸'; position: absolute; left: 0; color: var(--gold); }

/* ── ROLES ── */
.roles__title { font-size: 1.2rem; font-weight: 700; color: var(--white); margin-bottom: 1.5rem; }
.roles { display: grid; grid-template-columns: repeat(2,1fr); gap: 1.25rem; }
.role {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.09);
  border-radius: var(--r); padding: 1.5rem;
  transition: background .2s, transform .25s, box-shadow .25s;
  transform-style: preserve-3d;
}
.role:hover { background: rgba(255,255,255,.08); transform: translateY(-4px) scale(1.01); box-shadow: 0 12px 40px rgba(0,0,0,.3); }
.role__tag { font-size: .7rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; margin-bottom: .5rem; }
.role__tag--chair   { color: var(--gold); }
.role__tag--edu     { color: #7EB8F7; }
.role__tag--brand   { color: var(--gold); }
.role__tag--liaison { color: #A8D5A2; }
.role__name { font-size: .95rem; font-weight: 700; color: var(--white); margin-bottom: .75rem; }
.role p { font-size: .83rem; color: rgba(255,255,255,.6); margin-bottom: .45rem; }
.role p strong { color: rgba(255,255,255,.9); }

/* ── GOVERNANCE ── */
.gov__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; }
.gov__principles h3, .gov__sessions h3 { font-size: 1.1rem; font-weight: 700; color: var(--navy); margin-bottom: 1rem; }
.principles__list { list-style: none; display: flex; flex-direction: column; gap: .8rem; }
.principles__list li { font-size: .9rem; color: var(--gray-500); padding-left: 1.25rem; position: relative; }
.principles__list li::before { content: '▸'; position: absolute; left: 0; color: var(--gold); }
.principles__list li strong { color: var(--navy); }

.sessions__list { display: flex; flex-direction: column; gap: .75rem; }
.session-item { display: flex; gap: 1rem; align-items: flex-start; padding: 1rem; background: var(--gray-50); border-radius: var(--r); border: 1px solid var(--gray-200); transition: border-color .2s, background .2s; }
.session-item:hover { border-color: rgba(201,146,42,.3); background: rgba(201,146,42,.04); }
.session-item__type { min-width: 90px; font-weight: 700; font-size: .85rem; color: var(--navy); }
.session-item__body { flex: 1; }
.session-item__freq { font-size: .75rem; font-weight: 600; color: var(--gold); display: block; margin-bottom: .3rem; }
.session-item p { font-size: .83rem; color: var(--gray-500); }

/* ── PROFILES ── */
.profiles__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.profile__card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.09);
  border-radius: var(--r-lg); padding: 2rem;
  transition: transform .25s, box-shadow .25s;
}
.profile__card:hover { transform: translateY(-5px); box-shadow: 0 16px 48px rgba(0,0,0,.3); }
.profile__tag { display: inline-block; font-size: .72rem; font-weight: 700; letter-spacing: .09em; text-transform: uppercase; padding: .35rem .9rem; border-radius: 100px; margin-bottom: 1rem; }
.profile__tag--navy { background: rgba(255,255,255,.1); color: var(--white); }
.profile__tag--gold { background: rgba(201,146,42,.2); color: var(--gold-light); }
.profile__intro { font-size: .9rem; color: rgba(255,255,255,.65); margin-bottom: 1.5rem; line-height: 1.55; }

.criteria { display: flex; flex-direction: column; gap: .6rem; }
.criterion { display: flex; flex-direction: column; gap: .2rem; padding: .8rem 1rem; background: rgba(255,255,255,.04); border-radius: 8px; border-left: 3px solid rgba(201,146,42,.4); }
.criterion__key { font-size: .75rem; font-weight: 700; color: var(--gold-light); text-transform: uppercase; letter-spacing: .07em; }
.criterion__val { font-size: .83rem; color: rgba(255,255,255,.65); }

/* ── ROADMAP ── */
.roadmap { max-width: 680px; margin: 0 auto; }
.roadmap__item { display: grid; grid-template-columns: 28px 1fr; gap: 1.75rem; }
.roadmap__marker { display: flex; flex-direction: column; align-items: center; }
.roadmap__dot {
  width: 14px; height: 14px; border-radius: 50%;
  background: var(--gold); border: 3px solid var(--white);
  box-shadow: 0 0 0 3px rgba(201,146,42,.3), 0 0 12px rgba(201,146,42,.4);
  flex-shrink: 0; margin-top: .35rem;
  transition: transform .2s;
}
.roadmap__item:hover .roadmap__dot { transform: scale(1.3); }
.roadmap__dot--last { background: var(--gold-light); box-shadow: 0 0 0 4px rgba(201,146,42,.2), 0 0 20px rgba(201,146,42,.5); }
.roadmap__line { flex: 1; width: 2px; background: linear-gradient(to bottom, rgba(201,146,42,.6), rgba(201,146,42,.1)); margin: 5px 0; min-height: 56px; }
.roadmap__content { padding-bottom: 2.5rem; }
.roadmap__phase { font-size: .72rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; color: var(--gold); margin-bottom: .2rem; }
.roadmap__period { font-size: .95rem; font-weight: 700; color: var(--navy); margin-bottom: .5rem; }
.roadmap__content p { font-size: .875rem; color: var(--gray-500); }
.roadmap__status { display: inline-block; margin-top: .6rem; padding: .25rem .75rem; border-radius: 100px; font-size: .72rem; font-weight: 700; }
.roadmap__status--active { background: rgba(201,146,42,.12); color: var(--gold); border: 1px solid rgba(201,146,42,.3); }

/* ── VALUE CARDS ── */
.value__grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 1.5rem; }
.value__card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.09);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: transform .25s, box-shadow .25s;
  cursor: default;
  perspective: 1000px;
}
.value__card:hover { transform: translateY(-6px) rotateX(2deg); box-shadow: 0 20px 56px rgba(0,0,0,.35), 0 0 0 1px rgba(201,146,42,.2); }
.value__card-inner { padding: 1.75rem; }
.value__icon { width: 48px; height: 48px; margin-bottom: 1.25rem; }
.value__card h4 { font-size: 1rem; font-weight: 700; color: var(--white); margin-bottom: .6rem; }
.value__card p { font-size: .875rem; color: rgba(255,255,255,.6); line-height: 1.6; }

/* ── CTA ── */
.cta__quote { margin-bottom: 3.5rem; }
.cta__quote-line1 { font-size: clamp(1.1rem, 2.5vw, 1.6rem); font-weight: 400; color: rgba(255,255,255,.75); line-height: 1.5; }
.cta__quote-line2 { font-size: clamp(1.3rem, 3vw, 2rem); font-weight: 700; color: var(--gold); line-height: 1.4; }
.cta__card {
  max-width: 480px; margin: 0 auto;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--r-lg); padding: 2.5rem;
}
.cta__avatar {
  width: 96px; height: 96px; border-radius: 50%;
  object-fit: cover; object-position: center top;
  display: block;
  margin: 0 auto 1.25rem;
  border: 3px solid var(--gold);
  box-shadow: 0 0 0 5px rgba(201,146,42,.2), 0 8px 32px rgba(0,0,0,.4);
}
.cta__card h3 { font-size: 1.25rem; font-weight: 700; color: var(--white); margin-bottom: .25rem; }
.cta__role { font-size: .875rem; color: rgba(255,255,255,.45); margin-bottom: 1.5rem; }
.cta__links { display: flex; flex-wrap: wrap; gap: .75rem; justify-content: center; margin-bottom: .5rem; }
.cta__link { display: inline-flex; align-items: center; gap: .4rem; color: var(--gold-light); text-decoration: none; font-size: .9rem; font-weight: 500; transition: color .2s; }
.cta__link:hover { color: var(--white); }

/* ── FOOTER ── */
.footer { background: var(--navy-dark); border-top: 1px solid rgba(255,255,255,.05); padding: 1.5rem 0; }
.footer__inner { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: .5rem; }
.footer__brand { font-weight: 900; font-size: .95rem; color: var(--white); letter-spacing: .08em; }
.footer__copy { font-size: .78rem; color: rgba(255,255,255,.3); }

/* ── SERVICES LIST ── */
.services__list { list-style: none; display: flex; flex-direction: column; gap: .7rem; margin-top: 1.25rem; }
.services__list li { display: flex; align-items: flex-start; gap: .65rem; font-size: .9rem; color: var(--gray-500); line-height: 1.5; }
.services__list li svg { flex-shrink: 0; margin-top: .1rem; }

/* ── COGNIA STATS ── */
.cognia__stats { display: flex; gap: 1rem; margin: 1.25rem 0; }
.cognia__stat { flex: 1; text-align: center; padding: 1.25rem 1rem; background: rgba(201,146,42,.08); border: 1px solid rgba(201,146,42,.25); border-radius: var(--r); }
.cognia__num { display: block; font-size: 2.2rem; font-weight: 900; color: var(--gold); line-height: 1; margin-bottom: .5rem; }
.cognia__label { font-size: .78rem; color: rgba(255,255,255,.6); line-height: 1.45; }

/* ── REVEAL ANIMATIONS ── */
.reveal-item {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .65s cubic-bezier(.22,1,.36,1), transform .65s cubic-bezier(.22,1,.36,1);
  transition-delay: calc(var(--d, 0) * 0.09s);
}
.reveal-item.revealed { opacity: 1; transform: translateY(0); }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .context__grid, .gov__grid, .profiles__grid { grid-template-columns: 1fr; }
  .pillars { grid-template-columns: 1fr; }
  .roles { grid-template-columns: 1fr; }
  .value__grid { grid-template-columns: 1fr; }
  .hero__floats .float-card--1, .hero__floats .float-card--3 { display: none; }
  .hero__floats .float-card--2 { top: 10%; right: 4%; }
}
@media (max-width: 640px) {
  .nav__links { display: none; flex-direction: column; position: absolute; top: 64px; left: 0; right: 0; background: rgba(17,30,54,.98); padding: 1.5rem; gap: 1.25rem; border-bottom: 1px solid rgba(201,146,42,.1); }
  .nav__links.open { display: flex; }
  .nav__burger { display: flex; }
  .hero__title { font-size: clamp(3rem, 18vw, 5rem); }
  .stats__grid { flex-direction: row; justify-content: center; gap: 1.5rem 2.5rem; }
  .connection__callouts { gap: 1rem; }
  .callout { padding: 1rem 1.25rem; }
  .connection__svg { height: 220px; }
  .hero__floats { display: none; }
}
