:root {
  --cream: #fff8f3;
  --paper: #ffffff;
  --plum: #28172b;
  --plum-2: #43263f;
  --coral: #ff7065;
  --coral-dark: #d74f48;
  --lavender: #efe5fb;
  --mint: #e4f6ee;
  --text: #352938;
  --muted: #756b75;
  --line: #eadfda;
  --shadow: 0 18px 45px rgba(51, 28, 48, 0.10);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background:
    radial-gradient(circle at 90% 0%, rgba(255,112,101,.13), transparent 28rem),
    radial-gradient(circle at 4% 100%, rgba(239,229,251,.7), transparent 25rem),
    var(--cream);
  color: var(--text);
  font-family: Inter, ui-rounded, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.65;
}
a { color: var(--coral-dark); }
a:hover { text-decoration-thickness: 2px; }
.shell { width: min(1120px, calc(100% - 32px)); margin: 0 auto; }
header {
  padding: 22px 0;
  border-bottom: 1px solid rgba(234,223,218,.8);
  backdrop-filter: blur(10px);
}
.nav { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: inline-flex; align-items: center; gap: 12px; color: var(--plum); text-decoration: none; font-weight: 900; font-size: 20px; }
.brand img { width: 44px; height: 44px; border-radius: 14px; box-shadow: 0 7px 20px rgba(40,23,43,.18); }
.navlinks { display: flex; flex-wrap: wrap; gap: 18px; font-size: 14px; font-weight: 800; }
.navlinks a { color: var(--plum-2); text-decoration: none; }
.hero { padding: 82px 0 64px; display: grid; grid-template-columns: 1.2fr .8fr; align-items: center; gap: 48px; }
.eyebrow { color: var(--coral-dark); font-size: 13px; font-weight: 900; letter-spacing: .18em; text-transform: uppercase; }
h1 { color: var(--plum); font-size: clamp(44px, 7vw, 78px); line-height: 1.02; letter-spacing: -.045em; margin: 14px 0 22px; }
.lede { font-size: clamp(19px, 2.2vw, 24px); color: var(--muted); max-width: 720px; }
.actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 32px; }
.button { display: inline-flex; align-items: center; justify-content: center; min-height: 52px; padding: 0 22px; border-radius: 16px; font-weight: 900; text-decoration: none; }
.button.primary { background: var(--coral); color: var(--plum); box-shadow: 0 12px 28px rgba(255,112,101,.25); }
.button.secondary { border: 1px solid var(--line); background: rgba(255,255,255,.72); color: var(--plum); }
.hero-card { background: var(--plum); color: white; padding: 34px; border-radius: 32px; box-shadow: var(--shadow); position: relative; overflow: hidden; }
.hero-card::after { content: ""; position: absolute; width: 280px; height: 280px; border-radius: 50%; background: linear-gradient(135deg, rgba(255,112,101,.82), rgba(239,229,251,.08)); right: -110px; top: -110px; }
.hero-card > * { position: relative; z-index: 1; }
.hero-card h2 { font-size: 30px; line-height: 1.12; margin: 12px 0; color: white; }
.hero-card p { color: rgba(255,255,255,.75); }
.pills { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 24px; }
.pill { background: rgba(255,255,255,.11); border: 1px solid rgba(255,255,255,.13); padding: 9px 12px; border-radius: 999px; font-size: 13px; font-weight: 800; }
.section { padding: 64px 0; }
.section h2, main h1 { color: var(--plum); }
.section-title { font-size: clamp(32px, 5vw, 50px); line-height: 1.08; letter-spacing: -.035em; margin: 0 0 14px; }
.section-intro { max-width: 760px; color: var(--muted); font-size: 18px; }
.grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 30px; }
.card { background: rgba(255,255,255,.83); border: 1px solid var(--line); border-radius: 24px; padding: 24px; box-shadow: 0 10px 30px rgba(51,28,48,.05); }
.card h3 { color: var(--plum); font-size: 21px; margin: 6px 0 8px; }
.card p { color: var(--muted); margin: 0; }
.notice { background: var(--lavender); border-color: #dfd0ee; }
.mint { background: var(--mint); border-color: #cce9dc; }
main.page { width: min(820px, calc(100% - 32px)); margin: 0 auto; padding: 64px 0 90px; }
main.page h1 { font-size: clamp(40px, 7vw, 62px); line-height: 1.05; letter-spacing: -.04em; margin: 14px 0 8px; }
main.page h2 { color: var(--plum); margin: 38px 0 8px; font-size: 24px; line-height: 1.25; }
main.page p, main.page li { font-size: 17px; }
.updated { color: var(--muted); }
.back { display: inline-block; margin-top: 34px; font-weight: 900; }
footer { border-top: 1px solid var(--line); padding: 28px 0 48px; color: var(--muted); font-size: 14px; }
.footer-row { display: flex; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.footer-links { display: flex; gap: 14px; flex-wrap: wrap; }
.footer-links a { color: var(--muted); }
.status { display: inline-flex; gap: 8px; align-items: center; font-weight: 900; color: #287457; background: var(--mint); padding: 8px 12px; border-radius: 999px; }
@media (max-width: 800px) {
  .nav { align-items: flex-start; }
  .navlinks { justify-content: flex-end; }
  .hero { grid-template-columns: 1fr; padding-top: 56px; }
  .grid { grid-template-columns: 1fr; }
}
@media (max-width: 540px) {
  .navlinks { display: none; }
  .hero-card { padding: 26px; }
  h1 { font-size: 48px; }
}
