@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600&family=Sora:wght@500;600;700&display=swap');

:root {
  --bg: #06172b;
  --surface: #10253d;
  --surface-2: #0c2037;
  --text: #f2f6fa;
  --muted: #91a0b2;
  --cyan: #09c9df;
  --cyan-strong: #12d7e9;
  --border: rgba(131, 163, 190, 0.18);
  --max: 1120px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  background: var(--bg);
  font-family: "Manrope", ui-sans-serif, system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button { font: inherit; }
.container { width: min(calc(100% - 48px), var(--max)); margin-inline: auto; }

.site-header {
  position: relative;
  z-index: 20;
  min-height: 68px;
  border-bottom: 1px solid var(--border);
  background: rgba(6, 23, 43, 0.88);
  backdrop-filter: blur(12px);
}
.header-inner { min-height: 68px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: inline-flex; align-items: center; gap: 12px; font-family: "Sora", sans-serif; font-weight: 600; letter-spacing: -0.02em; }
.brand-mark { display: grid; place-items: center; width: 36px; height: 36px; border-radius: 11px; background: var(--cyan); color: #032035; font-weight: 700; }
.brand-name span { color: var(--cyan); }
.nav { display: flex; align-items: center; gap: 30px; }
.nav > a:not(.btn) { color: #9ba9ba; font-size: 14px; transition: color .2s ease; }
.nav > a:hover, .nav > a.active { color: var(--cyan); }
.menu-toggle { display: none; width: 42px; height: 42px; border: 1px solid var(--border); border-radius: 10px; color: var(--text); background: transparent; cursor: pointer; }
.menu-toggle svg { width: 22px; height: 22px; }

.btn { display: inline-flex; align-items: center; justify-content: center; gap: 9px; min-height: 46px; padding: 0 22px; border: 1px solid var(--border); border-radius: 12px; font-weight: 600; font-size: 14px; transition: transform .2s ease, border-color .2s ease, background .2s ease; }
.btn:hover { transform: translateY(-2px); border-color: rgba(9, 201, 223, .55); }
.btn-primary { color: #041c2f; background: var(--cyan); border-color: var(--cyan); box-shadow: 0 8px 30px rgba(9, 201, 223, .14); }
.btn-primary:hover { background: var(--cyan-strong); }
.icon { display: inline-flex; width: 20px; height: 20px; color: var(--cyan); }
.icon svg { width: 100%; height: 100%; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.btn-primary .icon { color: #041c2f; }

h1, h2, h3 { margin: 0; font-family: "Sora", sans-serif; letter-spacing: -0.035em; line-height: 1.16; }
h1 { max-width: 790px; font-size: clamp(2.65rem, 5.25vw, 4.15rem); }
h2 { font-size: clamp(1.75rem, 3.2vw, 2.3rem); }
h3 { font-size: 1.05rem; }
p { margin: 0; }
.eyebrow { margin-bottom: 18px; color: var(--cyan); font-size: 13px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; }
.lead { max-width: 760px; margin-top: 22px; color: var(--muted); font-size: 17px; line-height: 1.65; }

.hero { position: relative; min-height: 735px; display: flex; align-items: center; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; opacity: .52; }
.hero::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(6,23,43,.98) 0%, rgba(6,23,43,.82) 52%, rgba(6,23,43,.57) 100%), linear-gradient(0deg, var(--bg) 0%, transparent 28%); }
.hero-content { position: relative; z-index: 1; padding-block: 100px 145px; }
.status-pill { display: inline-flex; align-items: center; margin-bottom: 28px; padding: 6px 12px; border: 1px solid rgba(9,201,223,.34); border-radius: 999px; color: var(--cyan); background: rgba(9,201,223,.05); font-size: 12px; }
.hero .lead { max-width: 650px; }
.actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }

.section { padding-block: 92px; }
.section-tight { padding-block: 72px; }
.section-head { margin-bottom: 36px; }
.section-head p { max-width: 780px; margin-top: 12px; color: var(--muted); }
.grid { display: grid; gap: 22px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.card { padding: 30px 28px; border: 1px solid var(--border); border-radius: 17px; background: var(--surface); }
.card .icon { width: 25px; height: 25px; margin-bottom: 23px; }
.card h3 { margin-bottom: 12px; }
.card p { color: var(--muted); font-size: 15px; }
.card-link { transition: transform .2s ease, border-color .2s ease; }
.card-link:hover { transform: translateY(-3px); border-color: rgba(9,201,223,.5); }

.institutional { border-block: 1px solid var(--border); background: rgba(16,37,61,.35); }
.institutional-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 70px; align-items: center; }
.institutional .lead { margin-top: 18px; }
.data-list { margin: 0; border: 1px solid var(--border); border-radius: 16px; overflow: hidden; background: var(--surface); }
.data-row { display: grid; grid-template-columns: 150px 1fr; gap: 22px; padding: 17px 20px; border-bottom: 1px solid var(--border); }
.data-row:last-child { border-bottom: 0; }
.data-row dt { color: var(--muted); }
.data-row dd { margin: 0; font-weight: 500; }

.cta { padding-block: 82px; text-align: center; }
.cta p { max-width: 660px; margin: 16px auto 0; color: var(--muted); }
.cta .actions { justify-content: center; }

.page-hero { padding-block: 82px 54px; }
.page-hero h1 { max-width: 820px; font-size: clamp(2.45rem, 4.5vw, 3.45rem); }
.services-grid .card { min-height: 205px; }
.other-activities { margin-top: 80px; }
.activity-list { margin: 24px 0 30px; padding: 0; list-style: none; border: 1px solid var(--border); border-radius: 16px; overflow: hidden; background: var(--surface); }
.activity-list li { padding: 16px 20px; color: var(--muted); border-bottom: 1px solid var(--border); }
.activity-list li:last-child { border-bottom: 0; }
.values-grid .card { min-height: 160px; }
.institution-sheet { margin-top: 68px; }
.institution-sheet .data-list { margin-top: 24px; }
.contact-grid .card { min-height: 200px; }
.contact-grid .card h2 { margin-bottom: 8px; font-size: 1.2rem; }
.contact-link { display: inline-block; margin-top: 16px; color: var(--cyan); font-weight: 600; font-size: 14px; }

.site-footer { padding-block: 58px 24px; border-top: 1px solid var(--border); background: #091b30; }
.footer-grid { display: grid; grid-template-columns: 1.2fr .65fr 1fr; gap: 70px; }
.footer-title { margin-bottom: 15px; font-family: "Sora", sans-serif; font-size: 15px; font-weight: 600; }
.footer-copy, .footer-col a, .footer-col address { color: var(--muted); font-size: 14px; font-style: normal; }
.footer-copy + .footer-copy { margin-top: 14px; }
.footer-col { display: flex; flex-direction: column; align-items: flex-start; gap: 8px; }
.footer-col a:hover { color: var(--cyan); }
.copyright { margin-top: 42px; padding-top: 20px; border-top: 1px solid var(--border); color: #718096; font-size: 13px; }

@media (max-width: 900px) {
  .menu-toggle { display: grid; place-items: center; }
  .nav { position: absolute; top: 68px; left: 0; right: 0; display: none; padding: 24px; flex-direction: column; align-items: stretch; gap: 8px; border-bottom: 1px solid var(--border); background: #081b30; }
  .nav.open { display: flex; }
  .nav > a:not(.btn) { padding: 11px 4px; font-size: 16px; }
  .nav .btn { margin-top: 8px; }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .institutional-grid { grid-template-columns: 1fr; gap: 38px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 620px) {
  .container { width: min(calc(100% - 32px), var(--max)); }
  .brand-name { font-size: 14px; }
  .hero { min-height: 650px; }
  .hero-content { padding-block: 72px 110px; }
  .hero::after { background: linear-gradient(90deg, rgba(6,23,43,.96), rgba(6,23,43,.75)), linear-gradient(0deg, var(--bg) 0%, transparent 34%); }
  .lead { font-size: 16px; }
  .section { padding-block: 70px; }
  .page-hero { padding-block: 62px 38px; }
  .grid-3, .grid-2, .footer-grid { grid-template-columns: 1fr; }
  .footer-brand { grid-column: auto; }
  .card { padding: 25px 22px; }
  .data-row { grid-template-columns: 1fr; gap: 5px; }
  .actions { align-items: stretch; }
  .actions .btn { flex: 1 1 100%; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; }
}
