    /* Dizajn tokeni (paleta) -> /css/theme.css (zajednicki za sve stranice). */
    * { box-sizing: border-box; margin: 0; padding: 0; }
    html, body { height: 100%; }
    body {
      font-family: var(--font-body);
      color: var(--ink); line-height: 1.6;
      min-height: 100%; display: flex; flex-direction: column;
      align-items: center; justify-content: center;
      text-align: center; padding: 56px 22px 96px;
      background:
        radial-gradient(120% 60% at 50% -8%, rgba(224,169,60,.22), transparent 58%),
        radial-gradient(90% 50% at 50% 120%, rgba(192,73,46,.06), transparent 55%),
        var(--bg);
    }
    .badge { display: block; width: 136px; height: 136px; margin: 0 auto 22px; }
    .kicker { font-family: var(--font-mono); font-size: 11.5px; font-weight: 600; letter-spacing: var(--tracking-kicker); text-transform: uppercase; color: var(--brickd); }
    .name { font-family: var(--font-display); font-size: 30px; font-weight: 700; letter-spacing: .04em; margin: 5px 0 20px; }
    .rule { width: 44px; height: 2px; border-radius: 2px; background: linear-gradient(90deg, var(--gold), var(--brick)); margin: 0 auto 28px; }
    h1 { font-family: var(--font-display); font-weight: 700; font-size: clamp(30px, 6vw, 50px); line-height: 1.06; letter-spacing: -.01em; max-width: 15ch; margin-bottom: 20px; }
    .lead { font-size: clamp(17px, 2.4vw, 20px); max-width: 42ch; margin-bottom: 10px; }
    .sub { color: var(--ink-soft); max-width: 44ch; margin-bottom: 34px; }
    .contact { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }
    .contact a {
      display: inline-flex; align-items: center; gap: 8px;
      text-decoration: none; color: var(--ink); background: var(--surface-2);
      border: 1px solid var(--line); border-radius: 999px; padding: 12px 22px;
      font-weight: 600; font-size: 15.5px; box-shadow: var(--shadow-sm);
      transition: border-color .15s ease, color .15s ease, transform .15s ease;
    }
    .contact a svg { width: 17px; height: 17px; flex: none; color: var(--brickd); }
    .contact a:hover { border-color: var(--brick); color: var(--brickd); transform: translateY(-1px); }
    footer { position: fixed; bottom: 0; left: 0; right: 0; padding: 18px; color: var(--ink-soft); font-size: 13px; }
    footer a { color: var(--brickd); text-decoration: none; }
    footer a:hover { text-decoration: underline; }
