:root {
  --ink: #26124f;
  --muted: #665f75;
  --pink: #ff4f91;
  --pink-soft: #fff0f7;
  --purple: #6d42d8;
  --line: #eadff5;
  --paper: #ffffff;
  --background: #fff9fc;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--background);
}

* { box-sizing: border-box; }

body { margin: 0; line-height: 1.65; }

a { color: var(--purple); }
a:hover { color: var(--pink); }

.topbar {
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, .94);
}

.topbar-inner,
.page,
.footer-inner {
  width: min(920px, calc(100% - 36px));
  margin-inline: auto;
}

.topbar-inner {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  color: var(--ink);
  text-decoration: none;
  font-size: 1.15rem;
  font-weight: 900;
}

.nav { display: flex; flex-wrap: wrap; gap: 18px; }
.nav a { font-weight: 700; text-decoration: none; }

.page { padding-block: 64px 80px; }

.hero {
  padding: clamp(28px, 6vw, 56px);
  border: 1px solid #ffc4dc;
  border-radius: 28px;
  background: linear-gradient(135deg, #fff 0%, var(--pink-soft) 100%);
  box-shadow: 0 18px 55px rgba(61, 28, 104, .09);
}

.eyebrow {
  margin: 0 0 8px;
  color: var(--pink);
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

h1, h2, h3 {
  line-height: 1.18;
  overflow-wrap: anywhere;
}
h1 { max-width: 720px; margin: 0; font-size: clamp(2.15rem, 7vw, 4.25rem); }
h2 { margin-top: 0; font-size: clamp(1.35rem, 3vw, 1.85rem); }
h3 { margin-bottom: 6px; font-size: 1.05rem; }

.lede { max-width: 720px; margin: 18px 0 0; color: var(--muted); font-size: 1.08rem; }
.updated { margin-top: 18px; color: var(--muted); font-size: .92rem; }

.grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 28px;
}

.card,
.section {
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--paper);
  box-shadow: 0 10px 30px rgba(61, 28, 104, .055);
}

.card { padding: 24px; }
.card p { margin-bottom: 0; color: var(--muted); }
.icon { font-size: 1.7rem; }

.section { margin-top: 22px; padding: clamp(24px, 5vw, 38px); }
.section p:last-child, .section ul:last-child { margin-bottom: 0; }
.section p, .section li { color: var(--muted); }
.section li + li { margin-top: 7px; }

.notice {
  margin-top: 28px;
  padding: 22px;
  border-left: 5px solid var(--pink);
  border-radius: 14px;
  background: var(--pink-soft);
}

.notice strong { display: block; margin-bottom: 4px; }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 20px;
  padding: 13px 20px;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(135deg, var(--pink), var(--purple));
  font-weight: 850;
  text-decoration: none;
  box-shadow: 0 10px 26px rgba(109, 66, 216, .22);
}

.button:hover { color: #fff; transform: translateY(-1px); }

footer { border-top: 1px solid var(--line); background: #fff; }
.footer-inner { padding-block: 30px; color: var(--muted); text-align: center; }
.footer-inner p { margin: 5px 0; }
.footer-links { display: flex; justify-content: center; flex-wrap: wrap; gap: 16px; }

@media (max-width: 660px) {
  .topbar-inner { padding-block: 16px; align-items: flex-start; flex-direction: column; }
  .grid { grid-template-columns: 1fr; }
  .page { padding-block: 34px 56px; }
}
