:root {
  --ink: #111111;
  --bg: #ffffff;
  --btn-bg: #111111;
  --btn-text: #ffffff;
  --max-width: 360px;
}

* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px 24px;
}

.page {
  width: 100%;
  max-width: var(--max-width);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: left;
}

.title {
  font-size: 19px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-align: center;
  margin: 0 0 40px 0;
}

.body-text {
  width: 100%;
  font-size: 17px;
  line-height: 1.55;
  font-weight: 400;
}

.body-text p {
  margin: 0 0 24px 0;
}

.body-text p:last-child {
  margin-bottom: 40px;
}

.cta {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  background: var(--btn-bg);
  color: var(--btn-text);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 22px 24px;
  border-radius: 40px;
  transition: opacity 0.15s ease;
}

.cta:hover,
.cta:focus-visible {
  opacity: 0.85;
}

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

@media (min-width: 640px) {
  :root {
    --max-width: 380px;
  }

  body {
    padding: 64px 24px;
  }
}
