:root {
  --bg: #edf3f8;
  --surface: rgba(255,255,255,0.96);
  --surface-soft: #f5f8fc;
  --ink: #0f1724;
  --muted: #5d6a79;
  --line: rgba(15, 23, 36, 0.10);
  --brand: #203c8c;
  --brand-alt: #ea7a19;
  --brand-dark: #162c68;
  --deep: #0f1c33;
  --shadow: 0 24px 56px rgba(15, 23, 36, 0.10);
  --shadow-soft: 0 10px 28px rgba(15, 23, 36, 0.06);
  --radius: 20px;
  --radius-sm: 16px;
  --content: 1480px;
  --header-h: 92px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(32, 60, 140, 0.08), transparent 26%),
    radial-gradient(circle at 88% 10%, rgba(234, 122, 25, 0.05), transparent 18%),
    linear-gradient(180deg, #f6f9fc 0%, #edf3f8 100%);
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.wrap { width: min(calc(100% - 48px), var(--content)); margin: 0 auto; }
.site-header {
  position: sticky; top: 0; z-index: 1000; backdrop-filter: blur(14px);
  background: rgba(255, 255, 255, 0.9); border-bottom: 1px solid rgba(15, 23, 36, 0.06);
  box-shadow: 0 6px 22px rgba(15, 23, 36, 0.04);
}
.header-inner {
  min-height: var(--header-h); display: grid;
  grid-template-columns: minmax(320px, 520px) 1fr auto; align-items: center; gap: 24px;
}
.brand { display: block; min-width: 0; }
.brand img { width: clamp(300px, 32vw, 780px); height: auto; }
.nav { display: flex; justify-content: flex-end; align-items: center; gap: 2px; min-width: 0; margin: 0; padding: 0; list-style: none; }
.nav > li { position: relative; }
.nav-link {
  display: inline-flex; align-items: center; gap: 8px; padding: 12px 14px; font-size: 0.95rem;
  font-weight: 650; color: #1f2227; border-radius: 999px; transition: background .2s ease, color .2s ease, transform .2s ease;
}
.nav-link:hover, .nav > li:hover > .nav-link, .nav-link.active { background: rgba(32, 60, 140, 0.08); color: var(--brand-dark); }
.has-sub > .nav-link::after { content: "▾"; font-size: 0.8rem; opacity: .8; }
.subnav {
  position: absolute; top: calc(100% + 10px); left: 0; min-width: 220px; padding: 10px; margin: 0; list-style: none;
  background: rgba(255,255,255,0.98); border: 1px solid rgba(23,23,23,0.08); border-radius: 18px; box-shadow: var(--shadow);
  opacity: 0; pointer-events: none; transform: translateY(8px); transition: opacity .2s ease, transform .2s ease;
}
.has-sub:hover .subnav, .has-sub:focus-within .subnav { opacity: 1; pointer-events: auto; transform: translateY(0); }
.subnav a { display: block; padding: 12px 14px; border-radius: 12px; color: #222; font-weight: 500; }
.subnav a:hover { background: rgba(32, 60, 140, 0.08); }
.socials { display: flex; align-items: center; gap: 10px; }
.social {
  width: 40px; height: 40px; display: inline-flex; align-items: center; justify-content: center; border-radius: 999px;
  border: 1px solid rgba(23, 23, 23, 0.08); background: rgba(255,255,255,0.72); color: #222;
  box-shadow: 0 8px 18px rgba(15, 23, 34, 0.04); transition: transform .2s ease, border-color .2s ease, background .2s ease, box-shadow .2s ease;
}
.social:hover { transform: translateY(-1px); border-color: rgba(32, 60, 140, 0.24); background: rgba(32, 60, 140, 0.06); }
.social svg { width: 18px; height: 18px; fill: currentColor; }
.mobile-panel { display: none; }
.mobile-nav { margin: 0; padding: 0; list-style: none; }
.mobile-socials { display: none; }
.mobile-toggle {
  display: none; width: 46px; height: 46px; border-radius: 14px; border: 1px solid rgba(23,23,23,.1); background: white; padding: 0; cursor: pointer;
}
.mobile-toggle span { display: block; width: 20px; height: 2px; background: #222; margin: 5px auto; border-radius: 2px; }
.hero { padding: 26px 0 0; }
.hero-shell {
  position: relative; border-radius: 28px; overflow: hidden; min-height: min(74vh, 760px); background: #15243f;
  border: 1px solid rgba(255,255,255,.12); box-shadow: 0 28px 72px rgba(15, 23, 36, 0.12);
}
.hero-slide { position: absolute; inset: 0; display: grid; align-items: end; opacity: 0; transition: opacity .8s ease; pointer-events: none; }
.hero-slide.is-active { opacity: 1; pointer-events: auto; }
.hero-slide::before { content: ""; position: absolute; inset: 0; background-image: var(--bg-image); background-size: cover; background-position: center; transform: scale(1.02); transition: transform 6s ease; }
.hero-slide.is-active::before { transform: scale(1.08); }
.hero-slide::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(9,16,30,.10) 0%, rgba(9,16,30,.16) 30%, rgba(9,16,30,.78) 100%), linear-gradient(90deg, rgba(15,28,51,.72) 0%, rgba(15,28,51,.28) 56%, rgba(15,28,51,.06) 100%); }
.hero-content {
  position: relative; z-index: 2; width: min(calc(100% - 48px), 760px); margin: 0 24px 28px; padding: clamp(24px, 3.1vw, 38px);
  border-radius: 24px; background: linear-gradient(180deg, rgba(15, 28, 51, 0.56), rgba(15, 28, 51, 0.78)); border: 1px solid rgba(255,255,255,.14); backdrop-filter: blur(14px); box-shadow: 0 16px 40px rgba(9, 16, 30, 0.18); color: white;
}
.hero-kicker { display: none; }
.hero h1, .hero h2 { margin: 0; font-family: Inter, "Segoe UI", Roboto, Helvetica, Arial, sans-serif; font-size: clamp(2.35rem, 4.8vw, 4.3rem); line-height: .95; letter-spacing: -0.04em; text-wrap: balance; font-weight: 800; }
.hero p { margin: 16px 0 0; font-size: clamp(1rem, 1.6vw, 1.16rem); line-height: 1.6; max-width: 58ch; color: rgba(255,255,255,.92); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 24px; }
.btn, .btn-secondary, .btn-light, .btn-outline {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px; min-height: 48px; padding: 0 18px; border-radius: 999px; font-weight: 700; transition: transform .2s ease, background .2s ease, border-color .2s ease;
}
.btn:hover, .btn-secondary:hover, .btn-light:hover, .btn-outline:hover { transform: translateY(-1px); }
.btn { background: linear-gradient(180deg, #2849a9, #203c8c); color: white; box-shadow: 0 10px 26px rgba(32, 60, 140, .26); }
.btn-secondary { background: rgba(255,255,255,.08); color: white; border: 1px solid rgba(255,255,255,.18); }
.btn-light { background: linear-gradient(180deg, #2849a9, #203c8c); color: white; box-shadow: 0 10px 24px rgba(32, 60, 140, 0.22); }
.btn-outline { border: 1px solid rgba(15,23,36,.10); background: rgba(255,255,255,.96); color: #1d2430; backdrop-filter: blur(8px); }
.hero-nav { position: absolute; inset: auto 24px 24px auto; z-index: 4; display: flex; align-items: center; gap: 10px; }
.hero-arrow { width: 48px; height: 48px; border-radius: 999px; border: 1px solid rgba(255,255,255,.15); background: rgba(255,255,255,.08); color: white; backdrop-filter: blur(10px); cursor: pointer; }
.hero-dots { position: absolute; left: 24px; bottom: 28px; z-index: 4; display: flex; gap: 10px; }
.hero-dot { width: 12px; height: 12px; border-radius: 999px; background: rgba(255,255,255,.35); border: 0; cursor: pointer; transition: transform .2s ease, background .2s ease; }
.hero-dot.is-active { background: white; transform: scale(1.15); }
.action-strip { margin-top: 18px; display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 14px; }
.action-card {
  position: relative; padding: 22px 22px 20px; border-radius: 18px; background: #ffffff; border: 1px solid rgba(15,23,36,.08); box-shadow: var(--shadow-soft); display: flex; flex-direction: column; gap: 10px; min-height: 150px; transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.action-card::before { content: ""; position: absolute; top: 0; left: 22px; right: 22px; height: 2px; border-radius: 999px; background: linear-gradient(90deg, rgba(32,60,140,.95), rgba(234,122,25,.75)); }
.action-card:hover { transform: translateY(-4px); border-color: rgba(32,60,140,.16); box-shadow: 0 16px 34px rgba(15, 23, 36, 0.08); }
.action-card h3 { margin: 0; font-size: 1.15rem; line-height: 1.2; letter-spacing: -.02em; }
.action-card p { margin: 0; color: var(--muted); font-size: .94rem; line-height: 1.55; }
main { padding: 34px 0 64px; }
.section {
  margin-top: 28px; padding: clamp(24px, 3vw, 36px); border-radius: 24px; background: rgba(255,255,255,.98);
  border: 1px solid rgba(15,23,36,.07); box-shadow: var(--shadow-soft);
}
.section-compact { padding-top: clamp(18px, 2.2vw, 22px); }
.section-header { display: flex; justify-content: space-between; gap: 18px; align-items: end; margin-bottom: 24px; }
.section-header h2 { margin: 8px 0 0; font-family: Inter, "Segoe UI", Roboto, Helvetica, Arial, sans-serif; font-size: clamp(1.85rem, 2.7vw, 2.5rem); line-height: 1.08; letter-spacing: -0.035em; font-weight: 800; }
.section-header p { margin: 10px 0 0; max-width: 62ch; color: var(--muted); line-height: 1.65; }
.institutional { display: grid; grid-template-columns: minmax(280px, 1.1fr) minmax(300px, 1fr); gap: 28px; align-items: stretch; }
.institutional-media { position: relative; overflow: hidden; border-radius: 20px; min-height: 380px; background: var(--surface-soft); box-shadow: 0 14px 32px rgba(15, 23, 36, 0.06); }
.institutional-media img { width: 100%; height: 100%; object-fit: cover; }
.institutional-copy { display: flex; flex-direction: column; justify-content: center; gap: 18px; padding: clamp(8px, 1vw, 12px); }
.institutional-copy h3 { margin: 0; font-family: Inter, "Segoe UI", Roboto, Helvetica, Arial, sans-serif; font-size: clamp(1.9rem, 2.4vw, 2.4rem); line-height: 1.08; letter-spacing: -0.035em; font-weight: 800; }
.institutional-copy p { margin: 0; color: var(--muted); line-height: 1.75; font-size: 1rem; }
.institutional-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 6px; }
.highlights-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 16px; }
.highlight-card { position: relative; min-height: 300px; border-radius: 20px; overflow: hidden; background: #16253f; color: white; border: 1px solid rgba(255,255,255,.10); box-shadow: 0 18px 42px rgba(15, 23, 36, 0.12); }
.highlight-card::before { content: ""; position: absolute; inset: 0; background: var(--card-bg) center/cover no-repeat; transition: transform .4s ease; }
.highlight-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(17,22,29,.12), rgba(17,22,29,.82)); }
.highlight-card:hover::before { transform: scale(1.05); }
.highlight-body { position: absolute; inset: auto 0 0 0; z-index: 2; padding: 22px; display: flex; flex-direction: column; gap: 12px; }
.highlight-body h3 { margin: 0; font-family: Inter, "Segoe UI", Roboto, Helvetica, Arial, sans-serif; font-size: 1.38rem; line-height: 1.14; letter-spacing: -.025em; font-weight: 800; }
.highlight-body p { margin: 0; color: rgba(255,255,255,.86); line-height: 1.55; font-size: .95rem; }
.inline-link { display: inline-flex; width: fit-content; align-items: center; gap: 8px; font-weight: 700; color: white; padding-bottom: 2px; border-bottom: 1px solid rgba(255,255,255,.26); }
.logos-grid { display: grid; gap: 14px; }
.logos-grid.partners { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.logos-grid.members { grid-template-columns: repeat(5, minmax(0, 1fr)); }
.logo-card { min-height: 126px; border-radius: 18px; border: 1px solid var(--line); background: #ffffff; display: flex; align-items: center; justify-content: center; padding: 18px; box-shadow: 0 10px 24px rgba(15, 23, 36, 0.04); transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease; }
.logo-card:hover { transform: translateY(-2px); border-color: rgba(32,60,140,.18); }
.logo-card img { width: 100%; max-width: 180px; max-height: 68px; object-fit: contain; filter: saturate(.96); }
.members .logo-card img { max-width: 150px; max-height: 58px; }
.contacts-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
.contact-card { padding: 26px; border-radius: 18px; background: #ffffff; border: 1px solid var(--line); box-shadow: 0 10px 24px rgba(15, 23, 36, 0.05); }
.contact-card h3 { margin: 0 0 16px; font-family: Inter, "Segoe UI", Roboto, Helvetica, Arial, sans-serif; font-size: 1.42rem; letter-spacing: -.025em; font-weight: 800; }
.contact-list { display: grid; gap: 12px; }
.contact-item small { display: block; margin-bottom: 4px; font-size: .76rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; color: var(--brand-dark); }
.contact-item div, .contact-item a { color: #222; line-height: 1.6; }
.page-hero {
  padding: 28px 0 0;
}
.page-hero-card {
  background: linear-gradient(180deg, rgba(255,255,255,.98), rgba(245,248,252,.96));
  border: 1px solid rgba(15,23,36,.08);
  border-radius: 24px;
  box-shadow: var(--shadow-soft);
  padding: 34px;
  display: grid;
  grid-template-columns: minmax(0,1.1fr) minmax(280px,.9fr);
  gap: 26px;
}
.page-hero-card h1 { margin: 0 0 10px; font-size: clamp(2rem, 4vw, 3.35rem); line-height: .98; letter-spacing: -.04em; font-weight: 800; }
.page-hero-card p { margin: 0; color: var(--muted); line-height: 1.7; }
.page-meta {
  border-radius: 18px; background: rgba(32,60,140,.04); border: 1px solid rgba(32,60,140,.08); padding: 20px;
}
.page-meta strong { display: block; margin-bottom: 8px; font-size: 1rem; }
.iframe-shell {
  margin-top: 18px; border-radius: 24px; overflow: hidden; background: white; border: 1px solid rgba(15,23,36,.08); box-shadow: var(--shadow-soft);
}
.iframe-toolbar {
  padding: 14px 18px; display: flex; align-items: center; justify-content: space-between; gap: 18px; border-bottom: 1px solid rgba(15,23,36,.08); background: linear-gradient(180deg, rgba(255,255,255,.98), rgba(245,248,252,.95));
}
.iframe-toolbar p { margin: 0; color: var(--muted); font-size: .95rem; }
.iframe-shell iframe {
  width: 100%; height: 1600px; border: 0; background: white;
}
.notice-box {
  margin-top: 16px; padding: 16px 18px; border-radius: 16px; background: rgba(234,122,25,.08); border: 1px solid rgba(234,122,25,.16); color: #5b4b3f;
}
.site-footer { padding: 28px 0 42px; }
.footer-shell { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 18px; padding: 24px 28px; border-radius: 20px; background: linear-gradient(180deg, #16284a, #0f1c33); color: rgba(255,255,255,.9); box-shadow: 0 20px 46px rgba(15, 23, 36, 0.14); }
.footer-shell p { margin: 0; color: rgba(255,255,255,.76); }
.footer-links { display: flex; flex-wrap: wrap; gap: 16px; color: rgba(255,255,255,.92); font-weight: 600; }
.to-top { color: white; font-weight: 700; padding: 10px 14px; border-radius: 999px; border: 1px solid rgba(255,255,255,.15); background: rgba(255,255,255,.06); }
@media (min-width: 1600px) {
  :root { --content: 1540px; }
  .header-inner { grid-template-columns: minmax(360px, 560px) 1fr auto; }
  .brand img { width: min(100%, 760px); }
}
@media (min-width: 1281px) {
  .mobile-panel, .mobile-panel.open, .mobile-toggle { display: none !important; }
}
@media (max-width: 1280px) {
  .header-inner { grid-template-columns: minmax(260px, 1fr) auto auto; }
  .socials, .nav { display: none; }
  .mobile-toggle { display: inline-block; justify-self: end; }
  .mobile-panel { display: none; padding: 0 0 18px; }
  .mobile-panel.open { display: block; }
  .mobile-nav { padding: 14px 0 0; display: grid; gap: 8px; }
  .mobile-nav a { display: block; padding: 14px 16px; background: rgba(32,60,140,.06); border-radius: 16px; font-weight: 600; }
  .mobile-socials { display: flex; gap: 10px; padding-top: 14px; }
  .action-strip, .highlights-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .logos-grid.members { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .page-hero-card { grid-template-columns: 1fr; }
}
@media (max-width: 840px) {
  .hero-shell { min-height: 620px; }
  .hero-content { width: calc(100% - 28px); margin: 0 14px 14px; }
  .hero-nav { right: 14px; bottom: 14px; }
  .hero-dots { left: 14px; bottom: 18px; }
  .institutional, .contacts-grid, .logos-grid.partners, .logos-grid.members, .action-strip, .highlights-grid { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  :root { --header-h: 80px; }
  .wrap { width: min(calc(100% - 24px), var(--content)); }
  .hero-shell, .section { border-radius: 20px; }
  .brand img { width: min(100%, 420px); }
  .hero-actions, .institutional-actions { flex-direction: column; }
  .btn, .btn-secondary, .btn-light, .btn-outline { width: 100%; }
  .footer-shell { padding: 20px; }
}


.page-stack { display:grid; gap:18px; }
.lead-card { padding:24px; border-radius:18px; background:linear-gradient(180deg, rgba(255,255,255,.98), rgba(245,248,252,.96)); border:1px solid rgba(15,23,36,.08); box-shadow: var(--shadow-soft); }
.lead-card h2 { margin:0 0 10px; font-size:1.4rem; line-height:1.15; letter-spacing:-0.03em; }
.lead-card p { margin:0; color:var(--muted); line-height:1.7; }
.stat-grid { display:grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap:14px; }
.stat-card { padding:18px 18px 16px; border-radius:16px; background:#fff; border:1px solid var(--line); box-shadow: var(--shadow-soft); }
.stat-card strong { display:block; font-size:1.6rem; font-weight:800; line-height:1; margin-bottom:6px; color:var(--brand-dark); }
.stat-card span { display:block; color:var(--muted); line-height:1.55; font-size:.92rem; }
.simple-grid { display:grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap:18px; }
.info-card { padding:22px; border-radius:18px; background:#fff; border:1px solid var(--line); box-shadow: var(--shadow-soft); }
.info-card h3 { margin:0 0 10px; font-size:1.22rem; line-height:1.2; letter-spacing:-0.02em; }
.info-card p, .info-card li { color:var(--muted); line-height:1.7; }
.info-card ul { margin:0; padding-left:18px; }
.media-card { overflow:hidden; border-radius:18px; border:1px solid var(--line); box-shadow: var(--shadow-soft); background:#fff; }
.media-card img { width:100%; height:100%; object-fit:cover; }
.directory-controls { display:grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap:12px; margin-bottom:18px; }
.field, .select { width:100%; min-height:48px; border-radius:14px; border:1px solid rgba(15,23,36,.12); background:#fff; padding:0 14px; font:inherit; color:var(--ink); }
.directory-grid { display:grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap:16px; }
.directory-card { padding:20px; border-radius:18px; background:#fff; border:1px solid var(--line); box-shadow: var(--shadow-soft); display:grid; gap:12px; }
.directory-card h3 { margin:0; font-size:1.18rem; line-height:1.2; letter-spacing:-0.02em; }
.directory-meta { display:flex; flex-wrap:wrap; gap:8px; }
.tag { display:inline-flex; align-items:center; min-height:30px; padding:0 10px; border-radius:999px; background:rgba(32,60,140,.08); color:var(--brand-dark); font-size:.82rem; font-weight:700; }
.directory-lines { display:grid; gap:6px; color:var(--muted); font-size:.95rem; }
.directory-lines a { color:var(--brand-dark); }
.chip-row { display:flex; flex-wrap:wrap; gap:10px; }
.chip { display:inline-flex; align-items:center; min-height:38px; padding:0 14px; border-radius:999px; background:#fff; border:1px solid var(--line); cursor:pointer; font-weight:600; }
.chip.active { background:rgba(32,60,140,.08); border-color:rgba(32,60,140,.16); color:var(--brand-dark); }
.empty-state { padding:28px; border-radius:18px; border:1px dashed rgba(15,23,36,.18); color:var(--muted); text-align:center; background:rgba(255,255,255,.75); }
.gallery-grid { display:grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap:14px; }
.gallery-grid img { width:100%; aspect-ratio: 4 / 3; object-fit:cover; border-radius:16px; border:1px solid var(--line); box-shadow: var(--shadow-soft); background:#fff; }
.awards-grid { display:grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap:14px; }
.award-card { padding:18px; border-radius:18px; background:#fff; border:1px solid var(--line); box-shadow: var(--shadow-soft); }
.award-card h4 { margin:0 0 10px; font-size:1.02rem; }
.award-card ul { margin:0; padding-left:18px; color:var(--muted); line-height:1.7; }
@media (max-width: 960px) { .directory-controls, .simple-grid, .gallery-grid, .awards-grid, .stat-grid { grid-template-columns:1fr; } .directory-grid { grid-template-columns:1fr; } }
