:root {
  --navy-950: #061a3d;
  --navy-900: #09285f;
  --navy-800: #0d3475;
  --navy-700: #17488e;
  --gold-500: #f5b321;
  --gold-400: #ffc64b;
  --gold-100: #fff3d5;
  --red-600: #b42318;
  --red-100: #feeceb;
  --ink: #172033;
  --muted: #5f6c82;
  --line: #dce3ee;
  --surface: #ffffff;
  --surface-soft: #f5f7fb;
  --shadow-lg: 0 28px 80px rgba(6, 26, 61, 0.14);
  --shadow-sm: 0 10px 32px rgba(6, 26, 61, 0.08);
  --radius-lg: 28px;
  --radius-md: 20px;
  --radius-sm: 14px;
  --content: 1180px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 13% 10%, rgba(245, 179, 33, 0.16), transparent 23rem),
    radial-gradient(circle at 90% 20%, rgba(23, 72, 142, 0.13), transparent 26rem),
    linear-gradient(145deg, #f8f9fc 0%, #eef3fa 48%, #f8f9fc 100%);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body::before,
body::after {
  position: fixed;
  z-index: -1;
  content: "";
  pointer-events: none;
  transform: rotate(45deg);
  border: 1px solid rgba(9, 40, 95, 0.07);
  border-radius: 28px;
}

body::before {
  top: 22%;
  left: -9rem;
  width: 19rem;
  height: 19rem;
}

body::after {
  right: -7rem;
  bottom: 16%;
  width: 15rem;
  height: 15rem;
  background: rgba(245, 179, 33, 0.035);
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
}

a {
  color: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid var(--gold-500);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 0;
  left: 50%;
  z-index: 100;
  padding: 0.7rem 1rem;
  color: #fff;
  background: var(--navy-950);
  border-radius: 0 0 10px 10px;
  transform: translate(-50%, -150%);
  transition: transform 160ms ease;
}

.skip-link:focus {
  transform: translate(-50%, 0);
}

.page-shell {
  width: min(calc(100% - 40px), var(--content));
  margin-inline: auto;
}

.site-header {
  display: flex;
  min-height: 106px;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  color: var(--navy-950);
  text-decoration: none;
}

.brand img {
  width: 64px;
  height: 64px;
  object-fit: contain;
  border-radius: 14px;
  box-shadow: 0 8px 22px rgba(6, 26, 61, 0.08);
}

.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.brand-copy strong {
  font-size: 1.08rem;
  letter-spacing: 0.025em;
}

.brand-copy small {
  margin-top: 0.28rem;
  color: var(--muted);
  font-size: 0.78rem;
}

.official-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 0.8rem;
  color: var(--navy-800);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(9, 40, 95, 0.12);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(8px);
}

.official-badge__dot {
  width: 8px;
  height: 8px;
  background: #16845b;
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(22, 132, 91, 0.12);
}

.hero {
  min-height: calc(100vh - 106px);
  min-height: calc(100svh - 106px);
  display: grid;
  place-items: center;
  padding: 2rem 0 5rem;
}

.hero-card {
  position: relative;
  width: min(100%, 970px);
  overflow: hidden;
  padding: clamp(2rem, 5vw, 4.5rem);
  text-align: center;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.hero-card::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 6px;
  content: "";
  background: linear-gradient(90deg, var(--navy-900) 0 72%, var(--gold-500) 72% 100%);
}

.hero-card::after {
  position: absolute;
  top: -8rem;
  right: -8rem;
  width: 17rem;
  height: 17rem;
  content: "";
  background: linear-gradient(145deg, rgba(245, 179, 33, 0.08), rgba(9, 40, 95, 0.025));
  border-radius: 54px;
  transform: rotate(18deg);
}

.warning-icon {
  position: relative;
  z-index: 1;
  display: grid;
  width: 80px;
  height: 80px;
  margin: 0 auto 1.4rem;
  place-items: center;
  background: var(--gold-100);
  border: 1px solid rgba(245, 179, 33, 0.35);
  border-radius: 24px;
  box-shadow: 0 12px 30px rgba(245, 179, 33, 0.18);
}

.warning-icon svg {
  width: 44px;
  height: 44px;
  fill: var(--gold-500);
}

.warning-icon__mark {
  fill: none;
  stroke: var(--navy-950);
  stroke-linecap: round;
  stroke-width: 2.2;
}

.eyebrow,
.section-label {
  margin: 0 0 0.65rem;
  color: var(--navy-700);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

h1,
h2,
p {
  margin-top: 0;
}

h1 {
  position: relative;
  z-index: 1;
  max-width: 760px;
  margin-right: auto;
  margin-bottom: 1rem;
  margin-left: auto;
  color: var(--navy-950);
  font-size: clamp(2.05rem, 5vw, 3.75rem);
  line-height: 1.08;
  letter-spacing: -0.045em;
}

h2 {
  color: var(--navy-950);
  font-size: clamp(1.2rem, 2.1vw, 1.65rem);
  line-height: 1.25;
  letter-spacing: -0.025em;
}

.hero-lead {
  position: relative;
  z-index: 1;
  max-width: 760px;
  margin-right: auto;
  margin-bottom: 1.5rem;
  margin-left: auto;
  color: #43516a;
  font-size: clamp(1rem, 1.8vw, 1.15rem);
}

.domain-info {
  position: relative;
  z-index: 1;
  display: flex;
  width: fit-content;
  max-width: 100%;
  margin: 1.25rem auto;
  align-items: center;
  gap: 0.7rem;
  padding: 0.65rem 0.9rem;
  color: var(--muted);
  background: var(--surface-soft);
  border: 1px solid var(--line);
  border-radius: 12px;
  font-size: 0.84rem;
}

.domain-info[hidden] {
  display: none;
}

.domain-info strong {
  min-width: 0;
  overflow-wrap: anywhere;
  color: var(--navy-900);
}

.service-note {
  position: relative;
  z-index: 1;
  max-width: 760px;
  margin: 0 auto 1.9rem;
  padding: 1rem 1.1rem;
  color: #4c5870;
  background: #f7f9fc;
  border-left: 4px solid var(--gold-500);
  border-radius: 4px 12px 12px 4px;
  font-size: 0.91rem;
  text-align: left;
}

.service-note strong {
  color: var(--navy-950);
}

.hero-actions {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.78rem 1.2rem;
  appearance: none;
  border: 1px solid transparent;
  border-radius: 12px;
  cursor: pointer;
  font: inherit;
  font-size: 0.9rem;
  font-weight: 750;
  line-height: 1.2;
  text-decoration: none;
  transition: transform 160ms ease, box-shadow 160ms ease, background-color 160ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.button--primary {
  color: #fff;
  background: var(--navy-900);
  box-shadow: 0 12px 24px rgba(9, 40, 95, 0.22);
}

.button--primary:hover {
  background: var(--navy-800);
  box-shadow: 0 15px 28px rgba(9, 40, 95, 0.28);
}

.button--secondary {
  color: var(--navy-900);
  background: #fff;
  border-color: #bfcbdc;
}

.button--secondary:hover {
  background: #f5f7fb;
}

.button--text {
  flex-basis: 100%;
  min-height: auto;
  padding: 0.55rem;
  color: var(--muted);
  background: transparent;
  border: 0;
  font-size: 0.8rem;
}

.button--text:hover {
  color: var(--navy-900);
  transform: none;
}

.content-grid {
  display: grid;
  margin-bottom: 1.5rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
}

.info-card {
  display: grid;
  min-height: 100%;
  padding: clamp(1.5rem, 3.5vw, 2.25rem);
  grid-template-columns: auto 1fr;
  gap: 1rem;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(9, 40, 95, 0.1);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.info-card--accent {
  background: linear-gradient(145deg, #fff 0%, #fffaf0 100%);
  border-color: rgba(245, 179, 33, 0.25);
}

.info-card__icon {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  color: var(--navy-800);
  background: #edf3fc;
  border-radius: 14px;
}

.info-card--accent .info-card__icon {
  color: #8b5c00;
  background: var(--gold-100);
}

.info-card__icon svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.75;
}

.info-card h2 {
  margin-bottom: 0.6rem;
}

.info-card p,
.policy-card p,
.institution-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.policy-card {
  display: grid;
  margin-bottom: 1.5rem;
  padding: clamp(1.75rem, 4vw, 3.25rem);
  color: #fff;
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.04), transparent 42%),
    var(--navy-950);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(2rem, 5vw, 4.5rem);
}

.policy-card .section-label {
  color: var(--gold-400);
}

.policy-card h2 {
  margin-bottom: 0.85rem;
  color: #fff;
}

.policy-card__copy p {
  color: #c5d1e3;
}

.policy-list {
  display: grid;
  margin: 0;
  padding: 0;
  gap: 1rem;
  list-style: none;
}

.policy-list li {
  display: grid;
  align-items: start;
  grid-template-columns: auto 1fr;
  gap: 0.85rem;
  color: #e6ecf5;
  font-size: 0.91rem;
}

.policy-list__number {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  color: var(--gold-400);
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  font-size: 0.68rem;
  font-weight: 800;
}

.policy-card__note {
  grid-column: 2;
  color: #8fa2bf !important;
  font-size: 0.75rem;
}

.institution-card {
  display: grid;
  margin-bottom: 1.5rem;
  padding: clamp(1.75rem, 4vw, 3.25rem);
  align-items: center;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(9, 40, 95, 0.1);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  grid-template-columns: 0.75fr 1.25fr;
  gap: clamp(2rem, 5vw, 4rem);
}

.institution-card__heading h2 {
  margin-bottom: 0.7rem;
}

.institution-card__heading p:last-child {
  font-size: 0.88rem;
}

.logo-panel {
  display: grid;
  margin: 0;
  padding: 0;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
  list-style: none;
}

.logo-item {
  display: flex;
  min-height: 190px;
  align-items: center;
  justify-content: flex-end;
  padding: 1.1rem 0.8rem;
  flex-direction: column;
  gap: 0.8rem;
  background: var(--surface-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  text-align: center;
}

.logo-item img {
  width: 100%;
  max-width: 128px;
  height: 105px;
  object-fit: contain;
}

.logo-item--plb img {
  max-width: 120px;
}

.logo-item span {
  color: var(--muted);
  font-size: 0.7rem;
  font-weight: 650;
  line-height: 1.3;
}

.digital-message {
  display: flex;
  margin: 2.5rem 0;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  color: var(--navy-900);
  text-align: center;
}

.digital-message svg {
  width: 28px;
  height: 28px;
  flex: 0 0 auto;
  fill: none;
  stroke: var(--gold-500);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.9;
}

.digital-message p {
  margin: 0;
  font-weight: 700;
}

.site-footer {
  margin-top: 4rem;
  padding: clamp(2rem, 4vw, 3rem) 0 2rem;
  color: #c3cee0;
  border-top: 1px solid rgba(9, 40, 95, 0.12);
}

.footer-brand {
  display: flex;
  margin-bottom: 1.8rem;
  align-items: center;
  gap: 0.8rem;
  color: var(--navy-950);
}

.footer-brand img {
  width: 52px;
  height: 52px;
  object-fit: contain;
  border-radius: 10px;
}

.footer-brand div {
  display: flex;
  flex-direction: column;
}

.footer-brand span {
  color: var(--muted);
  font-size: 0.78rem;
}

.footer-contact {
  display: grid;
  padding: 1.4rem;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(9, 40, 95, 0.1);
  border-radius: var(--radius-sm);
  grid-template-columns: 0.65fr 0.65fr 1.7fr;
  gap: 1.5rem;
}

.footer-contact > * {
  min-width: 0;
}

.footer-contact a {
  color: var(--navy-800);
  font-weight: 700;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.footer-contact address {
  font-style: normal;
}

.footer-label {
  display: block;
  margin-bottom: 0.25rem;
  color: var(--muted);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.footer-bottom {
  display: flex;
  padding-top: 1.2rem;
  justify-content: space-between;
  gap: 1rem;
  color: var(--muted);
  font-size: 0.72rem;
}

@media (max-width: 900px) {
  .hero {
    min-height: auto;
    padding-top: 1rem;
  }

  .content-grid,
  .policy-card,
  .institution-card {
    grid-template-columns: 1fr;
  }

  .policy-card__note {
    grid-column: auto;
  }

  .institution-card {
    gap: 2rem;
  }
}

@media (max-width: 680px) {
  .page-shell {
    width: min(calc(100% - 24px), var(--content));
  }

  .site-header {
    min-height: 86px;
  }

  .brand img {
    width: 50px;
    height: 50px;
  }

  .brand-copy small,
  .official-badge {
    display: none;
  }

  .hero {
    padding: 0.7rem 0 3.2rem;
  }

  .hero-card {
    padding: 2rem 1.15rem;
    border-radius: 22px;
  }

  .warning-icon {
    width: 66px;
    height: 66px;
    margin-bottom: 1.1rem;
    border-radius: 20px;
  }

  .warning-icon svg {
    width: 37px;
    height: 37px;
  }

  h1 {
    font-size: clamp(2rem, 11vw, 2.7rem);
  }

  .hero-lead {
    font-size: 0.96rem;
  }

  .domain-info {
    width: 100%;
    align-items: flex-start;
    flex-direction: column;
    gap: 0.1rem;
    text-align: left;
  }

  .service-note {
    font-size: 0.84rem;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .button {
    width: 100%;
  }

  .content-grid {
    gap: 1rem;
  }

  .info-card {
    grid-template-columns: 1fr;
  }

  .logo-panel {
    grid-template-columns: 1fr;
  }

  .logo-item {
    min-height: 155px;
  }

  .logo-item img {
    height: 85px;
  }

  .digital-message {
    align-items: flex-start;
    text-align: left;
  }

  .site-footer {
    margin-top: 2rem;
  }

  .footer-contact {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .footer-bottom {
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: no-preference) {
  .hero-card {
    animation: enter 520ms ease-out both;
  }

  @keyframes enter {
    from {
      opacity: 0;
      transform: translateY(12px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}

@media print {
  body {
    background: #fff;
  }

  body::before,
  body::after,
  .hero-card::after,
  .hero-actions,
  .official-badge {
    display: none;
  }

  .hero {
    min-height: auto;
    padding: 1rem 0;
  }

  .hero-card,
  .info-card,
  .policy-card,
  .institution-card {
    break-inside: avoid;
    box-shadow: none;
  }
}
