    /* Dizajn tokeni -> /css/theme.css. */
    * { box-sizing: border-box; margin: 0; padding: 0; }
    body {
      font-family: var(--font-body); color: var(--ink); line-height: 1.7; font-size: 17px;
      background: radial-gradient(110% 40% at 50% -6%, rgba(224,169,60,.12), transparent 60%), var(--bg);
    }
    .wrap { max-width: var(--maxw-prose); margin: 0 auto; padding: 0 24px; }
    header { border-bottom: 1px solid var(--gold-soft); background: rgba(251,248,241,.85); backdrop-filter: saturate(1.2) blur(8px); -webkit-backdrop-filter: saturate(1.2) blur(8px); position: sticky; top: 0; z-index: 10; }
    header .wrap { display: flex; align-items: center; justify-content: space-between; height: 70px; }
    .brand { display: inline-flex; align-items: center; gap: 11px; text-decoration: none; color: var(--ink); }
    .brand-mark { width: 38px; height: 38px; flex: none; }
    .brand-mark img { width: 100%; height: 100%; display: block; }
    .brand-type { display: flex; flex-direction: column; line-height: 1; }
    .brand-kicker { font-family: var(--font-mono); font-size: 10px; font-weight: 600; letter-spacing: var(--tracking-kicker); text-transform: uppercase; color: var(--brickd); }
    .brand-name { font-family: var(--font-display); font-size: 21px; font-weight: 700; letter-spacing: .04em; margin-top: 3px; }
    .back { font-weight: 600; font-size: 15px; color: var(--brickd); text-decoration: none; transition: gap .2s; display: inline-flex; align-items: center; gap: 6px; }
    .back:hover { gap: 10px; }
    main { padding: 56px 0 76px; }
    .eyebrow { display: inline-flex; align-items: center; gap: 9px; font-family: var(--font-mono); font-size: var(--t-xs); font-weight: 600; letter-spacing: var(--tracking-kicker); text-transform: uppercase; color: var(--brickd); margin-bottom: 12px; }
    .eyebrow::before { content: ""; width: 22px; height: 1.5px; background: linear-gradient(90deg, var(--gold), transparent); }
    h1 { font-family: var(--font-display); font-weight: 700; font-size: clamp(30px, 5vw, 44px); line-height: 1.08; letter-spacing: -.012em; margin-bottom: 8px; }
    .updated { color: var(--ink-soft); font-size: 14.5px; margin-bottom: 36px; }
    h2 { font-family: var(--font-display); font-weight: 700; font-size: 22px; margin: 38px 0 12px; padding-left: 16px; position: relative; }
    h2::before { content: ""; position: absolute; left: 0; top: .18em; bottom: .18em; width: 3px; border-radius: 2px; background: linear-gradient(var(--gold), var(--brick)); }
    p { margin-bottom: 14px; }
    ul { margin: 0 0 14px 22px; }
    li { margin-bottom: 6px; }
    a { color: var(--brickd); }
    .box { background: var(--surface-2); border: 1px solid var(--line); border-left: 3px solid var(--gold); border-radius: var(--radius-sm); padding: 20px 22px; box-shadow: var(--shadow-sm); margin-bottom: 14px; }
    .box p:last-child { margin-bottom: 0; }
    footer { border-top: 1px solid var(--line); padding: 28px 0; color: var(--ink-soft); font-size: 14px; margin-top: 20px; }
    footer a { color: var(--brickd); text-decoration: none; }
    footer a:hover { text-decoration: underline; }
