:root {
  --ink: #250606;
  --plum: #b40f1a;
  --rose: #e01e2d;
  --blush: #fdecef;
  --cream: #fff8f7;
  --sage: #708a82;
  --gold: #c89455;
  --white: #ffffff;
  --muted: #6f6670;
  --border: rgba(43, 25, 48, 0.10);
  --shadow: 0 18px 55px rgba(43, 25, 48, 0.09);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 94% 2%, rgba(215, 109, 134, .20), transparent 31rem),
    radial-gradient(circle at 2% 58%, rgba(95, 49, 95, .09), transparent 34rem),
    var(--cream);
  font-family: ui-rounded, "SF Pro Rounded", "Avenir Next", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.62;
}

a { color: var(--plum); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--rose); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  border-bottom: 1px solid var(--border);
  background: rgba(255, 248, 244, .88);
  backdrop-filter: blur(18px);
}

.nav {
  width: min(1080px, calc(100% - 36px));
  min-height: 72px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand { display: inline-flex; align-items: center; gap: 11px; text-decoration: none; color: var(--ink); }
.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  color: #fff;
  font-size: 20px;
  background: linear-gradient(135deg, var(--plum), var(--rose));
  box-shadow: 0 8px 22px rgba(95, 49, 95, .22);
}
.brand-name { display: grid; line-height: 1; }
.brand-name strong { font-size: 20px; }
.brand-name span { margin-top: 5px; color: var(--rose); font-size: 8px; font-weight: 800; letter-spacing: .23em; }

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

main { width: min(960px, calc(100% - 36px)); margin: 0 auto; }
.hero { padding: 92px 0 54px; text-align: center; }
.eyebrow { color: var(--rose); font-size: 12px; font-weight: 850; letter-spacing: .2em; text-transform: uppercase; }
h1, h2, h3 { line-height: 1.15; letter-spacing: -.02em; }
h1 { max-width: 820px; margin: 16px auto 20px; font-size: clamp(42px, 8vw, 76px); }
h2 { margin-top: 46px; font-size: clamp(27px, 4vw, 38px); }
h3 { margin-top: 28px; font-size: 20px; }
.lede { max-width: 760px; margin: 0 auto; color: var(--muted); font-size: clamp(17px, 2.5vw, 21px); }

.actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; margin-top: 30px; }
.button {
  min-height: 50px;
  padding: 0 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  color: #fff;
  background: var(--plum);
  font-weight: 750;
  text-decoration: none;
}
.button:hover { color: #fff; background: #8f0b14; }
.button.secondary { color: var(--plum); background: var(--blush); }
.button.secondary:hover { color: var(--plum); background: #f9d9dd; }

.grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; margin: 28px 0; }
.card {
  padding: 28px;
  border: 1px solid var(--border);
  border-radius: 28px;
  background: rgba(255, 255, 255, .88);
  box-shadow: var(--shadow);
}
.card h2, .card h3 { margin-top: 0; }
.card p:last-child { margin-bottom: 0; }

.notice {
  margin: 24px 0;
  padding: 18px 20px;
  border-left: 5px solid var(--gold);
  border-radius: 12px 20px 20px 12px;
  background: rgba(200, 148, 85, .11);
}
.notice.important { border-left-color: var(--rose); background: rgba(215, 109, 134, .10); }
.notice.safe { border-left-color: var(--sage); background: rgba(112, 138, 130, .10); }

.document { max-width: 820px; padding: 56px 0 88px; }
.document > h1 { margin: 0 0 10px; text-align: left; font-size: clamp(38px, 6vw, 58px); }
.meta { color: var(--muted); font-size: 14px; }
.document p, .document li { color: #4f4650; }
.document li + li { margin-top: 8px; }
.document section { scroll-margin-top: 100px; }

.policy-nav {
  margin: 26px 0 38px;
  padding: 20px 24px;
  border: 1px solid var(--border);
  border-radius: 20px;
  background: rgba(255,255,255,.74);
}
.policy-nav strong { display: block; margin-bottom: 8px; }
.policy-nav a { display: inline-block; margin: 5px 14px 5px 0; }

.price { font-size: 42px; font-weight: 850; color: var(--plum); }
.small { color: var(--muted); font-size: 13px; }

footer {
  border-top: 1px solid var(--border);
  padding: 34px 18px 48px;
  color: var(--muted);
  text-align: center;
  font-size: 13px;
}

@media (max-width: 720px) {
  .nav { min-height: 66px; }
  .nav-links { gap: 11px; font-size: 12px; }
  .brand-name { display: none; }
  .hero { padding-top: 64px; }
  .grid { grid-template-columns: 1fr; }
  .card { padding: 22px; }
}
