:root {
  --bg: #f2f2f0;
  --card: #ffffff;
  --text: #0a0a0a;
  --muted: #6b6b6b;
  --accent: #8f86e8;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
body {
  font-family: -apple-system, "Segoe UI", Arial, "Noto Sans Hebrew", sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
}
.wrap { max-width: 760px; margin: 0 auto; padding: 24px 20px 60px; }
header { display: flex; align-items: center; gap: 12px; padding: 18px 0 30px; }
header .orb {
  width: 40px; height: 40px; border-radius: 50%;
  background: radial-gradient(circle at 35% 65%, #ffffff, #afa8f0 55%, #8f86e8);
}
header .name { font-size: 22px; font-weight: 900; letter-spacing: 1px; }
h1 { font-size: 34px; font-weight: 900; margin-bottom: 6px; }
.updated { color: var(--muted); font-size: 14px; margin-bottom: 28px; }
h2 { font-size: 20px; font-weight: 800; margin: 28px 0 8px; }
p, li { color: #333; font-size: 16px; }
.card {
  background: var(--card); border-radius: 18px; padding: 28px;
}
a { color: var(--accent); font-weight: 600; text-decoration: none; }
a:hover { text-decoration: underline; }
footer { margin-top: 36px; color: var(--muted); font-size: 13px; text-align: center; }
.btn {
  display: inline-block; background: var(--text); color: #fff !important;
  border-radius: 999px; padding: 14px 34px; font-weight: 800; margin-top: 12px;
}
nav.links { margin-top: 10px; display: flex; gap: 18px; justify-content: center; }
