:root {
  color-scheme: light;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #fffaf7;
  color: #241b28;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  min-height: 100vh;
  display: grid;
  place-items: center;
  background: radial-gradient(circle at top left, #f2d8ff 0, transparent 42%), #fffaf7;
}

main {
  width: min(46rem, calc(100% - 3rem));
  padding: 4rem 0;
}

.eyebrow {
  margin: 0 0 1rem;
  color: #71368a;
  font-weight: 750;
  letter-spacing: .16em;
  text-transform: uppercase;
}

h1 {
  max-width: 10ch;
  margin: 0;
  font-size: clamp(3rem, 10vw, 6.5rem);
  line-height: .94;
  letter-spacing: -.055em;
}

.intro {
  max-width: 34rem;
  margin: 2rem 0 4rem;
  font-size: clamp(1.2rem, 3vw, 1.55rem);
  line-height: 1.55;
}

section {
  max-width: 32rem;
  border-top: 1px solid #d9c8dc;
  padding-top: 1.5rem;
}

h2 { margin: 0 0 .5rem; }
section p { margin: 0; line-height: 1.65; color: #55485a; }
