:root {
  color-scheme: light;
  --ink: #0c2748;
  --muted: #52657a;
  --line: #d8e0e9;
  --surface: #f4f7fa;
  --cobalt: #075fd4;
  --green: #14765a;
  --white: #ffffff;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
}

.coming-soon-page {
  min-height: 100vh;
  background: #fdfcf9;
}

.coming-soon {
  min-height: 100vh;
  display: grid;
  place-content: center;
  justify-items: center;
  gap: 26px;
  padding: 40px;
}

.coming-soon img {
  display: block;
  width: min(720px, 82vw);
  height: auto;
}

.coming-soon p {
  margin: 0;
  color: var(--ink);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

a {
  color: inherit;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  min-height: 72px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 28px;
  padding: 12px clamp(20px, 5vw, 72px);
  border-bottom: 1px solid rgba(216, 224, 233, 0.9);
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
}

.wordmark {
  justify-self: start;
  color: var(--ink);
  font-size: 23px;
  font-weight: 750;
  text-decoration: none;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 30px;
  font-size: 14px;
  font-weight: 650;
}

.site-nav a {
  text-decoration: none;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--cobalt);
}

.language-control {
  justify-self: end;
}

.language-control select {
  min-width: 116px;
  min-height: 42px;
  padding: 0 36px 0 12px;
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white);
  font: inherit;
  font-size: 14px;
  font-weight: 650;
}

.hero {
  min-height: calc(100svh - 72px);
  display: grid;
  grid-template-rows: 1fr auto;
  border-bottom: 1px solid var(--line);
  background: #fdfcf9;
}

.hero-inner {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(320px, 0.75fr);
  align-items: center;
  gap: clamp(28px, 6vw, 86px);
  padding: 54px 0 36px;
}

.logo-stage {
  height: clamp(270px, 42vw, 480px);
  overflow: hidden;
  display: grid;
  place-items: center;
  background: #fdfcf9;
}

.logo-stage img {
  width: 820px;
  max-width: none;
  display: block;
}

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

.eyebrow {
  margin: 0 0 14px;
  color: var(--cobalt);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  letter-spacing: 0;
}

h1 {
  margin: 0;
  font-size: clamp(54px, 72px, 72px);
  line-height: 1;
  font-weight: 760;
}

.hero-line {
  margin: 22px 0 0;
  color: var(--ink);
  font-size: 25px;
  line-height: 1.3;
  font-weight: 650;
}

.hero-summary {
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 17px;
}

.section-cue {
  justify-self: center;
  margin-bottom: 24px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 650;
  text-decoration: none;
}

.section-cue span {
  margin-left: 8px;
  color: var(--cobalt);
}

.focus-section {
  padding: 108px 0;
  background: var(--surface);
}

.section-inner {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

h2 {
  max-width: 760px;
  margin: 0;
  font-size: 40px;
  line-height: 1.2;
  font-weight: 720;
}

.focus-list {
  margin-top: 64px;
  border-top: 1px solid var(--line);
}

.focus-list article {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 24px;
  padding: 30px 0;
  border-bottom: 1px solid var(--line);
}

.focus-number {
  color: var(--green);
  font-size: 14px;
  font-weight: 800;
}

.focus-list h3 {
  margin: 0 0 7px;
  font-size: 22px;
  line-height: 1.3;
}

.focus-list p {
  max-width: 720px;
  margin: 0;
  color: var(--muted);
  font-size: 17px;
}

.status-section {
  padding: 104px 0;
  border-top: 6px solid var(--cobalt);
}

.status-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(320px, 1.2fr);
  align-items: start;
  gap: 72px;
}

.status-layout p:last-child {
  max-width: 650px;
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 18px;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 28px clamp(20px, 5vw, 72px);
  color: #dbe7f4;
  background: var(--ink);
  font-size: 14px;
  font-weight: 650;
}

@media (max-width: 820px) {
  .site-header {
    grid-template-columns: 1fr auto;
    gap: 12px;
    min-height: 64px;
  }

  .site-nav {
    display: none;
  }

  .hero {
    min-height: calc(100svh - 64px);
  }

  .hero-inner {
    grid-template-columns: 1fr;
    align-content: center;
    gap: 12px;
    padding: 28px 0 24px;
  }

  .logo-stage {
    height: 230px;
  }

  .logo-stage img {
    width: 560px;
  }

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

  h1 {
    font-size: 52px;
  }

  .hero-line {
    margin-top: 16px;
    font-size: 22px;
  }

  .hero-summary {
    margin-top: 14px;
    font-size: 16px;
  }

  .focus-section,
  .status-section {
    padding: 76px 0;
  }

  h2 {
    font-size: 32px;
  }

  .focus-list {
    margin-top: 42px;
  }

  .status-layout {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}

@media (max-width: 480px) {
  .site-header {
    padding-inline: 16px;
  }

  .wordmark {
    font-size: 21px;
  }

  .language-control select {
    min-width: 104px;
  }

  .hero-inner,
  .section-inner {
    width: min(100% - 32px, 1120px);
  }

  .logo-stage {
    height: 190px;
  }

  .logo-stage img {
    width: 420px;
  }

  h1 {
    font-size: 46px;
  }

  .hero-line {
    font-size: 20px;
  }

  .focus-list article {
    grid-template-columns: 44px minmax(0, 1fr);
    gap: 14px;
  }

  .focus-list h3 {
    font-size: 20px;
  }

  .focus-list p,
  .status-layout p:last-child {
    font-size: 16px;
  }

  .site-footer {
    flex-direction: column;
    gap: 6px;
    padding-inline: 16px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}

.legal-page {
  min-height: 100svh;
  background: var(--surface);
}

.legal-header {
  position: static;
}

.legal-main {
  width: min(900px, calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(48px, 8vw, 96px) 0;
}

.legal-intro {
  max-width: 720px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--line);
}

.legal-intro h1 {
  font-size: clamp(40px, 7vw, 64px);
}

.legal-intro p:last-child {
  max-width: 690px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 18px;
}

.legal-language {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 28px 0 0;
}

.legal-language button {
  min-height: 38px;
  padding: 0 13px;
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white);
  font: inherit;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
}

.legal-language button[aria-pressed="true"] {
  color: var(--white);
  border-color: var(--ink);
  background: var(--ink);
}

.legal-copy {
  display: none;
}

.legal-copy.is-active {
  display: block;
}

.legal-copy section {
  padding: 36px 0;
  border-bottom: 1px solid var(--line);
}

.legal-copy h2 {
  margin-bottom: 16px;
  font-size: clamp(26px, 4vw, 34px);
}

.legal-copy h3 {
  margin: 26px 0 8px;
  font-size: 19px;
}

.legal-copy p,
.legal-copy li {
  color: var(--muted);
  font-size: 16px;
}

.legal-copy p {
  margin: 0 0 14px;
}

.legal-copy ul,
.legal-copy ol {
  margin: 0 0 14px;
  padding-left: 22px;
}

.legal-copy li + li {
  margin-top: 7px;
}

.legal-note {
  padding: 18px 20px;
  border-left: 3px solid var(--cobalt);
  background: var(--white);
}

.legal-note strong {
  color: var(--ink);
}

.legal-meta {
  margin-top: 36px;
  color: var(--muted);
  font-size: 14px;
}

@media (max-width: 480px) {
  .legal-main {
    width: min(100% - 32px, 900px);
    padding-block: 42px;
  }

  .legal-intro p:last-child {
    font-size: 16px;
  }
}
