:root {
  color-scheme: light;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #172026;
  background: #f7f5ef;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-width: 320px;
}

a {
  color: inherit;
}

.page {
  min-height: 100vh;
  background:
    linear-gradient(135deg, rgba(247, 245, 239, 0.92), rgba(228, 237, 232, 0.9)),
    url("data:image/svg+xml,%3Csvg width='1200' height='800' viewBox='0 0 1200 800' xmlns='http://www.w3.org/2000/svg'%3E%3Crect width='1200' height='800' fill='%23d7e4de'/%3E%3Cpath d='M0 560 C180 500 310 590 480 520 C660 446 720 270 900 250 C1040 235 1130 312 1200 285 L1200 800 L0 800 Z' fill='%2397b7a8'/%3E%3Cpath d='M0 610 C210 650 360 690 565 630 C775 568 915 485 1200 520 L1200 800 L0 800 Z' fill='%23456d62'/%3E%3C/svg%3E");
  background-size: cover;
  background-position: center;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  align-items: stretch;
  min-height: 100vh;
}

.hero__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 22px;
  padding: clamp(32px, 7vw, 96px);
  max-width: 720px;
}

.eyebrow {
  margin: 0;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
  color: #31584f;
}

h1 {
  margin: 0;
  max-width: 11ch;
  font-size: clamp(3rem, 8vw, 6.8rem);
  line-height: 0.94;
  letter-spacing: 0;
}

.lede {
  margin: 0;
  max-width: 620px;
  font-size: clamp(1rem, 2vw, 1.28rem);
  line-height: 1.62;
  color: #33434a;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 46px;
  padding: 0 18px;
  border: 1px solid #172026;
  border-radius: 6px;
  background: #172026;
  color: #ffffff;
  font-weight: 800;
  text-decoration: none;
}

.hero__media {
  display: flex;
  align-items: end;
  justify-content: end;
  padding: clamp(24px, 5vw, 72px);
}

.status-panel {
  display: grid;
  grid-template-columns: auto;
  gap: 8px;
  width: min(100%, 340px);
  padding: 22px;
  border: 1px solid rgba(23, 32, 38, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 24px 70px rgba(23, 32, 38, 0.16);
  backdrop-filter: blur(14px);
}

.status-panel__label {
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
  color: #4b615b;
}

.status-panel__value {
  font-size: 1.05rem;
  font-weight: 800;
}

.status-panel__line {
  height: 1px;
  margin: 8px 0;
  background: rgba(23, 32, 38, 0.16);
}

@media (max-width: 760px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero__content {
    min-height: 72vh;
    padding: 32px 22px;
  }

  h1 {
    max-width: 9ch;
    font-size: clamp(2.75rem, 18vw, 4.8rem);
  }

  .hero__media {
    min-height: 28vh;
    padding: 22px;
  }
}
