:root {
  color-scheme: dark;
  --bg: #050914;
  --panel: rgba(12, 21, 42, 0.82);
  --line: rgba(130, 178, 255, 0.2);
  --text: #f5f7ff;
  --muted: #aab7d1;
  --blue: #5ca8ff;
  --cyan: #55e4ff;
  --gold: #e6bd65;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-height: 100vh;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 80% 5%, rgba(33, 103, 190, .28), transparent 34rem),
    radial-gradient(circle at 5% 90%, rgba(31, 140, 179, .16), transparent 28rem),
    var(--bg);
  line-height: 1.65;
}
a { color: var(--cyan); text-decoration: none; }
a:hover { text-decoration: underline; }
.shell { width: min(960px, calc(100% - 40px)); margin: 0 auto; }
nav { display: flex; align-items: center; justify-content: space-between; padding: 22px 0; }
.brand { display: flex; align-items: center; gap: 12px; color: var(--text); font-weight: 750; }
.brand img { width: 42px; height: 42px; border-radius: 12px; border: 1px solid var(--line); object-fit: cover; }
.nav-links { display: flex; gap: 22px; font-size: 14px; }
.hero { display: grid; grid-template-columns: 1fr 300px; align-items: center; gap: 56px; padding: 84px 0 96px; }
.eyebrow { color: var(--gold); letter-spacing: .14em; text-transform: uppercase; font-size: 12px; font-weight: 750; }
h1 { font-size: clamp(42px, 7vw, 76px); line-height: 1.02; margin: 14px 0 24px; letter-spacing: -.045em; }
h2 { margin-top: 44px; line-height: 1.2; }
h3 { margin-top: 30px; }
.lead { color: var(--muted); font-size: 19px; max-width: 650px; }
.pill-row { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 28px; }
.pill { padding: 8px 12px; border: 1px solid var(--line); background: rgba(92,168,255,.08); border-radius: 999px; color: #cfe2ff; font-size: 13px; }
.avatar { width: 100%; aspect-ratio: 1; object-fit: cover; border-radius: 34px; border: 1px solid var(--line); box-shadow: 0 28px 90px rgba(0,0,0,.46); }
.card, article { background: var(--panel); border: 1px solid var(--line); border-radius: 24px; padding: clamp(24px, 5vw, 48px); box-shadow: 0 24px 70px rgba(0,0,0,.28); }
article { margin: 38px 0 70px; }
article h1 { font-size: clamp(36px, 6vw, 58px); }
article p, article li { color: #c9d3e7; }
article strong { color: var(--text); }
.notice { border-left: 3px solid var(--blue); padding: 12px 16px; background: rgba(92,168,255,.08); border-radius: 0 12px 12px 0; }
footer { border-top: 1px solid var(--line); padding: 28px 0 42px; color: var(--muted); font-size: 14px; }
.footer-row { display: flex; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.footer-links { display: flex; gap: 20px; }
@media (max-width: 720px) {
  .hero { grid-template-columns: 1fr; padding: 54px 0 70px; }
  .avatar { max-width: 280px; grid-row: 1; }
  .nav-links { gap: 12px; }
}
