:root {
  --bg: #12101a;
  --card: #1c1828;
  --accent: #e75480;
  --accent-hi: #ff7ba5;
  --accent-soft: #e7548033;
  --text: #f2eef7;
  --muted: #9a92ad;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: -apple-system, "Segoe UI", system-ui, sans-serif;
  background: radial-gradient(900px 600px at 50% -10%, #241d38, var(--bg));
  background-attachment: fixed;
  color: var(--text);
  line-height: 1.7;
}
a { color: var(--accent-hi); text-decoration: none; }
a:hover { text-decoration: underline; }
.wrap { max-width: 760px; margin: 0 auto; padding: 0 22px; }

nav {
  display: flex; justify-content: space-between; align-items: center;
  padding: 20px 22px; max-width: 1060px; margin: 0 auto;
}
.logo { font-size: 1.3rem; font-weight: 700; color: var(--text); }
.logo span { color: var(--accent); }
.btn {
  display: inline-block; background: var(--accent); color: #fff !important;
  padding: 11px 22px; border-radius: 12px; font-weight: 600;
  transition: transform 0.15s ease;
}
.btn:hover { transform: translateY(-2px); text-decoration: none; }

article { padding: 30px 0 20px; }
.eyebrow { color: var(--accent-hi); font-size: 0.8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.6px; margin-bottom: 10px; }
h1 { font-size: clamp(1.8rem, 5vw, 2.6rem); line-height: 1.2; font-weight: 800; margin-bottom: 16px; }
.lead { font-size: 1.15rem; color: var(--muted); margin-bottom: 28px; }
article h2 { font-size: 1.4rem; font-weight: 700; margin: 34px 0 12px; }
article h3 { font-size: 1.1rem; font-weight: 700; margin: 24px 0 8px; }
article p { margin-bottom: 16px; color: #e4dff0; }
article ul, article ol { margin: 0 0 18px 22px; color: #e4dff0; }
article li { margin-bottom: 8px; }
article strong { color: var(--text); }

.callout {
  background: var(--card); border: 1px solid #ffffff14; border-radius: 16px;
  padding: 24px; margin: 30px 0; text-align: center;
}
.callout h3 { margin-top: 0; }
.callout p { color: var(--muted); margin-bottom: 16px; }

.related { border-top: 1px solid #ffffff14; margin-top: 40px; padding-top: 24px; }
.related h2 { margin-top: 0; }
.related a { display: block; margin-bottom: 10px; }

footer {
  border-top: 1px solid #ffffff12; padding: 26px 22px; color: var(--muted);
  font-size: 0.85rem; text-align: center; margin-top: 30px;
}
footer .links a { color: var(--muted); margin: 0 9px; }
table { width: 100%; border-collapse: collapse; margin: 18px 0; font-size: 0.95rem; }
th, td { border: 1px solid #ffffff1f; padding: 10px 12px; text-align: left; }
th { background: #ffffff0d; color: var(--text); }
td { color: #e4dff0; }
