                /* Terms Page Layout */
                .terms-page {
                    padding-top: 120px;
                    min-height: 80vh;
                    background-color: var(--light-color);
                }

                .terms-layout {
                    display: grid;
                    grid-template-columns: 250px 1fr;
                    gap: 3rem;
                    max-width: 1200px;
                    margin: 0 auto;
                }

                /* Table of Contents Sidebar */
                .terms-toc {
                    position: sticky;
                    top: 100px;
                    align-self: start;
                    background: white;
                    border-radius: 8px;
                    padding: 1.5rem;
                    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
                    height: fit-content;
                    max-height: calc(100vh - 120px);
                    overflow-y: auto;
                }

                /* Custom scrollbar for TOC */
                .terms-toc::-webkit-scrollbar {
                    width: 6px;
                }

                .terms-toc::-webkit-scrollbar-track {
                    background: #f1f1f1;
                    border-radius: 3px;
                }

                .terms-toc::-webkit-scrollbar-thumb {
                    background: #888;
                    border-radius: 3px;
                }

                .terms-toc::-webkit-scrollbar-thumb:hover {
                    background: #555;
                }

                .terms-toc h3 {
                    font-size: 1.1rem;
                    margin-bottom: 0.75rem;
                    color: var(--accent-color);
                    border-bottom: 2px solid var(--accent-color);
                    padding-bottom: 0.4rem;
                }

                .terms-toc ul {
                    list-style: none;
                    padding: 0;
                    margin: 0;
                }

                .terms-toc li {
                    margin-bottom: 0.4rem;
                }

                .terms-toc a {
                    display: block;
                    padding: 0.35rem 0.6rem;
                    color: var(--dark-color);
                    font-size: 0.9rem;
                    border-radius: 4px;
                    transition: all 0.3s ease;
                    border-left: 3px solid transparent;
                }

                .terms-toc a:hover {
                    background-color: rgba(94, 96, 206, 0.1);
                    border-left-color: var(--accent-color);
                    transform: translateX(3px);
                }

                /* Focus styles for accessibility */
                .terms-toc a:focus {
                    outline: 2px solid var(--accent-color);
                    outline-offset: 2px;
                    background-color: rgba(94, 96, 206, 0.05);
                }

                .terms-toc a:focus:not(:focus-visible) {
                    outline: none;
                }

                /* Main Content Area */
                .terms-content {
                    max-width: 900px;
                }

                .terms-content > h1 {
                    font-size: 3rem;
                    margin-bottom: 3rem;
                    color: var(--primary-color);
                    line-height: 1.2;
                }

                .terms-content > h1::after {
                    content: '';
                    display: block;
                    width: 80px;
                    height: 4px;
                    background: linear-gradient(90deg, var(--accent-color), transparent);
                    margin-top: 1rem;
                }

                /* Terms Sections */
                .terms-section {
                    position: relative;
                    margin-bottom: 3rem;
                    padding: 2.5rem;
                    background: white;
                    border-radius: 8px;
                    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
                    border-left: 4px solid var(--accent-color);
                    scroll-margin-top: 100px;
                    transition: all 0.3s ease;
                }

                /* Enhanced hover effects for sections */
                .terms-section:hover {
                    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
                    transform: translateY(-2px);
                    border-left-width: 6px;
                }

                /* Visual connection between sections */
                .terms-section:not(:last-child)::after {
                    content: '';
                    position: absolute;
                    bottom: -1.5rem;
                    left: 50%;
                    transform: translateX(-50%);
                    width: 40px;
                    height: 3px;
                    background: linear-gradient(90deg, transparent, var(--accent-color), transparent);
                    opacity: 0.3;
                    transition: all 0.3s ease;
                }

                .terms-section:hover:not(:last-child)::after {
                    width: 60px;
                    opacity: 0.6;
                }

                .section-number {
                    position: absolute;
                    top: -15px;
                    left: 20px;
                    background: var(--accent-color);
                    color: white;
                    width: 45px;
                    height: 45px;
                    border-radius: 50%;
                    display: flex;
                    align-items: center;
                    justify-content: center;
                    font-weight: 700;
                    font-size: 1rem;
                    box-shadow: 0 2px 8px rgba(94, 96, 206, 0.3);
                    transition: all 0.3s ease;
                }

                .terms-section:hover .section-number {
                    transform: scale(1.1);
                    box-shadow: 0 4px 12px rgba(94, 96, 206, 0.4);
                }

                .terms-section h2 {
                    font-size: 1.75rem;
                    color: var(--primary-color);
                    margin-bottom: 1.5rem;
                    margin-top: 0.5rem;
                }

                .terms-section p {
                    line-height: 1.8;
                    color: var(--secondary-color);
                    margin-bottom: 1.25rem;
                    font-size: 1rem;
                }

                .terms-section p:last-child {
                    margin-bottom: 0;
                }

                /* Typography Enhancements */
                .terms-section strong {
                    color: var(--primary-color);
                    font-weight: 600;
                }

                /* Effective Date Styling */
                .effective-date {
                    font-style: italic;
                    color: #666;
                    margin-top: -1.5rem;
                    margin-bottom: 2.5rem;
                    font-size: 1.1rem;
                }

                /* Subsections Styling */
                .subsections {
                    margin-top: 1.5rem;
                    padding-left: 2rem;
                    border-left: 3px solid rgba(94, 96, 206, 0.2);
                }

                .subsection {
                    margin-bottom: 1.5rem;
                    position: relative;
                }

                .subsection:last-child {
                    margin-bottom: 0;
                }

                .subsection h3 {
                    font-size: 1.25rem;
                    color: var(--primary-color);
                    margin-bottom: 0.75rem;
                    font-weight: 600;
                    position: relative;
                }

                .subsection h3::before {
                    content: '';
                    position: absolute;
                    left: -2.25rem;
                    top: 50%;
                    transform: translateY(-50%);
                    width: 8px;
                    height: 8px;
                    background: var(--accent-color);
                    border-radius: 50%;
                }

                .subsection p {
                    line-height: 1.8;
                    color: var(--secondary-color);
                    margin-bottom: 1rem;
                }

                .subsection p:last-child {
                    margin-bottom: 0;
                }

                /* Enhanced List Styling */
                .enhanced-list {
                    list-style: none;
                    padding: 0;
                    margin: 1.5rem 0;
                    background: linear-gradient(90deg, rgba(94, 96, 206, 0.05) 0%, transparent 100%);
                    border-radius: 8px;
                    padding: 1.25rem 1.5rem;
                }

                .enhanced-list li {
                    position: relative;
                    display: flex;
                    align-items: flex-start;
                    margin-bottom: 1rem;
                    padding-left: 0;
                    line-height: 1.8;
                    color: var(--secondary-color);
                }

                .enhanced-list li:last-child {
                    margin-bottom: 0;
                }

                .enhanced-list .list-marker {
                    flex-shrink: 0;
                    width: 24px;
                    height: 24px;
                    margin-right: 1rem;
                    margin-top: 2px;
                    position: relative;
                }

                .enhanced-list .list-marker::before {
                    content: '';
                    position: absolute;
                    top: 50%;
                    left: 50%;
                    transform: translate(-50%, -50%);
                    width: 8px;
                    height: 8px;
                    background: var(--accent-color);
                    border-radius: 50%;
                    box-shadow: 0 0 0 3px rgba(94, 96, 206, 0.15);
                    transition: all 0.3s ease;
                }

                .enhanced-list li:hover .list-marker::before {
                    transform: translate(-50%, -50%) scale(1.3);
                    box-shadow: 0 0 0 4px rgba(94, 96, 206, 0.25);
                }

                .enhanced-list .list-content {
                    flex: 1;
                    font-size: 1rem;
                }

                .enhanced-list .list-content strong {
                    color: var(--primary-color);
                    font-weight: 600;
                }

                /* Nested lists within subsections */
                .subsection .enhanced-list {
                    background: linear-gradient(90deg, rgba(94, 96, 206, 0.03) 0%, transparent 100%);
                    margin: 1rem 0;
                    padding: 1rem 1.25rem;
                }

                .subsection .enhanced-list .list-marker::before {
                    width: 6px;
                    height: 6px;
                }

                /* Archive Link Styling */
                .terms-archive-link {
                    margin-top: 3rem;
                    padding-top: 2rem;
                    text-align: center;
                }

                .terms-archive-link hr {
                    border: none;
                    border-top: 2px solid rgba(94, 96, 206, 0.15);
                    margin-bottom: 2rem;
                }

                .terms-archive-link a {
                    color: var(--accent-color);
                    font-size: 1.05rem;
                    text-decoration: none;
                    display: inline-flex;
                    align-items: center;
                    gap: 0.5rem;
                    transition: all 0.3s ease;
                    padding: 0.75rem 1.5rem;
                    border-radius: 8px;
                    background: rgba(94, 96, 206, 0.05);
                    border: 2px solid transparent;
                }

                .terms-archive-link a:hover {
                    background: rgba(94, 96, 206, 0.1);
                    border-color: var(--accent-color);
                    transform: translateY(-2px);
                    box-shadow: 0 4px 12px rgba(94, 96, 206, 0.2);
                }

                /* Archive Modal Styles */
                .terms-archive-modal {
                    position: fixed;
                    top: 0;
                    left: 0;
                    width: 100%;
                    height: 100%;
                    background: rgba(0, 0, 0, 0.7);
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    z-index: 10000;
                    animation: modalFadeIn 0.3s ease;
                }

                @keyframes modalFadeIn {
                    from {
                        opacity: 0;
                    }
                    to {
                        opacity: 1;
                    }
                }

                .terms-archive-modal-content {
                    background: white;
                    border-radius: 12px;
                    max-width: 600px;
                    width: 90%;
                    max-height: 80vh;
                    overflow: hidden;
                    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
                    animation: modalSlideIn 0.3s ease;
                }

                @keyframes modalSlideIn {
                    from {
                        transform: translateY(-50px);
                        opacity: 0;
                    }
                    to {
                        transform: translateY(0);
                        opacity: 1;
                    }
                }

                .terms-archive-header {
                    padding: 1.5rem;
                    background: linear-gradient(135deg, var(--accent-color), #7b7dff);
                    color: white;
                    display: flex;
                    justify-content: space-between;
                    align-items: center;
                }

                .terms-archive-header h2 {
                    margin: 0;
                    font-size: 1.5rem;
                    color: white;
                }

                .close-archive-modal {
                    background: rgba(255, 255, 255, 0.2);
                    border: none;
                    color: white;
                    width: 36px;
                    height: 36px;
                    border-radius: 50%;
                    cursor: pointer;
                    display: flex;
                    align-items: center;
                    justify-content: center;
                    transition: background 0.3s ease;
                    font-size: 1.2rem;
                }

                .close-archive-modal:hover {
                    background: rgba(255, 255, 255, 0.3);
                }

                .terms-archive-list {
                    padding: 1.5rem;
                    max-height: calc(80vh - 100px);
                    overflow-y: auto;
                }

                .archive-item {
                    padding: 1.25rem;
                    border: 2px solid #e0e0e0;
                    border-radius: 8px;
                    margin-bottom: 1rem;
                    transition: all 0.3s ease;
                }

                .archive-item:hover:not(.current) {
                    border-color: var(--accent-color);
                    box-shadow: 0 4px 12px rgba(94, 96, 206, 0.1);
                }

                .archive-item.current {
                    background: rgba(94, 96, 206, 0.05);
                    border-color: var(--accent-color);
                }

                .archive-date {
                    font-size: 1.1rem;
                    font-weight: 600;
                    color: var(--primary-color);
                    margin-bottom: 0.5rem;
                }

                .archive-description {
                    color: #666;
                    margin-bottom: 0.75rem;
                    font-size: 0.95rem;
                }

                .archive-view-link {
                    display: inline-flex;
                    align-items: center;
                    gap: 0.5rem;
                    color: var(--accent-color);
                    text-decoration: none;
                    font-weight: 500;
                    padding: 0.5rem 1rem;
                    border-radius: 6px;
                    background: rgba(94, 96, 206, 0.1);
                    transition: all 0.3s ease;
                    font-size: 0.95rem;
                }

                .archive-view-link:hover {
                    background: var(--accent-color);
                    color: white;
                }

                .archive-current-badge {
                    display: inline-block;
                    padding: 0.4rem 1rem;
                    background: var(--accent-color);
                    color: white;
                    border-radius: 20px;
                    font-size: 0.85rem;
                    font-weight: 600;
                }

                /* Links focus styles */
                a:focus {
                    outline: 2px solid var(--accent-color);
                    outline-offset: 2px;
                }

                a:focus:not(:focus-visible) {
                    outline: none;
                }

                /* Button focus styles */
                button:focus {
                    outline: 2px solid var(--accent-color);
                    outline-offset: 2px;
                }

                button:focus:not(:focus-visible) {
                    outline: none;
                }

                /* Dark Mode Styles */
                body.dark-mode .terms-page {
                    background-color: #121212;
                }

                body.dark-mode .effective-date {
                    color: #aaa;
                }

                body.dark-mode .subsections {
                    border-left-color: rgba(187, 134, 252, 0.2);
                }

                body.dark-mode .subsection h3 {
                    color: #e0e0e0;
                }

                body.dark-mode .subsection h3::before {
                    background: var(--accent-color);
                }

                body.dark-mode .terms-archive-link hr {
                    border-top-color: rgba(187, 134, 252, 0.15);
                }

                body.dark-mode .terms-archive-link a {
                    background: rgba(187, 134, 252, 0.05);
                }

                body.dark-mode .terms-archive-link a:hover {
                    background: rgba(187, 134, 252, 0.1);
                }

                body.dark-mode .terms-archive-modal-content {
                    background: #1e1e1e;
                }

                body.dark-mode .archive-item {
                    border-color: #333;
                }

                body.dark-mode .archive-item:hover:not(.current) {
                    border-color: var(--accent-color);
                }

                body.dark-mode .archive-date {
                    color: #e0e0e0;
                }

                body.dark-mode .archive-description {
                    color: #aaa;
                }

                body.dark-mode .archive-change-notes {
                    color: #999;
                }

                body.dark-mode .archive-empty,
                body.dark-mode .archive-error {
                    color: #aaa;
                }

                body.dark-mode .archive-empty i {
                    color: #555;
                }

                body.dark-mode .terms-view-modal-content {
                    background: #1e1e1e;
                }

                body.dark-mode .terms-view-body {
                    background: #121212;
                }

                body.dark-mode .archive-version-info {
                    background: #1e1e1e;
                    border-left-color: var(--accent-color);
                }

                body.dark-mode .archive-version-info .effective-date {
                    color: #e0e0e0;
                }

                body.dark-mode .archive-version-info .change-notes {
                    color: #999;
                }

                body.dark-mode .terms-content-archived {
                    background: #1e1e1e;
                }

                body.dark-mode .terms-content-archived .terms-section {
                    border-bottom-color: #333;
                }

                body.dark-mode .loading-indicator {
                    color: #aaa;
                }

                body.dark-mode .terms-toc,
                body.dark-mode .terms-section {
                    background-color: #1e1e1e;
                    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
                }

                body.dark-mode .terms-section:hover {
                    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
                    transform: translateY(-2px);
                }

                body.dark-mode .terms-section:not(:last-child)::after {
                    background: linear-gradient(90deg, transparent, rgba(187, 134, 252, 0.6), transparent);
                }

                body.dark-mode .terms-toc h3 {
                    color: var(--accent-color);
                }

                body.dark-mode .terms-toc a {
                    color: #e0e0e0;
                }

                body.dark-mode .terms-toc a:hover {
                    background-color: rgba(187, 134, 252, 0.1);
                }

                body.dark-mode .terms-content > h1,
                body.dark-mode .terms-section h2 {
                    color: #e0e0e0;
                }

                body.dark-mode .terms-section p {
                    color: #aaa;
                }

                body.dark-mode .terms-section strong {
                    color: #e0e0e0;
                }

                /* Dark Mode Styles for Enhanced List */
                body.dark-mode .enhanced-list {
                    background: linear-gradient(90deg, rgba(187, 134, 252, 0.08) 0%, transparent 100%);
                }

                body.dark-mode .enhanced-list li {
                    color: #e0e0e0;
                }

                body.dark-mode .enhanced-list .list-content {
                    color: #e0e0e0;
                }

                body.dark-mode .enhanced-list .list-content strong {
                    color: #f0f0f0;
                }

                body.dark-mode .enhanced-list .list-marker::before {
                    background: var(--accent-color);
                    box-shadow: 0 0 0 3px rgba(187, 134, 252, 0.2);
                }

                body.dark-mode .enhanced-list li:hover .list-marker::before {
                    box-shadow: 0 0 0 4px rgba(187, 134, 252, 0.35);
                }

                body.dark-mode .subsection .enhanced-list {
                    background: linear-gradient(90deg, rgba(187, 134, 252, 0.05) 0%, transparent 100%);
                }

                /* Responsive Design */
                @media (max-width: 992px) {
                    .terms-layout {
                        grid-template-columns: 1fr;
                        gap: 2rem;
                    }

                    .terms-toc {
                        position: relative;
                        top: 0;
                        order: -1;
                    }

                    .terms-toc nav {
                        max-height: 300px;
                        overflow-y: auto;
                    }
                }

                @media (max-width: 768px) {
                    .terms-page {
                        padding-top: 100px;
                    }

                    /* Hide table of contents on mobile */
                    .terms-toc {
                        display: none;
                    }

                    .terms-content > h1 {
                        font-size: 2rem;
                    }

                    .terms-section {
                        padding: 1.5rem;
                        margin-bottom: 2rem;
                    }

                    .terms-section h2 {
                        font-size: 1.5rem;
                    }

                    .section-number {
                        width: 40px;
                        height: 40px;
                        font-size: 0.9rem;
                    }
                }

                @media (max-width: 480px) {
                    .terms-content > h1 {
                        font-size: 1.75rem;
                    }

                    .terms-section h2 {
                        font-size: 1.25rem;
                    }

                    .terms-section p {
                        font-size: 0.95rem;
                    }

                    .subsections {
                        padding-left: 1.5rem;
                    }

                    .subsection h3 {
                        font-size: 1.1rem;
                    }

                    .subsection h3::before {
                        left: -1.75rem;
                    }

                    .enhanced-list {
                        padding: 1rem 1.25rem;
                        margin: 1rem 0;
                    }

                    .enhanced-list .list-marker {
                        width: 20px;
                        margin-right: 0.75rem;
                    }

                    .enhanced-list .list-marker::before {
                        width: 6px;
                        height: 6px;
                    }

                    .enhanced-list .list-content {
                        font-size: 0.95rem;
                    }

                    .subsection .enhanced-list {
                        padding: 0.75rem 1rem;
                    }

                    .terms-archive-link a {
                        font-size: 0.95rem;
                        padding: 0.6rem 1.2rem;
                    }

                    .terms-archive-modal-content {
                        width: 95%;
                    }

                    .terms-archive-header h2 {
                        font-size: 1.25rem;
                    }

                    .terms-view-modal-content {
                        width: 95%;
                        height: 90vh;
                    }

                    .terms-view-header h2 {
                        font-size: 1.25rem;
                    }

                    .terms-view-body {
                        padding: 1.5rem;
                    }

                    .archive-version-info {
                        padding: 1rem;
                    }

                    .terms-content-archived {
                        padding: 1rem;
                    }
                }

                /* Support Authorization CTA Boxes */
                .support-cta-box {
                    margin-bottom: 3rem;
                    background: linear-gradient(135deg, #5e60ce 0%, #7b7dff 100%);
                    border-radius: 12px;
                    padding: 2.5rem;
                    box-shadow: 0 8px 20px rgba(94, 96, 206, 0.25);
                    position: relative;
                    overflow: hidden;
                }

                .support-cta-box::before {
                    content: '';
                    position: absolute;
                    top: -50%;
                    right: -50%;
                    width: 200%;
                    height: 200%;
                    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
                    pointer-events: none;
                }

                .support-cta-box.support-cta-bottom {
                    margin-top: 3rem;
                    margin-bottom: 0;
                }

                .support-cta-content {
                    display: flex;
                    align-items: center;
                    gap: 2rem;
                    position: relative;
                    z-index: 1;
                }

                .support-cta-icon {
                    display: flex;
                    align-items: center;
                    justify-content: center;
                    width: 80px;
                    height: 80px;
                    background: rgba(255, 255, 255, 0.15);
                    border-radius: 50%;
                    flex-shrink: 0;
                    backdrop-filter: blur(10px);
                }

                .support-cta-icon i {
                    font-size: 2.5rem;
                    color: white;
                }

                .support-cta-text {
                    flex: 1;
                    color: white;
                }

                .support-cta-text h2 {
                    margin: 0 0 0.75rem 0;
                    font-size: 1.75rem;
                    color: white;
                    font-weight: 700;
                }

                .support-cta-text p {
                    margin: 0;
                    font-size: 1.05rem;
                    color: rgba(255, 255, 255, 0.95);
                    line-height: 1.6;
                }

                .support-cta-button {
                    display: inline-flex;
                    align-items: center;
                    gap: 0.75rem;
                    padding: 1rem 2rem;
                    background: white;
                    color: var(--accent-color);
                    font-weight: 600;
                    font-size: 1.05rem;
                    border-radius: 8px;
                    transition: all 0.3s ease;
                    text-decoration: none;
                    white-space: nowrap;
                    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
                }

                .support-cta-button:hover {
                    transform: translateY(-2px);
                    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
                    background: #f8f9fa;
                }

                .support-cta-button:focus {
                    outline: 3px solid var(--accent-color);
                    outline-offset: 3px;
                }

                .support-cta-button:focus:not(:focus-visible) {
                    outline: none;
                }

                .support-cta-button i {
                    transition: transform 0.3s ease;
                }

                .support-cta-button:hover i {
                    transform: translateX(4px);
                }

                /* Dark Mode Support CTA */
                body.dark-mode .support-cta-box {
                    background: linear-gradient(135deg, #4a4db8 0%, #6668e8 100%);
                    box-shadow: 0 8px 20px rgba(94, 96, 206, 0.4);
                }

                body.dark-mode .support-cta-button {
                    background: #f8f9fa;
                    color: var(--accent-color);
                }

                body.dark-mode .support-cta-button:hover {
                    background: white;
                }

                /* Responsive Support CTA */
                @media (max-width: 768px) {
                    .support-cta-box {
                        padding: 2rem;
                    }

                    .support-cta-content {
                        flex-direction: column;
                        text-align: center;
                        gap: 1.5rem;
                    }

                    .support-cta-icon {
                        width: 70px;
                        height: 70px;
                    }

                    .support-cta-icon i {
                        font-size: 2rem;
                    }

                    .support-cta-text h2 {
                        font-size: 1.5rem;
                    }

                    .support-cta-text p {
                        font-size: 1rem;
                    }

                    .support-cta-button {
                        width: 100%;
                        justify-content: center;
                        padding: 0.875rem 1.5rem;
                    }
                }

                @media (max-width: 480px) {
                    .support-cta-box {
                        padding: 1.5rem;
                    }

                    .support-cta-icon {
                        width: 60px;
                        height: 60px;
                    }

                    .support-cta-icon i {
                        font-size: 1.75rem;
                    }

                    .support-cta-text h2 {
                        font-size: 1.25rem;
                    }

                    .support-cta-text p {
                        font-size: 0.95rem;
                    }

                    .support-cta-button {
                        font-size: 1rem;
                        padding: 0.75rem 1.25rem;
                    }
                }
                /* --- editorial cool overrides (the dynamically loaded terms are re-skinned, not rebuilt) --- */
                body.site-cool .terms-page { background: var(--studio-bg); }
                body.site-cool .terms-toc { background: var(--studio-bg-2); box-shadow: none; border: 1px solid rgba(14, 17, 22, 0.1); border-radius: 2px; }
                body.site-cool .terms-toc h3 { font-family: var(--din); text-transform: uppercase; letter-spacing: 0.12em; color: var(--studio-accent); border-color: rgba(14, 17, 22, 0.14); }
                body.site-cool .terms-toc a { color: var(--studio-soft); }
                body.site-cool .terms-toc a:hover { color: var(--studio-accent); }
                body.site-cool .terms-content > h1,
                body.site-cool #terms-content h1 { font-family: var(--studio-serif); font-weight: 400; letter-spacing: -0.01em; color: var(--studio-ink); }
                body.site-cool #terms-content h2,
                body.site-cool #terms-content h3 { color: var(--studio-ink); }
                body.site-cool #terms-content a,
                body.site-cool .terms-archive-link a { color: var(--studio-accent); }
                body.site-cool .support-cta-box { background: var(--studio-bg-2); border: 1px solid rgba(14, 17, 22, 0.1); box-shadow: none; }
                body.site-cool .support-cta-icon { color: var(--studio-accent); }
                body.site-cool .support-cta-button { background: var(--studio-ink); border-radius: 2px; }
                body.site-cool .support-cta-button:hover { background: var(--studio-accent); }
                body.site-cool .terms-section { border-left-color: var(--studio-accent); border-radius: 2px; }
                body.site-cool .section-number { background: var(--studio-accent); box-shadow: none; }
                body.site-cool .terms-content > h1::after { background: linear-gradient(90deg, var(--studio-accent), transparent); }
                body.site-cool .terms-section:not(:last-child)::after { background: linear-gradient(90deg, transparent, var(--studio-accent), transparent); }
                body.site-cool .terms-toc a:hover { background-color: rgba(70, 112, 143, 0.1); border-left-color: var(--studio-accent); }

                /* --- editorial refinement: ruled sections, DIN number eyebrows,
                       serif titles, and a readable callout (its text/icon were
                       hard-coded white for the old dark box). All colours key off
                       --studio-* tokens so the page adapts in dark mode too. --- */
                body.site-cool .terms-section {
                    background: transparent; box-shadow: none; border: 0;
                    border-top: 1px solid var(--studio-border); border-radius: 0;
                    margin: 0; padding: 2.75rem 0;
                }
                body.site-cool .terms-section:hover { box-shadow: none; transform: none; }
                body.site-cool .terms-section:not(:last-child)::after { display: none; }
                body.site-cool .section-number {
                    position: static; width: auto; height: auto;
                    background: transparent; box-shadow: none; border-radius: 0;
                    display: block; margin: 0 0 0.5rem; padding: 0;
                    font-family: var(--din); font-weight: 400;
                    font-size: 1rem; letter-spacing: 0.16em; color: var(--studio-accent);
                }
                body.site-cool .terms-section:hover .section-number { transform: none; box-shadow: none; }
                body.site-cool .terms-section h2 {
                    font-family: var(--studio-serif); font-weight: 400;
                    letter-spacing: -0.01em; color: var(--studio-ink); margin-top: 0;
                }
                body.site-cool .terms-section p { color: var(--studio-soft); }
                body.site-cool .terms-section strong { color: var(--studio-ink); }

                body.site-cool .support-cta-box::before { display: none; }
                body.site-cool .support-cta-text,
                body.site-cool .support-cta-text h2,
                body.site-cool .support-cta-text p { color: var(--studio-ink); }
                body.site-cool .support-cta-text h2 { font-family: var(--studio-serif); font-weight: 400; }
                body.site-cool .support-cta-text p { color: var(--studio-soft); }
                body.site-cool .support-cta-icon {
                    background: transparent; border: 1px solid var(--studio-border);
                    backdrop-filter: none; -webkit-backdrop-filter: none;
                }
                body.site-cool .support-cta-icon i { color: var(--studio-accent); }
                body.site-cool .support-cta-button { color: var(--studio-bg); box-shadow: none; }
                body.site-cool .support-cta-button:hover { color: var(--studio-bg); box-shadow: none; transform: none; }

                /* lists + subsections: drop the indigo tint box and purple markers
                   for clean steel-accent bullets on a transparent ground */
                body.site-cool .enhanced-list { background: transparent; padding: 0; }
                body.site-cool .enhanced-list li { color: var(--studio-soft); }
                body.site-cool .enhanced-list .list-marker::before {
                    background: var(--studio-accent); box-shadow: none;
                }
                body.site-cool .enhanced-list li:hover .list-marker::before {
                    box-shadow: none; transform: translate(-50%, -50%);
                }
                body.site-cool .enhanced-list .list-content strong,
                body.site-cool .subsection strong { color: var(--studio-ink); }
                body.site-cool .subsections { border-left-color: var(--studio-border); }
                body.site-cool .subsection h3 { color: var(--studio-ink); }
                body.site-cool .subsection h3::before { background: var(--studio-accent); }
                body.site-cool .subsection p { color: var(--studio-soft); }
                body.site-cool .effective-date { color: var(--studio-soft); }
