/* ── Variables ────────────────────────────────────────────────────────────── */
:root {
  --baxter-blue:   #4D86C6;
  --deep-space:    #1E4F86;
  --launch-white:  #F8F7F2;
  --retro-cream:   #EDE4D3;
  --steel-mist:    #C8D3DD;
  --graphite-navy: #223243;
  --torch-gold:    #F5B94C;
  --cosmic-flame:  #F07A3B;
  --ion-glow:      #9FD6F5;

  --font-head: 'Space Grotesk', sans-serif;
  --font-body: 'Inter', sans-serif;

  --radius-sm:  12px;
  --radius-md:  20px;
  --radius-lg:  28px;
  --radius-pill: 50px;

  --shadow-card: 0 2px 16px rgba(34,50,67,0.07);
  --shadow-hover: 0 8px 32px rgba(34,50,67,0.13);

  --nav-h: 160px;
  --section-pad: 96px;
  --container-max: 1160px;
}

/* ── Reset ────────────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  background: var(--launch-white);
  color: var(--graphite-navy);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
ul { list-style: none; }
a { color: inherit; text-decoration: none; }
p { line-height: 1.75; }

/* ── Typography ───────────────────────────────────────────────────────────── */
h1, h2, h3 { font-family: var(--font-head); }

.label {
  display: inline-block;
  font-family: var(--font-head);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--baxter-blue);
  margin-bottom: 0.75rem;
}
.label-light { color: var(--ion-glow); }

.section-headline {
  font-size: clamp(1.75rem, 3vw, 2.4rem);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.02em;
  color: var(--graphite-navy);
  margin-bottom: 1rem;
}
.section-intro {
  font-size: 1.05rem;
  color: #4a6070;
  max-width: 640px;
  margin: 0 auto;
}
.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}
.section-header .section-intro { margin-top: 0.75rem; }

/* ── Layout ───────────────────────────────────────────────────────────────── */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 2rem;
}
.section {
  padding: var(--section-pad) 0;
}
.section-alt {
  background: #EFF3F7;
}

/* ── Buttons ──────────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-head);
  font-weight: 600;
  border-radius: var(--radius-pill);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
}
.btn-sm  { font-size: 0.82rem; padding: 0.5rem 1.2rem; }
.btn-md  { font-size: 0.9rem;  padding: 0.65rem 1.6rem; }
.btn-lg  { font-size: 0.95rem; padding: 0.8rem 2rem; }

.btn-primary {
  background: var(--baxter-blue);
  border-color: var(--baxter-blue);
  color: #fff;
}
.btn-primary:hover {
  background: var(--deep-space);
  border-color: var(--deep-space);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(77,134,198,0.35);
}
.btn-outline {
  background: transparent;
  border-color: var(--baxter-blue);
  color: var(--baxter-blue);
}
.btn-outline:hover {
  background: var(--baxter-blue);
  color: #fff;
  transform: translateY(-1px);
}
.btn-gold {
  background: var(--torch-gold);
  border-color: var(--torch-gold);
  color: var(--graphite-navy);
}
.btn-gold:hover {
  background: #e8ac3e;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(245,185,76,0.4);
}

/* ── Badge pill ───────────────────────────────────────────────────────────── */
.badge-pill {
  display: inline-block;
  font-family: var(--font-head);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--baxter-blue);
  background: rgba(77,134,198,0.1);
  border: 1px solid rgba(77,134,198,0.25);
  border-radius: var(--radius-pill);
  padding: 0.4rem 1.1rem;
  margin-bottom: 1.5rem;
}

/* ── Navigation ───────────────────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-h);
  background: rgba(248,247,242,0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.nav.scrolled {
  border-bottom-color: var(--steel-mist);
  box-shadow: 0 2px 20px rgba(34,50,67,0.08);
}
.nav-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 2rem;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-logo {
  background: #ffffff;
  padding: 6px 12px;
  border-radius: 8px;
}
.nav-logo img { height: 144px; }
.nav-links {
  display: flex;
  gap: 0.25rem;
  margin-left: auto;
}
.nav-links a {
  font-family: var(--font-head);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--graphite-navy);
  padding: 0.4rem 0.75rem;
  border-radius: var(--radius-sm);
  transition: background 0.18s, color 0.18s;
}
.nav-links a:hover {
  background: rgba(77,134,198,0.1);
  color: var(--baxter-blue);
}
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  margin-left: auto;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--graphite-navy);
  border-radius: 2px;
  transition: all 0.25s;
}

/* ── Mobile Menu ──────────────────────────────────────────────────────────── */
.mobile-menu {
  display: none;
  position: fixed;
  top: var(--nav-h);
  left: 0; right: 0;
  background: var(--launch-white);
  border-bottom: 1px solid var(--steel-mist);
  z-index: 99;
  padding: 1.5rem 2rem 2rem;
  box-shadow: 0 8px 24px rgba(34,50,67,0.1);
}
.mobile-menu.open { display: block; }
.mobile-menu ul { display: flex; flex-direction: column; gap: 0.5rem; }
.mobile-menu a {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 500;
  display: block;
  padding: 0.5rem 0;
  color: var(--graphite-navy);
}

/* ── Hero ─────────────────────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: var(--nav-h);
  overflow: hidden;
  background: var(--launch-white);
}
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(77,134,198,0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(77,134,198,0.055) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
}
/* Fade grid at bottom */
.hero-grid::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 200px;
  background: linear-gradient(transparent, var(--launch-white));
}
/* Orbital rings */
.orbital {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(77,134,198,0.15);
  pointer-events: none;
}
.o1 { width: 560px; height: 560px; right: -160px; top: -80px; }
.o2 { width: 380px; height: 380px; right: -60px;  top: 0px; border-color: rgba(159,214,245,0.2); }
.o3 { width: 200px; height: 200px; right: 60px;   top: 80px; border-color: rgba(245,185,76,0.2); }

.hero-content {
  position: relative;
  z-index: 1;
  padding-top: 4rem;
  padding-bottom: 5rem;
  max-width: 800px;
}
.hero-headline {
  font-size: clamp(2.4rem, 5.5vw, 4rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--graphite-navy);
  margin-bottom: 1.5rem;
}
.hero-sub {
  font-size: 1.1rem;
  color: #4a6070;
  max-width: 600px;
  margin-bottom: 2.5rem;
  line-height: 1.75;
}
.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* ── Credibility Strip ────────────────────────────────────────────────────── */
.credstrip {
  background: var(--graphite-navy);
  padding: 2.75rem 0;
}
.cred-items {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem 2.5rem;
  justify-content: center;
  margin-bottom: 1.25rem;
}
.cred-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--steel-mist);
  font-family: var(--font-head);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.04em;
}
.cred-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  stroke: var(--ion-glow);
}
.cred-sub {
  text-align: center;
  color: rgba(200,211,221,0.7);
  font-size: 0.82rem;
  max-width: 680px;
  margin: 0 auto;
}

/* ── About ────────────────────────────────────────────────────────────────── */
.about-layout {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 5rem;
  align-items: center;
}
.about-text h2 { margin-bottom: 1.5rem; }
.about-text p {
  color: #4a6070;
  margin-bottom: 1rem;
}

/* Orbital ring decoration */
.ring-container {
  position: relative;
  width: 280px;
  height: 280px;
  margin: 0 auto;
}
.ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
}
.r1 { width: 280px; height: 280px; border-color: rgba(77,134,198,0.18); }
.r2 { width: 210px; height: 210px; border-color: rgba(159,214,245,0.25); }
.r3 { width: 140px; height: 140px; border-color: rgba(245,185,76,0.22); background: rgba(77,134,198,0.04); }
.ring-core {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 150px; height: 60px;
  background: var(--launch-white);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(77,134,198,0.15);
  border: 1px solid rgba(77,134,198,0.12);
}

/* ── Cards ────────────────────────────────────────────────────────────────── */
.cards-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.cards-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
.card {
  background: var(--launch-white);
  border: 1px solid var(--steel-mist);
  border-radius: var(--radius-md);
  padding: 2rem;
  transition: box-shadow 0.25s, border-color 0.25s, transform 0.25s;
}
.card:hover {
  box-shadow: var(--shadow-hover);
  border-color: rgba(77,134,198,0.4);
  transform: translateY(-3px);
}
.card-icon {
  width: 44px; height: 44px;
  background: rgba(77,134,198,0.1);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}
.card-icon svg { width: 22px; height: 22px; stroke: var(--baxter-blue); }
.card h3 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.6rem;
  line-height: 1.3;
  font-family: var(--font-head);
}
.card p {
  font-size: 0.88rem;
  color: #5a7085;
  line-height: 1.65;
}

/* ── Markets ──────────────────────────────────────────────────────────────── */
.markets-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.market-card {
  background: var(--launch-white);
  border: 1px solid var(--steel-mist);
  border-radius: var(--radius-md);
  padding: 2rem 1.75rem;
  transition: box-shadow 0.25s, border-color 0.25s;
}
.market-card:hover {
  box-shadow: var(--shadow-hover);
  border-color: rgba(77,134,198,0.35);
}
.market-num {
  font-family: var(--font-head);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--baxter-blue);
  margin-bottom: 0.75rem;
}
.market-card h3 {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.6rem;
  line-height: 1.3;
}
.market-card p {
  font-size: 0.87rem;
  color: #5a7085;
  line-height: 1.65;
  margin-bottom: 0.75rem;
}
.market-clients {
  font-size: 0.75rem;
  color: var(--baxter-blue);
  background: rgba(77,134,198,0.07);
  border: 1px solid rgba(77,134,198,0.15);
  border-radius: var(--radius-sm);
  padding: 0.5rem 0.75rem;
  line-height: 1.7;
}

/* ── Why Avayem ───────────────────────────────────────────────────────────── */
.why-card {
  background: var(--launch-white);
  border: 1px solid var(--steel-mist);
  border-radius: var(--radius-md);
  padding: 2rem;
  display: flex;
  gap: 1.25rem;
  transition: box-shadow 0.25s, border-color 0.25s;
}
.why-card:hover {
  box-shadow: var(--shadow-hover);
  border-color: rgba(77,134,198,0.35);
}
.why-icon {
  flex-shrink: 0;
  width: 44px; height: 44px;
  background: rgba(77,134,198,0.1);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  margin-top: 0.15rem;
}
.why-icon svg { width: 22px; height: 22px; stroke: var(--baxter-blue); }
.why-card h3 {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.why-card p { font-size: 0.88rem; color: #5a7085; line-height: 1.65; }

/* ── Leadership ───────────────────────────────────────────────────────────── */
.leader-layout {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 4rem;
  align-items: start;
}
.leader-avatar-col { text-align: center; }
.leader-avatar {
  width: 120px; height: 120px;
  background: linear-gradient(135deg, var(--baxter-blue), var(--deep-space));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1rem;
  box-shadow: 0 8px 32px rgba(77,134,198,0.3);
  border: 3px solid rgba(159,214,245,0.3);
}
.leader-initials {
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.04em;
}
.leader-name {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--graphite-navy);
  margin-bottom: 0.25rem;
}
.leader-title {
  font-size: 0.82rem;
  color: var(--baxter-blue);
  font-weight: 500;
  margin-bottom: 0.5rem;
}
.leader-location {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.3rem;
  font-size: 0.78rem;
  color: #7a90a0;
}

.leader-bio-intro {
  font-size: 1rem;
  color: #4a6070;
  margin-bottom: 2.5rem;
  line-height: 1.8;
}

/* Timeline */
.timeline { margin-bottom: 2.5rem; }
.tl-item {
  display: flex;
  gap: 1.25rem;
  position: relative;
  padding-bottom: 2rem;
}
.tl-item:last-child { padding-bottom: 0; }
.tl-item::before {
  content: '';
  position: absolute;
  left: 7px;
  top: 20px;
  bottom: 0;
  width: 1px;
  background: var(--steel-mist);
}
.tl-item:last-child::before { display: none; }
.tl-dot {
  flex-shrink: 0;
  width: 16px; height: 16px;
  border-radius: 50%;
  background: var(--baxter-blue);
  border: 2px solid var(--launch-white);
  box-shadow: 0 0 0 2px var(--baxter-blue);
  margin-top: 4px;
  position: relative;
  z-index: 1;
}
.tl-dot-gold {
  background: var(--torch-gold);
  box-shadow: 0 0 0 2px var(--torch-gold);
}
.tl-period {
  font-family: var(--font-head);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: var(--baxter-blue);
  margin-bottom: 0.35rem;
}
.tl-detail {
  font-size: 0.87rem;
  color: #5a7085;
  line-height: 1.7;
}

/* Accomplishments grid */
.accomplishments-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-bottom: 2rem;
  background: rgba(77,134,198,0.05);
  border: 1px solid rgba(77,134,198,0.15);
  border-radius: var(--radius-md);
  padding: 1.5rem;
}
.acc-item { text-align: center; }
.acc-num {
  font-family: var(--font-head);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--baxter-blue);
  line-height: 1.1;
  margin-bottom: 0.35rem;
}
.acc-label {
  font-size: 0.72rem;
  color: #5a7085;
  line-height: 1.4;
}

/* Education */
.edu-row {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.edu-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.82rem;
  color: #5a7085;
}
.edu-item svg { stroke: var(--baxter-blue); flex-shrink: 0; }

/* ── Portfolio ────────────────────────────────────────────────────────────── */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}
.portfolio-card {
  background: var(--launch-white);
  border: 1px solid var(--steel-mist);
  border-radius: var(--radius-md);
  padding: 1.75rem;
  transition: box-shadow 0.25s, border-color 0.25s, transform 0.25s;
}
.portfolio-card:hover {
  box-shadow: var(--shadow-hover);
  border-color: rgba(77,134,198,0.4);
  transform: translateY(-3px);
}
.portfolio-client {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 600;
  color: var(--graphite-navy);
  margin-bottom: 0.5rem;
  line-height: 1.3;
}
.portfolio-meta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.85rem;
  flex-wrap: wrap;
}
.portfolio-badge {
  font-size: 0.68rem;
  font-weight: 600;
  font-family: var(--font-head);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.2rem 0.6rem;
  border-radius: var(--radius-pill);
}
.badge-active {
  background: rgba(61,186,110,0.12);
  color: #2a9459;
  border: 1px solid rgba(61,186,110,0.25);
}
.badge-completed {
  background: rgba(77,134,198,0.1);
  color: var(--baxter-blue);
  border: 1px solid rgba(77,134,198,0.2);
}
.portfolio-date {
  font-size: 0.72rem;
  color: #7a90a0;
}
.portfolio-summary {
  font-size: 0.87rem;
  color: #5a7085;
  line-height: 1.65;
}

/* Shared feed helpers */
.feed-placeholder {
  grid-column: 1 / -1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  min-height: 180px;
  color: #7a90a0;
  font-size: 0.85rem;
}
.feed-empty {
  grid-column: 1 / -1;
  text-align: center;
  padding: 3rem 1rem;
  color: #7a90a0;
  font-size: 0.85rem;
  line-height: 1.6;
}
.feed-unconfigured {
  grid-column: 1 / -1;
  text-align: center;
  padding: 3rem 1rem;
}
.feed-unconfigured p {
  color: #7a90a0;
  font-size: 0.83rem;
  margin-bottom: 0.5rem;
}
.feed-unconfigured code {
  font-size: 0.78rem;
  background: rgba(77,134,198,0.08);
  border: 1px solid rgba(77,134,198,0.15);
  border-radius: 6px;
  padding: 0.15rem 0.4rem;
  color: var(--baxter-blue);
}
.spinner {
  width: 24px; height: 24px;
  border: 2px solid var(--steel-mist);
  border-top-color: var(--baxter-blue);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

.portfolio-status {
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  color: #7a90a0;
}
.live-indicator {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #bbb;
  display: inline-block;
}
.live-indicator.live {
  background: #3dba6e;
  animation: pulse-green 2s infinite;
}
@keyframes pulse-green {
  0%,100% { box-shadow: 0 0 4px #3dba6e; }
  50%      { box-shadow: 0 0 10px #3dba6e; }
}
.status-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  display: inline-block;
  flex-shrink: 0;
}
.dot-blue { background: var(--baxter-blue); }
.dot-grey { background: #bbb; }

/* ── CTA Banner ───────────────────────────────────────────────────────────── */
.cta-banner {
  background: var(--graphite-navy);
  padding: var(--section-pad) 0;
  position: relative;
  overflow: hidden;
}
.cta-orbital {
  position: absolute;
  width: 600px; height: 600px;
  border-radius: 50%;
  border: 1px solid rgba(77,134,198,0.12);
  right: -200px; top: -200px;
  pointer-events: none;
}
.cta-content {
  position: relative;
  text-align: center;
  max-width: 680px;
  margin: 0 auto;
}
.cta-headline {
  font-size: clamp(1.75rem, 3.5vw, 2.6rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #fff;
  margin-bottom: 1rem;
  line-height: 1.2;
}
.cta-body {
  color: rgba(200,211,221,0.85);
  font-size: 1rem;
  margin-bottom: 2.5rem;
  line-height: 1.75;
}

/* ── Footer ───────────────────────────────────────────────────────────────── */
.footer {
  background: #1a2b38;
  padding: 4rem 0 0;
}
.footer-layout {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 4rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(200,211,221,0.1);
}
.footer-logo { opacity: 0.9; margin-bottom: 1rem; }
.footer-tagline {
  font-size: 0.85rem;
  color: rgba(200,211,221,0.65);
  max-width: 360px;
  line-height: 1.7;
  margin-bottom: 0.75rem;
}
.footer-location {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.78rem;
  color: rgba(200,211,221,0.5);
}
.footer-links { display: flex; gap: 3rem; }
.footer-col-title {
  font-family: var(--font-head);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(200,211,221,0.5);
  margin-bottom: 1rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-col a {
  font-size: 0.85rem;
  color: rgba(200,211,221,0.7);
  transition: color 0.18s;
}
.footer-col a:hover { color: var(--ion-glow); }
.footer-bottom { padding: 1.25rem 0; }
.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  font-size: 0.75rem;
  color: rgba(200,211,221,0.4);
}

/* ── Scroll reveal ────────────────────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}

/* Stagger cards */
.cards-3 .card:nth-child(2) { transition-delay: 0.08s; }
.cards-3 .card:nth-child(3) { transition-delay: 0.16s; }
.cards-3 .card:nth-child(4) { transition-delay: 0.08s; }
.cards-3 .card:nth-child(5) { transition-delay: 0.16s; }
.cards-3 .card:nth-child(6) { transition-delay: 0.24s; }
.cards-2 .why-card:nth-child(2) { transition-delay: 0.08s; }
.cards-2 .why-card:nth-child(3) { transition-delay: 0.16s; }
.cards-2 .why-card:nth-child(4) { transition-delay: 0.24s; }

/* ── Responsive ───────────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .about-layout { grid-template-columns: 1fr; gap: 3rem; }
  .about-visual { order: -1; }
  .ring-container { margin: 0 auto; }

  .leader-layout { grid-template-columns: 1fr; gap: 2.5rem; }
  .leader-avatar-col { display: flex; flex-direction: column; align-items: center; }

  .markets-grid { grid-template-columns: repeat(2, 1fr); }
  .cards-3 { grid-template-columns: repeat(2, 1fr); }
  .portfolio-grid { grid-template-columns: repeat(2, 1fr); }

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

@media (max-width: 768px) {
  :root { --section-pad: 64px; }

  .nav-links,
  .nav > .btn,
  .nav-inner > .btn { display: none; }
  .nav-toggle { display: flex; }

  .hero-headline { font-size: 2.2rem; }
  .hero-content { padding-top: 2.5rem; }

  .cards-3,
  .cards-2,
  .markets-grid { grid-template-columns: 1fr; }

  .portfolio-grid { grid-template-columns: 1fr; }

  .footer-layout { grid-template-columns: 1fr; gap: 2rem; }
  .footer-links { gap: 2rem; }

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

  .edu-row { flex-direction: column; gap: 0.5rem; }

  .footer-bottom-inner { flex-direction: column; gap: 0.4rem; }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; text-align: center; }
  .accomplishments-grid { grid-template-columns: 1fr 1fr; }
}
