:root {
  color-scheme: light;
  --ink: #201a2a;
  --muted: #625b70;
  --paper: #fffaf7;
  --surface: #ffffff;
  --line: #e8dfeb;
  --plum: #4e365f;
  --coral: #d76062;
  --rose: #fae6e1;
  --lavender: #eee9f5;
}

* { box-sizing: border-box; }

html { background: var(--paper); }

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 88% -12%, #f6e4df 0 18%, transparent 42%),
    radial-gradient(circle at 6% 0, #eee7f6 0 13%, transparent 35%),
    var(--paper);
  font-family: ui-rounded, "Avenir Next", Avenir, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--plum); text-underline-offset: 0.16em; }
a:hover { color: var(--coral); }

.shell { width: min(100% - 40px, 880px); margin: 0 auto; }

header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 24px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-size: 1.1rem;
  font-weight: 750;
  letter-spacing: -0.025em;
  text-decoration: none;
}

.mark {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  color: #fff;
  background: linear-gradient(135deg, var(--coral), #8c669d);
  border-radius: 12px;
  box-shadow: 0 8px 20px #8e628a2c;
  font-size: 1rem;
}

nav { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 16px; }
nav a { color: var(--muted); font-size: 0.9rem; font-weight: 650; text-decoration: none; }
nav a:hover, nav a[aria-current="page"] { color: var(--plum); }

main { padding: clamp(28px, 6vw, 74px) 0 72px; }

.hero {
  position: relative;
  overflow: hidden;
  padding: clamp(34px, 7vw, 76px);
  background: linear-gradient(135deg, #fff 0%, #fff8f4 56%, #f1ecf8 100%);
  border: 1px solid #e8dfe9;
  border-radius: 30px;
  box-shadow: 0 24px 70px #3d294310;
}

.hero::after {
  position: absolute;
  right: -46px;
  bottom: -66px;
  width: 220px;
  height: 220px;
  border: 30px solid #eadff0;
  border-radius: 50%;
  content: "";
  opacity: 0.72;
}

.eyebrow {
  margin: 0 0 13px;
  color: var(--coral);
  font-size: 0.77rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1, h2, h3 { color: var(--ink); letter-spacing: -0.035em; line-height: 1.13; }
h1 { max-width: 720px; margin: 0; font-size: clamp(2.3rem, 6.6vw, 4.45rem); }
h2 { margin: 46px 0 12px; font-size: clamp(1.45rem, 3.4vw, 2rem); }
h3 { margin: 0 0 8px; font-size: 1.08rem; }
p { max-width: 720px; margin: 0 0 17px; }
.lede { position: relative; z-index: 1; max-width: 630px; margin-top: 21px; color: var(--muted); font-size: clamp(1.06rem, 2.4vw, 1.25rem); }

.actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 18px;
  border-radius: 999px;
  color: #fff;
  background: var(--plum);
  box-shadow: 0 10px 23px #4e365f2a;
  font-weight: 750;
  text-decoration: none;
}
.button:hover { color: #fff; background: #352440; }
.button.secondary { color: var(--plum); background: #fff; box-shadow: inset 0 0 0 1px #dcd0e2; }
.button.secondary:hover { color: var(--plum); background: #fbf8fc; }

.facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 28px 0 0;
}
.fact { padding: 16px; background: #ffffffa8; border: 1px solid #e7dfe9; border-radius: 18px; }
.fact strong { display: block; font-size: 0.98rem; }
.fact span { display: block; margin-top: 2px; color: var(--muted); font-size: 0.86rem; }

.content { max-width: 760px; }
.content > p, .content > ul { color: #4e4756; }
ul { max-width: 720px; padding-left: 22px; }
li { margin: 8px 0; }

.notice {
  margin-top: 30px;
  padding: 18px 20px;
  border-left: 4px solid var(--coral);
  border-radius: 0 16px 16px 0;
  background: var(--rose);
  color: #4f3b43;
}

.grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; margin-top: 30px; }
.card { padding: 22px; background: var(--surface); border: 1px solid var(--line); border-radius: 19px; }
.card p { margin: 0; color: var(--muted); font-size: 0.94rem; }

.updated { color: var(--muted); font-size: 0.9rem; }
.small { color: var(--muted); font-size: 0.92rem; }

footer { padding: 28px 0 42px; border-top: 1px solid var(--line); color: var(--muted); font-size: 0.86rem; }
.footer-row { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 13px; }
.footer-links { display: flex; flex-wrap: wrap; gap: 14px; }

@media (max-width: 600px) {
  .shell { width: min(100% - 30px, 880px); }
  header { align-items: flex-start; flex-direction: column; padding: 18px 0; }
  nav { justify-content: flex-start; gap: 14px; }
  .hero { padding: 30px 22px; border-radius: 24px; }
  .facts, .grid { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; }
}
