:root {
  --blue-950: #06183d;
  --blue-800: #073080;
  --blue-700: #0b46b3;
  --red-700: #dd0614;
  --ink: #081638;
  --muted: #5f6f8a;
  --line: #d9e4f2;
  --bg: #f7faff;
  --shadow: 0 22px 55px rgba(5, 27, 72, 0.13);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Montserrat", Arial, Helvetica, sans-serif;
  color: var(--ink);
  background: var(--bg);
}

a {
  color: inherit;
  text-decoration: none;
}

strong,
b,
h1,
h2,
h3 {
  font-weight: 600;
}

.shell {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.nav {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.logo {
  width: 168px;
}

.logo img {
  display: block;
  width: 100%;
  height: auto;
}

.nav-links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  color: var(--blue-950);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
}

.nav-links a:hover {
  color: var(--red-700);
}

.hero {
  padding: 64px 0 38px;
  background: linear-gradient(112deg, #ffffff 0%, #eef6ff 100%);
  border-bottom: 1px solid var(--line);
}

.eyebrow {
  display: inline-flex;
  padding: 8px 12px;
  border-radius: 999px;
  color: var(--red-700);
  background: white;
  box-shadow: 0 10px 24px rgba(5, 27, 72, 0.08);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
}

h1 {
  max-width: 900px;
  margin: 18px 0 12px;
  color: var(--blue-800);
  font-size: clamp(38px, 6vw, 72px);
  line-height: 1;
}

.lead {
  max-width: 820px;
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.58;
}

.quick-tabs {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  margin: 28px 0 0;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: white;
  overflow: hidden;
  box-shadow: 0 16px 35px rgba(5, 27, 72, 0.07);
}

.quick-tabs a {
  min-height: 56px;
  display: grid;
  place-items: center;
  padding: 10px;
  border-right: 1px solid var(--line);
  color: #111;
  font-size: 12px;
  font-weight: 600;
  text-align: center;
  text-transform: uppercase;
  transition: background 180ms ease, color 180ms ease;
}

.quick-tabs a:last-child {
  border-right: 0;
}

.quick-tabs a:hover,
.quick-tabs a[aria-current="page"] {
  color: white;
  background: var(--blue-800);
}

.content {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 26px;
  align-items: start;
  padding: 34px 0 58px;
}

.panel {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: white;
  box-shadow: var(--shadow);
}

.list-panel {
  padding: 22px;
}

.panel h2 {
  margin: 0 0 14px;
  color: var(--blue-800);
  font-size: 28px;
}

.entity-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.entity-card {
  min-height: 118px;
  display: grid;
  gap: 10px;
  align-content: start;
  padding: 17px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fbfdff;
}

.entity-card h3 {
  margin: 0;
  color: #111;
  font-size: 17px;
}

.entity-card p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.status {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 7px;
  color: #111;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
}

.status::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #111;
}

.side-panel {
  display: grid;
  gap: 18px;
}

.aside-card {
  padding: 22px;
}

.aside-card p,
.aside-card li {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.56;
}

.aside-card ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.aside-card li::before {
  content: "✓";
  display: inline-grid;
  place-items: center;
  width: 20px;
  height: 20px;
  margin-right: 8px;
  border-radius: 50%;
  color: white;
  background: var(--red-700);
  font-size: 11px;
}

.cta {
  display: inline-flex;
  justify-content: center;
  width: 100%;
  margin-top: 10px;
  padding: 13px 16px;
  border-radius: 10px;
  color: white;
  background: var(--red-700);
  font-weight: 600;
  box-shadow: 0 14px 28px rgba(221, 6, 20, 0.18);
}

.footer {
  padding: 32px 0;
  color: #dceaff;
  background: var(--blue-950);
}

.footer img {
  width: 176px;
  height: auto;
}

@media (max-width: 900px) {
  .content {
    grid-template-columns: 1fr;
  }

  .quick-tabs {
    grid-template-columns: repeat(2, 1fr);
  }

  .quick-tabs a {
    border-bottom: 1px solid var(--line);
  }

  .entity-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .nav {
    align-items: flex-start;
    flex-direction: column;
    padding: 16px 0;
  }

  .quick-tabs {
    grid-template-columns: 1fr;
  }
}
