:root {
  --navy: #071a3d;
  --navy-2: #0b2858;
  --blue: #0a4da2;
  --blue-2: #0e6db7;
  --cyan: #18a8d3;
  --magenta: #d1007a;
  --yellow: #ffc928;
  --green: #76b82a;
  --ink: #10213b;
  --muted: #5c6f88;
  --line: #dce4ef;
  --paper: #f5f8fc;
  --white: #ffffff;
  --shadow: 0 22px 60px rgba(7, 26, 61, 0.12);
  --shadow-sm: 0 10px 30px rgba(7, 26, 61, 0.08);
  --radius: 22px;
  --radius-sm: 14px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
img { max-width: 100%; display: block; }
a { color: inherit; }
button, input, textarea, select { font: inherit; }
::selection { background: rgba(24, 168, 211, 0.25); }

html[data-lang="ro"] .lang-en,
html[data-lang="en"] .lang-ro { display: none !important; }

.skip-link {
  position: fixed;
  left: 16px;
  top: -60px;
  z-index: 9999;
  padding: 10px 14px;
  border-radius: 8px;
  background: var(--white);
  color: var(--navy);
  box-shadow: var(--shadow-sm);
}
.skip-link:focus { top: 12px; }

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.programme-bar {
  background: var(--navy);
  color: rgba(255,255,255,0.88);
  font-size: 0.79rem;
  letter-spacing: 0.015em;
}
.programme-bar .container {
  min-height: 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.programme-bar p { margin: 0; }
.programme-links { display: flex; gap: 18px; flex-shrink: 0; }
.programme-links a {
  color: var(--white);
  text-decoration: none;
  opacity: 0.82;
}
.programme-links a:hover,
.programme-links a:focus-visible { opacity: 1; text-decoration: underline; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.94);
  border-bottom: 1px solid rgba(220,228,239,0.9);
  backdrop-filter: blur(16px);
}
.header-inner {
  min-height: 86px;
  display: grid;
  grid-template-columns: minmax(300px, 1fr) auto auto;
  align-items: center;
  gap: 22px;
}
.brand-lockup {
  display: flex;
  align-items: center;
  gap: 15px;
  text-decoration: none;
  min-width: 0;
}
.euraxess-logo {
  width: 112px;
  height: 62px;
  object-fit: contain;
  object-position: center;
  border-radius: 5px;
}
.brand-divider { width: 1px; height: 42px; background: var(--line); }
.brand-copy { min-width: 0; line-height: 1.06; }
.brand-copy strong {
  display: block;
  font-size: 0.95rem;
  letter-spacing: 0.14em;
  color: var(--navy);
}
.brand-copy span {
  display: block;
  margin-top: 5px;
  color: var(--blue-2);
  font-size: 0.79rem;
  font-weight: 750;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.main-nav ul {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 24px;
  margin: 0;
  padding: 0;
}
.main-nav a {
  position: relative;
  color: var(--ink);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 650;
  white-space: nowrap;
}
.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -9px;
  width: 100%;
  height: 2px;
  transform: scaleX(0);
  transform-origin: right;
  background: linear-gradient(90deg, var(--cyan), var(--magenta));
  transition: transform 180ms ease;
}
.main-nav a:hover::after,
.main-nav a:focus-visible::after,
.main-nav a.active::after { transform: scaleX(1); transform-origin: left; }

.header-actions { display: flex; align-items: center; gap: 10px; }
.lang-switch {
  display: inline-flex;
  align-items: center;
  padding: 3px;
  border-radius: 999px;
  background: var(--paper);
  border: 1px solid var(--line);
}
.lang-switch button {
  border: 0;
  background: transparent;
  color: var(--muted);
  min-width: 36px;
  padding: 7px 8px;
  border-radius: 999px;
  cursor: pointer;
  font-size: 0.78rem;
  font-weight: 800;
}
.lang-switch button[aria-pressed="true"] {
  color: var(--white);
  background: var(--blue);
  box-shadow: 0 4px 12px rgba(10,77,162,0.25);
}
.menu-toggle {
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--white);
  display: none;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.menu-toggle span,
.menu-toggle span::before,
.menu-toggle span::after {
  width: 20px;
  height: 2px;
  border-radius: 2px;
  background: var(--navy);
  display: block;
  transition: 180ms ease;
}
.menu-toggle span { position: relative; }
.menu-toggle span::before,
.menu-toggle span::after { content: ""; position: absolute; left: 0; }
.menu-toggle span::before { top: -6px; }
.menu-toggle span::after { top: 6px; }
body.menu-open .menu-toggle span { background: transparent; }
body.menu-open .menu-toggle span::before { top: 0; transform: rotate(45deg); }
body.menu-open .menu-toggle span::after { top: 0; transform: rotate(-45deg); }

.hero {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 82% 20%, rgba(24,168,211,0.33), transparent 27%),
    radial-gradient(circle at 72% 92%, rgba(209,0,122,0.24), transparent 24%),
    linear-gradient(135deg, var(--navy) 0%, #0a3677 55%, #075895 100%);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,0.8), transparent 90%);
}
.hero-inner {
  position: relative;
  min-height: 690px;
  display: grid;
  grid-template-columns: 1.06fr 0.94fr;
  align-items: center;
  gap: 68px;
  padding-block: 84px 124px;
}
.hero-copy { position: relative; z-index: 2; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 17px;
  color: var(--yellow);
  font-size: 0.79rem;
  font-weight: 850;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.eyebrow::before {
  content: "";
  width: 26px;
  height: 2px;
  background: currentColor;
}
.hero h1 {
  max-width: 720px;
  margin: 0;
  font-size: clamp(3rem, 6vw, 5.9rem);
  line-height: 0.96;
  letter-spacing: -0.055em;
}
.hero h1 em {
  font-style: normal;
  background: linear-gradient(90deg, #ffffff 10%, #7ad9f5 54%, #ffe481 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-lead {
  max-width: 660px;
  margin: 28px 0 0;
  color: rgba(255,255,255,0.83);
  font-size: clamp(1rem, 1.5vw, 1.18rem);
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 13px; margin-top: 34px; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 48px;
  padding: 12px 20px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 800;
  font-size: 0.91rem;
  border: 1px solid transparent;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary { background: var(--yellow); color: var(--navy); box-shadow: 0 12px 28px rgba(255,201,40,0.22); }
.button-primary:hover { box-shadow: 0 16px 36px rgba(255,201,40,0.3); }
.button-ghost { color: var(--white); border-color: rgba(255,255,255,0.3); background: rgba(255,255,255,0.06); }
.button-ghost:hover { background: rgba(255,255,255,0.12); }
.button-blue { background: var(--blue); color: var(--white); box-shadow: 0 10px 26px rgba(10,77,162,0.22); }
.button-outline { border-color: var(--line); background: var(--white); color: var(--blue); }
.button svg { width: 17px; height: 17px; }

.hero-visual {
  position: relative;
  min-height: 470px;
  display: grid;
  place-items: center;
}
.orbit-graphic {
  position: absolute;
  width: 560px;
  max-width: 120%;
  opacity: 0.93;
  filter: drop-shadow(0 26px 40px rgba(0,0,0,0.18));
}
.hero-card {
  position: relative;
  z-index: 2;
  width: min(390px, 92%);
  border-radius: 26px;
  padding: 26px;
  background: rgba(255,255,255,0.96);
  color: var(--ink);
  box-shadow: 0 30px 80px rgba(0,0,0,0.27);
  transform: rotate(-1.2deg);
}
.hero-card::after {
  content: "";
  position: absolute;
  inset: 10px -11px -11px 10px;
  z-index: -1;
  border: 1px solid rgba(255,255,255,0.34);
  border-radius: 27px;
}
.hero-card-kicker {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
  color: var(--blue);
  font-size: 0.73rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.live-dot {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--green);
}
.live-dot::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: currentColor; box-shadow: 0 0 0 5px rgba(118,184,42,0.13); }
.hero-card h2 { margin: 0; font-size: 1.65rem; line-height: 1.14; letter-spacing: -0.03em; }
.hero-card p { margin: 10px 0 20px; color: var(--muted); font-size: 0.91rem; }
.mini-path { display: grid; gap: 8px; }
.mini-path-step {
  display: grid;
  grid-template-columns: 34px 1fr auto;
  align-items: center;
  gap: 11px;
  padding: 10px 11px;
  border-radius: 12px;
  background: var(--paper);
}
.mini-path-step b {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--blue);
  font-size: 0.75rem;
}
.mini-path-step:nth-child(2) b { background: var(--magenta); }
.mini-path-step:nth-child(3) b { background: var(--green); }
.mini-path-step span { font-size: 0.85rem; font-weight: 720; }
.mini-path-step small { color: var(--muted); font-size: 0.73rem; }

.hero-metrics {
  position: absolute;
  z-index: 3;
  left: 50%;
  bottom: 0;
  transform: translate(-50%, 50%);
  width: min(calc(100% - 40px), var(--container));
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--white);
  color: var(--ink);
  border-radius: 18px;
  box-shadow: var(--shadow);
  overflow: hidden;
}
.metric {
  padding: 24px 28px;
  border-right: 1px solid var(--line);
}
.metric:last-child { border-right: 0; }
.metric strong { display: block; color: var(--blue); font-size: 1.45rem; line-height: 1.1; letter-spacing: -0.03em; }
.metric span { display: block; margin-top: 5px; color: var(--muted); font-size: 0.78rem; }

main section { scroll-margin-top: 105px; }
.section { padding-block: 104px; }
.section-soft { background: var(--paper); }
.section-dark { background: var(--navy); color: var(--white); }
.section-head {
  display: grid;
  grid-template-columns: 1fr minmax(260px, 0.7fr);
  align-items: end;
  gap: 50px;
  margin-bottom: 46px;
}
.section-label {
  display: block;
  color: var(--blue-2);
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.section-dark .section-label { color: #7ad9f5; }
.section-title {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.55rem);
  line-height: 1.02;
  letter-spacing: -0.045em;
}
.section-intro { margin: 0; color: var(--muted); font-size: 1.02rem; }
.section-dark .section-intro { color: rgba(255,255,255,0.7); }

.about-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 62px;
  align-items: start;
  padding-top: 44px;
}
.prose-large { font-size: 1.13rem; color: #30445f; }
.prose-large p { margin: 0 0 22px; }
.feature-list { list-style: none; padding: 0; margin: 30px 0 0; display: grid; gap: 14px; }
.feature-list li { display: grid; grid-template-columns: 28px 1fr; gap: 12px; align-items: start; }
.feature-list .check {
  width: 24px; height: 24px; display: grid; place-items: center; border-radius: 50%;
  background: rgba(118,184,42,0.14); color: #4f8a12; margin-top: 2px; font-weight: 900;
}
.fact-card {
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--line);
  overflow: hidden;
}
.fact-card-top {
  padding: 24px 26px;
  background: linear-gradient(135deg, var(--blue), var(--blue-2));
  color: var(--white);
}
.fact-card-top small { display: block; opacity: 0.75; text-transform: uppercase; letter-spacing: 0.12em; font-weight: 800; }
.fact-card-top h3 { margin: 7px 0 0; font-size: 1.35rem; }
.fact-list { margin: 0; }
.fact-row { display: grid; grid-template-columns: 122px 1fr; gap: 18px; padding: 17px 25px; border-bottom: 1px solid var(--line); }
.fact-row:last-child { border-bottom: 0; }
.fact-row dt { color: var(--muted); font-size: 0.79rem; font-weight: 750; }
.fact-row dd { margin: 0; font-size: 0.88rem; font-weight: 700; }
.status-note {
  margin-top: 18px;
  padding: 17px 18px;
  border-radius: var(--radius-sm);
  background: #fff8df;
  border: 1px solid #f4dc85;
  color: #5d4a05;
  font-size: 0.86rem;
}

.audience-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.audience-card {
  position: relative;
  min-height: 382px;
  padding: 29px;
  border-radius: var(--radius);
  background: var(--white);
  border: 1px solid var(--line);
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(7,26,61,0.045);
  transition: transform 180ms ease, box-shadow 180ms ease;
}
.audience-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-sm); }
.audience-card::before { content: ""; position: absolute; top: 0; left: 0; width: 100%; height: 5px; background: var(--cyan); }
.audience-card:nth-child(2)::before { background: var(--magenta); }
.audience-card:nth-child(3)::before { background: var(--green); }
.icon-box {
  width: 50px; height: 50px; display: grid; place-items: center; border-radius: 15px;
  background: rgba(24,168,211,0.11); color: var(--blue-2); margin-bottom: 25px;
}
.audience-card:nth-child(2) .icon-box { background: rgba(209,0,122,0.1); color: var(--magenta); }
.audience-card:nth-child(3) .icon-box { background: rgba(118,184,42,0.13); color: #4f8a12; }
.icon-box svg { width: 25px; height: 25px; }
.audience-card h3 { margin: 0 0 10px; font-size: 1.35rem; line-height: 1.15; }
.audience-card > p { margin: 0 0 20px; color: var(--muted); font-size: 0.91rem; }
.card-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 11px; }
.card-list li { position: relative; padding-left: 17px; color: #3e516a; font-size: 0.86rem; }
.card-list li::before { content: ""; position: absolute; left: 0; top: 0.62em; width: 6px; height: 6px; border-radius: 50%; background: var(--cyan); }
.audience-card:nth-child(2) .card-list li::before { background: var(--magenta); }
.audience-card:nth-child(3) .card-list li::before { background: var(--green); }

.pathway {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0;
  margin-top: 16px;
  border-radius: var(--radius);
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}
.path-step { position: relative; padding: 25px 20px 28px; min-height: 230px; border-right: 1px solid var(--line); }
.path-step:last-child { border-right: 0; }
.path-step::after {
  content: "";
  position: absolute;
  top: 55px;
  right: -7px;
  width: 13px;
  height: 13px;
  z-index: 3;
  border-top: 2px solid var(--line);
  border-right: 2px solid var(--line);
  transform: rotate(45deg);
  background: var(--white);
}
.path-step:last-child::after { display: none; }
.path-num { width: 39px; height: 39px; display: grid; place-items: center; border-radius: 50%; color: var(--white); background: var(--blue); font-size: 0.82rem; font-weight: 900; }
.path-step:nth-child(2) .path-num { background: #087cb8; }
.path-step:nth-child(3) .path-num { background: var(--magenta); }
.path-step:nth-child(4) .path-num { background: #8d3fa1; }
.path-step:nth-child(5) .path-num { background: #df8d00; }
.path-step:nth-child(6) .path-num { background: #4f8a12; }
.path-step h3 { margin: 22px 0 9px; font-size: 1rem; line-height: 1.18; }
.path-step p { margin: 0; color: var(--muted); font-size: 0.79rem; }

.programme-grid { display: grid; grid-template-columns: 0.72fr 1.28fr; gap: 42px; align-items: start; }
.programme-feature {
  position: sticky;
  top: 124px;
  border-radius: var(--radius);
  padding: 34px;
  background: linear-gradient(155deg, #0a4da2, #082b60);
  color: var(--white);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.programme-feature::after { content: ""; position: absolute; width: 220px; height: 220px; border-radius: 50%; right: -90px; bottom: -90px; border: 34px solid rgba(255,255,255,0.07); }
.programme-feature .tag { display: inline-flex; padding: 7px 10px; border-radius: 999px; background: rgba(255,255,255,0.11); color: #bfefff; font-size: 0.72rem; font-weight: 850; letter-spacing: 0.1em; text-transform: uppercase; }
.programme-feature h3 { margin: 18px 0 10px; font-size: 2rem; line-height: 1.08; letter-spacing: -0.04em; }
.programme-feature p { margin: 0; color: rgba(255,255,255,0.75); }
.event-meta { display: grid; gap: 11px; margin-top: 25px; }
.event-meta div { display: grid; grid-template-columns: 27px 1fr; gap: 10px; align-items: start; font-size: 0.87rem; }
.event-meta svg { width: 19px; height: 19px; color: var(--yellow); margin-top: 2px; }
.timeline { position: relative; display: grid; gap: 18px; }
.timeline::before { content: ""; position: absolute; left: 27px; top: 28px; bottom: 28px; width: 2px; background: var(--line); }
.timeline-item {
  position: relative;
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 20px;
  align-items: start;
}
.timeline-dot {
  position: relative;
  z-index: 2;
  width: 56px; height: 56px; display: grid; place-items: center; border-radius: 50%;
  background: var(--white); border: 2px solid var(--cyan); color: var(--blue); box-shadow: 0 4px 18px rgba(7,26,61,0.08); font-weight: 900;
}
.timeline-item:nth-child(2) .timeline-dot { border-color: var(--magenta); }
.timeline-item:nth-child(3) .timeline-dot { border-color: var(--green); }
.timeline-card { padding: 24px 25px; border-radius: 18px; background: var(--white); border: 1px solid var(--line); box-shadow: 0 4px 18px rgba(7,26,61,0.035); }
.timeline-date { color: var(--blue-2); font-size: 0.75rem; font-weight: 850; letter-spacing: 0.08em; text-transform: uppercase; }
.timeline-card h3 { margin: 5px 0 7px; font-size: 1.25rem; }
.timeline-card p { margin: 0; color: var(--muted); font-size: 0.88rem; }
.speaker-strip { display: grid; grid-template-columns: repeat(3,1fr); gap: 15px; margin-top: 34px; }
.speaker { padding: 17px; border-radius: 15px; background: var(--paper); border: 1px solid var(--line); }
.speaker strong { display: block; font-size: 0.87rem; }
.speaker span { display: block; margin-top: 3px; color: var(--muted); font-size: 0.74rem; }

.results-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.result-card {
  min-height: 250px;
  padding: 25px;
  border-radius: 20px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.13);
  backdrop-filter: blur(5px);
}
.result-card .result-no { display: block; color: var(--yellow); font-size: 0.75rem; font-weight: 900; letter-spacing: 0.13em; }
.result-card h3 { margin: 31px 0 10px; font-size: 1.28rem; line-height: 1.14; }
.result-card p { margin: 0; color: rgba(255,255,255,0.67); font-size: 0.84rem; }
.award-banner {
  margin-top: 22px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 20px;
  align-items: center;
  padding: 22px 25px;
  border-radius: 18px;
  background: linear-gradient(90deg, rgba(255,201,40,0.16), rgba(255,255,255,0.06));
  border: 1px solid rgba(255,201,40,0.27);
}
.award-icon { width: 50px; height: 50px; display: grid; place-items: center; border-radius: 50%; background: var(--yellow); color: var(--navy); }
.award-icon svg { width: 26px; height: 26px; }
.award-banner strong { display: block; font-size: 1rem; }
.award-banner p { margin: 3px 0 0; color: rgba(255,255,255,0.68); font-size: 0.82rem; }
.award-year { font-size: 1.35rem; font-weight: 900; color: var(--yellow); }

.team-layout { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 52px; }
.coordinator-card {
  border-radius: var(--radius);
  background: linear-gradient(145deg, var(--white), #eef5ff);
  border: 1px solid var(--line);
  padding: 30px;
  box-shadow: var(--shadow-sm);
}
.avatar-large { width: 78px; height: 78px; display: grid; place-items: center; border-radius: 24px; color: var(--white); background: linear-gradient(135deg, var(--blue), var(--cyan)); font-size: 1.5rem; font-weight: 900; }
.coordinator-card h3 { margin: 22px 0 2px; font-size: 1.55rem; }
.role { color: var(--blue); font-size: 0.84rem; font-weight: 750; }
.coordinator-card p { color: var(--muted); font-size: 0.88rem; }
.contact-link { display: inline-flex; gap: 8px; align-items: center; color: var(--blue); font-weight: 750; text-decoration: none; font-size: 0.84rem; }
.contact-link:hover { text-decoration: underline; }
.team-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 13px; }
.member {
  display: grid;
  grid-template-columns: 43px 1fr;
  align-items: center;
  gap: 12px;
  padding: 14px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: var(--white);
}
.avatar { width: 43px; height: 43px; display: grid; place-items: center; border-radius: 13px; color: var(--blue); background: #eaf2ff; font-size: 0.77rem; font-weight: 900; }
.member strong { display: block; font-size: 0.84rem; line-height: 1.2; }
.member span { display: block; margin-top: 3px; color: var(--muted); font-size: 0.72rem; }
.support-details { margin-top: 17px; border-radius: 15px; border: 1px solid var(--line); background: var(--white); overflow: hidden; }
.support-details summary { cursor: pointer; padding: 16px 18px; font-size: 0.86rem; font-weight: 800; color: var(--blue); }
.support-details[open] summary { border-bottom: 1px solid var(--line); }
.support-list { list-style: none; margin: 0; padding: 8px 18px 16px; }
.support-list li { padding: 9px 0; color: var(--muted); font-size: 0.82rem; border-bottom: 1px dashed var(--line); }
.support-list li:last-child { border-bottom: 0; }
.support-list strong { color: var(--ink); }

.network-wrap {
  position: relative;
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 38px;
  align-items: stretch;
}
.network-local {
  padding: 31px;
  border-radius: var(--radius);
  background: linear-gradient(145deg, #eaf5ff, #f9fcff);
  border: 1px solid #cbe1f5;
}
.network-local img { width: 180px; margin-bottom: 28px; }
.network-local h3 { margin: 0 0 9px; font-size: 1.55rem; }
.network-local p { margin: 0; color: var(--muted); font-size: 0.89rem; }
.network-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 22px; }
.network-tags span { padding: 7px 10px; border-radius: 999px; background: var(--white); border: 1px solid var(--line); color: var(--blue); font-size: 0.72rem; font-weight: 750; }
.partner-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.partner {
  min-height: 99px;
  padding: 15px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: var(--white);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.partner strong { font-size: 0.77rem; line-height: 1.2; }
.partner span { color: var(--muted); font-size: 0.7rem; }
.partner.local { border-color: var(--cyan); background: #eefaff; box-shadow: inset 0 0 0 1px rgba(24,168,211,0.2); }
.network-partners .partner-grid { grid-template-columns: repeat(4, 1fr); gap: 12px; }
.network-partners .partner { min-height: 126px; position: relative; overflow: hidden; }
.network-partners .partner::before { content: attr(data-country); display: inline-block; align-self: flex-start; margin-bottom: 12px; padding: 5px 8px; border-radius: 999px; background: #eef5ff; color: var(--blue-2); font-size: .62rem; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; }
.network-partners .partner.local::before { background: rgba(24,168,211,.16); color: var(--blue); }
.network-partners .partner strong { font-size: .82rem; }
.network-partners .partner span { margin-top: 10px; line-height: 1.35; }
.network-stat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 24px; }
.network-stat { padding: 18px; border-radius: 18px; background: var(--white); border: 1px solid var(--line); box-shadow: var(--shadow-soft); }
.network-stat strong { display: block; font-size: 1.7rem; color: var(--blue); line-height: 1; }
.network-stat span { display: block; margin-top: 7px; color: var(--muted); font-size: .78rem; }

.resource-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.resource-card {
  position: relative;
  min-height: 220px;
  padding: 25px;
  border-radius: 19px;
  background: var(--white);
  border: 1px solid var(--line);
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease, border 180ms ease;
}
.resource-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-sm); border-color: #b7d2ec; }
.resource-card .resource-type { color: var(--blue-2); font-size: 0.71rem; font-weight: 850; letter-spacing: 0.12em; text-transform: uppercase; }
.resource-card h3 { margin: 24px 0 7px; font-size: 1.15rem; line-height: 1.2; }
.resource-card p { margin: 0; color: var(--muted); font-size: 0.81rem; }
.resource-arrow { position: absolute; right: 20px; top: 20px; width: 34px; height: 34px; display: grid; place-items: center; border-radius: 50%; background: var(--paper); color: var(--blue); }
.resource-arrow svg { width: 17px; height: 17px; }

.news-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.news-card { border-radius: 19px; overflow: hidden; background: var(--white); border: 1px solid var(--line); }
.news-visual { min-height: 130px; position: relative; padding: 20px; display: flex; align-items: flex-end; color: var(--white); background: linear-gradient(135deg, var(--blue), var(--cyan)); }
.news-card:nth-child(2) .news-visual { background: linear-gradient(135deg, #9b2a80, var(--magenta)); }
.news-card:nth-child(3) .news-visual { background: linear-gradient(135deg, #776100, #d99a00); }
.news-visual::after { content: ""; position: absolute; width: 110px; height: 110px; right: -26px; top: -29px; border-radius: 50%; border: 22px solid rgba(255,255,255,0.13); }
.news-date { position: relative; z-index: 2; font-size: 0.73rem; font-weight: 850; letter-spacing: 0.08em; text-transform: uppercase; }
.news-body { padding: 21px; }
.news-body h3 { margin: 0 0 8px; font-size: 1.06rem; line-height: 1.24; }
.news-body p { margin: 0; color: var(--muted); font-size: 0.8rem; }

.contact-section { position: relative; overflow: hidden; }
.contact-section::after { content: ""; position: absolute; width: 440px; height: 440px; right: -160px; bottom: -220px; border-radius: 50%; border: 75px solid rgba(24,168,211,0.09); }
.contact-box {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  gap: 48px;
  align-items: center;
  padding: 45px;
  border-radius: 28px;
  background: var(--white);
  color: var(--ink);
  box-shadow: var(--shadow);
}
.contact-box h2 { margin: 0 0 14px; font-size: clamp(2rem,4vw,3.2rem); line-height: 1; letter-spacing: -0.045em; }
.contact-box p { margin: 0; color: var(--muted); }
.contact-meta { display: grid; gap: 12px; margin-top: 26px; }
.contact-meta a, .contact-meta div { display: grid; grid-template-columns: 34px 1fr; gap: 11px; align-items: center; text-decoration: none; font-size: 0.86rem; }
.contact-meta .meta-icon { width: 34px; height: 34px; display: grid; place-items: center; border-radius: 10px; background: var(--paper); color: var(--blue); }
.contact-meta svg { width: 17px; height: 17px; }
.contact-cta { padding: 29px; border-radius: 20px; background: var(--paper); border: 1px solid var(--line); }
.contact-cta h3 { margin: 0 0 8px; }
.contact-cta p { font-size: 0.84rem; margin-bottom: 20px; }
.contact-cta .button { width: 100%; }

.site-footer { background: #04132d; color: rgba(255,255,255,0.73); }
.footer-main { padding-block: 46px 32px; display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 50px; }
.footer-logos { display: flex; align-items: center; gap: 19px; margin-bottom: 20px; }
.footer-logos .logo-tile { background: var(--white); border-radius: 10px; padding: 8px 11px; }
.footer-logos img:first-child { width: 95px; }
.footer-logos img:last-child { width: 150px; }
.footer-copy { max-width: 680px; font-size: 0.78rem; }
.footer-copy p { margin: 7px 0; }
.footer-links { display: grid; grid-template-columns: repeat(2,1fr); gap: 8px 24px; align-content: start; }
.footer-links a { color: rgba(255,255,255,0.78); text-decoration: none; font-size: 0.8rem; }
.footer-links a:hover { color: var(--white); text-decoration: underline; }
.footer-bottom { padding: 17px 0 22px; border-top: 1px solid rgba(255,255,255,0.11); font-size: 0.72rem; display: flex; justify-content: space-between; gap: 20px; }

.reveal { opacity: 0; transform: translateY(20px); transition: opacity 600ms ease, transform 600ms ease; }
.reveal.visible { opacity: 1; transform: none; }

@media (max-width: 1080px) {
  .header-inner { grid-template-columns: 1fr auto; }
  .main-nav {
    position: fixed;
    left: 0;
    right: 0;
    top: 122px;
    height: calc(100vh - 122px);
    padding: 24px 20px;
    background: rgba(255,255,255,0.99);
    transform: translateX(105%);
    transition: transform 220ms ease;
    overflow-y: auto;
  }
  body.menu-open .main-nav { transform: none; }
  .main-nav ul { flex-direction: column; align-items: stretch; gap: 0; }
  .main-nav a { display: block; padding: 17px 4px; border-bottom: 1px solid var(--line); font-size: 1rem; }
  .main-nav a::after { display: none; }
  .menu-toggle { display: inline-flex; }
  .header-actions { grid-column: 2; grid-row: 1; }
  .hero-inner { grid-template-columns: 1fr 0.8fr; gap: 30px; }
  .hero h1 { font-size: clamp(3rem,7vw,4.8rem); }
  .pathway { grid-template-columns: repeat(3,1fr); }
  .path-step:nth-child(3) { border-right: 0; }
  .path-step:nth-child(-n+3) { border-bottom: 1px solid var(--line); }
  .path-step:nth-child(3)::after { display: none; }
  .results-grid { grid-template-columns: repeat(2,1fr); }
  .partner-grid, .network-partners .partner-grid { grid-template-columns: repeat(2,1fr); }
}

@media (max-width: 820px) {
  .programme-bar .container { min-height: 42px; }
  .programme-links { display: none; }
  .header-inner { min-height: 75px; }
  .brand-copy strong { font-size: 0.82rem; }
  .brand-copy span { font-size: 0.68rem; }
  .euraxess-logo { width: 91px; height: 51px; }
  .main-nav { top: 117px; height: calc(100vh - 117px); }
  .hero-inner { grid-template-columns: 1fr; min-height: auto; padding-block: 76px 140px; }
  .hero-copy { text-align: center; }
  .eyebrow { justify-content: center; }
  .hero h1 { margin-inline: auto; }
  .hero-lead { margin-inline: auto; }
  .hero-actions { justify-content: center; }
  .hero-visual { min-height: 420px; }
  .hero-metrics { grid-template-columns: repeat(2,1fr); }
  .metric:nth-child(2) { border-right: 0; }
  .metric:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .section { padding-block: 82px; }
  .section-head, .about-grid, .programme-grid, .team-layout, .network-wrap, .contact-box, .footer-main { grid-template-columns: 1fr; }
  .section-head { align-items: start; gap: 18px; }
  .about-grid { gap: 35px; padding-top: 25px; }
  .audience-grid, .resource-grid, .news-grid { grid-template-columns: 1fr; }
  .audience-card { min-height: auto; }
  .programme-feature { position: relative; top: 0; }
  .speaker-strip { grid-template-columns: 1fr; }
  .network-local img { width: 160px; }
  .contact-box { padding: 32px; gap: 30px; }
}

@media (max-width: 600px) {
  .container { width: min(calc(100% - 26px), var(--container)); }
  .programme-bar { font-size: 0.7rem; }
  .brand-divider, .brand-copy span { display: none; }
  .brand-copy strong { letter-spacing: 0.08em; }
  .header-actions { gap: 7px; }
  .lang-switch button { min-width: 32px; padding: 6px; }
  .hero-inner { padding-top: 58px; gap: 15px; }
  .hero h1 { font-size: clamp(2.65rem,14vw,4rem); }
  .hero-lead { font-size: 0.96rem; }
  .hero-actions .button { width: 100%; }
  .hero-visual { min-height: 370px; }
  .hero-card { padding: 21px; }
  .hero-card h2 { font-size: 1.4rem; }
  .hero-metrics { width: calc(100% - 26px); }
  .metric { padding: 18px; }
  .metric strong { font-size: 1.16rem; }
  .section { padding-block: 70px; }
  .section-title { font-size: 2.2rem; }
  .fact-row { grid-template-columns: 1fr; gap: 4px; }
  .pathway { grid-template-columns: 1fr; }
  .path-step { border-right: 0; border-bottom: 1px solid var(--line); min-height: auto; }
  .path-step:last-child { border-bottom: 0; }
  .path-step::after { display: none; }
  .timeline-item { grid-template-columns: 44px 1fr; gap: 13px; }
  .timeline::before { left: 21px; }
  .timeline-dot { width: 44px; height: 44px; font-size: 0.75rem; }
  .timeline-card { padding: 19px; }
  .results-grid, .team-grid, .partner-grid { grid-template-columns: 1fr; }
  .award-banner { grid-template-columns: auto 1fr; }
  .award-year { grid-column: 2; }
  .resource-card { min-height: 190px; }
  .contact-box { padding: 24px; border-radius: 22px; }
  .footer-main { gap: 25px; }
  .footer-logos { flex-wrap: wrap; }
  .footer-links { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
  .reveal { opacity: 1; transform: none; }
}

@media print {
  .programme-bar, .main-nav, .header-actions, .hero-actions, .contact-section, .site-footer { display: none !important; }
  .site-header { position: static; }
  .hero { color: var(--ink); background: var(--white); }
  .hero::before, .hero-visual, .hero-metrics { display: none; }
  .hero-inner { min-height: auto; display: block; padding: 30px 0; }
  .hero h1 em { color: var(--ink); }
  .hero-lead { color: var(--muted); }
  .section { padding-block: 35px; }
  .reveal { opacity: 1; transform: none; }
}

/* Alignment layer: information architecture benchmarked against the Local EURAXESS Startup Hub peer site. */
.header-inner-aligned { grid-template-columns: minmax(270px, .9fr) auto auto; gap: 18px; }
.header-inner-aligned .main-nav ul { gap: 19px; }
.header-inner-aligned .main-nav a { font-size: .84rem; }
.join-mini {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 39px;
  padding: 0 14px;
  border-radius: 10px;
  background: var(--yellow);
  color: var(--navy);
  text-decoration: none;
  font-size: .78rem;
  font-weight: 850;
  white-space: nowrap;
  box-shadow: 0 8px 20px rgba(255,201,40,.22);
}
.join-mini:hover, .join-mini:focus-visible { transform: translateY(-1px); }

.hero-aligned { padding-bottom: 54px; }
.hero-aligned .hero-inner { padding-bottom: 72px; }
.hero-network-note {
  max-width: 690px;
  margin: -7px 0 18px;
  color: rgba(255,255,255,.82);
  font-size: .94rem;
  letter-spacing: .01em;
}
.hero-network-note strong { color: var(--yellow); }
.peer-card { transform: rotate(-1.3deg); }

.pillar-strip {
  position: relative;
  z-index: 5;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: -30px;
  border-radius: 20px;
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow);
}
.pillar-card {
  min-height: 150px;
  display: grid;
  grid-template-columns: 66px 1fr;
  gap: 18px;
  align-items: center;
  padding: 25px 27px;
  text-decoration: none;
  border-right: 1px solid var(--line);
  transition: background 180ms ease, transform 180ms ease;
}
.pillar-card:last-child { border-right: 0; }
.pillar-card:hover { background: var(--paper); }
.pillar-icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: linear-gradient(145deg, var(--navy), var(--blue-2));
  color: var(--white);
  font-size: 1.15rem;
  font-weight: 900;
  box-shadow: 0 10px 22px rgba(7,26,61,.18);
}
.pillar-card:nth-child(2) .pillar-icon { background: linear-gradient(145deg, var(--magenta), #8f075d); }
.pillar-card:nth-child(3) .pillar-icon { background: linear-gradient(145deg, var(--green), #398824); }
.pillar-card small { color: var(--blue-2); font-size: .68rem; font-weight: 900; letter-spacing: .13em; }
.pillar-card h2 { margin: 2px 0 3px; color: var(--navy); font-size: 1.2rem; line-height: 1.1; }
.pillar-card p { margin: 0; color: var(--muted); font-size: .76rem; line-height: 1.45; }

.mentoring-cta { margin-top: 22px; }
.benefit-band {
  margin-top: 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  padding: 22px 25px;
  border-radius: 18px;
  background: var(--navy);
  color: var(--white);
}
.benefit-band div { display: grid; gap: 3px; }
.benefit-band strong { font-size: .93rem; }
.benefit-band span { color: rgba(255,255,255,.68); font-size: .77rem; }
.benefit-band a { color: var(--yellow); text-decoration: none; font-size: .82rem; font-weight: 800; white-space: nowrap; }

.webinar-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.webinar-card {
  position: relative;
  min-height: 260px;
  padding: 26px;
  border-radius: 20px;
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}
.webinar-card::after {
  content: "";
  position: absolute;
  right: -44px;
  bottom: -54px;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  border: 26px solid rgba(24,168,211,.07);
}
.webinar-card:nth-child(2n)::after { border-color: rgba(209,0,122,.06); }
.webinar-card:nth-child(3n)::after { border-color: rgba(118,184,42,.07); }
.webinar-no { display: block; color: var(--blue); font-size: 1.45rem; font-weight: 900; }
.webinar-type { display: inline-block; margin: 11px 0 15px; color: var(--magenta); font-size: .64rem; font-weight: 900; letter-spacing: .14em; }
.webinar-card h3 { position: relative; z-index: 1; margin: 0 0 10px; color: var(--navy); font-size: 1.14rem; line-height: 1.25; }
.webinar-card p { position: relative; z-index: 1; margin: 0; color: var(--muted); font-size: .8rem; }
.resource-row {
  margin-top: 22px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.resource-row a {
  display: grid;
  gap: 4px;
  padding: 18px 20px;
  border-radius: 14px;
  background: var(--navy);
  color: var(--white);
  text-decoration: none;
}
.resource-row a:hover { background: var(--blue); }
.resource-row strong { font-size: .86rem; }
.resource-row span { color: rgba(255,255,255,.66); font-size: .72rem; }

.member-filters { display: flex; gap: 9px; flex-wrap: wrap; margin-bottom: 24px; }
.member-filter {
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  color: var(--muted);
  padding: 9px 16px;
  cursor: pointer;
  font-size: .76rem;
  font-weight: 800;
}
.member-filter:hover, .member-filter.active { background: var(--navy); border-color: var(--navy); color: var(--white); }
.member-directory { display: grid; grid-template-columns: repeat(4, 1fr); gap: 17px; }
.member-profile {
  min-height: 250px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 19px;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: opacity 180ms ease, transform 180ms ease;
}
.member-profile.hidden { display: none; }
.member-profile.featured { background: linear-gradient(145deg, var(--navy), var(--blue)); color: var(--white); border-color: transparent; }
.profile-avatar {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 15px;
  background: rgba(10,77,162,.1);
  color: var(--blue);
  font-size: .82rem;
  font-weight: 900;
}
.featured .profile-avatar { background: rgba(255,255,255,.13); color: var(--yellow); }
.ecosystem-avatar { background: rgba(118,184,42,.12); color: #438d23; }
.international-avatar { background: rgba(209,0,122,.1); color: var(--magenta); }
.profile-tag { display: block; margin: 18px 0 8px; color: var(--blue-2); font-size: .62rem; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.featured .profile-tag { color: var(--yellow); }
.member-profile h3 { margin: 0 0 8px; color: var(--navy); font-size: 1rem; line-height: 1.22; }
.member-profile p { margin: 0 0 14px; color: var(--muted); font-size: .73rem; line-height: 1.52; }
.member-profile a { color: var(--blue); text-decoration: none; font-size: .7rem; font-weight: 800; overflow-wrap: anywhere; }
.featured h3 { color: var(--white); }
.featured p { color: rgba(255,255,255,.72); }
.featured a { color: var(--yellow); }
.ambassador-panel {
  margin-top: 26px;
  padding: 30px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: center;
  border-radius: 22px;
  background: linear-gradient(125deg, #eaf4ff, #fff5fa);
  border: 1px solid var(--line);
}
.ambassador-panel h3 { margin: 4px 0 8px; color: var(--navy); font-size: 1.55rem; }
.ambassador-panel p { margin: 0; max-width: 820px; color: var(--muted); font-size: .82rem; }

.news-category { color: var(--magenta); font-size: .62rem; font-weight: 900; letter-spacing: .13em; }
.news-network { background: linear-gradient(135deg, var(--navy), var(--blue-2)); }
.news-program { background: linear-gradient(135deg, #8b075e, var(--magenta)); }
.news-legacy { background: linear-gradient(135deg, #397d22, var(--green)); }

.join-section { background: var(--white); }
.join-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.join-card {
  min-height: 300px;
  padding: 34px;
  border-radius: 24px;
  background: var(--paper);
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.join-card:nth-child(2) { background: linear-gradient(145deg, #f7f5ff, #edf8ff); }
.join-type { color: var(--magenta); font-size: .67rem; font-weight: 900; letter-spacing: .14em; }
.join-card h3 { margin: 16px 0 10px; color: var(--navy); font-size: 1.55rem; line-height: 1.13; }
.join-card p { margin: 0 0 25px; color: var(--muted); font-size: .84rem; }
.join-card .button { margin-top: auto; }
.contact-cta img { width: 180px; max-height: 70px; object-fit: contain; object-position: left center; margin-bottom: 18px; }

.legal-page { min-height: 70vh; padding: 80px 0; background: var(--paper); }
.legal-card { max-width: 900px; margin: auto; padding: 42px; border-radius: 24px; background: var(--white); box-shadow: var(--shadow-sm); }
.legal-card h1 { margin: 0 0 18px; color: var(--navy); font-size: 2.5rem; }
.legal-card h2 { margin-top: 28px; color: var(--navy); font-size: 1.25rem; }
.legal-card p, .legal-card li { color: var(--muted); font-size: .9rem; }
.legal-notice { padding: 14px 16px; border-left: 4px solid var(--yellow); background: #fff9e8; color: var(--ink) !important; }

@media (max-width: 1180px) {
  .header-inner-aligned .join-mini { display: none; }
  .member-directory { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 1080px) {
  .header-inner-aligned { grid-template-columns: 1fr auto; }
  .pillar-strip { margin-top: -15px; }
  .webinar-grid { grid-template-columns: repeat(2, 1fr); }
  .member-directory { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 820px) {
  .hero-network-note { margin-inline: auto; }
  .pillar-strip { grid-template-columns: 1fr; margin-top: -70px; }
  .pillar-card { border-right: 0; border-bottom: 1px solid var(--line); min-height: 120px; }
  .pillar-card:last-child { border-bottom: 0; }
  .benefit-band { flex-direction: column; align-items: flex-start; }
  .resource-row, .join-grid { grid-template-columns: 1fr; }
  .ambassador-panel { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .header-inner-aligned .brand-copy strong { display: none; }
  .pillar-card { grid-template-columns: 55px 1fr; padding: 20px; }
  .pillar-icon { width: 49px; height: 49px; border-radius: 14px; }
  .webinar-grid, .member-directory { grid-template-columns: 1fr; }
  .webinar-card, .member-profile { min-height: auto; }
  .join-card { padding: 25px; min-height: 270px; }
  .legal-card { padding: 24px; }
}


/* Mentor directory — added after ASEM mentor-expert orders */
.mentor-section { background: linear-gradient(180deg, #ffffff 0%, #f5f8fc 100%); }
.mentor-source-panel {
  margin: -2px 0 24px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  padding: 22px 24px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--white);
  box-shadow: var(--shadow-sm);
}
.mentor-source-panel strong { display: block; color: var(--navy); font-size: .9rem; }
.mentor-source-panel span { display: block; margin-top: 3px; color: var(--muted); font-size: .82rem; }
.mentor-source-panel a { color: var(--blue); font-size: .82rem; font-weight: 850; text-decoration: none; white-space: nowrap; }
.mentor-source-panel a:hover { text-decoration: underline; }
.mentor-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 17px; }
.mentor-profile { min-height: 276px; background: var(--white); }
.mentor-profile .profile-avatar { color: var(--blue); background: #eaf2ff; }
.mentor-profile .profile-tag { color: var(--magenta); }
.mentor-profile.associated { background: linear-gradient(145deg, #fff8fd, #f3f8ff); border-color: rgba(209,0,122,.18); }
.mentor-focus { display: block; color: var(--navy); font-size: .76rem; line-height: 1.35; }
.mentor-profile p:first-of-type { margin-bottom: 8px; }
@media (max-width: 1180px) { .mentor-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 820px) { .mentor-grid { grid-template-columns: repeat(2, 1fr); } .mentor-source-panel { grid-template-columns: 1fr; } }
@media (max-width: 600px) { .mentor-grid { grid-template-columns: 1fr; } .mentor-profile { min-height: auto; } }
