:root{
  --bg:#ffffff;
  --text:#222;
  --muted:#6b6b6b;
  --card:#faf7f8;
  --border:#ece7e9;
  --accent:#ffc9d1;
  --accent2:#b8a6ff;
  --shadow: 0 10px 25px rgba(0,0,0,.06);
  --radius: 16px;
  --max: 1050px;
}
*{box-sizing:border-box}
html,body{margin:0;padding:0}
body{
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background:var(--bg);
  color:var(--text);
  line-height:1.65;
}
a{color:inherit;text-decoration:none}
a:hover{text-decoration:underline}
.wrap{max-width:var(--max);margin:0 auto;padding:24px}
.skip{position:absolute;left:-9999px;top:auto;width:1px;height:1px;overflow:hidden}
.skip:focus{left:16px;top:16px;width:auto;height:auto;background:var(--accent);padding:10px 12px;border-radius:10px}

.site-header{
  position:sticky; top:0; z-index:10;
  background:rgba(255,255,255,.92);
  backdrop-filter: blur(10px);
  border-bottom:1px solid var(--border);
}
.header-row{display:flex;align-items:center;justify-content:space-between;gap:18px}
.brand .logo{font-size:28px;font-weight:800;letter-spacing:.5px}
.tagline{font-size:12.5px;color:var(--muted);margin-top:2px}
.nav{display:flex;gap:14px;flex-wrap:wrap}
.nav a{padding:10px 12px;border-radius:999px;border:1px solid transparent}
.nav a:hover{border-color:var(--border);background:#fff}

.hero{
  background: linear-gradient(135deg, var(--accent), #fff 45%, #fff 55%, var(--accent2));
  border:1px solid var(--border);
  border-radius:var(--radius);
  box-shadow:var(--shadow);
  padding:28px;
}
.hero h1{margin:0 0 8px 0;font-size:38px;line-height:1.12}
.hero p{margin:0;color:#2a2a2a;max-width:70ch}
.hero .cta{margin-top:18px;display:flex;gap:10px;flex-wrap:wrap}
.btn{
  display:inline-block;padding:12px 16px;border-radius:999px;
  border:1px solid var(--border);background:#fff;
}
.btn.primary{background:#111;color:#fff;border-color:#111}
.btn:hover{text-decoration:none;transform: translateY(-1px)}
.grid{display:grid;gap:16px;grid-template-columns: repeat(12, 1fr); margin-top:18px}
.card{
  grid-column: span 4;
  background:var(--card);
  border:1px solid var(--border);
  border-radius:var(--radius);
  padding:18px;
  box-shadow:var(--shadow);
}
.card h3{margin:0 0 6px 0}
.card p{margin:0;color:var(--muted)}
@media (max-width: 900px){
  .card{grid-column: span 6}
  .header-row{flex-direction:column;align-items:flex-start}
}
@media (max-width: 560px){
  .card{grid-column: span 12}
  .hero h1{font-size:32px}
}

.article{max-width: 78ch}
.article h1{font-size:36px;line-height:1.18;margin:10px 0 8px}
.article .meta{color:var(--muted);font-size:13px;margin-bottom:16px}
.article h2{margin-top:24px}
blockquote{
  margin:18px 0; padding:14px 16px;
  border-left:6px solid var(--accent);
  background:#fff;border:1px solid var(--border);
  border-radius:14px;
}
hr{border:none;border-top:1px solid var(--border);margin:26px 0}
.muted{color:var(--muted)}
.kicker{display:inline-block;padding:6px 10px;border-radius:999px;background:#fff;border:1px solid var(--border);font-size:12px;color:#333}
.list{margin:10px 0 0 18px}
.site-footer{border-top:1px solid var(--border);margin-top:30px;background:#fff}
.footer-grid{display:flex;justify-content:space-between;gap:18px;flex-wrap:wrap}
.footer-links{display:flex;gap:12px;flex-wrap:wrap}
.fineprint{display:flex;justify-content:space-between;gap:12px;flex-wrap:wrap;padding-top:0}