:root {
  --hero-bg: #fef3e5;
  --title-color: #411644;
  --text-color: #636464;
  --cta-bg: #005a6d;
  --cta-bg-hover: #00485a;
  --font-body: "Lato", "Helvetica Neue", Arial, sans-serif;
  --font-title: "Open Sans", "Helvetica Neue", Arial, sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  color: var(--text-color);
  background-color: var(--hero-bg);
  -webkit-font-smoothing: antialiased;
}

.page {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  min-height: 100dvh;
  padding: 2rem 1.5rem;
  text-align: center;
}

.logo {
  width: 220px;
  max-width: 70vw;
  height: auto;
  margin-bottom: 2.5rem;
}

.notice {
  font-family: var(--font-title);
  font-weight: 800;
  font-size: clamp(1.5rem, 3.5vw, 2.25rem);
  line-height: 1.2;
  color: var(--title-color);
  margin-bottom: 2.5rem;
  text-wrap: balance;
}

.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 12px 24px;
  background-color: var(--cta-bg);
  color: #ffffff;
  text-decoration: none;
  font-weight: 700;
  font-size: 1rem;
  border-radius: 25px;
  transition: background-color 0.2s ease;
}

.cta:hover,
.cta:focus-visible {
  background-color: var(--cta-bg-hover);
}

.cta:focus-visible {
  outline: 2px solid var(--title-color);
  outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
  .cta {
    transition: none;
  }
}
