    /* ── Hero ── */
    .legal-hero {
      background: #07090c;
      padding: 120px 0 60px;
      text-align: center;
      border-bottom: 1px solid rgba(239,68,68,.2);
      position: relative;
      overflow: hidden;
    }
    .legal-hero::before {
      content: '';
      position: absolute;
      inset: 0;
      background: radial-gradient(ellipse 60% 60% at 50% 0%, rgba(239,68,68,.06) 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: #ef4444;
      border: 1px solid rgba(239,68,68,.35);
      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: #ef4444; 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; }

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

    /* ── PRIMARY WARNING BOX ── */
    .warning-primary {
      background: rgba(239,68,68,.07);
      border: 2px solid rgba(239,68,68,.4);
      border-radius: 12px;
      padding: 28px 30px;
      margin-bottom: 16px;
      position: relative;
      overflow: hidden;
    }
    .warning-primary::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 3px;
      background: linear-gradient(90deg, #ef4444, #f97316, #ef4444);
    }
    .warning-primary-header {
      display: flex;
      align-items: center;
      gap: 14px;
      margin-bottom: 16px;
    }
    .warning-icon {
      width: 44px;
      height: 44px;
      background: rgba(239,68,68,.15);
      border: 1px solid rgba(239,68,68,.3);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      font-size: 1.2rem;
    }
    .warning-primary h2 {
      font-family: var(--fh);
      font-size: 1.35rem;
      font-weight: 700;
      color: #ef4444;
      margin: 0;
      letter-spacing: .04em;
      text-transform: uppercase;
    }
    .warning-primary p {
      font-family: var(--fb);
      font-size: .93rem;
      color: #fca5a5;
      line-height: 1.8;
      margin-bottom: 12px;
    }
    .warning-primary p:last-child { margin-bottom: 0; }
    .warning-primary strong { color: #fca5a5; }

    /* ── Amber supplementary warning ── */
    .warning-amber {
      background: rgba(234,179,8,.06);
      border: 1px solid rgba(234,179,8,.3);
      border-left: 4px solid #eab308;
      border-radius: 8px;
      padding: 18px 22px;
      margin-bottom: 48px;
      font-family: var(--fb);
      font-size: .88rem;
      color: #fde68a;
      line-height: 1.7;
    }
    .warning-amber strong { color: #fef08a; }

    /* ── Standard 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;
    }
    .section-number.red { color: #ef4444; }
    .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 h2.red-accent { border-bottom-color: rgba(239,68,68,.25); }
    .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; }

    /* ── Risk stat cards ── */
    .risk-stats {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
      gap: 14px;
      margin: 20px 0;
    }
    .risk-stat {
      background: rgba(239,68,68,.06);
      border: 1px solid rgba(239,68,68,.18);
      border-radius: 8px;
      padding: 18px 16px;
      text-align: center;
    }
    .risk-stat-num {
      font-family: var(--fh);
      font-size: 2rem;
      font-weight: 700;
      color: #ef4444;
      display: block;
      letter-spacing: .02em;
      line-height: 1;
      margin-bottom: 8px;
    }
    .risk-stat-label {
      font-family: var(--fb);
      font-size: .8rem;
      color: var(--tx-muted);
      line-height: 1.5;
    }

    /* ── Comparison table: demo vs real ── */
    .compare-table {
      width: 100%;
      border-collapse: collapse;
      margin: 20px 0;
      font-family: var(--fb);
      font-size: .88rem;
    }
    .compare-table th {
      padding: 12px 16px;
      font-weight: 700;
      text-align: center;
      text-transform: uppercase;
      font-family: var(--fh);
      font-size: .8rem;
      letter-spacing: .08em;
    }
    .compare-table th:first-child { text-align: left; }
    .compare-table th.demo-head {
      background: rgba(34,197,94,.08);
      color: var(--gl);
      border-bottom: 2px solid rgba(34,197,94,.3);
    }
    .compare-table th.real-head {
      background: rgba(239,68,68,.08);
      color: #ef4444;
      border-bottom: 2px solid rgba(239,68,68,.3);
    }
    .compare-table th.aspect-head {
      background: rgba(255,255,255,.03);
      color: var(--tx-muted);
      border-bottom: 1px solid rgba(255,255,255,.1);
    }
    .compare-table td {
      padding: 11px 16px;
      border-bottom: 1px solid rgba(255,255,255,.05);
      vertical-align: middle;
      color: var(--tx-muted);
      line-height: 1.5;
    }
    .compare-table td.aspect { color: var(--tx-light); font-weight: 500; }
    .compare-table td.demo { text-align: center; color: var(--gl); }
    .compare-table td.real { text-align: center; color: #fca5a5; }
    .compare-table tr:last-child td { border-bottom: none; }

    /* ── Motivational mission box ── */
    .mission-box {
      background: linear-gradient(135deg, rgba(34,197,94,.08), rgba(74,222,128,.04));
      border: 1px solid rgba(34,197,94,.25);
      border-radius: 12px;
      padding: 28px 30px;
      margin-top: 20px;
      text-align: center;
    }
    .mission-box-icon {
      font-size: 2rem;
      display: block;
      margin-bottom: 12px;
    }
    .mission-box h3 {
      font-family: var(--fh);
      font-size: 1.3rem;
      font-weight: 700;
      color: var(--gl);
      margin: 0 0 14px;
      letter-spacing: .05em;
      text-transform: uppercase;
    }
    .mission-box p {
      font-family: var(--fb);
      font-size: .93rem;
      color: var(--tx-muted);
      line-height: 1.8;
      margin-bottom: 12px;
      max-width: 620px;
      margin-left: auto;
      margin-right: auto;
    }
    .mission-box p:last-child { margin-bottom: 0; }
    .mission-box strong { color: var(--gl); }

    /* ── Leverage visual ── */
    .leverage-visual {
      display: flex;
      gap: 12px;
      flex-wrap: wrap;
      margin: 16px 0;
    }
    .lev-card {
      flex: 1;
      min-width: 140px;
      background: rgba(255,255,255,.03);
      border: 1px solid rgba(255,255,255,.08);
      border-radius: 8px;
      padding: 14px 16px;
      text-align: center;
    }
    .lev-card.danger { border-color: rgba(239,68,68,.25); background: rgba(239,68,68,.04); }
    .lev-ratio {
      font-family: var(--fh);
      font-size: 1.5rem;
      font-weight: 700;
      color: var(--tx-light);
      display: block;
      margin-bottom: 6px;
    }
    .lev-card.danger .lev-ratio { color: #ef4444; }
    .lev-desc {
      font-family: var(--fb);
      font-size: .78rem;
      color: var(--tx-muted);
      line-height: 1.5;
    }

    @media (max-width: 600px) {
      .legal-hero { padding: 100px 16px 48px; }
      .legal-container { padding: 0 16px; }
      .risk-stats { grid-template-columns: 1fr 1fr; }
      .compare-table { font-size: .8rem; }
      .compare-table th, .compare-table td { padding: 8px 10px; }
      .warning-primary { padding: 20px 18px; }
      .mission-box { padding: 22px 18px; }
      .leverage-visual { flex-direction: column; }
    }
  
