:root {
  --ink: #18212b;
  --muted: #5d6875;
  --line: #dfe4ea;
  --surface: #ffffff;
  --page: #f6f8f7;
  --blue: #006ab5;
  --blue-dark: #004b88;
  --red: #d8335b;
  --yellow: #f0b72f;
  --green: #138f70;
  --focus: #1e88e5;
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(circle at top left, rgba(0, 106, 181, 0.12), transparent 32rem),
    linear-gradient(180deg, #ffffff 0%, var(--page) 52%, #eef3f1 100%);
  color: var(--ink);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  line-height: 1.5;
}

a {
  color: inherit;
}

a:focus-visible,
button:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 4px;
}

.site-header,
.hero,
.info-band,
.status-section,
.site-footer {
  width: min(1120px, calc(100% - 32px));
  margin-inline: auto;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 24px 0 12px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  color: var(--ink);
  font-weight: 800;
  text-decoration: none;
}

.brand img {
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  object-fit: contain;
}

.brand span {
  overflow-wrap: anywhere;
}

.header-link {
  color: var(--blue-dark);
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: none;
}

.header-link:hover {
  text-decoration: underline;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 40px;
  align-items: center;
  min-height: calc(100svh - 80px);
  padding: 48px 0 64px;
}

.hero::before {
  grid-column: 1 / -1;
  display: block;
  height: 7px;
  border-radius: 999px;
  background: linear-gradient(
    90deg,
    #e5232e 0 16.6%,
    #f7a823 16.6% 33.2%,
    #f3d33c 33.2% 49.8%,
    #15965d 49.8% 66.4%,
    #006ab5 66.4% 83%,
    #63358c 83% 100%
  );
  content: "";
}

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

.eyebrow {
  margin: 0 0 14px;
  color: var(--blue-dark);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1 {
  max-width: 21ch;
  margin-bottom: 24px;
  font-size: clamp(2rem, 4.6vw, 3.7rem);
  line-height: 1.08;
  letter-spacing: 0;
  overflow-wrap: anywhere;
  hyphens: auto;
}

h1 span {
  display: block;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(1.8rem, 4vw, 3.15rem);
  line-height: 1.04;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.18rem;
  line-height: 1.2;
}

.lead {
  max-width: 660px;
  margin-bottom: 30px;
  color: #344251;
  font-size: clamp(1.08rem, 2.1vw, 1.34rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 800;
  text-decoration: none;
}

.button-primary {
  background: var(--blue);
  color: #ffffff;
}

.button-primary:hover {
  background: var(--blue-dark);
}

.button-secondary {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.82);
  color: var(--ink);
}

.button-secondary:hover {
  border-color: var(--blue);
  color: var(--blue-dark);
}

.hero-panel {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 24px 80px rgba(24, 33, 43, 0.12);
}

.hero-panel::before {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(0, 106, 181, 0.1), transparent 42%),
    radial-gradient(circle at bottom right, rgba(216, 51, 91, 0.16), transparent 36%);
  content: "";
  pointer-events: none;
}

.logo-frame {
  position: relative;
  display: grid;
  min-height: 320px;
  place-items: center;
  padding: 44px;
}

.logo-frame img {
  width: min(220px, 70%);
  height: auto;
  max-height: 260px;
  border-radius: 8px;
  object-fit: contain;
  box-shadow: 0 12px 40px rgba(0, 75, 136, 0.18);
}

.quick-facts {
  position: relative;
  display: grid;
  margin: 0;
  border-top: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.78);
}

.quick-facts div {
  display: grid;
  grid-template-columns: 112px 1fr;
  gap: 16px;
  padding: 18px 22px;
  border-bottom: 1px solid var(--line);
}

.quick-facts div:last-child {
  border-bottom: 0;
}

.quick-facts dt {
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 800;
}

.quick-facts dd {
  margin: 0;
  font-weight: 850;
}

.info-band {
  padding: 72px 0 38px;
}

.section-heading {
  display: grid;
  grid-template-columns: 0.8fr 1.8fr;
  gap: 32px;
  align-items: start;
  margin-bottom: 30px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.feature-card {
  position: relative;
  min-height: 230px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
}

.feature-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.card-accent {
  display: block;
  width: 46px;
  height: 6px;
  margin-bottom: 34px;
  border-radius: 999px;
}

.accent-blue {
  background: var(--blue);
}

.accent-red {
  background: var(--red);
}

.accent-green {
  background: var(--green);
}

.status-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: end;
  margin-top: 38px;
  padding: 42px 0 72px;
  border-top: 1px solid var(--line);
}

.status-section p:last-child {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 28px 0 34px;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.site-footer strong {
  color: var(--ink);
}

.site-footer p {
  margin: 4px 0 0;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 14px;
}

.site-footer a {
  color: var(--blue-dark);
  font-weight: 800;
  text-decoration: none;
}

.site-footer a:hover {
  text-decoration: underline;
}

@media (max-width: 860px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 32px;
  }

  .hero-panel {
    max-width: 480px;
  }

  .section-heading,
  .feature-grid,
  .status-section {
    grid-template-columns: 1fr;
  }

  .status-section {
    align-items: start;
  }
}

@media (max-width: 560px) {
  .site-header,
  .hero,
  .info-band,
  .status-section,
  .site-footer {
    width: min(100% - 24px, 1120px);
  }

  .hero {
    gap: 28px;
    padding-bottom: 46px;
  }

  h1 {
    font-size: clamp(1.8rem, 8vw, 2.65rem);
  }

  .lead {
    font-size: 1.02rem;
  }

  .hero-actions,
  .site-footer,
  .site-footer nav {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .logo-frame {
    min-height: 250px;
    padding: 32px;
  }

  .quick-facts div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .feature-card {
    min-height: 0;
  }
}
