:root {
  color-scheme: light;
  --brand-dark: #472b57;
  --brand-light: #dfbcd7;
  --ink: #23172b;
  --muted: #6a5c71;
  --surface: rgba(255, 255, 255, 0.78);
  --ring: rgba(71, 43, 87, 0.18);
  --background:
    radial-gradient(circle at top left, rgba(223, 188, 215, 0.7), transparent 34rem),
    linear-gradient(135deg, #fff8fd 0%, #f2e7f3 48%, #e8eff9 100%);
  font-family: "Noto Sans", system-ui, sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--background);
}

a {
  color: inherit;
}

.page-shell {
  display: grid;
  place-items: center;
  padding: 4rem 1rem 2rem;
}

.hero {
  width: min(100%, 46rem);
  padding: clamp(2rem, 6vw, 4.5rem);
  text-align: center;
  background: var(--surface);
  border: 1px solid rgba(71, 43, 87, 0.12);
  border-radius: 2rem;
  box-shadow: 0 2rem 5rem rgba(71, 43, 87, 0.16);
  backdrop-filter: blur(24px);
}

.logo {
  width: clamp(5.5rem, 18vw, 8rem);
  height: auto;
  margin-bottom: 1.75rem;
  filter: drop-shadow(0 1rem 1.8rem rgba(71, 43, 87, 0.22));
}

h1 {
  margin: 0;
  font-size: 3.5rem;
  font-weight: 400;
  line-height: 0.9;
  letter-spacing: -0.04em;
}

.lede,
.summary {
  max-width: 37rem;
  margin-inline: auto;
}

.lede {
  margin-block: 1.4rem 0;
  font-size: clamp(1.35rem, 3vw, 2rem);
  line-height: 1.25;
}

.summary {
  margin-block: 1rem 0;
  color: var(--muted);
  font-size: 1.06rem;
  line-height: 1.7;
}

.actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}

.button {
  display: inline-flex;
  min-height: 3rem;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.25rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    background-color 160ms ease,
    color 160ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.primary:hover {
  color: var(--brand-dark);
  background: var(--brand-light);
}

.button:focus-visible {
  outline: 0.2rem solid var(--ring);
  outline-offset: 0.2rem;
}

.primary {
  min-width: min(100%, 18rem);
  color: white;
  background: var(--brand-dark);
  box-shadow: 0 0.25rem 0.6rem rgba(71, 43, 87, 0.18);
}

.secondary-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  color: var(--muted);
  font-size: 0.95rem;
  margin-top: 1rem;
}

.secondary-links a {
  text-decoration-color: rgba(71, 43, 87, 0.28);
  text-underline-offset: 0.25em;
  transition:
    color 160ms ease,
    text-decoration-color 160ms ease;
}

.secondary-links a:hover {
  color: var(--brand-dark);
  text-decoration-color: currentColor;
}

.legal {
  max-width: 46rem;
  margin-inline: auto;
  padding: 0 clamp(1rem, 6vw, 5rem) 2.5rem;
  color: var(--muted);
  font-size: 0.72rem;
  line-height: 1.45;
  text-align: center;
}

.legal p {
  margin-block: 0.45rem;
}

@media (max-width: 36rem) {
  .hero {
    border-radius: 1.4rem;
  }

  .button {
    width: 100%;
  }

  .secondary-links {
    flex-direction: column;
  }
}
