:root {
  color-scheme: light;
  --paper: #fffafc;
  --ink: #34262d;
  --muted: #786a72;
  --accent: #d86b91;
  --accent-dark: #b94f75;
  --accent-soft: #f8dce6;
  --focus: #9a3158;
}

* {
  box-sizing: border-box;
}

body {
  min-width: 320px;
  min-height: 100vh;
  margin: 0;
  background:
    radial-gradient(circle at 90% 8%, var(--accent-soft) 0, transparent 28rem),
    var(--paper);
  color: var(--ink);
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 18px;
  line-height: 1.65;
}

.intro {
  width: min(100% - 3rem, 42rem);
  margin: 0 auto;
  padding: clamp(5.5rem, 18vh, 11rem) 0 4rem;
}

.eyebrow,
.sign-off {
  margin: 0;
  color: var(--muted);
  font-family: ui-monospace, "SFMono-Regular", Menlo, Consolas, monospace;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
}

.eyebrow {
  color: var(--accent-dark);
  font-weight: 700;
  text-transform: uppercase;
}

h1 {
  max-width: 12ch;
  margin: 0.45rem 0 1.65rem;
  font-size: clamp(2.8rem, 9vw, 5.75rem);
  font-weight: 650;
  letter-spacing: -0.065em;
  line-height: 0.96;
}

.lead {
  max-width: 34rem;
  margin: 0;
  font-size: clamp(1.15rem, 2.6vw, 1.4rem);
}

.community-link {
  display: inline-block;
  margin-top: 2.5rem;
  padding: 0.9rem 1.2rem;
  border: 2px solid var(--accent);
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-weight: 700;
  line-height: 1.35;
  text-decoration: none;
  box-shadow: 0 10px 24px rgba(216, 107, 145, 0.2);
  transition: background-color 160ms ease, border-color 160ms ease, color 160ms ease, transform 160ms ease;
}

.community-link:hover {
  background: #fff;
  border-color: var(--accent-dark);
  color: var(--accent-dark);
  transform: translateY(-1px);
}

.contact {
  margin: 2.25rem 0 0;
  color: var(--muted);
}

.contact a {
  color: var(--ink);
  text-decoration-color: var(--accent);
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.18em;
}

.sign-off {
  margin-top: 6rem;
}

a:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 4px;
}

@media (max-width: 480px) {
  body {
    font-size: 17px;
  }

  .intro {
    width: min(100% - 2.25rem, 42rem);
    padding-top: 4.5rem;
  }

  .sign-off {
    margin-top: 4rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    transition-duration: 0.01ms !important;
  }
}
