/* ---------- Legal pages ---------- */
    .legal-hero {
      background:
        radial-gradient(ellipse 900px 500px at 82% 15%, rgba(232, 89, 12, .16), transparent 60%),
        linear-gradient(180deg, var(--navy-900) 0%, var(--navy-950) 100%);
      padding: 56px 0 60px;
      position: relative;
      overflow: hidden;
    }

    .legal-hero::before {
      content: "";
      position: absolute;
      inset: 0;
      background-image:
        linear-gradient(rgba(255, 255, 255, .035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, .035) 1px, transparent 1px);
      background-size: 46px 46px;
      mask-image: radial-gradient(ellipse 900px 600px at 70% 20%, black, transparent 70%);
    }

    .legal-crumb {
      position: relative;
      z-index: 2;
      display: flex;
      align-items: center;
      gap: 8px;
      font-size: 13.5px;
      color: #8fa4b8;
      margin-bottom: 18px;
    }

    .legal-crumb a {
      color: #8fa4b8;
    }

    .legal-crumb a:hover {
      color: #fff;
    }

    .legal-hero h1 {
      position: relative;
      z-index: 2;
      font-size: clamp(26px, 3.4vw, 38px);
      font-weight: 900;
      color: #fff;
    }

    .legal-body {
      padding: 70px 0 110px;
      background: var(--paper);
    }

    .legal-shell {
      display: grid;
      grid-template-columns: .85fr 2fr;
      gap: 56px;
      align-items: start;
    }

    @media(max-width:900px) {
      .legal-shell {
        grid-template-columns: 1fr;
      }
    }

    .legal-toc {
      background: var(--paper-2);
      border: 1px solid var(--line);
      border-radius: var(--radius);
      padding: 26px 24px;
      position: sticky;
      top: 96px;
    }

    .legal-toc h4 {
      font-size: 13px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: .06em;
      color: var(--ink-soft);
      margin-bottom: 14px;
    }

    .legal-toc ol {
      list-style: none;
      counter-reset: toc;
      display: flex;
      flex-direction: column;
      gap: 10px;
    }

    .legal-toc li {
      counter-increment: toc;
      font-size: 13.5px;
    }

    .legal-toc a {
      color: var(--ink);
      display: flex;
      gap: 8px;
    }

    .legal-toc a::before {
      content: counter(toc);
      color: var(--orange-600);
      font-weight: 700;
      flex-shrink: 0;
    }

    .legal-toc a:hover {
      color: var(--orange-600);
    }

  @media(max-width:900px) {
      .legal-toc {
        position: relative;
        top: 0px;
      }
    }

    .legal-content {
      max-width: 760px;
    }

    .legal-updated {
      font-size: 13px;
      color: var(--ink-soft);
      margin-bottom: 36px;
    }

    .legal-content section {
      margin-bottom: 42px;
      scroll-margin-top: 96px;
    }

    .legal-content h2 {
      font-size: 21px;
      font-weight: 800;
      color: var(--navy-900);
      margin-bottom: 14px;
    }

    .legal-content h3 {
      font-size: 16px;
      font-weight: 700;
      color: var(--navy-900);
      margin: 20px 0 8px;
    }

    .legal-content p {
      color: var(--ink-soft);
      font-size: 15px;
      line-height: 1.75;
      margin-bottom: 12px;
    }

    .legal-content ul {
      margin: 0 0 12px;
      padding-left: 0;
      list-style: none;
    }

    .legal-content ul li {
      color: var(--ink-soft);
      font-size: 15px;
      line-height: 1.7;
      padding-left: 20px;
      position: relative;
      margin-bottom: 6px;
    }

    .legal-content ul li::before {
      content: "";
      position: absolute;
      left: 0;
      top: 9px;
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: var(--orange-600);
    }

    .legal-content a.inline-link {
      color: var(--orange-600);
      font-weight: 600;
      text-decoration: underline;
      text-underline-offset: 2px;
    }

    .fact-card {
      background: var(--paper-2);
      border: 1px solid var(--line);
      border-radius: var(--radius);
      padding: 26px 26px;
      margin-bottom: 8px;
    }

    .fact-card .fc-row {
      display: flex;
      gap: 18px;
      padding: 11px 0;
      border-bottom: 1px solid var(--line);
    }

    .fact-card .fc-row:last-child {
      border-bottom: none;
    }

    .fact-card .fc-label {
      width: 180px;
      flex-shrink: 0;
      font-size: 13px;
      color: var(--ink-soft);
      font-weight: 600;
    }

    .fact-card .fc-value {
      font-size: 14.5px;
      color: var(--navy-900);
    }

    .fact-card .fc-value a {
      color: var(--orange-600);
    }

    @media(max-width:560px) {
      .fact-card .fc-row {
        flex-direction: column;
        gap: 2px;
      }

      .fact-card .fc-label {
        width: auto;
      }
    }

    .note-box {
      background: var(--orange-100);
      border: 1px solid rgba(232, 89, 12, .3);
      border-radius: 12px;
      padding: 16px 18px;
      font-size: 13.5px;
      color: #8a3d0c;
      line-height: 1.6;
      margin: 10px 0 18px;
      display: flex;
      gap: 12px;
      align-items: flex-start;
    }

    .note-box svg {
      width: 18px;
      height: 18px;
      flex-shrink: 0;
      margin-top: 1px;
      color: var(--orange-600);
    }

    .note-box strong {
      color: #6f3009;
    }