:root {
  --background: #fff9f7;
  --surface: #ffffff;
  --text: #30232b;
  --muted: #83747d;
  --rose: #ad4968;
  --rose-dark: #7b315f;
  --blush: #f4d5de;
  --border: #eadde2;
  --soft: #fdf0f3;
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--background);
}
* { box-sizing: border-box; }
body { margin: 0; background: var(--background); line-height: 1.65; }
a { color: var(--rose-dark); }
header { position: sticky; top: 0; z-index: 2; display: flex; gap: 28px; align-items: center; justify-content: space-between; padding: 18px clamp(20px, 5vw, 64px); background: rgba(255,249,247,.96); border-bottom: 1px solid var(--border); backdrop-filter: blur(12px); }
.brand { color: var(--rose); font-size: 1.35rem; font-weight: 900; text-decoration: none; }
nav { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 10px 18px; }
nav a { font-size: .86rem; font-weight: 750; text-decoration: none; }
main { width: min(820px, calc(100% - 40px)); margin: 56px auto 80px; }
.eyebrow { margin: 0; color: var(--rose); font-weight: 900; letter-spacing: .08em; text-transform: uppercase; }
h1 { margin: 6px 0 4px; font-size: clamp(2.5rem, 8vw, 4.8rem); line-height: 1; letter-spacing: -.055em; }
.effective { margin: 14px 0 38px; color: var(--muted); font-size: .9rem; }
.intro { max-width: 650px; color: var(--muted); font-size: 1.15rem; }
section { margin: 34px 0; padding: 26px; background: var(--surface); border: 1px solid var(--border); border-radius: 22px; }
h2 { margin: 0 0 12px; font-size: 1.25rem; line-height: 1.3; }
p { margin: 9px 0; }
li { margin: 8px 0; }
.cards { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 14px; margin: 34px 0; }
.card { display: flex; align-items: center; justify-content: space-between; min-height: 100px; padding: 22px; color: var(--text); background: var(--surface); border: 1px solid var(--border); border-radius: 20px; font-weight: 900; text-decoration: none; transition: transform .15s ease, border-color .15s ease; }
.card:hover, .card:focus-visible { transform: translateY(-2px); border-color: var(--rose); }
footer { padding: 32px 20px 48px; color: var(--muted); text-align: center; border-top: 1px solid var(--border); font-size: .82rem; }
@media (max-width: 700px) {
  header { position: static; display: block; }
  nav { justify-content: flex-start; margin-top: 12px; }
  main { margin-top: 36px; }
  .cards { grid-template-columns: 1fr; }
  section { padding: 20px; }
}
