:root {
  color-scheme: light;
  --ink: #121826;
  --canvas: #fbfcfe;
  --app-blue: #eef7fa;
}

* {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

html {
  background: var(--canvas);
}

body {
  min-width: 320px;
  margin: 0;
  overflow: hidden;
  background: var(--canvas);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.announcement {
  height: 26px;
  display: grid;
  place-items: center;
  background: var(--app-blue);
  color: var(--ink);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0;
}

.shell {
  height: calc(100svh - 26px);
}

.hero {
  height: 100%;
  display: flex;
  align-items: center;
  padding: 0 clamp(20px, 6vw, 88px);
}

h1 {
  width: min(1120px, 100%);
  margin: 0;
  font-size: clamp(72px, 14.5vw, 188px);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 0.86;
}

@media (max-width: 560px) {
  .announcement {
    height: 24px;
    font-size: 11px;
  }

  .shell {
    height: calc(100svh - 24px);
  }

  .hero {
    padding: 0 16px;
  }

  h1 {
    font-size: clamp(68px, 21vw, 112px);
  }
}
