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

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
}

body {
  min-height: 100vh;
  background:
    radial-gradient(circle at 82% 14%, rgba(255, 255, 255, 0.85), transparent 28%),
    linear-gradient(135deg, #f4f2ec 0%, #ebe8df 100%);
}

.page {
  min-height: 100vh;
  width: min(1440px, 100%);
  margin: 0 auto;
  padding: 32px 44px 30px;
  display: grid;
  grid-template-rows: auto 1fr auto;
}

.topline,
.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: inherit;
  text-decoration: none;
  font-weight: 650;
}

.mark {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 10px;
  font-size: 10px;
  letter-spacing: 0.05em;
}

.status {
  opacity: 0.54;
  text-align: right;
}

.hero {
  align-self: center;
  max-width: 1040px;
  padding: 100px 0 88px;
}

.eyebrow {
  margin: 0 0 28px;
  font-size: 12px;
  letter-spacing: 0.14em;
  font-weight: 650;
}

h1 {
  margin: 0;
  font-size: clamp(64px, 9vw, 146px);
  line-height: 0.87;
  letter-spacing: -0.068em;
  font-weight: 640;
  text-wrap: balance;
}

.lead {
  width: min(680px, 100%);
  margin: 48px 0 0;
  font-size: clamp(18px, 2vw, 26px);
  line-height: 1.42;
  letter-spacing: -0.025em;
  opacity: 0.68;
}

.footer {
  padding-top: 22px;
  border-top: 1px solid rgba(23, 23, 23, 0.16);
  opacity: 0.58;
}

@media (max-width: 700px) {
  .page {
    padding: 22px 20px 20px;
  }

  .status {
    max-width: 180px;
    font-size: 10px;
  }

  .hero {
    padding: 84px 0 70px;
  }

  h1 {
    font-size: clamp(58px, 20vw, 92px);
  }

  .lead {
    margin-top: 34px;
  }
}

@media (prefers-color-scheme: dark) {
  :root {
    background: #171716;
    color: #efede7;
  }

  body {
    background:
      radial-gradient(circle at 82% 14%, rgba(255, 255, 255, 0.045), transparent 28%),
      linear-gradient(135deg, #171716 0%, #1f1e1b 100%);
  }

  .footer {
    border-top-color: rgba(255, 255, 255, 0.17);
  }
}
