:root {
  color-scheme: light;
  font-family: Inter, "Segoe UI", "Microsoft YaHei", Arial, sans-serif;
  color: #172326;
  background: #f5f7f4;
}

* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  background: #f5f7f4;
}

body {
  min-height: 100vh;
  margin: 0;
}

a {
  color: inherit;
}

.topbar {
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  padding: 24px 6vw;
  color: #fff;
}

.wordmark {
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0;
  text-decoration: none;
}

.place {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0;
  opacity: 0.86;
}

.hero {
  position: relative;
  display: grid;
  min-height: 82svh;
  place-items: center;
  overflow: hidden;
  background: #28454e;
  color: #fff;
  isolation: isolate;
}

.hero-image {
  position: absolute;
  z-index: -1;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.54) saturate(0.86);
}

.hero-copy {
  width: min(88vw, 1120px);
  padding: 100px 0 64px;
  text-shadow: 0 2px 22px rgba(0, 0, 0, 0.38);
}

.eyebrow,
.label {
  margin: 0 0 14px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.eyebrow {
  color: #ffd37a;
}

h1 {
  max-width: 100%;
  margin: 0;
  font-size: 64px;
  line-height: 1.05;
  letter-spacing: 0;
  overflow-wrap: anywhere;
}

.lead {
  margin: 22px 0 0;
  font-size: 20px;
  line-height: 1.65;
}

.identity {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  width: min(88vw, 1120px);
  margin: 0 auto;
  padding: 52px 0;
}

.identity > div {
  min-width: 0;
  border-top: 1px solid #c8d1cc;
  padding-top: 18px;
}

.label {
  color: #5e6a66;
}

.value {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 0;
  color: #172326;
  font-size: 20px;
  font-weight: 650;
  letter-spacing: 0;
}

.status-dot {
  width: 9px;
  height: 9px;
  flex: 0 0 9px;
  border-radius: 50%;
  background: #23845b;
  box-shadow: 0 0 0 4px rgba(35, 132, 91, 0.14);
}

footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 26px 6vw 30px;
  border-top: 1px solid #d8ded9;
  background: #172326;
  color: #dce5df;
  font-size: 13px;
}

footer a {
  color: #ffd37a;
  text-underline-offset: 4px;
}

@media (max-width: 700px) {
  .topbar {
    padding: 20px 6vw;
  }

  .hero {
    min-height: 78svh;
  }

  .hero-copy {
    padding-top: 92px;
  }

  h1 {
    font-size: 42px;
  }

  .lead {
    font-size: 17px;
  }

  .identity {
    grid-template-columns: 1fr;
    gap: 26px;
    padding: 40px 0;
  }

  footer {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
  }
}
