:root {
  --bg: #f6f8fb;
  --surface: #ffffff;
  --surface-alt: #f1f5f9;
  --text: #0b1f33;
  --muted: #58687a;
  --line: #d8e2ec;

  --primary: #0b5cab;
  --primary-dark: #084b8d;
  --accent: #0d7a5f;

  --shadow: 0 14px 34px rgba(11, 31, 51, 0.08);
  --radius: 18px;
  --container: 1180px;

  --font: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, "Noto Sans", "Helvetica Neue", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html, body {
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font);
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(11, 92, 171, 0.04), transparent 25%),
    linear-gradient(180deg, #ffffff 0%, var(--bg) 55%, #ffffff 100%);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  color: inherit;
  text-decoration: none;
}

a:focus,
button:focus {
  outline: 3px solid rgba(11, 92, 171, 0.22);
  outline-offset: 2px;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -48px;
  background: #fff;
  color: var(--text);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 10px 14px;
  z-index: 100;
}

.skip-link:focus {
  top: 16px;
}

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}

.topbar__row {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand__mark {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  border: 1px solid rgba(11, 92, 171, 0.18);
  background:
    radial-gradient(circle at 30% 30%, rgba(13, 122, 95, 0.20), transparent 45%),
    radial-gradient(circle at 70% 70%, rgba(11, 92, 171, 0.18), transparent 55%),
    linear-gradient(135deg, rgba(11, 92, 171, 0.08), rgba(13, 122, 95, 0.08));
  flex: 0 0 auto;
}

.brand__name {
  font-size: 16px;
  font-weight: 800;
  letter-spacing: .01em;
}

.brand__tag {
  font-size: 12px;
  color: var(--muted);
}

.nav {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.nav a {
  font-size: 14px;
  color: var(--muted);
  padding: 10px 12px;
  border-radius: 12px;
}

.nav a:hover {
  background: var(--surface-alt);
  color: var(--text);
}

.topbar__actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  padding: 10px 16px;
  border-radius: 14px;
  border: 1px solid transparent;
  cursor: pointer;
  font-size: 14px;
  font-weight: 800;
  transition: background .15s ease, border-color .15s ease, transform .06s ease;
  white-space: nowrap;
}

.btn:active {
  transform: translateY(1px);
}

.btn--primary {
  background: var(--primary);
  color: #fff;
}

.btn--primary:hover {
  background: var(--primary-dark);
}

.btn--ghost {
  background: #fff;
  border-color: var(--line);
  color: var(--text);
}

.btn--ghost:hover {
  background: var(--surface-alt);
}

.hero {
  padding: 32px 0 18px;
}

.hero__grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 24px;
  align-items: start;
}

.surface {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hero__main {
  padding: 32px;
  background:
    radial-gradient(circle at 15% 20%, rgba(11, 92, 171, 0.09), transparent 40%),
    radial-gradient(circle at 80% 20%, rgba(13, 122, 95, 0.08), transparent 35%),
    #fff;
}

.kicker {
  font-size: 12px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .08em;
  font-weight: 800;
}

h1 {
  margin: 10px 0 14px;
  font-size: clamp(30px, 3.8vw, 46px);
  line-height: 1.08;
  letter-spacing: -0.03em;
}

h2 {
  margin: 0;
  font-size: clamp(22px, 2vw, 30px);
  line-height: 1.15;
  letter-spacing: -0.02em;
}

h3 {
  margin: 0;
  font-size: 18px;
}

.hero__lead,
.section-desc,
.card__text,
.footer__text {
  color: var(--muted);
}

.hero__lead {
  max-width: 62ch;
  font-size: 16px;
}

.hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 22px 0 22px;
}

.hero-chip {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 210px;
  padding: 14px 16px;
  background: rgba(241, 245, 249, 0.85);
  border: 1px solid var(--line);
  border-radius: 16px;
}

.hero-chip__label {
  font-size: 12px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .06em;
  font-weight: 700;
}

.hero__actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.hero__aside {
  padding: 24px;
  position: sticky;
  top: 96px;
}

.panel__title {
  font-size: 18px;
  font-weight: 900;
  margin-bottom: 16px;
}

.info-list,
.contacts-list {
  margin: 0;
  padding: 0;
}

.info-list__row,
.contacts-list__row {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 16px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}

.info-list__row:last-child,
.contacts-list__row:last-child {
  border-bottom: 0;
}

.info-list dt,
.contacts-list dt {
  color: var(--muted);
  font-size: 14px;
}

.info-list dd,
.contacts-list dd {
  margin: 0;
  font-weight: 700;
  color: var(--text);
}

.quick-links {
  display: grid;
  gap: 10px;
  margin-top: 20px;
}

.quick-link {
  display: block;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: var(--surface-alt);
  font-weight: 700;
  color: var(--text);
}

.quick-link:hover {
  background: #eaf1f7;
}

.section {
  padding: 44px 0;
}

.section--alt {
  background: linear-gradient(180deg, rgba(241,245,249,.45), rgba(255,255,255,0));
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
}

.grid {
  display: grid;
  gap: 18px;
}

.grid--2 {
  grid-template-columns: repeat(2, 1fr);
}

.card {
  padding: 24px;
}

.card__title {
  margin-bottom: 14px;
  font-weight: 900;
}

.entity-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.entity-item {
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(241, 245, 249, 0.6);
}

.entity-item__label {
  font-size: 12px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: 6px;
}

.entity-item__value {
  font-weight: 700;
}

.feature-list {
  margin: 0;
  padding-left: 20px;
  color: var(--text);
}

.feature-list li + li {
  margin-top: 10px;
}

.news-list,
.meetings-list {
  display: grid;
  gap: 14px;
}

.news-card,
.meeting-card {
  padding: 22px;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: 0 10px 24px rgba(11, 31, 51, 0.05);
}

.news-card__meta,
.meeting-card__meta {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 8px;
}

.news-card__title,
.meeting-card__title {
  font-size: 20px;
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 10px;
}

.news-card__excerpt,
.meeting-card__text {
  color: var(--muted);
}

.news-card__footer,
.meeting-card__footer {
  margin-top: 16px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
}

.pagination {
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.pagination__btn {
  min-width: 42px;
  height: 42px;
  padding: 0 12px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--text);
  font-weight: 800;
  cursor: pointer;
}

.pagination__btn:hover {
  background: var(--surface-alt);
}

.pagination__btn.is-active {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
}

.meeting-meta-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 14px;
}

.meeting-meta-item {
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: rgba(241, 245, 249, 0.7);
}

.meeting-meta-item__label {
  font-size: 12px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: 6px;
}

.meeting-meta-item__value {
  font-weight: 700;
}

.footer {
  border-top: 1px solid var(--line);
  background: #fff;
  padding: 28px 0;
}

.footer__row {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: start;
}

.footer__title {
  font-size: 18px;
  font-weight: 900;
  margin-bottom: 8px;
}

.footer__links {
  display: grid;
  gap: 8px;
}

.footer__links a {
  color: var(--muted);
}

.footer__links a:hover {
  color: var(--text);
}

.empty-state {
  padding: 24px;
  border-radius: 18px;
  border: 1px dashed var(--line);
  background: rgba(255,255,255,0.7);
  color: var(--muted);
}

@media (max-width: 1024px) {
  .hero__grid,
  .grid--2 {
    grid-template-columns: 1fr;
  }

  .hero__aside {
    position: static;
  }

  .entity-grid,
  .meeting-meta-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 820px) {
  .topbar__row {
    min-height: auto;
    padding: 14px 0;
    flex-wrap: wrap;
  }

  .nav {
    width: 100%;
    order: 3;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .hero__main,
  .hero__aside,
  .card,
  .news-card,
  .meeting-card {
    padding: 20px;
  }

  .info-list__row,
  .contacts-list__row {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .footer__row {
    flex-direction: column;
  }
}

@media (max-width: 520px) {
  .container {
    padding: 0 14px;
  }

  .hero__actions,
  .topbar__actions {
    width: 100%;
  }

  .btn {
    width: 100%;
  }

  .hero-chip {
    min-width: 100%;
  }

  .news-card__title,
  .meeting-card__title {
    font-size: 18px;
  }
}

.news-card__excerpt p {
  margin: 0 0 12px;
}

.news-card__excerpt p:last-child {
  margin-bottom: 0;
}

.news-card__excerpt a {
  color: var(--primary);
  text-decoration: none;
}

.news-card__excerpt a:hover {
  text-decoration: underline;
}

.news-card__excerpt ul,
.news-card__excerpt ol {
  margin: 0 0 12px 20px;
  padding: 0;
}

.news-card__excerpt strong,
.news-card__excerpt b {
  color: var(--text);
}