
:root{
  --cream:#FFF8F6;
  --rose:#E9B4B4;
  --mauve:#D6A4A4;
  --charcoal:#2D2D2D;
  --beige:#F3E9E7;
}
* { box-sizing: border-box; }
html, body { height: 100%; }
body {
  margin: 0;
  background: var(--cream);
  color: var(--charcoal);
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji";
  display: grid;
  place-items: center;
  padding: 24px;
}
.card {
  width: min(780px, 94vw);
  background: white;
  border-radius: 28px;
  padding: clamp(24px, 4vw, 44px);
  box-shadow: 0 12px 40px rgba(0,0,0,.07);
  transform: translateY(10px);
  opacity: 0;
  animation: fadeIn .9s ease-out forwards;
}
@keyframes fadeIn { to { transform: translateY(0); opacity: 1; } }
.brand { display:flex; align-items:center; justify-content:center; gap: 10px; margin-bottom: 10px; }
.brand span { font-weight: 700; letter-spacing: .1em; color: var(--rose); text-transform: uppercase; font-size: .95rem; }
h1 { font-size: clamp(2rem, 4vw, 2.8rem); margin: .25em 0 .35em; color: var(--mauve); }
p  { font-size: clamp(1rem, 2.3vw, 1.125rem); line-height: 1.65; color: #3a3a3a; margin: 0 auto .9rem; max-width: 60ch; }
.pill { display: inline-block; padding: .55rem 1rem; border-radius: 999px; background: var(--beige); color: #565656; font-size: .95rem; margin-top: .3rem; }
.hr  { height: 1px; width: 100%; background: linear-gradient(90deg, transparent, #f0e7e6, transparent); margin: 1.25rem 0; }
.footer { font-size: .92rem; color: #8b8b8b; margin-top: .35rem; }
.links { display:flex; gap: 12px; justify-content:center; flex-wrap: wrap; margin-top:.5rem; }
a.button { text-decoration: none; display:inline-block; border-radius: 999px; padding: .65rem 1.1rem; background: var(--rose); color: white; font-weight: 600; transition: transform .08s ease, filter .2s ease; }
a.button:hover { transform: translateY(-1px); filter: brightness(1.03); }
.visually-hidden { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }
