    *,*::before,*::after { box-sizing: border-box; }
    html, body { margin: 0; padding: 0; }
    :root {
      --bg: #0a0a0a; --surface: #141414; --border: #2a2a2a;
      --text: #ececec; --text-dim: #888; --text-faint: #555;
      --accent: #00ff88;
    }
    body {
      font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", "Inter", system-ui, sans-serif;
      background: var(--bg); color: var(--text);
      font-size: 17px; line-height: 1.6;
      max-width: 760px; margin: 0 auto;
      padding: 0 22px 80px;
      -webkit-font-smoothing: antialiased;
    }
    a { color: var(--accent); text-decoration: none; transition: color 0.15s ease; }
    a:hover { color: #fff; text-decoration: underline; }
    .masthead {
      display: flex; align-items: baseline; justify-content: space-between;
      padding: 26px 0 14px; border-bottom: 1px solid var(--border); gap: 16px;
    }
    .wordmark { font-size: 38px; font-weight: 900; letter-spacing: -2px; line-height: 0.9; color: var(--text); text-decoration: none; }
    .wordmark .slash, .wordmark .news { color: var(--accent); }
    .meta a { font-family: ui-monospace, "SF Mono", Menlo, monospace; font-size: 11px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--text-dim); font-weight: 700; }
    h1 { font-size: 44px; font-weight: 900; letter-spacing: -1.5px; line-height: 1.05; margin: 36px 0 12px; text-transform: uppercase; color: var(--text); }
    h1 .accent { color: var(--accent); }
    .deck { font-size: 21px; color: var(--text-dim); margin: 0 0 32px; line-height: 1.42; font-weight: 400; border-left: 3px solid var(--accent); padding-left: 18px; }
    h2 { font-size: 23px; font-weight: 800; letter-spacing: -0.3px; margin: 38px 0 10px; color: var(--text); text-transform: uppercase; line-height: 1.2; }
    h2 .accent { color: var(--accent); }
    p { margin: 0 0 16px; }
    .panel { background: var(--surface); border-left: 3px solid var(--accent); padding: 22px 26px; margin: 26px 0; }
    .panel ul { padding-left: 20px; margin: 0; }
    .panel li { margin-bottom: 8px; line-height: 1.5; }
    .panel li strong { color: var(--accent); }
    .updated { color: var(--text-faint); font-size: 13px; margin-top: 32px; font-family: ui-monospace, "SF Mono", Menlo, monospace; letter-spacing: 1px; text-transform: uppercase; }
    address { font-style: normal; color: var(--text-dim); }
    .footer { margin-top: 56px; padding: 32px 0 14px; border-top: 1px solid var(--border); text-align: center; font-family: ui-monospace, "SF Mono", Menlo, monospace; font-size: 11px; letter-spacing: 1.5px; color: var(--text-faint); text-transform: uppercase; line-height: 1.8; }
    .footer a { color: var(--text-dim); }
    .footer .promise { font-family: -apple-system, system-ui, sans-serif; font-size: 22px; font-weight: 800; color: var(--accent); letter-spacing: -0.3px; margin-bottom: 8px; text-transform: none; }
    @media (max-width: 720px) { body { font-size: 16px; padding: 0 16px 50px; } h1 { font-size: 30px; } .deck { font-size: 17px; } h2 { font-size: 19px; } }
