:root {
  --brand: #6973bd;
  --brand-dark: #4b5386;
  --brand-soft: #eef0ff;
  --ink: #282d40;
  --muted: #667086;
  --line: #dfe3f0;
  --surface: #fff;
  --surface-alt: #f5f6fc;
  --max: 1180px;
  --radius: 16px;
  --shadow: 0 10px 30px rgba(54,63,112,.1);
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  font-family: Inter,ui-sans-serif,system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Arial,sans-serif;
  color: var(--ink);
  background: var(--surface);
  line-height: 1.65;
}
a {
  color: var(--brand-dark);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}
a:hover {
  color: var(--brand);
}
img {
  max-width: 100%;
  height: auto;
}
.skip-link {
  position: absolute;
  left: -9999px;
  top: 8px;
  z-index: 999;
  background: #fff;
  padding: .7rem 1rem;
  border-radius: 8px;
  box-shadow: var(--shadow);
}
.skip-link:focus {
  left: 8px;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(8px);
}
.header-inner {
  max-width: var(--max);
  margin: auto;
  padding: .78rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.brand {
  display: flex;
  align-items: center;
  gap: .85rem;
  color: var(--ink);
  text-decoration: none;
  min-width: max-content;
}
.brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: var(--brand);
  display: grid;
  place-items: center;
  color: #fff;
  font-weight: 800;
  letter-spacing: -.05em;
  box-shadow: 0 6px 16px rgba(75,83,134,.25);
}
.brand-logo {
  width: 60px;
  height: 60px;
  object-fit: contain;
  flex: 0 0 60px;
}
.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}
.brand-text strong {
  font-size: 1.25rem;
  color: #4b5386;
  white-space: nowrap;
}
.nav-toggle {
  display: none;
  margin-left: auto;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 10px;
  padding: .55rem .7rem;
  font: inherit;
  font-weight: 650;
  cursor: pointer;
}
.site-nav {
  margin-left: auto;
}
.site-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: .15rem;
}
.site-nav > ul > li {
  position: relative;
}
.site-nav a {
  display: block;
  padding: .55rem .68rem;
  border-radius: 9px;
  color: #41485e;
  text-decoration: none;
  font-size: .93rem;
  font-weight: 600;
  white-space: nowrap;
}
.site-nav .nav-parent {
  display: block;
  padding: .55rem .68rem;
  border: 0;
  border-radius: 9px;
  background: transparent;
  color: #41485e;
  font: inherit;
  font-size: .93rem;
  font-weight: 600;
  white-space: nowrap;
  cursor: pointer;
}
.site-nav a:hover,.site-nav a.active {
  background: var(--brand-soft);
  color: var(--brand-dark);
}
.site-nav .nav-parent:hover,
.site-nav .nav-parent.active {
  background: var(--brand-soft);
  color: var(--brand-dark);
}
.site-nav .submenu {
  display: none;
  position: absolute;
  top: 100%;
  right: 0;
  z-index: 110;
  min-width: 230px;
  padding: .45rem;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 12px 30px rgba(20,25,35,.12);
}
.site-nav .nav-dropdown:hover > .submenu,
.site-nav .nav-dropdown:focus-within > .submenu,
.site-nav .nav-dropdown.open > .submenu {
  display: grid;
  gap: .2rem;
}
.site-nav .submenu a {
  padding: .65rem .75rem;
}
.hero {
  background: linear-gradient(135deg,#4b5386,#7882c8);
  color: #fff;
}
.hero-inner {
  max-width: var(--max);
  margin: auto;
  padding: 4.2rem 1.25rem 3.8rem;
  display: grid;
  grid-template-columns: minmax(0,1.5fr) minmax(260px,.7fr);
  gap: 3rem;
  align-items: center;
}
.hero h1 {
  font-size: clamp(2.2rem,6vw,4.7rem);
  line-height: 1.02;
  margin: 0 0 1rem;
  letter-spacing: -.045em;
}
.hero p {
  font-size: 1.12rem;
  max-width: 700px;
  margin: 0;
  color: #ffffffcc;
}
.hero-card {
  background: #fff;
  color: var(--ink);
  padding: 1.35rem;
  border-radius: var(--radius);
  box-shadow: 0 18px 50px rgba(54,63,112,.2);
}
.hero-card strong {
  display: block;
  font-size: 1.05rem;
  margin-bottom: .4rem;
}
.hero-card p {
  font-size: .95rem;
  color: var(--muted);
}
.hero-card a {
  display: inline-flex;
  margin-top: .7rem;
}
.page-head {
  background: var(--surface-alt);
  border-bottom: 1px solid var(--line);
}
.page-head-inner {
  max-width: var(--max);
  margin: auto;
  padding: 1rem 1.25rem;
}
.breadcrumbs {
  display: none;
  flex-wrap: wrap;
  gap: .4rem;
  font-size: .86rem;
  color: var(--muted);
  margin-bottom: .45rem;
}
.breadcrumbs a {
  text-decoration: none;
  color: var(--muted);
}
.page-title {
  margin: 0;
  font-size: clamp(1.45rem,3vw,2.15rem);
  color: #4b5386;
  letter-spacing: -.035em;
  line-height: 1.12;
}
.content-wrap {
  max-width: var(--max);
  margin: auto;
  padding: 2.2rem 1.25rem 4rem;
}
.prose {
  max-width: 900px;
}
.home-content {
  max-width: none;
}
.prose h2 {
  font-size: 1.7rem;
  line-height: 1.2;
  margin: 2rem 0 .85rem;
}
.prose h2:first-child {
  margin-top: 0;
}
.prose h3 {
  font-size: 1.2rem;
  margin: 1.8rem 0 .6rem;
}
.prose p {
  margin: .75rem 0 1.05rem;
}
.prose .tabbed {
  margin-left: 2rem;
}
.prose .tabbed-deep {
  margin-left: 4rem;
}
.prose .underlined {
  text-decoration: underline;
}
.prose ul,.prose ol {
  padding-left: 1.35rem;
}
.prose li {
  margin: .45rem 0;
}
.prose a:not(.btn) {
  overflow-wrap: anywhere;
}
.card-grid {
  display: grid;
  grid-template-columns: minmax(0,3fr) minmax(220px,1fr);
  gap: 1rem;
  margin: 1.4rem 0 2rem;
}
.card-participants {
  grid-column: 2;
  grid-row: 1;
}
.card-documents {
  grid-column: 2;
  grid-row: 2;
}
.card-procedures {
  grid-column: 1;
  grid-row: 1 / span 2;
}
.card {
  border: 1px solid var(--line);
  background: #fff;
  border-radius: var(--radius);
  padding: 1.25rem;
  box-shadow: 0 2px 8px rgba(20,25,35,.03);
  transition: transform .18s ease,box-shadow .18s ease,border-color .18s ease;
}
.card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
  border-color: #d7d9dd;
}
.card h3 {
  margin: .1rem 0 .55rem;
  font-size: 1.12rem;
}
.home-content .card h3 {
  padding: .6rem .7rem;
  border-radius: 9px;
  background: linear-gradient(to top,#d9def7 0%,#fff 100%);
  color: var(--brand-dark);
  box-shadow: 0 4px 8px rgba(54,63,112,.16);
}
.card p {
  margin: .35rem 0;
  color: var(--muted);
}
.card a {
  font-weight: 700;
  text-decoration: none;
}
.card-actions {
  display: grid;
  gap: .75rem;
  margin-top: .7rem;
}
.card-actions .btn {
  margin-top: 0;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .45rem;
  border: 1px solid #414a78;
  background: linear-gradient(180deg,#606aa0 0%,#4b568b 100%);
  color: #fff!important;
  text-decoration: none;
  border-radius: 10px;
  padding: .7rem 1rem;
  font-weight: 700;
  line-height: 1.3;
  box-shadow: 0 4px 0 #353e68, inset 0 1px 0 rgba(255,255,255,.22);
  transition: transform .12s ease, box-shadow .12s ease, background .12s ease;
}
.btn:hover {
  background: linear-gradient(180deg,#6873aa 0%,#535f96 100%);
  box-shadow: 0 4px 0 #353e68, inset 0 1px 0 rgba(255,255,255,.25);
  transform: translateY(-1px);
}
.btn:active {
  box-shadow: 0 1px 0 #353e68, inset 0 1px 2px rgba(0,0,0,.18);
  transform: translateY(3px);
}
.notice {
  border-left: 4px solid var(--brand);
  background: var(--brand-soft);
  padding: 1rem 1.1rem;
  border-radius: 0 12px 12px 0;
  margin: 1.2rem 0;
}
.note {
  background: #f1f2ff;
  border: 1px solid #cdd2f2;
  border-radius: 12px;
  padding: 1rem;
  color: #4b5386;
}
.link-list {
  list-style: none!important;
  padding: 0!important;
  display: grid;
  grid-template-columns: repeat(2,minmax(0,1fr));
  gap: .75rem;
}
.link-list li {
  margin: 0!important;
}
.link-list a {
  display: block;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: .85rem 1rem;
  text-decoration: none;
  font-weight: 650;
  background: #fff;
}
.link-list a:hover {
  border-color: #b9c0e8;
  background: #fafaff;
}
.table-wrap {
  width: 100%;
  overflow-x: auto;
  margin: 1.2rem 0;
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: 0 3px 10px rgba(54,63,112,.06);
}
.data-table {
  width: 100%;
  min-width: 620px;
  border-collapse: collapse;
  background: #fff;
}
.data-table th,
.data-table td {
  padding: .75rem .85rem;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}
.data-table th {
  background: var(--brand-dark);
  color: #fff;
  font-weight: 700;
}
.data-table tbody tr:nth-child(even) {
  background: #f7f8ff;
}
.data-table tbody tr:last-child td {
  border-bottom: 0;
}
.data-table td:first-child {
  width: 46%;
  font-weight: 650;
  color: var(--brand-dark);
}
.site-footer {
  background: #292e49;
  color: #e2e5f2;
}
.footer-inner {
  max-width: var(--max);
  margin: auto;
  padding: 2rem 1.25rem;
  display: grid;
  grid-template-columns: 1.25fr .75fr;
  gap: 2rem;
}
.site-footer strong {
  color: #fff;
}
.site-footer a {
  color: #fff;
}
.footer-small {
  color: #b9bfd3;
  font-size: .88rem;
  margin-top: .7rem;
}
.site-footer .footer-small a {
  font-size: 1.12rem;
  font-weight: 700;
  text-decoration: none;
}
.email-icon {
  display: inline-block;
  margin-right: .3rem;
  font-size: 1.4rem;
  line-height: 1;
  vertical-align: middle;
}
@media (max-width:980px) {
  .site-nav a {
    padding: .5rem .48rem;
    font-size: .87rem;
  }
  .site-nav .nav-parent {
    padding: .5rem .48rem;
    font-size: .87rem;
  }
  .card-grid {
    grid-template-columns: minmax(0,3fr) minmax(220px,1fr);
  }
}
@media (max-width:820px) {
  .nav-toggle {
    display: block;
  }
  .site-nav {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    background: #fff;
    border-bottom: 1px solid var(--line);
    box-shadow: 0 16px 30px rgba(0,0,0,.09);
  }
  .site-nav.open {
    display: block;
  }
  .site-nav > ul {
    display: block;
    max-width: var(--max);
    margin: auto;
    padding: .65rem 1.25rem 1rem;
  }
  .site-nav a {
    padding: .75rem;
  }
  .site-nav .nav-parent {
    width: 100%;
    padding: .75rem;
    text-align: left;
  }
  .site-nav .submenu {
    position: static;
    min-width: 0;
    margin: 0 0 .35rem;
    padding: 0 0 0 .75rem;
    border: 0;
    border-left: 2px solid var(--brand-soft);
    border-radius: 0;
    box-shadow: none;
  }
  .site-nav .nav-dropdown.open > .submenu {
    display: grid;
  }
  .hero-inner {
    grid-template-columns: 1fr;
    padding-top: 3.1rem;
  }
  .hero-card {
    max-width: 560px;
  }
  .footer-inner {
    grid-template-columns: 1fr;
  }
  .link-list {
    grid-template-columns: 1fr;
  }
}
@media (max-width:600px) {
  .header-inner {
    padding: .65rem .9rem;
  }
  .brand-mark {
    width: 38px;
    height: 38px;
  }
  .brand-logo {
    width: 48px;
    height: 48px;
    flex-basis: 48px;
  }
  .content-wrap,.page-head-inner {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .hero-inner {
    padding-left: 1rem;
    padding-right: 1rem;
    gap: 1.5rem;
  }
  .card-grid {
    grid-template-columns: 1fr;
  }
  .card-participants,
  .card-documents,
  .card-procedures {
    grid-column: auto;
    grid-row: auto;
  }
  .card-procedures {
    order: 1;
  }
  .card-participants {
    order: 2;
  }
  .card-documents {
    order: 3;
  }
  .page-title {
    font-size: 1.65rem;
  }
  .prose h2 {
    font-size: 1.45rem;
  }
  .btn {
    width: 100%;
    text-align: center;
  }
}
@media print {
  .site-header,.nav-toggle,.site-nav {
    display: none!important;
  }
  .page-head {
    background: #fff;
  }
  .content-wrap {
    padding: 1rem 0;
  }
  .site-footer {
    background: #fff;
    color: #000;
    border-top: 1px solid #bbb;
  }
  .site-footer a {
    color: #000;
  }
  .btn {
    color: #000!important;
    background: #fff;
    border: 1px solid #000;
    box-shadow: none;
  }
}
