
    :root {
      --accent-cyan: #00d4ff;
      --accent-purple: #7c3aed;
      --bg-primary: #060b18;
      --bg-surface: #0c1225;
      --text-primary: #f0f4ff;
      --text-secondary: #94a3c4;
      --gradient-primary: linear-gradient(135deg, #00d4ff 0%, #7c3aed 100%);
    }
  


  /* ============================================
     SITE NAV — scoped under .tsp-nav
     Font is pinned to Outfit so the nav renders
     identically on pages that redefine --font-display
     (e.g. standalone case-study detail pages that use Sora).
     ============================================ */
  .tsp-nav {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(10, 11, 18, 0.82);
    backdrop-filter: blur(20px) saturate(1.2);
    -webkit-backdrop-filter: blur(20px) saturate(1.2);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    font-family: 'Outfit', system-ui, -apple-system, sans-serif;
    color: #f0f4ff;
  }
  .tsp-nav * { box-sizing: border-box; }
  .tsp-nav a { text-decoration: none; color: inherit; }

  .tsp-nav__inner {
    max-width: 1340px;
    margin: 0 auto;
    padding: 14px 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
  }

  /* Logo */
  .tsp-nav__brand {
    display: inline-flex;
    align-items: center;
    flex: 0 0 auto;
  }
  .tsp-nav__logo {
    height: 38px;
    width: auto;
    display: block;
    transition: filter 0.25s ease, transform 0.25s ease;
  }
  .tsp-nav__brand:hover .tsp-nav__logo {
    filter:
      drop-shadow(0 0 6px rgba(255, 255, 255, 0.85))
      drop-shadow(0 0 14px rgba(0, 212, 255, 0.5));
  }

  /* Desktop links */
  .tsp-nav__links {
    display: flex;
    align-items: center;
    gap: 4px;
    list-style: none;
    margin: 0;
    padding: 0;
  }
  .tsp-nav__item {
    position: relative;
  }
  .tsp-nav__link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 16px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 500;
    color: rgba(240, 244, 255, 0.78);
    transition: color 0.18s ease, background 0.18s ease;
    cursor: pointer;
    background: transparent;
    border: none;
    font-family: inherit;
  }
  .tsp-nav__link:hover,
  .tsp-nav__link[aria-expanded="true"] {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.05);
  }
  .tsp-nav__caret {
    width: 10px;
    height: 10px;
    transition: transform 0.2s ease;
    opacity: 0.6;
  }
  .tsp-nav__link[aria-expanded="true"] .tsp-nav__caret {
    transform: rotate(180deg);
  }

  /* Dropdown panel */
  .tsp-nav__dropdown {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    min-width: 280px;
    background: rgba(12, 18, 37, 0.96);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    padding: 12px;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-4px);
    transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s;
    z-index: 10;
  }
  .tsp-nav__item--open .tsp-nav__dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .tsp-nav__group + .tsp-nav__group {
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
  }
  .tsp-nav__group-label {
    display: block;
    padding: 4px 12px 8px;
    font-family: var(--font-mono, 'JetBrains Mono', monospace);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(148, 163, 196, 0.6);
  }
  .tsp-nav__dropdown-link {
    display: block;
    padding: 9px 12px;
    border-radius: 8px;
    font-size: 13.5px;
    font-weight: 500;
    color: rgba(240, 244, 255, 0.82);
    transition: background 0.15s ease, color 0.15s ease;
  }
  .tsp-nav__dropdown-link:hover {
    background: rgba(0, 212, 255, 0.08);
    color: #00d4ff;
  }
  .tsp-nav__dropdown-link small {
    display: block;
    margin-top: 2px;
    font-size: 11px;
    font-weight: 400;
    color: rgba(148, 163, 196, 0.7);
  }
  .tsp-nav__dropdown-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.06);
    margin: 8px 0;
  }
  .tsp-nav__dropdown-footer {
    display: block;
    padding: 9px 12px;
    border-radius: 8px;
    font-family: var(--font-mono, 'JetBrains Mono', monospace);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #00d4ff;
    transition: background 0.15s ease;
  }
  .tsp-nav__dropdown-footer:hover {
    background: rgba(0, 212, 255, 0.08);
  }

  /* CTA */
  .tsp-nav__cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: 100px;
    background: linear-gradient(135deg, #00d4ff 0%, #7c3aed 100%);
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.01em;
    transition: transform 0.2s ease, box-shadow 0.25s ease, text-shadow 0.25s ease;
    flex: 0 0 auto;
  }
  .tsp-nav__cta:hover {
    transform: translateY(-1px);
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.28);
    color: #fff;
    text-shadow: 0 0 12px rgba(255, 255, 255, 0.8), 0 0 24px rgba(0, 212, 255, 0.5);
  }

  /* Mobile toggle */
  .tsp-nav__toggle {
    display: none;
    flex: 0 0 auto;
    width: 42px;
    height: 42px;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 10px;
    cursor: pointer;
    padding: 0;
  }
  .tsp-nav__toggle span {
    display: block;
    position: relative;
    width: 18px;
    height: 2px;
    background: #f0f4ff;
    border-radius: 1px;
  }
  .tsp-nav__toggle span::before,
  .tsp-nav__toggle span::after {
    content: '';
    position: absolute;
    left: 0;
    width: 18px;
    height: 2px;
    background: #f0f4ff;
    border-radius: 1px;
    transition: transform 0.25s ease;
  }
  .tsp-nav__toggle span::before { top: -6px; }
  .tsp-nav__toggle span::after  { top: 6px; }
  .tsp-nav[data-mobile-open="true"] .tsp-nav__toggle span { background: transparent; }
  .tsp-nav[data-mobile-open="true"] .tsp-nav__toggle span::before { transform: translateY(6px) rotate(45deg); }
  .tsp-nav[data-mobile-open="true"] .tsp-nav__toggle span::after  { transform: translateY(-6px) rotate(-45deg); }

  /* Mobile slide-over — slides down from the top */
  .tsp-nav__mobile {
    position: fixed;
    inset: 62px 0 0 0;
    background: rgba(6, 11, 24, 0.97);
    backdrop-filter: blur(28px);
    -webkit-backdrop-filter: blur(28px);
    padding: 0 24px 40px;
    overflow-y: auto;
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: transform 0.32s ease, opacity 0.25s ease, visibility 0.32s;
    z-index: 999;
  }
  .tsp-nav[data-mobile-open="true"] + .tsp-nav__mobile {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }
  .tsp-nav__mobile-section {
    margin-bottom: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }
  .tsp-nav__mobile-section:last-of-type {
    border-bottom: none;
  }
  .tsp-nav__mobile-section-title {
    position: sticky;
    top: 0;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    background: rgba(6, 11, 24, 0.92);
    backdrop-filter: blur(20px) saturate(1.2);
    -webkit-backdrop-filter: blur(20px) saturate(1.2);
    border: none;
    padding: 20px 0 18px;
    margin: 0;
    font-family: var(--font-mono, 'JetBrains Mono', monospace);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(148, 163, 196, 0.9);
    cursor: pointer;
    text-align: left;
    transition: color 0.2s ease, border-color 0.2s ease;
  }
  .tsp-nav__mobile-section-title::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 1px;
    background: rgba(255, 255, 255, 0.06);
    opacity: 0;
    transition: opacity 0.2s ease;
  }
  .tsp-nav__mobile-section[data-open="true"] .tsp-nav__mobile-section-title::after {
    opacity: 1;
  }
  .tsp-nav__mobile-section-title .tsp-nav__mobile-caret {
    width: 16px;
    height: 16px;
    transition: transform 0.25s ease;
    opacity: 0.7;
    flex: 0 0 auto;
  }
  .tsp-nav__mobile-section[data-open="true"] .tsp-nav__mobile-section-title {
    color: #ffffff;
  }
  .tsp-nav__mobile-section[data-open="true"] .tsp-nav__mobile-caret {
    transform: rotate(180deg);
    opacity: 1;
  }
  .tsp-nav__mobile-section-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }
  .tsp-nav__mobile-section[data-open="true"] .tsp-nav__mobile-section-body {
    max-height: 2000px;
  }
  .tsp-nav__mobile-section-body-inner {
    padding: 4px 0 16px;
  }
  .tsp-nav__mobile-link {
    display: block;
    padding: 12px 0;
    font-size: 16px;
    font-weight: 500;
    color: #f0f4ff;
  }
  .tsp-nav__mobile-link small {
    display: block;
    margin-top: 2px;
    font-size: 12px;
    font-weight: 400;
    color: rgba(148, 163, 196, 0.7);
  }
  .tsp-nav__mobile-section--static {
    border-bottom: none;
    margin-top: 8px;
  }
  .tsp-nav__mobile-section--static .tsp-nav__mobile-link {
    padding: 14px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }
  .tsp-nav__mobile-section--static .tsp-nav__mobile-link:last-child {
    border-bottom: none;
  }
  .tsp-nav__mobile-cta {
    display: block;
    margin-top: 20px;
    padding: 16px;
    background: linear-gradient(135deg, #00d4ff 0%, #7c3aed 100%);
    color: #ffffff;
    font-size: 14px;
    font-weight: 700;
    text-align: center;
    border-radius: 100px;
    text-transform: none;
    transition: transform 0.2s ease, box-shadow 0.25s ease, text-shadow 0.25s ease;
  }
  .tsp-nav__mobile-cta:hover,
  .tsp-nav__mobile-cta:active,
  .tsp-nav__mobile-cta:focus {
    transform: translateY(-1px);
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.28);
    color: #ffffff;
    text-shadow: 0 0 12px rgba(255, 255, 255, 0.8), 0 0 24px rgba(0, 212, 255, 0.5);
  }

  @media (max-width: 900px) {
    .tsp-nav__links,
    .tsp-nav__cta { display: none; }
    .tsp-nav__toggle { display: inline-flex; }
    .tsp-nav__logo { height: 30px; }
  }
  @media (min-width: 901px) {
    .tsp-nav__mobile { display: none; }
  }



  /* ============================================
     TERMS PAGE — scoped under .terms-page
     ============================================ */
  .terms-page {
    padding: 0 0 var(--section-padding);
    color: var(--text-primary);
    position: relative;
  }
  .terms-page * { box-sizing: border-box; }

  .terms-page .container {
    max-width: var(--container-max, 1340px);
    position: relative;
    z-index: 2;
  }

  /* Meta bar */
  .terms-page__meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    font-family: var(--font-mono);
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--text-secondary);
  }
  .terms-page__meta-brand { color: var(--text-primary); font-weight: 500; }
  .terms-page__meta-route { display: inline-flex; align-items: center; gap: 0.55rem; }
  .terms-page__pulse {
    display: inline-block;
    width: 8px; height: 8px;
    border-radius: 50%;
    background: var(--accent-cyan);
    box-shadow: 0 0 12px rgba(0, 212, 255, 0.7);
    animation: termsPagePulse 2.4s ease-in-out infinite;
  }
  @keyframes termsPagePulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
  }

  /* Hero */
  .terms-page__hero {
    padding: clamp(3.5rem, 8vw, 6rem) 0 clamp(2.5rem, 5vw, 4rem);
    max-width: 820px;
  }
  .terms-page__eyebrow {
    font-family: var(--font-mono);
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.22em;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.75rem;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
  }
  .terms-page__eyebrow::before {
    content: '';
    width: 32px;
    height: 1px;
    background: var(--gradient-primary);
  }
  .terms-page__hero-title {
    margin-bottom: 2rem;
    max-width: 18ch;
    text-wrap: balance;
  }
  .terms-page__hero-title em {
    font-style: normal;
    font-weight: 600;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }

  .terms-page__hero-stamp {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
    gap: 0;
    padding: 1.25rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    margin-bottom: 2rem;
  }
  .terms-page__stamp-row {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    padding: 0.5rem 0;
    border-right: 1px solid rgba(255, 255, 255, 0.06);
    padding-right: 1rem;
  }
  .terms-page__stamp-row:last-child { border-right: none; }
  .terms-page__stamp-label {
    font-family: var(--font-mono);
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--text-muted, rgba(148, 163, 196, 0.6));
  }
  .terms-page__stamp-value {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-primary);
    letter-spacing: -0.005em;
  }

  .terms-page__hero-lede {
    font-size: clamp(1.05rem, 1.4vw, 1.2rem);
    color: var(--text-secondary);
    max-width: 62ch;
    line-height: 1.7;
  }

  /* Intro */
  .terms-page__intro {
    display: grid;
    grid-template-columns: 180px 1fr;
    gap: 3rem;
    padding: clamp(2.5rem, 5vw, 4rem) 0;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    align-items: start;
  }
  .terms-page__section-index {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--text-muted, rgba(148, 163, 196, 0.55));
    padding-top: 0.8rem;
  }
  .terms-page__section-index span { color: var(--accent-cyan); font-weight: 600; }
  .terms-page__intro-body {
    padding: clamp(1.75rem, 3vw, 2.75rem);
    border-radius: var(--radius-lg, 20px);
  }
  .terms-page__intro-body p {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.75;
    margin-bottom: 1.25rem;
  }
  .terms-page__intro-body p:last-child { margin-bottom: 0; }
  .terms-page__inline-link {
    color: var(--accent-cyan);
    text-decoration: none;
    border-bottom: 1px dashed rgba(0, 212, 255, 0.45);
    transition: color 0.2s ease, border-color 0.2s ease;
  }
  .terms-page__inline-link:hover {
    color: #7c3aed;
    border-bottom-color: rgba(124, 58, 237, 0.6);
  }

  .terms-page__callout {
    margin: 1.75rem 0;
    padding: 1.25rem 1.5rem;
    border-left: 3px solid var(--accent-cyan);
    background: linear-gradient(90deg, rgba(0, 212, 255, 0.08) 0%, rgba(0, 212, 255, 0) 100%);
    border-radius: 0 12px 12px 0;
  }
  .terms-page__callout-label {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--accent-cyan);
    margin-bottom: 0.5rem;
    font-weight: 600;
  }
  .terms-page__callout p {
    color: var(--text-primary);
    margin-bottom: 0;
    font-size: 1rem;
    line-height: 1.6;
  }

  /* Table of contents */
  .terms-page__toc {
    padding: clamp(1.5rem, 3vw, 2.25rem);
    margin: 2rem 0 clamp(3rem, 6vw, 5rem);
    border-radius: var(--radius-lg, 20px);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.01) 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(var(--glass-blur, 12px));
    -webkit-backdrop-filter: blur(var(--glass-blur, 12px));
  }
  .terms-page__toc-label {
    font-family: var(--font-mono);
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.22em;
    color: var(--accent-cyan);
    margin-bottom: 1.25rem;
    font-weight: 600;
  }
  .terms-page__toc-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 0.5rem 1.5rem;
    counter-reset: toc;
  }
  .terms-page__toc-list li {
    counter-increment: toc;
    display: flex;
    align-items: baseline;
    gap: 0.75rem;
    padding: 0.55rem 0;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.05);
  }
  .terms-page__toc-list li::before {
    content: counter(toc, decimal-leading-zero);
    font-family: var(--font-mono);
    font-size: 0.7rem;
    color: var(--text-muted, rgba(148, 163, 196, 0.55));
    letter-spacing: 0.12em;
    flex: 0 0 auto;
    min-width: 2ch;
  }
  .terms-page__toc-list a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.94rem;
    transition: color 0.2s ease;
    font-weight: 400;
  }
  .terms-page__toc-list a:hover { color: var(--accent-cyan); }

  /* Clauses */
  .terms-page__clauses {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
  }
  .terms-page__clause {
    display: grid;
    grid-template-columns: 90px 1fr;
    gap: clamp(1.5rem, 3vw, 2.5rem);
    padding: clamp(2rem, 4vw, 3rem) 0;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    scroll-margin-top: 100px;
  }
  .terms-page__clause-index {
    font-family: var(--font-mono);
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--text-muted, rgba(148, 163, 196, 0.55));
    padding-top: 0.75rem;
    position: sticky;
    top: 90px;
    align-self: start;
    height: fit-content;
  }
  .terms-page__clause-index span {
    display: inline-block;
    padding: 0.4rem 0.7rem;
    border: 1px solid rgba(0, 212, 255, 0.25);
    border-radius: 6px;
    color: var(--accent-cyan);
    font-weight: 600;
    background: rgba(0, 212, 255, 0.04);
    letter-spacing: 0.08em;
  }

  .terms-page__clause-title {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 2.2vw, 1.9rem);
    font-weight: 500;
    letter-spacing: -0.02em;
    line-height: 1.2;
    margin: 0 0 1.25rem;
    color: var(--text-primary);
    text-wrap: balance;
  }
  .terms-page__clause-body p {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 1.25rem;
  }
  .terms-page__clause-body p:last-child { margin-bottom: 0; }
  .terms-page__clause-body strong { color: var(--text-primary); font-weight: 600; }

  /* Lists */
  .terms-page__list {
    margin: 1.25rem 0 1.5rem;
    padding: 0;
    list-style: none;
  }
  .terms-page__list li {
    position: relative;
    padding: 0.5rem 0 0.5rem 1.75rem;
    color: var(--text-secondary);
    font-size: 0.98rem;
    line-height: 1.7;
  }
  .terms-page__list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 1.05rem;
    width: 8px;
    height: 1px;
    background: var(--accent-cyan);
  }

  .terms-page__sub-list {
    margin: 1.25rem 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
  }
  .terms-page__sub-list li {
    display: grid;
    grid-template-columns: 52px 1fr;
    gap: 1rem;
    padding: 1rem 1.25rem;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--text-secondary);
    font-size: 0.98rem;
    line-height: 1.7;
  }
  .terms-page__sub-num {
    font-family: var(--font-mono);
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--accent-cyan);
    letter-spacing: 0.04em;
    padding-top: 0.1rem;
  }
  /* Ensure any non-num direct child of a sub-list item flows into the text column */
  .terms-page__sub-list li > *:not(.terms-page__sub-num) {
    grid-column: 2;
  }

  /* Example / example-style callout inside clauses */
  .terms-page__example {
    margin: 1.5rem 0;
    padding: 1.25rem 1.5rem;
    border-left: 3px solid #7c3aed;
    background: linear-gradient(90deg, rgba(124, 58, 237, 0.08) 0%, rgba(124, 58, 237, 0) 100%);
    border-radius: 0 12px 12px 0;
  }
  .terms-page__example-label {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: #c4b5fd;
    margin-bottom: 0.5rem;
    font-weight: 600;
  }
  .terms-page__example p {
    color: var(--text-primary);
    margin-bottom: 0;
    font-size: 0.98rem;
    line-height: 1.7;
  }

  /* Sub-sections (17.a through 17.l) */
  .terms-page__sub-section {
    margin-top: 2rem;
    padding-top: 1.75rem;
    border-top: 1px dashed rgba(255, 255, 255, 0.08);
    scroll-margin-top: 100px;
  }
  .terms-page__sub-title {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 500;
    letter-spacing: -0.01em;
    color: var(--text-primary);
    margin: 0 0 1rem;
    display: inline-flex;
    align-items: baseline;
    gap: 0.75rem;
  }
  .terms-page__sub-title span {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--accent-cyan);
    letter-spacing: 0.08em;
    padding: 0.25rem 0.55rem;
    border: 1px solid rgba(0, 212, 255, 0.25);
    border-radius: 5px;
    background: rgba(0, 212, 255, 0.05);
  }
  .terms-page__sub-section p {
    color: var(--text-secondary);
    font-size: 0.98rem;
    line-height: 1.75;
    margin-bottom: 1rem;
  }
  .terms-page__sub-section p:last-child { margin-bottom: 0; }

  /* Closing */
  .terms-page__closing {
    padding: clamp(3rem, 6vw, 5rem) 0 0;
  }
  .terms-page__closing-card {
    padding: clamp(2rem, 4vw, 3rem);
    border-radius: var(--radius-lg, 20px);
  }
  .terms-page__closing-note {
    font-size: clamp(1.05rem, 1.3vw, 1.15rem);
    color: var(--text-primary);
    line-height: 1.7;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    text-wrap: balance;
  }
  .terms-page__closing-contact p {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1.25rem;
  }
  .terms-page__contact-label {
    font-family: var(--font-mono);
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--accent-cyan);
    margin-bottom: 0.75rem;
    font-weight: 600;
  }
  .terms-page__contact-email {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.85rem 1.5rem;
    border-radius: 100px;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.12) 0%, rgba(124, 58, 237, 0.12) 100%);
    border: 1px solid rgba(0, 212, 255, 0.3);
    color: var(--accent-cyan);
    font-family: var(--font-mono);
    font-size: 0.92rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.25s ease, background 0.25s ease;
  }
  .terms-page__contact-email:hover {
    transform: translateY(-1px);
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.22) 0%, rgba(124, 58, 237, 0.22) 100%);
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.2);
    color: #fff;
  }

  /* Responsive */
  @media (max-width: 800px) {
    .terms-page__intro,
    .terms-page__clause {
      grid-template-columns: 1fr;
      gap: 1.25rem;
    }
    .terms-page__clause-index {
      position: static;
      padding-top: 0;
    }
    .terms-page__clause-index span { font-size: 0.72rem; }
    .terms-page__stamp-row {
      border-right: none;
      border-bottom: 1px solid rgba(255, 255, 255, 0.06);
      padding-right: 0;
    }
    .terms-page__stamp-row:last-child { border-bottom: none; }
    .terms-page__sub-list li { grid-template-columns: 1fr; gap: 0.25rem; }
  }
