    /* ── Legal page base ── */
    .legal-hero {
      background: #07090c;
      padding: 120px 0 60px;
      text-align: center;
      border-bottom: 1px solid rgba(34,197,94,.15);
      position: relative;
      overflow: hidden;
    }
    .legal-hero::before {
      content: '';
      position: absolute;
      inset: 0;
      background: radial-gradient(ellipse 60% 60% at 50% 0%, rgba(34,197,94,.07) 0%, transparent 70%);
      pointer-events: none;
    }
    .legal-hero-badge {
      display: inline-block;
      font-family: var(--fh);
      font-size: .72rem;
      font-weight: 700;
      letter-spacing: .15em;
      color: var(--gd);
      border: 1px solid rgba(34,197,94,.3);
      border-radius: 4px;
      padding: 4px 12px;
      margin-bottom: 20px;
      text-transform: uppercase;
    }
    .legal-hero h1 {
      font-family: var(--fh);
      font-size: clamp(2rem, 5vw, 3.2rem);
      font-weight: 700;
      color: var(--tx-light);
      margin: 0 0 14px;
      letter-spacing: .04em;
    }
    .legal-hero h1 em {
      color: var(--gd);
      font-style: normal;
    }
    .legal-hero-meta {
      font-family: var(--fb);
      font-size: .85rem;
      color: var(--tx-muted);
    }
    .breadcrumb {
      display: flex;
      align-items: center;
      gap: 8px;
      justify-content: center;
      margin-bottom: 28px;
      font-family: var(--fb);
      font-size: .8rem;
      color: var(--tx-muted);
    }
    .breadcrumb a {
      color: var(--gd);
      text-decoration: none;
    }
    .breadcrumb a:hover { color: var(--gl); }
    .breadcrumb span { opacity: .45; }

    /* ── Legal body ── */
    .legal-body {
      background: #07090c;
      padding: 64px 0 96px;
    }
    .legal-container {
      max-width: 860px;
      margin: 0 auto;
      padding: 0 24px;
    }

    /* ── Disclaimer box ── */
    .risk-note {
      background: rgba(34,197,94,.06);
      border: 1px solid rgba(34,197,94,.25);
      border-left: 4px solid var(--gd);
      border-radius: 8px;
      padding: 18px 22px;
      margin-bottom: 48px;
      font-family: var(--fb);
      font-size: .88rem;
      color: var(--tx-muted);
      line-height: 1.7;
    }
    .risk-note strong { color: var(--gl); }

    /* ── Sections ── */
    .legal-section {
      margin-bottom: 52px;
      padding-bottom: 52px;
      border-bottom: 1px solid rgba(255,255,255,.06);
    }
    .legal-section:last-child {
      border-bottom: none;
      margin-bottom: 0;
    }
    .section-number {
      display: inline-block;
      font-family: var(--fh);
      font-size: .72rem;
      font-weight: 700;
      letter-spacing: .15em;
      color: var(--gd);
      text-transform: uppercase;
      margin-bottom: 10px;
    }
    .legal-section h2 {
      font-family: var(--fh);
      font-size: 1.45rem;
      font-weight: 700;
      color: var(--tx-light);
      margin: 0 0 20px;
      letter-spacing: .03em;
      padding-bottom: 12px;
      border-bottom: 1px solid rgba(34,197,94,.2);
    }
    .legal-section p,
    .legal-section li {
      font-family: var(--fb);
      font-size: .93rem;
      color: var(--tx-muted);
      line-height: 1.8;
      margin-bottom: 14px;
    }
    .legal-section ul,
    .legal-section ol {
      padding-left: 22px;
      margin-bottom: 14px;
    }
    .legal-section li { margin-bottom: 8px; }
    .legal-section strong { color: var(--tx-light); }
    .legal-section a { color: var(--gd); text-decoration: none; }
    .legal-section a:hover { color: var(--gl); text-decoration: underline; }

    /* ── Sub-table style ── */
    .legal-table {
      width: 100%;
      border-collapse: collapse;
      margin-bottom: 20px;
      font-family: var(--fb);
      font-size: .88rem;
    }
    .legal-table th {
      text-align: left;
      padding: 10px 14px;
      font-weight: 600;
      color: var(--gl);
      border-bottom: 1px solid rgba(34,197,94,.25);
      background: rgba(34,197,94,.05);
    }
    .legal-table td {
      padding: 10px 14px;
      color: var(--tx-muted);
      border-bottom: 1px solid rgba(255,255,255,.05);
      line-height: 1.6;
      vertical-align: top;
    }
    .legal-table tr:last-child td { border-bottom: none; }

    /* ── Rights grid ── */
    .rights-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
      gap: 16px;
      margin-top: 20px;
    }
    .right-card {
      background: rgba(34,197,94,.04);
      border: 1px solid rgba(34,197,94,.14);
      border-radius: 8px;
      padding: 16px 18px;
    }
    .right-card h4 {
      font-family: var(--fh);
      font-size: .95rem;
      font-weight: 700;
      color: var(--gd);
      margin: 0 0 8px;
      letter-spacing: .03em;
    }
    .right-card p {
      font-family: var(--fb);
      font-size: .83rem;
      color: var(--tx-muted);
      margin: 0;
      line-height: 1.65;
    }

    @media (max-width: 600px) {
      .legal-hero { padding: 100px 16px 48px; }
      .legal-container { padding: 0 16px; }
      .legal-table { font-size: .8rem; }
      .legal-table th, .legal-table td { padding: 8px 10px; }
    }
  
