  /* ── Terms-specific styles ── */
  .terms-hero { text-align: center; margin-bottom: 48px; }
  .terms-hero h1 { font-size: clamp(2rem, 6vw, 3.2rem); font-weight: 900; letter-spacing: -2px; margin-bottom: 12px; line-height: 1.15; }
  .terms-hero p { font-size: .9rem; color: var(--text2); max-width: 440px; margin: 0 auto; line-height: 1.7; }
  .terms-hero .effective { display: inline-block; margin-top: 14px; font-size: .72rem; font-family: 'Geist Mono', monospace; color: var(--text3); background: var(--bg1); border: 1px solid var(--line); border-radius: 6px; padding: 4px 10px; }

  .terms-section-title {
    font-size: .58rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text3);
    font-family: 'Geist Mono', monospace;
    margin: 40px 0 14px;
    display: flex;
    align-items: center;
    gap: 8px;
  }
  .terms-section-title::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--line);
  }
  .terms-section-title .num {
    color: var(--blue);
    margin-right: 2px;
  }

  .terms-card {
    background: var(--bg1);
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 22px 24px;
    margin-bottom: 8px;
    transition: border-color .2s;
  }
  .terms-card:hover { border-color: var(--line2); }

  .terms-card h3 {
    font-size: .82rem;
    font-weight: 700;
    color: var(--text);
    margin: 0 0 10px;
    line-height: 1.4;
  }

  .terms-card p,
  .terms-card li {
    font-size: .8rem;
    color: var(--text2);
    line-height: 1.75;
    font-family: 'Geist Mono', monospace;
    margin: 0;
  }

  .terms-card p + p { margin-top: 10px; }

  .terms-card ul {
    margin: 8px 0 0 0;
    padding-left: 18px;
    list-style: none;
  }
  .terms-card ul li { position: relative; padding-left: 14px; margin-bottom: 5px; }
  .terms-card ul li::before { content: '›'; position: absolute; left: 0; color: var(--blue); font-weight: 700; }

  .terms-highlight {
    border-color: var(--blue-border) !important;
  }
  .terms-highlight h3 { color: var(--blue); }

  .terms-warning {
    background: rgba(255, 80, 80, 0.05);
    border-color: rgba(255, 80, 80, 0.25) !important;
  }
  .terms-warning h3 { color: #ff6b6b; }

  .terms-back {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: .78rem;
    font-weight: 600;
    color: var(--text2);
    text-decoration: none;
    padding: 8px 14px;
    border: 1px solid var(--line);
    border-radius: 8px;
    margin-bottom: 32px;
    transition: all .2s;
  }
  .terms-back:hover {
    color: var(--text);
    border-color: var(--line2);
    background: var(--bg2);
  }

  .terms-toc {
    background: var(--bg1);
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 18px 22px;
    margin-bottom: 36px;
  }
  .terms-toc p {
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--text3);
    font-family: 'Geist Mono', monospace;
    margin: 0 0 12px;
  }
  .terms-toc-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 4px 16px;
  }
  .terms-toc-grid a {
    font-size: .76rem;
    color: var(--text2);
    text-decoration: none;
    font-family: 'Geist Mono', monospace;
    padding: 3px 0;
    transition: color .15s;
    display: flex;
    align-items: center;
    gap: 6px;
  }
  .terms-toc-grid a:hover { color: var(--blue); }
  .terms-toc-grid a .toc-num { color: var(--blue); font-size: .68rem; min-width: 20px; }
