:root{
      --black:#030303;
      --text:#f7f1e4;
      --muted:#b6aea0;
      --soft:#ded3bf;
      --gold:#d4af37;
      --gold2:#ffe08a;
      --line:rgba(255,224,138,.17);
      --serif:"Playfair Display",Georgia,serif;
      --sans:"Inter",Arial,sans-serif;
    }
    *{box-sizing:border-box}
    html{scroll-behavior:smooth;background:var(--black)}
    body{
      margin:0;
      font-family:var(--sans);
      color:var(--text);
      background:
        radial-gradient(circle at 86% 6%,rgba(212,175,55,.10),transparent 27rem),
        linear-gradient(180deg,#050505,#020202 42%,#080604);
      overflow-x:hidden;
    }
    a{color:var(--gold2);text-decoration:none}
    a:hover{text-decoration:underline}
    .grain{
      position:fixed;inset:0;pointer-events:none;z-index:50;opacity:.15;
      background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='170' height='170' viewBox='0 0 170 170'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.72' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='170' height='170' filter='url(%23n)' opacity='.33'/%3E%3C/svg%3E");
      mix-blend-mode:soft-light;
    }
    .nav{
      position:fixed;top:0;left:0;right:0;z-index:40;
      display:flex;align-items:center;justify-content:space-between;gap:24px;
      padding:18px clamp(18px,4vw,58px);
      background:linear-gradient(180deg,rgba(0,0,0,.78),rgba(0,0,0,.18));
      backdrop-filter:blur(18px);
      border-bottom:1px solid rgba(255,255,255,.06);
    }
    .brand{
      display:flex;align-items:center;gap:12px;
      font-weight:800;letter-spacing:.12em;text-transform:uppercase;font-size:13px;
      color:var(--text);
    }
    .brand img{width:38px;height:38px;object-fit:contain;filter:drop-shadow(0 0 14px rgba(212,175,55,.28))}
    .nav-back{
      border:1px solid rgba(255,224,138,.32);color:var(--gold2);border-radius:999px;
      padding:10px 16px;font-size:12px;font-weight:700;text-transform:uppercase;letter-spacing:.1em;
    }
    .nav-back:hover{text-decoration:none;border-color:rgba(255,224,138,.62)}
    .page{
      max-width:820px;
      margin:0 auto;
      padding:130px clamp(20px,5vw,48px) 96px;
    }
    .eyebrow{
      display:inline-flex;align-items:center;gap:12px;
      color:var(--gold2);font-size:12px;font-weight:800;letter-spacing:.22em;text-transform:uppercase;
    }
    .eyebrow:before{content:"";width:28px;height:1px;background:linear-gradient(90deg,var(--gold),transparent)}
    h1{
      margin:16px 0 48px;
      font-family:var(--serif);
      font-size:clamp(36px,5vw,58px);
      line-height:1.04;
      font-weight:600;
    }
    h2{
      margin:42px 0 14px;
      font-family:var(--serif);
      font-size:22px;
      font-weight:600;
      color:var(--gold2);
    }
    p,li{
      color:var(--muted);
      line-height:1.8;
      font-size:15px;
      margin:0 0 12px;
    }
    ul{padding-left:20px;margin:0 0 16px}
    li{margin:6px 0}
    .divider{border:0;border-top:1px solid var(--line);margin:40px 0}
    .highlight{
      padding:18px 22px;
      border:1px solid var(--line);
      border-radius:8px;
      background:rgba(212,175,55,.05);
      margin-bottom:16px;
    }
    .highlight p{margin:0;color:var(--soft)}
    .updated{
      margin-top:56px;
      padding:18px 22px;
      border:1px solid var(--line);
      border-radius:8px;
      background:rgba(255,255,255,.03);
      color:var(--muted);
      font-size:13px;
    }
    footer{
      padding:28px clamp(20px,5vw,74px);
      border-top:1px solid rgba(255,255,255,.08);
      color:var(--muted);
      display:flex;justify-content:space-between;gap:18px;flex-wrap:wrap;font-size:13px;
    }

.footer-link-soft{color:inherit;opacity:.72}

