:root {
  color-scheme: light;
  --bg: #fff8ef;
  --panel: #ffffff;
  --ink: #39201d;
  --muted: #765a55;
  --accent: #f58fa3;
  --accent-ink: #5a282f;
  --line: #efd7cc;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(245, 143, 163, 0.35), transparent 30rem),
    linear-gradient(135deg, #fff8ef 0%, #ffe7df 48%, #e6f5ef 100%);
}

a {
  color: var(--accent-ink);
  font-weight: 700;
}

.page {
  width: min(760px, calc(100% - 32px));
  margin: 0 auto;
  padding: 56px 0;
}

.hero,
.panel,
.policy section {
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 24px;
  box-shadow: 0 18px 40px rgba(90, 40, 47, 0.08);
}

.hero {
  margin-bottom: 18px;
}

.policy section {
  margin-top: 16px;
}

.eyebrow {
  margin: 0 0 8px;
  color: var(--accent-ink);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2 {
  margin: 0;
  line-height: 1.1;
}

h1 {
  font-size: clamp(2rem, 7vw, 4rem);
  letter-spacing: 0;
}

h2 {
  font-size: 1.25rem;
}

p {
  line-height: 1.65;
}

.lead {
  color: var(--muted);
  font-size: 1.12rem;
  margin-bottom: 0;
}

.muted {
  color: var(--muted);
}

.button {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 999px;
  color: white;
  background: var(--accent-ink);
  text-decoration: none;
}
