:root {
  --navy: #193062;
  --ink: #17213a;
  --muted: #4a556b;
  --banner: #dce7ff;
  --banner-border: #c9d9fb;
  --line: #e5e9f2;
  --yellow: #fae07e;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: #ffffff;
  color: var(--ink);
  font-family: Aptos, "Trebuchet MS", Arial, Helvetica, sans-serif;
  letter-spacing: 0;
}

a {
  color: inherit;
}

button,
summary {
  font: inherit;
}

.site-header {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  width: min(100%, 1280px);
  margin: 0 auto;
  padding: 14px 34px 22px;
}

.logo-link {
  display: inline-flex;
  align-items: center;
  width: fit-content;
}

.logo {
  display: block;
  width: 136px;
  height: auto;
}

.main-nav {
  display: flex;
  justify-content: flex-end;
  gap: 22px;
  color: var(--navy);
  font-size: 14px;
  font-weight: 700;
}

.main-nav a {
  position: relative;
  padding: 8px 0;
  text-decoration: none;
}

.main-nav a::after {
  position: absolute;
  right: 0;
  bottom: 2px;
  left: 0;
  height: 2px;
  content: "";
  background: transparent;
}

.main-nav a.active::after,
.main-nav a:hover::after,
.main-nav a:focus-visible::after {
  background: var(--yellow);
}

.language-switcher {
  display: inline-grid;
  grid-template-columns: 1fr 1fr;
  gap: 3px;
  padding: 3px;
  border: 1px solid var(--banner-border);
  border-radius: 6px;
  background: #f7f9ff;
}

.language-switcher a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  height: 34px;
  border-radius: 4px;
  background: transparent;
  color: var(--navy);
  cursor: pointer;
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
}

.language-switcher a[aria-current="page"] {
  background: var(--navy);
  color: #ffffff;
}

.notice-banner {
  width: calc(100% - 40px);
  margin: 0 auto;
  padding: 20px 22px;
  border: 1px solid var(--banner-border);
  background: var(--banner);
  color: var(--navy);
}

.notice-banner p {
  width: min(100%, 1190px);
  margin: 0 auto;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
}

.hero-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 520px);
  align-items: center;
  gap: clamp(32px, 6vw, 96px);
  width: min(100%, 1210px);
  margin: 0 auto;
  padding: clamp(44px, 6vw, 64px) 36px 44px;
}

.hero-copy {
  max-width: 560px;
}

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

.hero-copy h1 {
  margin-bottom: 26px;
  color: var(--navy);
  font-size: clamp(42px, 6vw, 64px);
  font-weight: 900;
  line-height: 1.16;
}

.hero-copy p {
  color: var(--ink);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.75;
}

.hero-image {
  display: flex;
  justify-content: center;
}

.hero-image img {
  display: block;
  width: min(100%, 470px);
  aspect-ratio: 1 / 1;
  object-fit: contain;
}

.updates-section {
  width: min(100%, 1210px);
  margin: 0 auto;
  padding: 20px 36px 42px;
}

.updates-section h2,
.site-footer h2 {
  margin-bottom: 14px;
  color: var(--navy);
  font-size: 24px;
  font-weight: 900;
  line-height: 1.25;
}

.updates-section p {
  max-width: 1080px;
  margin-bottom: 20px;
  color: var(--ink);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.82;
}

.faq-intro-section,
.faq-document-section {
  width: min(100%, 1210px);
  margin: 0 auto;
  padding-right: 36px;
  padding-left: 36px;
}

.faq-intro-section {
  padding-top: clamp(44px, 6vw, 64px);
  padding-bottom: 22px;
}

.faq-intro-section h1 {
  max-width: 800px;
  margin-bottom: 12px;
  color: var(--navy);
  font-size: clamp(40px, 4.8vw, 56px);
  font-weight: 900;
  line-height: 1.1;
}

.faq-lede {
  max-width: 1080px;
  margin-bottom: 0;
  color: var(--ink);
  font-size: 15px;
  font-weight: 500;
  line-height: 1.7;
}

.faq-summary-grid {
  display: grid;
  grid-template-columns: minmax(280px, 430px) minmax(0, 1fr);
  align-items: start;
  gap: clamp(36px, 5vw, 72px);
  margin-top: 42px;
}

.status-card {
  padding: 28px 30px 30px;
  background: #fff1c6;
}

.status-card h2,
.commitment-block h2 {
  margin-bottom: 14px;
  color: var(--navy);
  font-size: 16px;
  font-weight: 900;
  line-height: 1.3;
}

.status-card p,
.commitment-list li {
  color: var(--ink);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.75;
}

.status-card p {
  margin-bottom: 18px;
}

.status-card p:last-child {
  margin-bottom: 0;
}

.commitment-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding-left: 18px;
  list-style: disc;
}

.commitment-list li {
  padding-left: 4px;
}

.faq-document-section {
  padding-top: 42px;
  padding-bottom: 44px;
}

.faq-document-section h2 {
  max-width: 570px;
  margin-bottom: 32px;
  color: #646b76;
  font-size: clamp(28px, 3.2vw, 36px);
  font-weight: 900;
  line-height: 1.15;
}

.faq-document-list {
  border-top: 1px solid var(--line);
}

.faq-row {
  padding: 30px 0 34px;
  border-bottom: 1px solid var(--line);
}

.faq-question-line {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 24px;
}

.faq-question-line h3 {
  margin: 0;
  color: var(--navy);
  font-size: 15px;
  font-weight: 900;
  line-height: 1.4;
}

.faq-caret {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border: 0;
  border-radius: 50%;
  background: transparent;
  color: #275cff;
  cursor: pointer;
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
}

.faq-caret::before {
  width: 8px;
  height: 8px;
  content: "";
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translateY(2px) rotate(225deg);
}

.faq-caret:hover,
.faq-caret:focus-visible {
  background: #edf4ff;
  color: var(--navy);
  outline: none;
}

.faq-caret[aria-expanded="false"]::before {
  transform: translateY(-2px) rotate(45deg);
}

.faq-row.is-collapsed .faq-question-line {
  margin-bottom: 0;
}

.faq-row p {
  max-width: 1040px;
  margin: 0;
  color: var(--ink);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.75;
}

.faq-pending-section {
  width: min(100%, 1210px);
  min-height: 440px;
  margin: 0 auto;
  padding: clamp(44px, 6vw, 64px) 36px 80px;
}

.faq-pending-section h1 {
  max-width: 700px;
  margin-bottom: 18px;
  color: var(--navy);
  font-size: clamp(40px, 4.8vw, 56px);
  font-weight: 900;
  line-height: 1.1;
}

.faq-pending-section p {
  max-width: 720px;
  color: var(--ink);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.75;
}

.site-footer {
  width: min(100%, 1210px);
  margin: 0 auto;
  padding: 24px 36px 28px;
  border-top: 1px solid var(--line);
  color: #111827;
}

.site-footer h2 {
  margin-bottom: 4px;
  font-size: 14px;
}

.site-footer p {
  max-width: 1180px;
  margin-bottom: 12px;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.55;
}

.site-footer a {
  color: var(--navy);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.faq-footer {
  padding-top: 26px;
}

.faq-footer p {
  font-size: 12px;
}

@media (max-width: 820px) {
  .site-header {
    grid-template-columns: 1fr auto;
    gap: 16px;
    padding: 16px 22px 18px;
  }

  .logo {
    width: 124px;
  }

  .main-nav {
    grid-column: 1 / -1;
    grid-row: 2;
    justify-content: flex-start;
    gap: 18px;
  }

  .notice-banner {
    width: calc(100% - 28px);
    padding: 16px;
  }

  .hero-section,
  .faq-intro-section,
  .faq-document-section,
  .faq-pending-section {
    grid-template-columns: 1fr;
    padding-right: 24px;
    padding-left: 24px;
  }

  .hero-section {
    padding-top: 44px;
  }

  .hero-copy h1,
  .faq-intro-section h1,
  .faq-pending-section h1 {
    font-size: clamp(36px, 11vw, 48px);
  }

  .hero-copy p,
  .faq-lede,
  .updates-section p,
  .faq-pending-section p {
    font-size: 15px;
  }

  .hero-image {
    order: -1;
  }

  .hero-image img {
    width: min(100%, 330px);
  }

  .updates-section,
  .site-footer {
    padding-right: 24px;
    padding-left: 24px;
  }

  .faq-summary-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .faq-intro-section {
    padding-top: 44px;
  }
}

@media (max-width: 430px) {
  .site-header {
    grid-template-columns: 1fr;
  }

  .language-switcher {
    width: 100%;
  }

  .language-switcher a {
    width: 100%;
  }

  .hero-copy h1,
  .faq-intro-section h1,
  .faq-pending-section h1 {
    font-size: 34px;
  }

  .status-card {
    padding: 24px;
  }

  .faq-question-line {
    gap: 16px;
  }
}
