/* =============================================
   THINK UKRAINE — MAIN STYLESHEET
   Glassmorphism UI / Dark Hero / Framer-ready
   Brand: Signal v2 · #6750F6 · #151827
   ============================================= */

/* ---- TOKENS ---- */
:root {
  /* Brand colors */
  --clr-bg:          #f4f5fb;
  --clr-bg-gray:     #e8eaf6;
  --clr-bg-dark:     #151827;
  --clr-bg-dark-2:   #0c1020;

  --clr-text:        #232a3c;
  --clr-text-muted:  #647086;
  --clr-text-light:  #ffffff;
  --clr-text-light-muted: rgba(255,255,255,0.68);
  --clr-text-inv:    var(--clr-text-light);

  --clr-accent:      #6750f6;
  --clr-accent-hover:#513cd8;
  --clr-accent-2:    #5c61f2;
  --clr-accent-3:    #d7bf8a;
  --clr-accent-glow: rgba(103, 80, 246, 0.24);
  --logo-mark-accent:#6750f6;

  --clr-border:      rgba(35, 42, 60, 0.10);
  --clr-border-dark: rgba(255,255,255,0.12);

  --tag-bg:          rgba(103, 80, 246, 0.11);
  --card-hover-border: rgba(103, 80, 246, 0.20);
  --card-pill-bg:    rgba(103, 80, 246, 0.10);
  --header-scrolled-bg: rgba(12, 16, 32, 0.88);
  --header-scrolled-border: rgba(215, 191, 138, 0.16);
  --mobile-nav-bg:   rgba(12, 16, 32, 0.97);

  --hero-shape-1:    radial-gradient(ellipse, rgba(103,80,246,0.30) 0%, transparent 68%);
  --hero-shape-2:    radial-gradient(ellipse, rgba(92,97,242,0.18) 0%, transparent 68%);
  --hero-shape-3:    radial-gradient(ellipse, rgba(215,191,138,0.18) 0%, transparent 72%);
  --hero-grid-line:  rgba(255,255,255,0.028);
  --hero-title-gradient: linear-gradient(135deg, #dcc896 0%, #ffffff 40%, #a6aefb 100%);
  --hero-chip-bg:    rgba(255,255,255,0.06);
  --hero-chip-border:rgba(255,255,255,0.12);
  --hero-chip-text:  rgba(255,255,255,0.82);
  --hero-panel-bg:   rgba(8, 12, 24, 0.84);
  --hero-eyebrow:    rgba(255,255,255,0.48);
  --hero-counter:    rgba(255,255,255,0.70);
  --hero-meta:       rgba(255,255,255,0.58);
  --hero-type-text:  #e6d3a2;
  --hero-excerpt:    rgba(255,255,255,0.72);
  --hero-dot-bg:     rgba(255,255,255,0.18);
  --hero-dot-border: rgba(255,255,255,0.28);
  --hero-dot-active: #9ea5fa;
  --hero-control-bg: rgba(255,255,255,0.08);
  --hero-control-border: rgba(255,255,255,0.12);
  --hero-control-hover-bg: rgba(103, 80, 246, 0.16);
  --hero-control-hover-border: rgba(103, 80, 246, 0.34);
  --hero-teaser-bg:  rgba(255,255,255,0.06);
  --hero-teaser-border: rgba(255,255,255,0.10);
  --hero-teaser-event-bg: rgba(92, 97, 242, 0.16);
  --hero-teaser-event-border: rgba(92, 97, 242, 0.30);
  --hero-teaser-label: rgba(255,255,255,0.46);
  --hero-teaser-meta: rgba(255,255,255,0.56);

  --audience-panel-bg: #111523;
  --audience-card-bg: rgba(255,255,255,0.05);
  --audience-card-border: rgba(255,255,255,0.08);
  --audience-card-text: rgba(255,255,255,0.68);

  --analytics-feature-bg: linear-gradient(160deg, rgba(21, 24, 39, 0.98), rgba(12, 16, 32, 0.98));
  --analytics-badge-bg: rgba(215, 191, 138, 0.15);
  --analytics-badge-text: #edd9aa;
  --positioning-bg: linear-gradient(180deg, #eceff8 0%, #f6f8fc 100%);
  --positioning-border: rgba(103, 80, 246, 0.12);

  --contact-type-bg: rgba(255,255,255,0.08);
  --contact-type-border: rgba(255,255,255,0.12);
  --contact-type-text: rgba(255,255,255,0.78);

  /* Glass */
  --glass-bg-dark:   rgba(17, 21, 35, 0.66);
  --glass-bg-light:  rgba(255,255,255,0.10);
  --glass-blur:      18px;
  --glass-border:    rgba(255,255,255,0.12);

  /* Typography — Euclid Circular A (brand font, use @font-face to load)
     Fallback: Plus Jakarta Sans (closest free match, loaded via Google Fonts) */
  --ff-heading: 'Euclid Circular A', 'Plus Jakarta Sans', sans-serif;
  --ff-body:    'Euclid Circular A', 'Plus Jakarta Sans', sans-serif;
  --fw-light:   300;
  --fw-regular: 400;
  --fw-medium:  500;
  --fw-semi:    600;
  --fw-bold:    700;
  --fw-extra:   800;

  /* Spacing */
  --section-py: 100px;
  --container:  1200px;
  --gap:        24px;

  /* Radius */
  --r-sm:  8px;
  --r-md:  16px;
  --r-lg:  24px;
  --r-xl:  32px;
  --radius-sm: var(--r-sm);
  --radius-md: var(--r-md);
  --radius-lg: var(--r-lg);
  --radius-xl: var(--r-xl);

  /* Transitions */
  --ease:      cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out:  cubic-bezier(0, 0, 0.2, 1);
  --dur-fast:  150ms;
  --dur-med:   300ms;
  --dur-slow:  600ms;

  /* Shadow */
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
  --shadow-md: 0 8px 32px rgba(0,0,0,0.10);
  --shadow-lg: 0 24px 64px rgba(0,0,0,0.15);
}

/* ---- RESET ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--ff-body);
  color: var(--clr-text);
  background: var(--clr-bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }
input, textarea { font: inherit; }

/* ---- ACCESSIBILITY ---- */
:focus-visible {
  outline: 2px solid var(--clr-accent);
  outline-offset: 3px;
  border-radius: 4px;
}
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); border: 0;
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .fade-up { opacity: 1 !important; transform: none !important; }
  .hero__video-wrap { display: none !important; }
}
@media (prefers-reduced-transparency: reduce) {
  .glass-panel, .glass-card {
    backdrop-filter: none;
    background: rgba(14, 14, 22, 0.95) !important;
  }
}

/* ---- LAYOUT ---- */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}
.section {
  padding: var(--section-py) 0;
}
.section--dark {
  background: var(--clr-bg-dark);
  color: var(--clr-text-light);
}
.section--gray {
  background: var(--clr-bg-gray);
}

/* ---- TYPOGRAPHY ---- */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--clr-accent);
  margin-bottom: 16px;
}
.section-label::before {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background: var(--clr-accent);
  border-radius: 2px;
}
.section-title {
  font-family: var(--ff-heading);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}
.section-title--light { color: var(--clr-text-light); }
.section-subtitle {
  font-size: 17px;
  color: var(--clr-text-muted);
  margin-bottom: 56px;
  line-height: 1.7;
}
.section-subtitle--light { color: var(--clr-text-light-muted); }
.section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 48px;
  gap: 24px;
}

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--r-sm);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.01em;
  transition: all var(--dur-med) var(--ease);
  white-space: nowrap;
}
.btn--primary {
  background: var(--clr-accent);
  color: #fff;
  box-shadow: 0 4px 20px var(--clr-accent-glow);
}
.btn--primary:hover {
  background: var(--clr-accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px var(--clr-accent-glow);
}
.btn--outline {
  background: transparent;
  color: var(--clr-accent);
  border: 1.5px solid var(--clr-accent);
}
.btn--outline:hover {
  background: var(--clr-accent);
  color: #fff;
}
.btn--ghost {
  background: rgba(255,255,255,0.10);
  color: var(--clr-text-light);
  border: 1.5px solid rgba(255,255,255,0.25);
  backdrop-filter: blur(8px);
}
.btn--ghost:hover {
  background: rgba(255,255,255,0.20);
  border-color: rgba(255,255,255,0.45);
}
.btn--full { width: 100%; justify-content: center; }

/* ---- GLASS ---- */
.glass-panel {
  background: var(--glass-bg-dark);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  border: 1px solid var(--glass-border);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-lg), inset 0 1px 0 rgba(255,255,255,0.08);
}
.glass-card {
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border);
  border-radius: var(--r-md);
  transition: background var(--dur-med) var(--ease), transform var(--dur-med) var(--ease), box-shadow var(--dur-med) var(--ease);
}
.glass-card:hover {
  background: rgba(255,255,255,0.10);
  transform: translateY(-4px);
  box-shadow: 0 20px 48px rgba(0,0,0,0.4), 0 0 0 1px rgba(255,255,255,0.12);
}

/* ---- LOGO (SVG from Framer) ---- */
.logo {
  display: flex;
  align-items: center;
  transition: opacity var(--dur-fast) var(--ease);
  color: var(--clr-bg-dark); /* wordmark color on light bg */
}
.logo:hover { opacity: 0.75; }
.logo--light { color: #ffffff; }

.logo__svg {
  height: 28px;
  width: auto;
  display: block;
  flex-shrink: 0;
}
.logo__svg path:nth-of-type(2) { fill: var(--logo-mark-accent); }
.logo__svg--sm { height: 24px; }

/* legacy fallback — keep in case old markup lingers */
.logo__mark {
  width: 40px;
  height: 40px;
  background: var(--clr-accent);
  color: #fff;
  font-family: var(--ff-heading);
  font-weight: 700;
  font-size: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  letter-spacing: 0.05em;
  flex-shrink: 0;
}
.logo__mark--sm { width: 34px; height: 34px; font-size: 11px; }
.logo__text {
  font-family: var(--ff-heading);
  font-size: 13px;
  font-weight: 400;
  line-height: 1.3;
  letter-spacing: 0.02em;
}
.logo__text strong { font-weight: 700; }

/* ---- FONT UPDATE — Plus Jakarta Sans as Euclid Circular A stand-in ---- */
/* To use real Euclid Circular A, add @font-face blocks here with your .woff2 files */
/* @font-face {
  font-family: 'Euclid Circular A';
  src: url('fonts/EuclidCircularA-Regular.woff2') format('woff2');
  font-weight: 400; font-style: normal; font-display: swap;
} */

/* ---- TAG ---- */
.tag {
  display: inline-block;
  padding: 4px 10px;
  background: var(--tag-bg);
  color: var(--clr-accent);
  border-radius: 4px;
  font-size: 12px;
  font-weight: 500;
}

/* ---- EDITORIAL META ---- */
.editorial-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 12px;
  color: var(--clr-text-muted);
}
.editorial-meta--light { color: var(--clr-text-light-muted); }
.editorial-meta__sep {
  width: 4px;
  height: 4px;
  border-radius: 999px;
  background: currentColor;
  opacity: 0.4;
}
.editorial-authors {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.author-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 10px 6px 6px;
  border-radius: 999px;
  background: var(--card-pill-bg);
  color: var(--clr-accent);
  font-size: 12px;
  font-weight: 600;
  line-height: 1;
}
.author-chip--light {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  color: #fff;
}
.author-chip__avatar {
  width: 22px;
  height: 22px;
  border-radius: 999px;
  background: var(--clr-accent);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.04em;
}
.author-chip--light .author-chip__avatar {
  background: rgba(255,255,255,0.16);
}

/* ---- HEADER ---- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 20px 0;
  transition: background var(--dur-med) var(--ease),
              padding var(--dur-med) var(--ease),
              backdrop-filter var(--dur-med) var(--ease),
              box-shadow var(--dur-med) var(--ease);
}
.header.is-scrolled {
  padding: 12px 0;
  background: var(--header-scrolled-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 var(--header-scrolled-border);
}
.header__inner {
  display: flex;
  align-items: center;
  gap: 40px;
}
.nav { flex: 1; }
.nav__list {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav__link {
  padding: 8px 14px;
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,0.75);
  border-radius: var(--r-sm);
  transition: color var(--dur-fast) var(--ease), background var(--dur-fast) var(--ease);
}
.nav__link:hover {
  color: #fff;
  background: rgba(255,255,255,0.08);
}
.nav__link.is-active {
  color: #fff;
  background: rgba(255,255,255,0.10);
}
.header__cta { margin-left: auto; }
.header__cta.is-active {
  background: var(--clr-accent);
  border-color: var(--clr-accent);
  color: #fff;
}
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 32px;
  padding: 4px;
  margin-left: auto;
}
.burger span {
  display: block;
  width: 100%;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform var(--dur-med) var(--ease), opacity var(--dur-med) var(--ease);
}
.burger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.is-open span:nth-child(2) { opacity: 0; }
.burger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---- MOBILE NAV ---- */
.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 90;
  background: var(--mobile-nav-bg);
  backdrop-filter: blur(24px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--dur-med) var(--ease);
}
.mobile-nav.is-open {
  opacity: 1;
  pointer-events: auto;
}
.mobile-nav__list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  text-align: center;
}
.mobile-nav__link {
  display: block;
  font-family: var(--ff-heading);
  font-size: clamp(24px, 6vw, 36px);
  font-weight: 600;
  color: rgba(255,255,255,0.8);
  padding: 10px 24px;
  border-radius: var(--r-md);
  transition: color var(--dur-fast) var(--ease);
}
.mobile-nav__link:hover { color: #fff; }
.mobile-nav__link.is-active:not(.mobile-nav__link--cta) {
  color: #fff;
  background: rgba(255,255,255,0.08);
}
.mobile-nav__link--cta {
  margin-top: 16px;
  background: var(--clr-accent);
  color: #fff;
  font-size: 18px;
}

/* ---- HERO ---- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--clr-bg-dark);
  overflow: hidden;
  padding: 120px 0 80px;
}
.hero__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: var(--clr-bg-dark);
}
.hero__bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 14% 18%, rgba(103, 80, 246, 0.30) 0%, transparent 34%),
    radial-gradient(circle at 72% 80%, rgba(215, 191, 138, 0.12) 0%, transparent 20%),
    linear-gradient(180deg, rgba(10, 12, 24, 0.08) 0%, rgba(10, 12, 24, 0.22) 100%);
}
.hero__video-wrap {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 1;
}
.hero__video-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(9, 18, 29, 0.34) 0%, rgba(9, 18, 29, 0.22) 38%, rgba(9, 18, 29, 0.42) 100%),
    linear-gradient(180deg, rgba(6, 12, 19, 0.18) 0%, rgba(6, 12, 19, 0.32) 100%);
}
.hero__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  opacity: 0.72;
  filter: saturate(0.92) contrast(1.03) brightness(0.84);
}
.hero__bg-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.48;
  z-index: 2;
}
.hero__bg-shape--1 {
  width: 600px;
  height: 600px;
  top: -200px;
  left: -100px;
  background: var(--hero-shape-1);
}
.hero__bg-shape--2 {
  width: 500px;
  height: 500px;
  bottom: -150px;
  right: -50px;
  background: var(--hero-shape-2);
}
.hero__bg-shape--3 {
  width: 300px;
  height: 300px;
  top: 50%;
  right: 20%;
  transform: translateY(-50%);
  background: var(--hero-shape-3);
}
.hero__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--hero-grid-line) 1px, transparent 1px),
    linear-gradient(90deg, var(--hero-grid-line) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
  opacity: 0.52;
  z-index: 2;
}
.hero__content {
  position: relative;
  z-index: 2;
  max-width: 800px;
}
.hero__label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--clr-accent-2);
  margin-bottom: 24px;
}
.hero__label::before {
  content: '';
  width: 24px;
  height: 2px;
  background: var(--clr-accent-2);
  border-radius: 2px;
}
.hero__title {
  font-family: var(--ff-heading);
  font-size: clamp(56px, 9vw, 120px);
  font-weight: 800;
  line-height: 0.9;
  letter-spacing: -0.04em;
  color: var(--clr-text-light);
  margin-bottom: 32px;
}
.hero__title--accent {
  background: linear-gradient(135deg, #3B5BDB 0%, #748FFC 50%, #FFD700 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero__subtitle {
  font-size: clamp(16px, 2vw, 19px);
  color: var(--clr-text-light-muted);
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 580px;
}
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 64px;
}

/* Hero stats glass panel */
.hero__stats {
  display: flex;
  align-items: center;
  gap: 0;
  padding: 24px 32px;
  max-width: 640px;
}
.hero__stat {
  flex: 1;
  text-align: center;
}
.hero__stat-num {
  display: block;
  font-family: var(--ff-heading);
  font-size: 28px;
  font-weight: 700;
  color: var(--clr-text-light);
  line-height: 1;
  margin-bottom: 4px;
}
.hero__stat-label {
  font-size: 12px;
  color: var(--clr-text-light-muted);
  letter-spacing: 0.03em;
}
.hero__stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.15);
  flex-shrink: 0;
}

/* Hero scroll hint */
.hero__scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.4);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  z-index: 2;
}
.hero__scroll-arrow {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.4), transparent);
  animation: scrollHint 2s ease-in-out infinite;
}
@keyframes scrollHint {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50% { opacity: 0.8; transform: scaleY(1.2); }
}

/* ---- FADE-UP ANIMATION ---- */
/* Progressive enhancement: content is visible by default and only offscreen
   items get hidden after JS marks them as reveal-pending. */
.fade-up {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.65s var(--ease-out), transform 0.65s var(--ease-out);
}
.fade-up.reveal-pending {
  opacity: 0;
  transform: translateY(28px);
}
.fade-up.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes heroReveal {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ---- ARCHIVE TEMPLATE ---- */
.archive-page .page-hero {
  background: var(--clr-bg-dark);
  padding: 96px 0 44px;
  position: relative;
  overflow: hidden;
}
.archive-page .page-hero__bg-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.18;
  pointer-events: none;
}
.archive-page .page-hero__bg-shape--1 {
  width: 600px;
  height: 600px;
  background: var(--clr-accent);
  top: -200px;
  left: -100px;
}
.archive-page .page-hero__bg-shape--2 {
  width: 400px;
  height: 400px;
  background: var(--clr-accent-2);
  bottom: -100px;
  right: 10%;
}
.archive-page .page-hero__label {
  font-size: 0.8rem;
  font-weight: var(--fw-semi);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--clr-accent);
  margin-bottom: 16px;
}
.archive-page .page-hero__title {
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: var(--fw-extra);
  color: var(--clr-text-inv);
  line-height: 1.1;
  margin-bottom: 20px;
}
.archive-page .page-hero__sub {
  color: rgba(255,255,255,0.65);
  font-size: 1.05rem;
  max-width: 560px;
}
.archive-page .stats-strip {
  background: var(--clr-accent);
  padding: 36px 0;
}
.archive-page .stats-strip__inner {
  display: flex;
  justify-content: center;
  gap: 64px;
  flex-wrap: wrap;
}
.archive-page .stats-strip__item { text-align: center; }
.archive-page .stats-strip__num {
  display: block;
  font-size: 2rem;
  font-weight: var(--fw-extra);
  color: #fff;
  line-height: 1;
}
.archive-page .stats-strip__label {
  display: block;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.75);
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.archive-page .filter-bar {
  background: var(--clr-bg);
  border-bottom: 1px solid var(--clr-border);
  padding: 20px 0;
  position: sticky;
  top: 64px;
  z-index: 10;
}
.archive-page .filter-bar__inner {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.archive-page .filter-bar__actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.archive-page .filter-btn {
  padding: 8px 20px;
  border-radius: 100px;
  border: 1px solid var(--clr-border);
  background: transparent;
  color: var(--clr-text-muted);
  font-family: var(--ff-body);
  font-size: 0.85rem;
  font-weight: var(--fw-medium);
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.archive-page .filter-btn:hover,
.archive-page .filter-btn.is-active {
  background: var(--clr-accent);
  color: #fff;
  border-color: var(--clr-accent);
}
.archive-page .filter-bar__count {
  margin-left: auto;
  font-size: 0.85rem;
  color: var(--clr-text-muted);
}
.archive-page .featured-research {
  padding: 64px 0 0;
  background: var(--clr-bg);
}
.archive-page .featured-research__title {
  font-size: 1.3rem;
  font-weight: var(--fw-semi);
  color: var(--clr-text);
  margin-bottom: 28px;
}
.archive-page .research-hero-card {
  background: var(--clr-bg-dark);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 360px;
  margin-bottom: 64px;
}
.archive-page .research-hero-card__content {
  padding: 48px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.archive-page .research-hero-card__label {
  font-size: 0.72rem;
  font-weight: var(--fw-semi);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--clr-accent);
  margin-bottom: 16px;
}
.archive-page .research-hero-card__title {
  font-size: clamp(1.3rem, 2.5vw, 1.7rem);
  font-weight: var(--fw-bold);
  color: var(--clr-text-inv);
  line-height: 1.3;
  margin-bottom: 16px;
}
.archive-page .research-hero-card__excerpt {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.6;
  flex: 1;
  margin-bottom: 28px;
}
.archive-page .research-hero-card__meta {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
  margin-bottom: 20px;
}
.archive-page .research-hero-card__stats {
  background: rgba(255,255,255,0.06);
  border-radius: var(--radius-md);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  justify-content: center;
}
.archive-page .rh-stat__num {
  display: block;
  font-size: 2.4rem;
  font-weight: var(--fw-extra);
  color: var(--clr-accent);
  line-height: 1;
  margin-bottom: 6px;
}
.archive-page .rh-stat__text {
  display: block;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.4;
}
.archive-page .pub-section {
  padding: 48px 0 96px;
  background: var(--clr-bg);
}
.archive-page .pub-section__title {
  font-size: 1.3rem;
  font-weight: var(--fw-semi);
  color: var(--clr-text);
  margin-bottom: 28px;
  padding-top: 48px;
  border-top: 1px solid var(--clr-border);
}
.archive-page .pub-section__title:first-child {
  padding-top: 0;
  border-top: none;
}
.archive-page .pub-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}
.archive-page .pub-card {
  background: var(--clr-bg);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: box-shadow 0.25s, border-color 0.25s, transform 0.25s;
}
.archive-page .pub-card:hover {
  box-shadow: 0 10px 36px rgba(103,80,246,0.12);
  border-color: var(--clr-accent);
  transform: translateY(-2px);
}
.archive-page .pub-card--featured {
  background: rgba(103,80,246,0.04);
  border-color: rgba(103,80,246,0.16);
}
.archive-page .pub-card__category {
  font-size: 0.7rem;
  font-weight: var(--fw-semi);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--clr-accent);
}
.archive-page .pub-card__title {
  font-size: 1rem;
  font-weight: var(--fw-semi);
  color: var(--clr-text);
  line-height: 1.4;
  margin: 0;
}
.archive-page .pub-card__title a {
  color: inherit;
  text-decoration: none;
}
.archive-page .pub-card__title a:hover { color: var(--clr-accent); }
.archive-page .pub-card__excerpt {
  font-size: 0.88rem;
  color: var(--clr-text-muted);
  line-height: 1.6;
  flex: 1;
}
.archive-page .pub-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 4px;
}
.archive-page .pub-card__date {
  font-size: 0.78rem;
  color: var(--clr-text-muted);
}
.archive-page .pub-card__link {
  font-size: 0.85rem;
  font-weight: var(--fw-semi);
  color: var(--clr-accent);
  text-decoration: none;
  white-space: nowrap;
  transition: opacity 0.2s;
}
.archive-page .pub-card__link:hover { opacity: 0.7; }
.archive-page .pub-card__tag {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: var(--fw-semi);
  padding: 3px 8px;
  border-radius: 100px;
  background: var(--card-pill-bg);
  color: var(--clr-accent);
}
.archive-page .pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  padding: 16px 0;
}
.archive-page .pagination__btn {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--clr-border);
  background: transparent;
  color: var(--clr-text-muted);
  font-family: var(--ff-body);
  font-size: 0.9rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}
.archive-page .pagination__btn:hover,
.archive-page .pagination__btn.is-active {
  background: var(--clr-accent);
  color: #fff;
  border-color: var(--clr-accent);
}
.archive-page .pagination__btn--prev,
.archive-page .pagination__btn--next {
  width: auto;
  padding: 0 16px;
  font-size: 0.85rem;
}
@media (max-width: 1024px) {
  .archive-page .pub-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 860px) {
  .archive-page .research-hero-card { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .archive-page .pub-grid { grid-template-columns: 1fr; }
}

/* ---- ABOUT ---- */
.about.section {
  position: relative;
  background: var(--positioning-bg);
  border-top: 1px solid var(--positioning-border);
  border-bottom: 1px solid var(--positioning-border);
}
.about__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about__lead {
  font-size: 19px;
  font-weight: 500;
  line-height: 1.6;
  color: var(--clr-text);
  margin-bottom: 20px;
}
.about__text-body {
  color: var(--clr-text-muted);
  margin-bottom: 36px;
  line-height: 1.7;
}
.about__values {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.about__value {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.about__value-icon {
  color: var(--clr-accent);
  font-size: 10px;
  margin-top: 5px;
  flex-shrink: 0;
}
.about__value strong { display: block; font-weight: 600; margin-bottom: 2px; }
.about__value p { color: var(--clr-text-muted); font-size: 14px; }

/* About glass card */
.about__visual { position: relative; }
.about__card {
  padding: 40px;
  background: var(--clr-bg-dark) !important;
  border-color: rgba(255,255,255,0.08) !important;
}
.about__card-quote {
  font-family: var(--ff-heading);
  font-size: 80px;
  line-height: 0.6;
  color: var(--clr-accent);
  margin-bottom: 20px;
  opacity: 0.6;
}
.about__card-text {
  font-size: 18px;
  font-style: italic;
  color: rgba(255,255,255,0.85);
  line-height: 1.7;
  margin-bottom: 32px;
}
.about__card-author {
  display: flex;
  align-items: center;
  gap: 14px;
}
.about__card-avatar {
  width: 44px;
  height: 44px;
  background: var(--clr-accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}
.about__card-author strong { display: block; color: #fff; font-size: 14px; }
.about__card-author span { color: rgba(255,255,255,0.5); font-size: 13px; }

/* ---- DIRECTIONS ---- */
.directions {
  position: relative;
  overflow: hidden;
}
.directions__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.directions__bg-shape {
  position: absolute;
  width: 800px;
  height: 800px;
  top: -200px;
  right: -300px;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(103,80,246,0.12) 0%, transparent 60%);
  filter: blur(40px);
}
.directions__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gap);
}
.direction-card {
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  overflow: hidden;
}
.direction-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--clr-accent), transparent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--dur-med) var(--ease);
}
.direction-card:hover::before { transform: scaleX(1); }
.direction-card__number {
  font-family: var(--ff-heading);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: rgba(255,255,255,0.3);
}
.direction-card__icon {
  color: var(--clr-accent);
  transition: color var(--dur-med) var(--ease), transform var(--dur-med) var(--ease);
}
.direction-card:hover .direction-card__icon {
  color: #fff;
  transform: scale(1.1);
}
.direction-card__title {
  font-family: var(--ff-heading);
  font-size: 17px;
  font-weight: 600;
  color: var(--clr-text-light);
  line-height: 1.3;
}
.direction-card__text {
  color: var(--clr-text-light-muted);
  font-size: 14px;
  line-height: 1.65;
  flex: 1;
}
.direction-card__link {
  font-size: 13px;
  font-weight: 600;
  color: var(--clr-accent);
  transition: color var(--dur-fast) var(--ease), gap var(--dur-fast) var(--ease);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.direction-card__link:hover { color: #fff; gap: 8px; }

/* 5th card spans 2 columns */
.direction-card:nth-child(4) { grid-column: span 1; }
.direction-card:nth-child(5) { grid-column: span 2; }

/* ---- EXPERTS ---- */
.experts__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--gap);
  margin-bottom: 48px;
}
.expert-card {
  background: var(--clr-bg);
  border: 1px solid var(--clr-border);
  border-radius: var(--r-md);
  overflow: hidden;
  transition: transform var(--dur-med) var(--ease), box-shadow var(--dur-med) var(--ease), border-color var(--dur-med) var(--ease);
}
.expert-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--clr-accent);
}
.expert-card__photo {
  height: 240px;
  background: linear-gradient(135deg, #1e1e2e, #2d2d4e);
  display: flex;
  align-items: center;
  justify-content: center;
}
.expert-card__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.expert-card__photo-placeholder {
  width: 72px;
  height: 72px;
  background: var(--clr-accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-heading);
  font-weight: 700;
  font-size: 20px;
  color: #fff;
  letter-spacing: 0.05em;
}
.expert-card__info { padding: 24px; }
.expert-card__name {
  font-family: var(--ff-heading);
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 4px;
}
.expert-card__role {
  font-size: 13px;
  color: var(--clr-accent);
  font-weight: 500;
  margin-bottom: 12px;
}
.expert-card__bio {
  font-size: 13px;
  color: var(--clr-text-muted);
  line-height: 1.6;
  margin-bottom: 16px;
}
.expert-card__tags { display: flex; flex-wrap: wrap; gap: 6px; }
.experts__cta { text-align: center; }

/* ---- NEWS ---- */
.news__grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  grid-template-rows: auto auto;
  gap: var(--gap);
}
.news-card {
  background: var(--clr-bg);
  border: 1px solid var(--clr-border);
  border-radius: var(--r-md);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: transform var(--dur-med) var(--ease), box-shadow var(--dur-med) var(--ease);
}
.news-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.news-card--featured { grid-row: span 2; }
.news-card__meta {
  display: flex;
  align-items: center;
  gap: 12px;
}
.news-card__date {
  font-size: 12px;
  color: var(--clr-text-muted);
}
.news-card__category {
  display: inline-block;
  padding: 2px 8px;
  background: var(--card-pill-bg);
  color: var(--clr-accent);
  border-radius: 4px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.news-card__title {
  font-family: var(--ff-heading);
  font-size: 17px;
  font-weight: 600;
  line-height: 1.35;
  flex: 1;
}
.news-card--featured .news-card__title { font-size: 22px; }
.news-card__excerpt {
  font-size: 14px;
  color: var(--clr-text-muted);
  line-height: 1.65;
}
.news-card__link {
  font-size: 13px;
  font-weight: 600;
  color: var(--clr-accent);
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: gap var(--dur-fast) var(--ease);
}
.news-card__link:hover { gap: 8px; }

/* ---- PUBLICATIONS ---- */
.publications__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gap);
  margin-bottom: 48px;
}
.publication-card {
  background: var(--clr-bg);
  border: 1px solid var(--clr-border);
  border-radius: var(--r-md);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: transform var(--dur-med) var(--ease), box-shadow var(--dur-med) var(--ease), border-color var(--dur-med) var(--ease);
}
.publication-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--clr-accent);
}
.publication-card__category {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--clr-accent);
}
.publication-card__title {
  font-family: var(--ff-heading);
  font-size: 17px;
  font-weight: 600;
  line-height: 1.35;
}
.publication-card__title a {
  transition: color var(--dur-fast) var(--ease);
}
.publication-card__title a:hover { color: var(--clr-accent); }
.publication-card__excerpt {
  font-size: 14px;
  color: var(--clr-text-muted);
  line-height: 1.65;
  flex: 1;
}
.publication-card__meta {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 12px;
  color: var(--clr-text-muted);
}
.publication-card__read-time { color: var(--clr-text-muted); }
.publication-card__cta {
  font-size: 13px;
  font-weight: 600;
  color: var(--clr-accent);
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: gap var(--dur-fast) var(--ease);
}
.publication-card__cta:hover { gap: 8px; }

/* Research highlight glass */
.research-highlight {
  padding: 40px 48px;
  background: var(--clr-bg-dark) !important;
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}
.research-highlight__label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--clr-accent-2);
  width: 100%;
  margin-bottom: -24px;
}
.research-highlight__stats {
  display: flex;
  gap: 48px;
  flex: 1;
}
.research-stat { text-align: left; }
.research-stat__num {
  display: block;
  font-family: var(--ff-heading);
  font-size: 36px;
  font-weight: 700;
  color: #fff;
  line-height: 1;
  margin-bottom: 6px;
}
.research-stat__text {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  line-height: 1.4;
  max-width: 140px;
}
.research-highlight__btn { flex-shrink: 0; }

/* ---- CONTACT ---- */
.contact {
  position: relative;
  overflow: hidden;
}
.contact__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.contact__bg-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
}
.contact__bg-shape--1 {
  width: 600px;
  height: 600px;
  top: -200px;
  left: -200px;
  background: radial-gradient(ellipse, rgba(103,80,246,0.20) 0%, transparent 70%);
}
.contact__bg-shape--2 {
  width: 400px;
  height: 400px;
  bottom: -100px;
  right: 10%;
  background: radial-gradient(ellipse, rgba(215,191,138,0.08) 0%, transparent 70%);
}
.contact__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 2;
}
.contact__subtitle {
  color: var(--clr-text-light-muted);
  font-size: 17px;
  line-height: 1.7;
  margin-bottom: 32px;
}
.contact__info { margin-top: 32px; }
.contact__link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--clr-text-light);
  font-size: 16px;
  font-weight: 500;
  transition: color var(--dur-fast) var(--ease);
}
.contact__link:hover { color: var(--clr-accent); }
.contact__link-icon {
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}

/* Contact form */
.contact-form {
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.contact-form__title {
  font-family: var(--ff-heading);
  font-size: 20px;
  font-weight: 600;
  color: var(--clr-text-light);
  margin-bottom: 4px;
}
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-label {
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,0.7);
}
.form-input {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--r-sm);
  padding: 12px 16px;
  color: var(--clr-text-light);
  font-size: 15px;
  transition: border-color var(--dur-fast) var(--ease), background var(--dur-fast) var(--ease), box-shadow var(--dur-fast) var(--ease);
  resize: none;
}
.form-input::placeholder { color: rgba(255,255,255,0.30); }
.form-input:focus {
  outline: none;
  border-color: var(--clr-accent);
  background: rgba(255,255,255,0.10);
  box-shadow: 0 0 0 3px var(--clr-accent-glow);
}
.form-textarea { min-height: 100px; }

/* ---- FOOTER ---- */
.footer {
  background: #09090d;
  padding: 64px 0 0;
  border-top: 1px solid rgba(255,255,255,0.05);
}
.footer__inner {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 64px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.footer__brand { color: #fff; }
.footer__tagline {
  margin-top: 16px;
  font-size: 14px;
  color: rgba(255,255,255,0.4);
  line-height: 1.5;
}
.footer__nav {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.footer__nav-title {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 16px;
}
.footer__nav-list { display: flex; flex-direction: column; gap: 10px; }
.footer__nav-list a {
  font-size: 14px;
  color: rgba(255,255,255,0.60);
  transition: color var(--dur-fast) var(--ease);
}
.footer__nav-list a:hover { color: #fff; }
.footer__newsletter { margin-top: 28px; }
.footer__newsletter-form {
  display: flex;
  gap: 8px;
  margin-top: 12px;
}
.footer__newsletter-input {
  flex: 1;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: var(--r-sm);
  padding: 10px 14px;
  color: #fff;
  font-size: 14px;
  transition: border-color var(--dur-fast) var(--ease);
}
.footer__newsletter-input::placeholder { color: rgba(255,255,255,0.3); }
.footer__newsletter-input:focus {
  outline: none;
  border-color: var(--clr-accent);
}
.footer__newsletter-btn {
  width: 40px;
  height: 40px;
  background: var(--clr-accent);
  color: #fff;
  border-radius: var(--r-sm);
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--dur-fast) var(--ease);
  flex-shrink: 0;
}
.footer__newsletter-btn:hover { background: var(--clr-accent-hover); }
.footer__bottom {
  padding: 20px 0;
}
.footer__bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer__copy {
  font-size: 13px;
  color: rgba(255,255,255,0.25);
}

/* ---- ABOUT MINI STATS ---- */
.about__stats-row {
  display: flex;
  gap: 24px;
  margin-top: 24px;
}
.about__mini-stat {
  flex: 1;
  background: var(--clr-bg-gray);
  border: 1px solid var(--clr-border);
  border-radius: var(--r-md);
  padding: 20px 24px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.about__mini-stat-num {
  font-family: var(--ff-heading);
  font-size: 28px;
  font-weight: var(--fw-bold);
  color: var(--clr-accent);
  line-height: 1;
}
.about__mini-stat-label {
  font-size: 13px;
  color: var(--clr-text-muted);
}

/* ---- DIRECTION CARD WIDE (5th card) ---- */
.direction-card--wide {
  grid-column: span 2;
  flex-direction: row;
  align-items: center;
  gap: 32px;
}
.direction-card--wide .direction-card__body { flex: 1; }
.direction-card--wide .direction-card__text { max-width: 600px; }

/* ---- PUBLICATION TABS ---- */
.pub-tabs {
  display: flex;
  gap: 4px;
  background: var(--clr-bg-gray);
  border-radius: var(--r-md);
  padding: 4px;
  width: fit-content;
  margin-bottom: 40px;
}
.pub-tab {
  padding: 10px 24px;
  border-radius: calc(var(--r-md) - 2px);
  font-size: 15px;
  font-weight: var(--fw-semi);
  color: var(--clr-text-muted);
  cursor: pointer;
  transition: background var(--dur-fast) var(--ease),
              color var(--dur-fast) var(--ease),
              box-shadow var(--dur-fast) var(--ease);
}
.pub-tab--active,
.pub-tab:hover {
  background: #fff;
  color: var(--clr-text);
  box-shadow: 0 1px 4px rgba(0,0,0,0.10);
}
.pub-tab--active { color: var(--clr-accent); }

.pub-panel { display: block; }
.pub-panel--hidden { display: none; }

.pub-panel__cta {
  text-align: center;
  padding: 32px 0 0;
}

/* publications grid — 2-col when 4 cards */
.pub-panel .publications__grid {
  grid-template-columns: repeat(2, 1fr);
}

/* ---- FOOTER SOCIAL ICONS ---- */
.footer__social {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}
.footer__social-link {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.10);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.5);
  transition: background var(--dur-fast) var(--ease),
              color var(--dur-fast) var(--ease),
              border-color var(--dur-fast) var(--ease);
}
.footer__social-link:hover {
  background: var(--clr-accent);
  border-color: var(--clr-accent);
  color: #fff;
}
.footer__social-link svg { width: 16px; height: 16px; }

/* ---- FOOTER ADDRESS ---- */
.footer__address {
  font-size: 13px;
  color: rgba(255,255,255,0.35);
  margin-top: 12px;
  line-height: 1.5;
}

/* ---- HEADER — logo color on dark bg ---- */
.header .logo { color: #fff; }
/* after scroll keep white */
.header.is-scrolled .logo { color: #fff; }

/* ---- RESPONSIVE ---- */
@media (max-width: 1024px) {
  :root { --section-py: 80px; }
  .nav, .header__cta { display: none; }
  .burger { display: flex; }
  .directions__grid { grid-template-columns: repeat(2, 1fr); }
  .direction-card--wide { grid-column: span 2; flex-direction: column; }
  .experts__grid { grid-template-columns: repeat(2, 1fr); }
  .expert-card__photo { height: 220px; }
  .about__inner { gap: 48px; }
  .pub-panel .publications__grid { grid-template-columns: repeat(2, 1fr); }
}

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

  /* Hero */
  .hero__stats {
    flex-wrap: wrap;
    gap: 16px;
    padding: 20px;
  }
  .hero__stat-divider { display: none; }
  .hero__stat { flex: 0 0 calc(50% - 8px); }
  .hero__actions { flex-direction: column; }
  .hero__actions .btn { width: 100%; justify-content: center; }

  /* About */
  .about__inner { grid-template-columns: 1fr; gap: 40px; }
  .about__visual { order: -1; }

  /* Directions */
  .directions__grid { grid-template-columns: 1fr; }
  .direction-card:nth-child(5) { grid-column: span 1; }

  /* Experts */
  .experts__grid { grid-template-columns: 1fr 1fr; }
  .expert-card__photo { height: 210px; }

  /* News */
  .news__grid { grid-template-columns: 1fr; }
  .news-card--featured { grid-row: span 1; }
  .section-header { flex-direction: column; align-items: flex-start; }

  /* Publications */
  .pub-panel .publications__grid { grid-template-columns: 1fr; }
  .publications__grid { grid-template-columns: 1fr; }
  .research-highlight { flex-direction: column; gap: 32px; }
  .research-highlight__stats { flex-wrap: wrap; gap: 24px; }
  .about__stats-row { flex-direction: column; gap: 12px; }
  .direction-card--wide { grid-column: span 1; }

  /* Contact */
  .contact__inner { grid-template-columns: 1fr; gap: 48px; }

  /* Footer */
  .footer__inner { grid-template-columns: 1fr; gap: 40px; }
  .footer__nav { grid-template-columns: 1fr 1fr; }
  .footer__bottom-inner { flex-direction: column; gap: 8px; text-align: center; }
}

@media (max-width: 480px) {
  :root { --section-py: 56px; }
  .experts__grid { grid-template-columns: 1fr; }
  .expert-card__photo { height: 260px; }
  .footer__nav { grid-template-columns: 1fr; }
  .hero__stats { display: none; }
  .contact-form { padding: 24px; }
  .research-highlight { padding: 28px; }
}

/* ---- HOME REDESIGN OVERRIDES ---- */
.hero {
  min-height: auto;
  padding: 148px 0 112px;
}
.hero__bg-shape--1 {
  background: var(--hero-shape-1);
}
.hero__bg-shape--2 {
  background: var(--hero-shape-2);
}
.hero__bg-shape--3 {
  background: var(--hero-shape-3);
}
.hero__content {
  max-width: none;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(420px, 0.92fr);
  gap: 32px;
  align-items: center;
}
.hero__copy {
  max-width: 620px;
  padding-left: clamp(16px, 2.2vw, 34px);
}
.hero__title {
  font-size: clamp(46px, 5.8vw, 88px);
  line-height: 0.98;
  max-width: 11.5ch;
  margin-bottom: 24px;
}
.hero__title--accent {
  background: var(--hero-title-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero__subtitle {
  max-width: 620px;
  margin-bottom: 28px;
}
.hero__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
}
.hero__chip {
  display: inline-flex;
  align-items: center;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid var(--hero-chip-border);
  background: var(--hero-chip-bg);
  color: var(--hero-chip-text);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
}
.hero__actions {
  margin-bottom: 0;
}
.hero__rail {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.hero-editorial {
  padding: 32px;
  background: var(--hero-panel-bg) !important;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.hero-editorial__header,
.hero-editorial__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.hero-editorial__footer {
  position: relative;
  z-index: 4;
}
.hero-editorial__header > div:first-child {
  flex: 1;
  min-width: 0;
}
.hero-editorial__eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--hero-eyebrow);
  margin-bottom: 10px;
}
.hero-editorial__title {
  font-family: var(--ff-heading);
  color: #fff;
  font-size: 24px;
  line-height: 1.2;
  max-width: 18ch;
}
.hero-editorial__counter {
  display: inline-flex;
  align-items: baseline;
  gap: 4px;
  font-family: var(--ff-heading);
  color: var(--hero-counter);
  flex-shrink: 0;
}
.hero-editorial__current {
  color: #fff;
  font-size: 20px;
  font-weight: 700;
}
.hero-editorial__divider,
.hero-editorial__total {
  font-size: 14px;
}
.hero-editorial__viewport {
  position: relative;
  min-height: 320px;
}
.hero-slide {
  display: none;
  flex-direction: column;
  gap: 16px;
}
.hero-slide.is-active { display: flex; }
.hero-slide__meta {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  font-size: 12px;
  color: var(--hero-meta);
}
.hero-slide__type {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--hero-type-text);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.hero-slide__stat {
  font-family: var(--ff-heading);
  font-size: clamp(48px, 6vw, 64px);
  line-height: 0.9;
  font-weight: 800;
  color: #fff;
}
.hero-slide__title {
  font-family: var(--ff-heading);
  font-size: 26px;
  color: #fff;
  line-height: 1.18;
}
.hero-slide__excerpt {
  color: var(--hero-excerpt);
  line-height: 1.7;
}
.hero-slide__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #fff;
  font-weight: 600;
  margin-top: auto;
}
.hero-slide__link:hover { gap: 10px; }
.hero-editorial__dots {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  position: relative;
  z-index: 2;
}
.hero-editorial__dot {
  width: 11px;
  height: 11px;
  border-radius: 999px;
  background: var(--hero-dot-bg);
  border: 1px solid var(--hero-dot-border);
  position: relative;
  z-index: 4;
  pointer-events: auto;
  transition: transform var(--dur-fast) var(--ease), background var(--dur-fast) var(--ease);
}
.hero-editorial__dot.is-active {
  background: var(--hero-dot-active);
  transform: scale(1.08);
}
.hero-editorial__controls {
  display: inline-flex;
  gap: 10px;
  position: relative;
  z-index: 2;
}
.hero-editorial__control {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  background: var(--hero-control-bg);
  border: 1px solid var(--hero-control-border);
  color: #fff;
  position: relative;
  z-index: 4;
  pointer-events: auto;
  transition: background var(--dur-fast) var(--ease), border-color var(--dur-fast) var(--ease);
}
.hero-editorial__control:hover {
  background: var(--hero-control-hover-bg);
  border-color: var(--hero-control-hover-border);
}
.hero-teasers {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.hero-teaser {
  border-radius: var(--r-md);
  border: 1px solid var(--hero-teaser-border);
  background: var(--hero-teaser-bg);
  padding: 18px 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-height: 168px;
}
.hero-teaser--event {
  background: var(--hero-teaser-event-bg);
  border-color: var(--hero-teaser-event-border);
}
.hero-teaser__label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--hero-teaser-label);
}
.hero-teaser__title {
  color: #fff;
  font-family: var(--ff-heading);
  font-size: 17px;
  line-height: 1.35;
}
.hero-teaser__excerpt {
  color: var(--hero-excerpt);
  font-size: 13px;
  line-height: 1.6;
  flex: 1;
}
.hero-teaser__meta {
  color: var(--hero-teaser-meta);
  font-size: 13px;
}
.hero-teaser__link {
  color: #fff;
  font-size: 13px;
  font-weight: 600;
}

.materials-overview__grid,
.articles-home__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gap);
}
.format-card,
.article-card {
  background: #fff;
  border: 1px solid var(--clr-border);
  border-radius: var(--r-md);
  padding: 30px;
  transition: transform var(--dur-med) var(--ease), box-shadow var(--dur-med) var(--ease), border-color var(--dur-med) var(--ease);
}
.format-card:hover,
.article-card:hover {
  transform: translateY(-4px);
  border-color: var(--card-hover-border);
  box-shadow: var(--shadow-md);
}
.format-card__number {
  font-family: var(--ff-heading);
  font-size: 12px;
  font-weight: 800;
  color: var(--clr-accent);
  letter-spacing: 0.14em;
  margin-bottom: 16px;
}
.format-card__title {
  font-family: var(--ff-heading);
  font-size: 26px;
  margin-bottom: 14px;
  line-height: 1.15;
}
.format-card__text {
  color: var(--clr-text-muted);
  line-height: 1.7;
  margin-bottom: 24px;
}
.format-card__link {
  font-size: 14px;
  font-weight: 600;
  color: var(--clr-accent);
}

.about__inner--editorial {
  align-items: start;
}
.audience-panel {
  background: var(--audience-panel-bg) !important;
  padding: 32px;
}
.audience-panel__eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.48);
  margin-bottom: 20px;
}
.audience-panel__grid {
  display: grid;
  gap: 16px;
}
.audience-card {
  padding: 22px 24px;
  border-radius: var(--r-md);
  background: var(--audience-card-bg);
  border: 1px solid var(--audience-card-border);
}
.audience-card__title {
  font-family: var(--ff-heading);
  font-size: 19px;
  color: #fff;
  margin-bottom: 8px;
}
.audience-card__text {
  color: var(--audience-card-text);
  line-height: 1.7;
}

.analytics-home__layout {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(300px, 0.88fr);
  gap: var(--gap);
}
.analytics-feature {
  padding: 36px;
  background: var(--analytics-feature-bg) !important;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.analytics-feature__meta {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  color: rgba(255,255,255,0.58);
  font-size: 12px;
}
.analytics-feature__badge {
  display: inline-flex;
  align-items: center;
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--analytics-badge-bg);
  color: var(--analytics-badge-text);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.analytics-feature__title {
  font-family: var(--ff-heading);
  color: #fff;
  font-size: clamp(30px, 4vw, 42px);
  line-height: 1.08;
  max-width: 12ch;
}
.analytics-feature__text {
  color: rgba(255,255,255,0.72);
  line-height: 1.75;
  max-width: 58ch;
}
.analytics-feature__stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.analytics-feature__stat {
  padding: 18px;
  border-radius: 18px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
}
.analytics-feature__stat strong {
  display: block;
  font-family: var(--ff-heading);
  font-size: 26px;
  color: #fff;
  margin-bottom: 8px;
}
.analytics-feature__stat span {
  display: block;
  color: rgba(255,255,255,0.64);
  line-height: 1.5;
  font-size: 13px;
}
.analytics-home__stack {
  display: flex;
  flex-direction: column;
  gap: var(--gap);
}
.publication-card--compact {
  padding: 26px;
}

.article-card {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.article-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: var(--clr-text-muted);
  font-size: 12px;
}
.article-card__category {
  display: inline-flex;
  align-items: center;
  padding: 5px 9px;
  border-radius: 999px;
  background: var(--card-pill-bg);
  color: var(--clr-accent);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.article-card__title {
  font-family: var(--ff-heading);
  font-size: 22px;
  line-height: 1.25;
}
.article-card__excerpt {
  color: var(--clr-text-muted);
  line-height: 1.7;
  flex: 1;
}
.article-card__footer {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
}
.article-card__author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.article-card__author img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}
.article-card__author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--clr-accent), var(--clr-accent-2));
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-heading);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  flex-shrink: 0;
}
.article-card__author strong {
  display: block;
  font-size: 14px;
  line-height: 1.2;
}
.article-card__author span {
  display: block;
  font-size: 12px;
  color: var(--clr-text-muted);
  line-height: 1.4;
}
.article-card__link {
  color: var(--clr-accent);
  font-weight: 600;
  white-space: nowrap;
  flex-shrink: 0;
}

.contact__types {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
}
.contact__type {
  display: inline-flex;
  align-items: center;
  padding: 9px 14px;
  border-radius: 999px;
  background: var(--contact-type-bg);
  border: 1px solid var(--contact-type-border);
  color: var(--contact-type-text);
  font-size: 13px;
  font-weight: 600;
}

.publication-single__hero {
  padding-bottom: 54px;
}
.publication-single__hero-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 28px;
  color: rgba(255,255,255,0.62);
  font-size: 14px;
  font-weight: 500;
}
.publication-single__hero-back:hover {
  color: #fff;
}
.publication-single__hero-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 24px;
}
.publication-single__hero-date {
  color: rgba(255,255,255,0.64);
  font-size: 14px;
}
.publication-single__body {
  background: var(--clr-bg);
}
.publication-single__layout {
  display: grid;
  grid-template-columns: minmax(0, 1.75fr) minmax(280px, 0.85fr);
  gap: 32px;
  align-items: start;
}
.publication-single__article {
  padding: 40px;
}
.publication-single__aside {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.publication-single__meta-card,
.publication-single__related {
  padding: 28px;
}
.publication-single__aside-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--clr-accent);
  margin-bottom: 20px;
}
.publication-single__aside-block + .publication-single__aside-block {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--clr-border);
}
.publication-single__aside-title {
  display: block;
  margin-bottom: 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--clr-text-muted);
}
.publication-single__aside-block p {
  color: var(--clr-text);
  line-height: 1.6;
}
.publication-single__related-title {
  font-family: var(--ff-heading);
  font-size: 22px;
  color: var(--clr-text);
  margin-bottom: 20px;
}
.publication-single__related-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.entry-content {
  color: var(--clr-text);
  line-height: 1.85;
  font-size: 16px;
}
.entry-content > *:first-child {
  margin-top: 0;
}
.entry-content > *:last-child {
  margin-bottom: 0;
}
.entry-content h2,
.entry-content h3,
.entry-content h4 {
  font-family: var(--ff-heading);
  color: var(--clr-text);
  line-height: 1.18;
  margin: 40px 0 16px;
}
.entry-content h2 {
  font-size: clamp(28px, 3vw, 36px);
}
.entry-content h3 {
  font-size: clamp(22px, 2.4vw, 28px);
}
.entry-content p,
.entry-content ul,
.entry-content ol,
.entry-content blockquote {
  margin: 0 0 20px;
}
.entry-content ul,
.entry-content ol {
  padding-left: 22px;
}
.entry-content li + li {
  margin-top: 8px;
}
.entry-content a {
  color: var(--clr-accent);
}
.entry-content blockquote {
  padding: 24px 28px;
  border-left: 3px solid var(--clr-accent);
  background: rgba(103,80,246,0.04);
  border-radius: 0 18px 18px 0;
  color: var(--clr-text);
  font-size: 18px;
}
.entry-content img {
  max-width: 100%;
  height: auto;
  border-radius: var(--r-md);
}

@media (max-width: 1180px) {
  .hero__content,
  .analytics-home__layout,
  .publication-single__layout {
    grid-template-columns: 1fr;
  }
  .hero__copy {
    max-width: none;
    padding-left: 0;
  }
}

@media (max-width: 1024px) {
  .materials-overview__grid,
  .articles-home__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .hero-teasers {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .hero {
    padding: 132px 0 88px;
  }
  .hero-editorial,
  .analytics-feature {
    padding: 26px;
  }
  .hero-editorial__header,
  .hero-editorial__footer,
  .article-card__footer {
    flex-direction: column;
    align-items: flex-start;
  }
  .publication-single__article,
  .publication-single__meta-card,
  .publication-single__related {
    padding: 24px;
  }
  .hero-editorial__viewport {
    min-height: 0;
  }
  .hero-teasers,
  .materials-overview__grid,
  .articles-home__grid,
  .analytics-feature__stats {
    grid-template-columns: 1fr;
  }
  .materials-overview__grid,
  .articles-home__grid {
    display: grid;
  }
}

@media (max-width: 480px) {
  .hero__chip,
  .contact__type {
    width: 100%;
    justify-content: center;
    text-align: center;
  }
  .hero-editorial__controls {
    width: 100%;
  }
  .hero-editorial__control {
    flex: 1;
  }
}

/* ---- HOME REFRESH ---- */
.hero {
  --hero-pt: clamp(104px, 14svh, 152px);
  --hero-pb: clamp(44px, 8svh, 88px);
  --hero-copy-pad: clamp(0px, 1.8svh, 20px);
  --hero-title-size: clamp(58px, min(11vw, 16.5svh), 148px);
  --hero-subtitle-size: clamp(22px, min(3.2vw, 4.8svh), 38px);
  --hero-summary-size: clamp(15px, min(1.04vw, 2.05svh), 17px);
  --hero-title-mb: clamp(10px, 1.8svh, 18px);
  --hero-subtitle-mb: clamp(10px, 1.8svh, 18px);
  --hero-summary-mb: clamp(16px, 2.6svh, 28px);
  --hero-chips-mb: clamp(18px, 3.4svh, 36px);
  --hero-chip-gap: clamp(8px, 1.2svh, 10px);
  --hero-chip-py: clamp(7px, 1.15svh, 10px);
  --hero-chip-px: clamp(12px, 1.05vw, 14px);
  --hero-actions-gap: clamp(12px, 1.6svh, 14px);
  min-height: 100svh;
  padding: var(--hero-pt) 0 var(--hero-pb);
  display: flex;
  align-items: stretch;
}

.hero__content {
  width: 100%;
  min-height: calc(100svh - var(--hero-pt) - var(--hero-pb));
  max-width: 980px;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-items: center;
}

.hero__copy {
  max-width: 860px;
  padding-left: 0;
  padding-block: var(--hero-copy-pad);
}

.hero__title {
  font-size: var(--hero-title-size);
  line-height: 0.92;
  letter-spacing: -0.05em;
  max-width: none;
  margin-bottom: var(--hero-title-mb);
}

.hero__subtitle {
  max-width: 30ch;
  font-size: var(--hero-subtitle-size);
  line-height: 1.05;
  color: #fff;
  margin-bottom: var(--hero-subtitle-mb);
}

.hero__summary {
  max-width: 56ch;
  color: var(--hero-excerpt);
  font-size: var(--hero-summary-size);
  line-height: 1.62;
  margin-bottom: var(--hero-summary-mb);
}

.hero__chips {
  gap: var(--hero-chip-gap);
  margin-bottom: var(--hero-chips-mb);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--hero-actions-gap);
}

.hero__chip {
  padding: var(--hero-chip-py) var(--hero-chip-px);
}

.hero__rail {
  display: none;
}

.team-section__header {
  align-items: end;
}

.team-section__header .section-subtitle {
  max-width: 58ch;
  margin-bottom: 0;
}

.team-section__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.team-card {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  background: #0d1120;
  aspect-ratio: 0.82;
  min-height: 420px;
  box-shadow: var(--shadow-md);
}

@media (min-width: 1025px) {
  .team-section__grid {
    gap: 0;
    align-items: stretch;
    border-radius: var(--r-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
  }

  .team-card {
    aspect-ratio: auto;
    min-height: 0;
    height: 420px;
    border-radius: 0;
    box-shadow: none;
  }

  .team-card:first-child {
    border-top-left-radius: var(--r-lg);
    border-bottom-left-radius: var(--r-lg);
  }

  .team-card:last-child {
    border-top-right-radius: var(--r-lg);
    border-bottom-right-radius: var(--r-lg);
  }
}

.team-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(5, 10, 20, 0.02) 18%, rgba(5, 10, 20, 0.88) 100%);
  pointer-events: none;
}

.team-card__photo,
.team-card__photo img,
.team-card__placeholder {
  width: 100%;
  height: 100%;
}

.team-card__photo {
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.team-card__photo img {
  display: block;
  object-fit: cover;
  object-position: center center;
  transform-origin: center center;
  transition: transform var(--dur-med) var(--ease);
}

.team-card:hover .team-card__photo img {
  transform: scale(1.04);
}

.team-card__placeholder {
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #161f3f 0%, #0b1020 100%);
  color: #fff;
  font-family: var(--ff-heading);
  font-size: 64px;
  font-weight: 700;
}

.team-card__info {
  position: absolute;
  inset: auto 0 0;
  z-index: 2;
  padding: 24px;
  display: flex;
  flex-direction: column;
}

.team-card__name {
  color: #fff;
  font-family: var(--ff-heading);
  font-size: 26px;
  line-height: 1.08;
  min-height: 2.16em;
  display: flex;
  align-items: flex-end;
  margin-bottom: 8px;
}

.team-card__role {
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  line-height: 1.5;
  margin-top: 0;
  min-height: 3em;
  display: flex;
  align-items: flex-start;
}

.story-hub__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.story-column {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.story-column__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.story-column__title {
  font-family: var(--ff-heading);
  font-size: 30px;
  line-height: 1.08;
}

.story-column__link {
  color: var(--clr-accent);
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
}

.story-slider {
  position: relative;
  aspect-ratio: 1;
  min-height: 320px;
  border-radius: var(--r-lg);
  overflow: hidden;
  background: #0d1120;
  border: 1px solid rgba(17, 24, 39, 0.12);
  box-shadow: var(--shadow-md);
}

.story-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.02);
  transition:
    opacity var(--dur-med) var(--ease),
    transform var(--dur-med) var(--ease);
  pointer-events: none;
}

.story-slide.is-active {
  opacity: 1;
  transform: scale(1);
  pointer-events: auto;
}

.story-slide__link {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  color: #fff;
}

.story-slide__image {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}

.story-slide__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(6, 10, 20, 0.82) 0%, rgba(6, 10, 20, 0.18) 40%, rgba(6, 10, 20, 0.9) 100%);
}

.story-slide__content {
  position: absolute;
  inset: 0;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.story-slide__title {
  max-width: 12ch;
  color: #fff;
  font-family: var(--ff-heading);
  font-size: clamp(26px, 2.4vw, 34px);
  line-height: 1.08;
}

.story-slider__nav {
  position: absolute;
  left: 50%;
  bottom: 22px;
  z-index: 4;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  transform: translateX(-50%);
}

.story-slider__dots {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.story-slider__dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.36);
  background: rgba(255, 255, 255, 0.22);
  transition:
    transform var(--dur-fast) var(--ease),
    background var(--dur-fast) var(--ease),
    border-color var(--dur-fast) var(--ease);
}

.story-slider__dot.is-active {
  background: #fff;
  border-color: #fff;
  transform: scale(1.08);
}

.story-slider__control {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: #fff;
  font-size: 16px;
  line-height: 1;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition:
    background var(--dur-fast) var(--ease),
    border-color var(--dur-fast) var(--ease),
    transform var(--dur-fast) var(--ease);
}

.story-slider__control:hover {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.34);
  transform: translateY(-1px);
}

.story-slider__control:active {
  transform: translateY(0);
}

.mission-vision__intro {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
  gap: 32px;
  align-items: end;
  margin-bottom: 32px;
}

.mission-vision__lead,
.mission-vision__summary {
  color: var(--clr-text);
  font-size: 18px;
  line-height: 1.75;
}

.mission-vision__cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  margin-bottom: 20px;
}

.mission-card {
  padding: 28px;
  border-radius: var(--r-lg);
  border: 1px solid var(--clr-border);
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.mission-card--accent {
  background: linear-gradient(160deg, #182043 0%, #0c1329 100%);
  border-color: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.mission-card__eyebrow {
  display: inline-flex;
  margin-bottom: 16px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--clr-accent);
}

.mission-card--accent .mission-card__eyebrow {
  color: rgba(255, 255, 255, 0.66);
}

.mission-card p {
  font-size: 18px;
  line-height: 1.75;
}

.mission-vision__tracks {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  margin-bottom: 20px;
}

.mission-track {
  padding: 24px;
  border-radius: var(--r-md);
  border: 1px solid var(--clr-border);
  background: #fff;
}

.mission-track__title {
  font-family: var(--ff-heading);
  font-size: 22px;
  line-height: 1.15;
  margin-bottom: 10px;
}

.mission-track__text {
  color: var(--clr-text-muted);
  font-size: 15px;
  line-height: 1.7;
}

.mission-vision__stages {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.mission-vision__stage {
  display: inline-flex;
  align-items: center;
  padding: 12px 18px;
  border-radius: 999px;
  background: var(--card-pill-bg);
  color: var(--clr-accent);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-panel {
  position: relative;
  overflow: hidden;
}

.contact-panel__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.contact-panel__shape {
  position: absolute;
  border-radius: 999px;
  filter: blur(18px);
  opacity: 0.64;
}

.contact-panel__shape--1 {
  width: 480px;
  height: 480px;
  top: -180px;
  left: -120px;
  background: rgba(103, 80, 246, 0.28);
}

.contact-panel__shape--2 {
  width: 420px;
  height: 420px;
  right: -100px;
  bottom: -160px;
  background: rgba(215, 191, 138, 0.18);
}

.contact-panel__intro,
.contact-panel__grid {
  position: relative;
  z-index: 1;
}

.contact-panel__intro {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 40px;
}

.contact-panel__subtitle {
  max-width: 58ch;
  color: var(--clr-text-light-muted);
  font-size: 17px;
  line-height: 1.75;
}

.contact-panel__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.contact-card {
  padding: 26px;
  border-radius: var(--r-lg);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.contact-card__label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.54);
}

.contact-card__value,
.contact-card__headline {
  color: #fff;
  font-family: var(--ff-heading);
  font-size: 24px;
  line-height: 1.15;
}

.contact-card__text {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
}

.contact-card__socials {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.contact-card__socials a {
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
}

.contact-card__cta {
  margin-top: auto;
  color: var(--clr-accent-secondary);
  font-weight: 700;
}

@media (max-width: 1180px) {
  .story-hub__grid,
  .mission-vision__tracks,
  .contact-panel__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .mission-vision__intro {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 1024px) {
  .team-section__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .hero {
    min-height: auto;
    padding: 136px 0 74px;
  }

  .hero__content {
    min-height: auto;
  }

  .hero__title {
    font-size: clamp(54px, 18vw, 94px);
  }

  .hero__subtitle {
    max-width: none;
    font-size: 26px;
  }

  .hero__summary {
    font-size: 16px;
  }

  .hero__actions .btn {
    width: 100%;
    justify-content: center;
  }

  .story-hub__grid,
  .mission-vision__cards,
  .mission-vision__tracks,
  .contact-panel__grid,
  .team-section__grid {
    grid-template-columns: 1fr;
  }

  .story-column__top,
  .contact-panel__intro,
  .team-section__header {
    flex-direction: column;
    align-items: flex-start;
  }

  .story-slide__content {
    padding: 20px;
  }

  .story-slide__title {
    max-width: none;
    font-size: 28px;
  }

  .story-slider__nav {
    gap: 10px;
  }
}

@media (max-height: 840px) and (min-width: 1025px) {
  .hero {
    --hero-pt: 96px;
    --hero-pb: 34px;
    --hero-copy-pad: 0px;
    --hero-title-size: clamp(54px, min(9.8vw, 14.8svh), 124px);
    --hero-subtitle-size: clamp(21px, min(2.8vw, 4.1svh), 31px);
    --hero-summary-size: 15px;
    --hero-title-mb: 8px;
    --hero-subtitle-mb: 10px;
    --hero-summary-mb: 14px;
    --hero-chips-mb: 18px;
    --hero-chip-gap: 8px;
  }

  .hero__content {
    align-items: start;
  }
}

@media (max-height: 760px) and (min-width: 1025px) {
  .hero {
    --hero-pt: 84px;
    --hero-pb: 24px;
    --hero-title-size: clamp(50px, min(9vw, 13.2svh), 112px);
    --hero-subtitle-size: clamp(20px, min(2.5vw, 3.8svh), 28px);
    --hero-summary-size: 14px;
    --hero-summary-mb: 12px;
    --hero-chips-mb: 14px;
    --hero-chip-gap: 6px;
    --hero-chip-py: 6px;
    --hero-chip-px: 10px;
    --hero-actions-gap: 10px;
  }

  .hero__summary {
    max-width: 52ch;
    line-height: 1.5;
  }

  .hero__chip {
    font-size: 12px;
  }

  .hero__actions .btn {
    padding: 12px 22px;
  }
}

@media (max-width: 480px) {
  .hero__chip,
  .mission-vision__stage {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  .story-column__top {
    gap: 10px;
  }

  .contact-card,
  .mission-card,
  .mission-track {
    padding: 22px;
  }

  .story-slider__nav {
    bottom: 18px;
  }

  .story-slider__control {
    width: 32px;
    height: 32px;
  }
}

/* ---- GENERIC PAGE HERO ---- */
.page-hero {
  background: var(--clr-bg-dark);
  padding: 96px 0 44px;
  position: relative;
  overflow: hidden;
}

.page-hero .container {
  position: relative;
  z-index: 2;
}

.page-hero__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.page-hero__bg-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}

.page-hero__bg-shape--1 {
  width: 640px;
  height: 640px;
  top: -220px;
  left: -120px;
  background: radial-gradient(ellipse, rgba(103,80,246,0.22) 0%, transparent 70%);
}

.page-hero__bg-shape--2 {
  width: 500px;
  height: 500px;
  bottom: -160px;
  right: -60px;
  background: radial-gradient(ellipse, rgba(92,97,242,0.10) 0%, transparent 70%);
}

.page-hero__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
}

.page-hero__content {
  position: relative;
  z-index: 2;
}

.page-hero__label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--clr-accent-2);
  margin-bottom: 20px;
}

.page-hero__label::before {
  content: '';
  width: 24px;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
}

.page-hero__title {
  font-family: var(--ff-heading);
  font-size: clamp(32px, 5vw, 58px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--clr-text-light);
  margin-bottom: 28px;
}

.page-hero__sub,
.page-hero__subtitle {
  font-size: clamp(16px, 2vw, 18px);
  color: var(--clr-text-light-muted);
  line-height: 1.7;
  max-width: 600px;
}

.section-label--accent {
  color: var(--clr-accent);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

/* ---- ABOUT PAGE ---- */
.mission {
  background: var(--clr-bg);
}

.mission__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.mission__text .section-label {
  margin-bottom: 20px;
}

.mission__lead {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.65;
  color: var(--clr-text);
  margin-bottom: 24px;
}

.mission__body {
  font-size: 15px;
  color: var(--clr-text-muted);
  line-height: 1.75;
}

.mission__stats {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 8px;
}

.mission__stat-card {
  background: var(--glass-bg-dark);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  border: 1px solid var(--glass-border);
  border-radius: var(--r-md);
  box-shadow: var(--shadow-md), inset 0 1px 0 rgba(255,255,255,0.08);
  padding: 32px 36px;
  display: flex;
  align-items: center;
  gap: 24px;
}

.mission__stat-num {
  font-family: var(--ff-heading);
  font-size: 44px;
  font-weight: 800;
  color: var(--clr-accent);
  line-height: 1;
  flex-shrink: 0;
  letter-spacing: -0.02em;
}

.mission__stat-label {
  font-size: 15px;
  color: var(--clr-text-light);
  font-weight: 500;
  line-height: 1.4;
}

.vision {
  background: var(--clr-bg-dark);
  color: var(--clr-text-light);
  position: relative;
  overflow: hidden;
}

.vision__bg-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}

.vision__bg-shape--1 {
  width: 700px;
  height: 700px;
  top: -250px;
  right: -200px;
  background: radial-gradient(ellipse, rgba(103,80,246,0.14) 0%, transparent 65%);
}

.vision__bg-shape--2 {
  width: 400px;
  height: 400px;
  bottom: -100px;
  left: -100px;
  background: radial-gradient(ellipse, rgba(92,97,242,0.08) 0%, transparent 70%);
}

.vision__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.vision__heading {
  font-family: var(--ff-heading);
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--clr-text-light);
  margin-bottom: 32px;
}

.vision__body {
  font-size: 15px;
  color: var(--clr-text-light-muted);
  line-height: 1.8;
}

.vision__body p + p {
  margin-top: 20px;
}

.vision__quote-col {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.vision__quote-block {
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border);
  border-radius: var(--r-lg);
  padding: 40px;
}

.vision__quote-mark {
  font-family: var(--ff-heading);
  font-size: 96px;
  line-height: 0.6;
  color: var(--clr-accent);
  opacity: 0.5;
  margin-bottom: 20px;
  display: block;
}

.vision__quote-text {
  font-size: 17px;
  font-style: italic;
  color: rgba(255,255,255,0.85);
  line-height: 1.7;
  margin-bottom: 0;
}

.vision__pillars {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.vision__pillar {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.vision__pillar-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--clr-accent);
  flex-shrink: 0;
  margin-top: 7px;
}

.vision__pillar-text {
  font-size: 14px;
  color: var(--clr-text-light-muted);
  line-height: 1.65;
}

.vision__pillar-text strong {
  color: var(--clr-text-light);
  font-weight: 600;
  display: block;
  margin-bottom: 2px;
}

.diff {
  background: var(--clr-bg);
}

.diff__intro {
  max-width: 680px;
  margin-bottom: 56px;
}

.diff__intro .section-title {
  margin-bottom: 16px;
}

.diff__intro-sub {
  font-size: 15px;
  color: var(--clr-text-muted);
  line-height: 1.7;
}

.diff__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gap);
}

.diff-card {
  background: var(--clr-bg);
  border: 1px solid var(--clr-border);
  border-radius: var(--r-lg);
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: transform var(--dur-med) var(--ease),
              box-shadow var(--dur-med) var(--ease),
              border-color var(--dur-med) var(--ease);
  position: relative;
  overflow: hidden;
}

.diff-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--clr-accent), transparent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--dur-med) var(--ease);
}

.diff-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--card-hover-border);
}

.diff-card:hover::before {
  transform: scaleX(1);
}

.diff-card__icon {
  width: 52px;
  height: 52px;
  background: var(--card-pill-bg);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--clr-accent);
  flex-shrink: 0;
}

.diff-card__title {
  font-family: var(--ff-heading);
  font-size: 18px;
  font-weight: 700;
  color: var(--clr-text);
  line-height: 1.3;
}

.diff-card__text {
  font-size: 14px;
  color: var(--clr-text-muted);
  line-height: 1.7;
}

.about-cta {
  background: var(--clr-bg-dark);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.about-cta__bg-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}

.about-cta__bg-shape--1 {
  width: 600px;
  height: 600px;
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  background: radial-gradient(ellipse, rgba(103,80,246,0.20) 0%, transparent 70%);
}

.about-cta__bg-shape--2 {
  width: 350px;
  height: 350px;
  bottom: -80px;
  right: 5%;
  background: radial-gradient(ellipse, rgba(92,97,242,0.08) 0%, transparent 70%);
}

.about-cta__inner {
  position: relative;
  z-index: 2;
  max-width: 640px;
  margin: 0 auto;
}

.about-cta__title {
  font-family: var(--ff-heading);
  font-size: clamp(28px, 4vw, 46px);
  font-weight: 700;
  color: var(--clr-text-light);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}

.about-cta__text {
  font-size: 16px;
  color: var(--clr-text-light-muted);
  line-height: 1.7;
  margin-bottom: 40px;
}

/* ---- DIRECTIONS PAGE ---- */
.directions-page {
  padding: 80px 0 100px;
  background: var(--clr-bg-dark);
}

.dir-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.dir-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 20px;
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: border-color .25s, background .25s, transform .25s;
}

.dir-card:hover {
  border-color: var(--clr-accent);
  background: rgba(103,80,246,.08);
  transform: translateY(-4px);
}

.dir-card--wide {
  grid-column: span 2;
  flex-direction: row;
  gap: 32px;
  align-items: flex-start;
}

.dir-num {
  font-size: 0.75rem;
  font-weight: var(--fw-semi);
  color: var(--clr-accent);
  letter-spacing: 0.1em;
}

.dir-num--spaced {
  margin-bottom: 12px;
}

.dir-icon {
  width: 52px;
  height: 52px;
  background: rgba(103,80,246,.12);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--clr-accent);
  flex-shrink: 0;
}

.dir-icon--top {
  align-self: flex-start;
  margin-top: 4px;
}

.dir-body {
  flex: 1;
}

.dir-title {
  font-size: 1.15rem;
  font-weight: var(--fw-semi);
  color: #fff;
  margin-bottom: 10px;
}

.dir-text {
  font-size: 0.9rem;
  color: rgba(255,255,255,.6);
  line-height: 1.65;
}

.dir-link {
  margin-top: auto;
  color: var(--clr-accent);
  font-size: 0.85rem;
  font-weight: var(--fw-semi);
  text-decoration: none;
  opacity: .85;
  transition: opacity .2s;
}

.dir-link:hover {
  opacity: 1;
}

.dir-link--spaced {
  display: inline-block;
  margin-top: 16px;
}

.approach {
  padding: 80px 0 100px;
  background: var(--clr-bg);
}

.approach__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.approach__title {
  font-size: clamp(1.8rem,3.5vw,2.6rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 20px;
}

.approach__lead {
  color: var(--clr-text-muted);
  line-height: 1.7;
  margin-bottom: 24px;
}

.approach__steps {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.step {
  display: flex;
  gap: 20px;
  padding: 28px 0;
  border-bottom: 1px solid var(--clr-border);
}

.step:last-child {
  border-bottom: none;
}

.step__num {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--clr-accent);
  color: #fff;
  font-size: 0.8rem;
  font-weight: var(--fw-bold);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.step__title {
  font-size: 1rem;
  font-weight: var(--fw-semi);
  color: var(--clr-text);
  margin-bottom: 6px;
}

.step__text {
  font-size: 0.88rem;
  color: var(--clr-text-muted);
  line-height: 1.6;
}

.dir-cta {
  background: var(--clr-accent);
  padding: 80px 0;
  text-align: center;
}

.dir-cta h2 {
  font-size: clamp(1.6rem,3vw,2.4rem);
  font-weight: var(--fw-bold);
  color: #fff;
  margin-bottom: 12px;
}

.dir-cta p {
  color: rgba(255,255,255,.75);
  margin-bottom: 32px;
  font-size: 1rem;
}

.btn--white {
  background: #fff;
  color: var(--clr-accent);
}

.btn--white:hover {
  background: rgba(255,255,255,.9);
}

/* ---- CONTACT PAGE ---- */
.contact-page {
  min-height: 100vh;
  background: var(--clr-bg-dark);
  padding: 96px 0 56px;
  position: relative;
  overflow: hidden;
}

.contact-page__shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: .15;
  pointer-events: none;
}

.contact-page__shape--1 {
  width: 700px;
  height: 700px;
  background: var(--clr-accent);
  top: -200px;
  left: -200px;
}

.contact-page__shape--2 {
  width: 500px;
  height: 500px;
  background: var(--clr-accent-2);
  bottom: -150px;
  right: -100px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
  position: relative;
}

.contact-info__label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--clr-accent-2);
  margin-bottom: 16px;
}

.contact-info__title {
  font-size: clamp(2rem,4vw,3.2rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 24px;
}

.contact-info__sub {
  color: rgba(255,255,255,.6);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 40px;
}

.contact-detail {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-detail-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.contact-detail-icon {
  width: 44px;
  height: 44px;
  background: rgba(103,80,246,.15);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--clr-accent);
  flex-shrink: 0;
}

.contact-detail-text strong {
  display: block;
  color: #fff;
  font-size: 0.9rem;
  margin-bottom: 3px;
}

.contact-detail-text a,
.contact-detail-text span {
  color: rgba(255,255,255,.6);
  font-size: 0.9rem;
  text-decoration: none;
  transition: color .2s;
}

.contact-detail-text a:hover {
  color: var(--clr-accent-2);
}

.contact-form-wrap {
  position: relative;
  z-index: 1;
}

.contact-page .contact-form {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 24px;
  padding: 40px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.contact-page .contact-form__title {
  font-size: 1.3rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.contact-form__notice {
  border-radius: 12px;
  padding: 12px 14px;
  font-size: 0.92rem;
  line-height: 1.55;
}

.contact-form__notice--success {
  background: rgba(34,197,94,.12);
  border: 1px solid rgba(34,197,94,.28);
  color: #d7ffe6;
}

.contact-form__notice--error {
  background: rgba(248,113,113,.12);
  border: 1px solid rgba(248,113,113,.24);
  color: #ffd5d5;
}

/* ---- CARD LINKS ---- */
.team-card__link,
.team-card__name-link,
.expert-card__link,
.expert-card__name-link {
  color: inherit;
  text-decoration: none;
}

.team-card__link {
  display: block;
  width: 100%;
  height: 100%;
}

.expert-card__link {
  display: flex;
  width: 100%;
  height: 100%;
}

.team-card__name-link:hover,
.expert-card__name-link:hover {
  color: var(--clr-accent);
}

/* ---- SINGLE EXPERT / EVENT ---- */
.person-single__back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.7);
  font-size: 0.92rem;
  margin-bottom: 26px;
  text-decoration: none;
}

.person-single__back:hover {
  color: #fff;
}

.person-single__hero-grid {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 40px;
  align-items: center;
}

.person-single__media {
  max-width: 320px;
}

.person-single__image,
.person-single__placeholder {
  width: 100%;
  aspect-ratio: 4 / 5;
  border-radius: var(--r-lg);
  display: block;
  object-fit: cover;
  box-shadow: var(--shadow-lg);
}

.person-single__placeholder {
  display: grid;
  place-items: center;
  font-family: var(--ff-heading);
  font-size: 72px;
  font-weight: 800;
  color: #fff;
  background: linear-gradient(135deg, #1a2646 0%, #0c1326 100%);
}

.person-single__meta,
.event-single__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  color: rgba(255,255,255,0.72);
  font-size: 0.95rem;
}

.person-single__body,
.event-single__body {
  background: var(--clr-bg);
}

.person-single__layout,
.event-single__layout {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(260px, 0.9fr);
  gap: 28px;
  align-items: start;
}

.person-single__article,
.event-single__article {
  padding: 32px;
}

.person-single__aside,
.event-single__aside {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.person-single__card,
.event-single__card {
  padding: 24px;
}

.person-single__label,
.event-single__label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--clr-accent);
  margin-bottom: 12px;
}

.person-single__card p,
.event-single__card p {
  color: var(--clr-text);
  line-height: 1.7;
}

.person-single__cta,
.event-single__cta {
  margin-top: 18px;
}

/* ---- RESPONSIVE ADDITIONS ---- */
@media (max-width: 1024px) {
  .mission__inner,
  .vision__inner,
  .approach__grid,
  .contact-grid,
  .person-single__hero-grid,
  .person-single__layout,
  .event-single__layout {
    grid-template-columns: 1fr;
  }

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

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

  .dir-card--wide {
    grid-column: span 2;
  }

  .person-single__media {
    max-width: 360px;
  }
}

@media (max-width: 900px) {
  .contact-grid {
    gap: 48px;
  }
}

@media (max-width: 860px) {
  .approach__grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .mission__inner,
  .vision__inner,
  .diff__grid {
    grid-template-columns: 1fr;
  }

  .mission__stats {
    margin-top: 0;
  }

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

  .dir-card--wide {
    grid-column: span 1;
    flex-direction: column;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .person-single__article,
  .event-single__article {
    padding: 24px;
  }
}

@media (max-width: 480px) {
  .mission__stat-card,
  .diff-card,
  .contact-page .contact-form {
    padding: 24px;
  }

  .page-hero__label {
    letter-spacing: 0.16em;
  }

  .person-single__placeholder {
    font-size: 56px;
  }
}
