    :root {
      --bg: #07090c;
      --ink: #f4eadb;
      --muted: #aeb6bf;
      --gold: #caa35b;
      --gold-2: #e7cf92;
      --panel: rgba(10, 13, 18, .72);
      --panel-solid: #0d1016;
      --line: rgba(202, 163, 91, .25);
      --line-soft: rgba(202, 163, 91, .14);
      --blue: #7fa8d6;
      --ok: #9ee7b3;
      --bad: #ff9a8a;
      --shadow: 0 30px 100px rgba(0,0,0,.46);
    }

    * { box-sizing: border-box; }
    html { scroll-behavior: smooth; background: var(--bg); }
    body {
      margin: 0;
      min-height: 100%;
      color: var(--ink);
      font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
      background:
        radial-gradient(circle at 18% 6%, rgba(202,163,91,.16), transparent 30rem),
        radial-gradient(circle at 82% 18%, rgba(127,168,214,.12), transparent 28rem),
        linear-gradient(180deg, #050608 0%, #0b1017 50%, #050608 100%);
      overflow-x: hidden;
      line-height: 1.65;
    }

    body::before {
      content: "";
      position: fixed;
      inset: 0;
      background:
        linear-gradient(rgba(202,163,91,.028) 1px, transparent 1px),
        linear-gradient(90deg, rgba(202,163,91,.021) 1px, transparent 1px);
      background-size: 86px 86px;
      mask-image: radial-gradient(circle at 50% 28%, black, transparent 74%);
      pointer-events: none;
      z-index: 0;
    }

    .page-frame {
      position: fixed;
      inset: 18px;
      border: 1px solid rgba(202,163,91,.25);
      border-radius: 24px;
      box-shadow: inset 0 0 0 1px rgba(231,207,146,.05);
      pointer-events: none;
      z-index: 8;
    }

    a { color: inherit; }

    .site-header {
      position: fixed;
      z-index: 10;
      top: 0;
      left: 0;
      right: 0;
      padding: 18px clamp(22px, 4vw, 48px) 0;
      pointer-events: none;
    }

    .header-inner {
      width: min(1240px, 100%);
      margin: 0 auto;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 18px;
      pointer-events: auto;
    }

    .brand {
      display: inline-flex;
      align-items: center;
      gap: 11px;
      text-decoration: none;
    }

    .brand img {
      width: 176px;
      max-width: 48vw;
      height: auto;
      display: block;
      filter: drop-shadow(0 10px 26px rgba(0,0,0,.72));
    }

    .nav {
      display: flex;
      gap: 8px;
      padding: 7px;
      border: 1px solid rgba(202,163,91,.16);
      border-radius: 999px;
      background: rgba(5, 7, 10, .64);
      backdrop-filter: blur(18px);
      box-shadow: 0 10px 34px rgba(0,0,0,.32);
    }

    .nav a {
      min-height: 35px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 0 12px;
      border-radius: 999px;
      text-decoration: none;
      color: rgba(244,234,219,.72);
      font-size: 11px;
      font-weight: 900;
      letter-spacing: .12em;
      text-transform: uppercase;
    }

    .nav a:hover { color: var(--ink); background: rgba(202,163,91,.08); }
    .nav .gold { color: #11100c; background: linear-gradient(135deg, var(--gold-2), var(--gold)); }

    main {
      position: relative;
      z-index: 2;
      width: min(1000px, calc(100% - 44px));
      margin: 0 auto;
      padding: clamp(112px, 15vh, 150px) 0 56px;
    }

    .legal-hero {
      position: relative;
      overflow: hidden;
      border: 1px solid var(--line);
      border-radius: 32px;
      background:
        linear-gradient(135deg, rgba(202,163,91,.15), rgba(127,168,214,.08)),
        linear-gradient(180deg, rgba(14,18,25,.86), rgba(6,8,12,.92));
      box-shadow: var(--shadow);
      padding: clamp(30px, 5vw, 56px);
      margin-bottom: 18px;
    }

    .legal-hero::after {
      content: "";
      position: absolute;
      inset: 18px;
      border: 1px solid rgba(231,207,146,.18);
      border-radius: 22px;
      pointer-events: none;
    }

    .eyebrow {
      margin: 0 0 14px;
      color: var(--gold-2);
      font-size: 12px;
      font-weight: 900;
      letter-spacing: .24em;
      text-transform: uppercase;
    }

    h1, h2, h3 { font-family: Georgia, "Times New Roman", serif; }

    h1 {
      margin: 0;
      font-size: clamp(44px, 7vw, 78px);
      line-height: .9;
      letter-spacing: -.055em;
      text-wrap: balance;
    }

    .lead {
      max-width: 760px;
      margin: 22px 0 0;
      color: rgba(244,234,219,.78);
      font-size: clamp(16px, 1.35vw, 19px);
      line-height: 1.65;
    }

    .legal-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 14px;
    }

    .card {
      border: 1px solid var(--line-soft);
      border-radius: 22px;
      background: linear-gradient(180deg, rgba(14,18,25,.78), rgba(6,8,12,.76));
      padding: clamp(20px, 3vw, 30px);
      box-shadow: 0 14px 45px rgba(0,0,0,.24);
    }

    h2 {
      margin: 0 0 12px;
      color: var(--gold-2);
      font-size: clamp(25px, 3vw, 36px);
      letter-spacing: -.035em;
      line-height: 1.1;
    }

    p, li {
      color: rgba(244,234,219,.78);
      font-size: 15px;
    }

    p { margin: 0 0 12px; }
    p:last-child { margin-bottom: 0; }
    ul { margin: 8px 0 0 1.15rem; padding: 0; }
    li { margin: 0 0 8px; padding-left: .25rem; }

    .notice {
      border-color: rgba(202,163,91,.28);
      background: linear-gradient(180deg, rgba(202,163,91,.11), rgba(6,8,12,.72));
    }

    .legal-links {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin-top: 24px;
    }

    .button {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 42px;
      padding: 0 16px;
      border-radius: 999px;
      border: 1px solid rgba(202,163,91,.34);
      background: rgba(2,4,7,.36);
      color: var(--ink);
      text-decoration: none;
      font-weight: 900;
    }

    .button.primary {
      border: 0;
      color: #11100c;
      background: linear-gradient(135deg, var(--gold-2), var(--gold));
      box-shadow: 0 16px 34px rgba(202,163,91,.18);
    }

    .footer {
      position: relative;
      z-index: 2;
      width: min(1240px, calc(100% - 44px));
      margin: 0 auto;
      padding: 28px 0 30px;
      text-align: center;
      color: rgba(244,234,219,.48);
      font-size: 12px;
      letter-spacing: .14em;
      text-transform: uppercase;
    }

    .footer::before {
      content: "";
      display: block;
      width: min(520px, 72vw);
      height: 1px;
      margin: 0 auto 20px;
      background: linear-gradient(90deg, transparent, rgba(202,163,91,.34), transparent);
    }

    .footer a {
      color: rgba(244,234,219,.62);
      text-decoration: none;
    }

    .footer a:hover { color: var(--gold-2); }

    @media (max-width: 920px) {
      .nav a:not(.gold):not(.keep-mobile) { display: none; }
    }

    @media (max-width: 640px) {
      .page-frame { inset: 10px; border-radius: 18px; }
      .site-header { padding: 14px 18px 0; }
      .brand img { width: 150px; }
      .nav { padding: 4px; }
      .nav a { min-height: 34px; padding: 0 10px; font-size: 10px; }
      main { width: min(100% - 28px, 1000px); padding-top: 92px; }
      .legal-hero { border-radius: 24px; }
      .legal-hero::after { inset: 12px; border-radius: 17px; }
      h1 { font-size: 42px; }
    }
