:root {
  color-scheme: light;
  --bg: #f7f8fa;
  --text: #111827;
  --muted: #374151;
}

* {
  box-sizing: border-box;
}

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

body {
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--text);
}

.page {
  min-height: 100vh;
  background: var(--bg);
  padding: clamp(40px, 7vw, 72px);
  display: grid;
  grid-template-rows: auto 1fr;
}

.brand {
  font-size: 16px;
  line-height: 1.2;
  font-weight: 650;
  letter-spacing: -0.02em;
}

.hero {
  align-self: center;
  width: min(100%, 780px);
  margin-left: clamp(0px, 8vw, 96px);
  transform: translateY(-2vh);
}

h1 {
  margin: 0;
  font-size: clamp(44px, 6vw, 76px);
  line-height: 0.98;
  letter-spacing: -0.065em;
  font-weight: 800;
  max-width: 900px;
}

.lead {
  margin: 28px 0 0;
  max-width: 760px;
  color: var(--muted);
  font-size: clamp(20px, 2.1vw, 28px);
  line-height: 1.45;
  letter-spacing: -0.025em;
  font-weight: 500;
}

.status {
  margin: 34px 0 0;
  max-width: 760px;
  font-size: clamp(16px, 1.5vw, 20px);
  line-height: 1.45;
  font-weight: 650;
  letter-spacing: -0.02em;
}

.coming {
  margin: 34px 0 0;
  font-size: clamp(18px, 1.5vw, 20px);
  line-height: 1.2;
  font-weight: 650;
  letter-spacing: -0.02em;
}

@media (max-width: 809px) {
  .page {
    padding: 54px 24px;
  }

  .hero {
    margin-left: 0;
    transform: none;
    align-self: center;
  }

  h1 {
    font-size: clamp(42px, 13vw, 64px);
    line-height: 1.03;
    letter-spacing: -0.06em;
  }

  .lead {
    margin-top: 54px;
    font-size: clamp(26px, 7vw, 34px);
    line-height: 1.44;
  }

  .status {
    display: none;
  }

  .coming {
    margin-top: 72px;
    font-size: 24px;
  }
}

@media (max-width: 389px) {
  .page {
    padding-left: 22px;
    padding-right: 22px;
  }

  h1 {
    font-size: 40px;
  }

  .lead {
    font-size: 22px;
    margin-top: 46px;
  }

  .coming {
    margin-top: 64px;
    font-size: 22px;
  }
}
