:root {
  --bg: #150f28;
  --panel: #1f1638;
  --text: #ece8f7;
  --muted: #a99fc6;
  --accent: #b39bff;
  --line: #3a2d63;
  color-scheme: dark;
}
* { box-sizing: border-box; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font: 17px/1.6 -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}
main { max-width: 720px; margin: 0 auto; padding: 24px 20px 48px; }
header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 32px; }
.brand { font-weight: 800; font-size: 20px; color: var(--text); text-decoration: none; letter-spacing: .5px; }
a { color: var(--accent); }
h1 { font-size: 34px; line-height: 1.15; margin: 0 0 6px; }
h1 span, .muted span { color: var(--muted); font-weight: 400; }
h2 { margin: 40px 0 8px; padding-top: 16px; border-top: 1px solid var(--line); }
h3 { margin: 24px 0 4px; font-size: 18px; }
.muted { color: var(--muted); margin-top: 0; }
.hero { display: flex; gap: 20px; align-items: center; }
.hero img { border-radius: 22px; flex: none; }
.contact { margin: 28px 0 8px; padding: 16px 18px; background: var(--panel); border: 1px solid var(--line); border-radius: 14px; }
dt { font-weight: 700; margin-top: 16px; }
dd { margin: 2px 0 0; color: var(--muted); }
ul { padding-left: 22px; }
footer { margin-top: 48px; padding-top: 16px; border-top: 1px solid var(--line); color: var(--muted); font-size: 15px; }
