﻿*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    min-height: 100vh;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: hsl(0, 0%, 15%);
    background-color: hsl(0, 0%, 98%);
    overflow-x: hidden;
}

img, picture, video, canvas, svg {
    display: block;
    max-width: 100%;
    height: auto;
}

input, button, textarea, select {
    font: inherit;
}

button {
    cursor: pointer;
    border: none;
    background: none;
}

a {
    color: inherit;
    text-decoration: none;
}

ul, ol {
    list-style: none;
}

@font-face {
    font-family: 'Work Sans';
    src: url('/resources-hub/fonts-tbs/work-sans-latin-400.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Work Sans';
    src: url('/resources-hub/fonts-tbs/work-sans-latin-700.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Lora';
    src: url('/resources-hub/fonts-tbs/lora-latin-400.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Line Awesome Free';
    src: url('/resources-hub/fonts-tbs/line-awesome-solid.woff2') format('woff2');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

.las {
    display: inline-block;
    white-space: nowrap;
    line-height: 1;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.las::before {
    font-family: 'Line Awesome Free';
    font-weight: 900;
    font-style: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
}

.la-university::before { content: "\f19c"; }
.la-chart-line::before { content: "\f201"; }
.la-arrow-right::before { content: "\f061"; }
.la-balance-scale::before { content: "\f24e"; }
.la-ban::before { content: "\f05e"; }
.la-bolt::before { content: "\f0e7"; }
.la-calculator::before { content: "\f1ec"; }
.la-gift::before { content: "\f06b"; }
.la-dice::before { content: "\f522"; }
.la-check-circle::before { content: "\f058"; }
.la-times::before { content: "\f00d"; }
.la-desktop::before { content: "\f108"; }
.la-cookie-bite::before { content: "\f564"; }
.la-database::before { content: "\f1c0"; }
.la-trash::before { content: "\f1f8"; }
.la-trash-alt::before { content: "\f2ed"; }
.la-users::before { content: "\f0c0"; }
.la-check-double::before { content: "\f560"; }
.la-sign-out-alt::before { content: "\f2f5"; }
.la-angle-down::before { content: "\f107"; }
.la-gavel::before { content: "\f0e3"; }
.la-shield-alt::before { content: "\f3ed"; }
.la-question-circle::before { content: "\f059"; }
.la-home::before { content: "\f015"; }
.la-info-circle::before { content: "\f05a"; }
.la-lock::before { content: "\f023"; }
.la-envelope::before { content: "\f0e0"; }
.la-smile::before { content: "\f118"; }
.la-certificate::before { content: "\f0a3"; }
.la-arrow-up::before { content: "\f062"; }
.la-external-link-alt::before { content: "\f35d"; }
.la-pound-sign::before { content: "\f154"; }
.la-pause::before { content: "\f04c"; }
.la-play::before { content: "\f04b"; }
.la-minus::before { content: "\f068"; }
.la-redo-alt::before { content: "\f2f9"; }
.la-piggy-bank::before { content: "\f4d3"; }
.la-clock::before { content: "\f017"; }
.la-graduation-cap::before { content: "\f19d"; }
.la-flask::before { content: "\f0c3"; }
.la-search::before { content: "\f002"; }
.la-user-shield::before { content: "\f505"; }
.la-cog::before { content: "\f013"; }
.la-share-alt::before { content: "\f1e0"; }
.la-arrow-down::before { content: "\f063"; }
.la-tachometer-alt::before { content: "\f3fd"; }
.la-star::before { content: "\f005"; }
.la-star-half-alt::before { content: "\f5c0"; }
.la-stopwatch::before { content: "\f2f2"; }
.la-sync-alt::before { content: "\f2f1"; }
.la-eye::before { content: "\f06e"; }
.la-eye-slash::before { content: "\f070"; }
.la-exclamation-triangle::before { content: "\f071"; }

:root {
    --color-primary: hsl(268, 70%, 35%);
    --color-secondary: hsl(292, 65%, 35%);
    --color-accent: hsl(330, 80%, 55%);
    --color-background: hsl(0, 0%, 98%);
    --color-text: hsl(0, 0%, 15%);
    --color-text-light: hsl(0, 0%, 45%);
    --color-border: hsl(0, 0%, 85%);
    --color-overlay: rgba(0, 0, 0, 0.7);
    
    --font-main: 'Work Sans', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-heading: 'Lora', Georgia, 'Times New Roman', serif;
    
    --container-width: min(1248px, 92%);
    --container-narrow: min(848px, 90%);
    
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.16);
    
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
    
    --transition-fast: 150ms ease;
    --transition-base: 300ms ease;
    --transition-slow: 500ms ease;
}

.cv-nb9-nd3-nao {
    font-family: var(--font-main);
}

@media (max-width: 768px) {
    .no-mobile-anim * {
        animation: none !important;
        transition: none !important;
    }
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.yx-n1w-prime {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 1rem;
}

.zx-n1w-n74 {
    width: 100%;
    max-width: var(--container-narrow);
    margin: 0 auto;
    padding: 0 1rem;
}

.fonts-loaded body {
    font-family: var(--font-main);
}

.fonts-loaded h1,
.fonts-loaded h2,
.fonts-loaded h3,
.fonts-loaded h4 {
    font-family: var(--font-heading);
}

.nx-adult-confirm {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9998;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
}

.nx-adult-confirm[aria-hidden="true"] {
    display: none;
}

.nx-adult-confirm__nrq {
    background-color: var(--color-background);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    max-width: min(520px, 92vw);
    width: 100%;
    padding: 2.5rem;
    margin: 1.5rem;
    pointer-events: auto;
    border: 2px solid var(--color-primary);
    position: relative;
    overflow: hidden;
}

.nx-adult-confirm__nrq::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-secondary));
}

.nx-adult-confirm__glyph {
    text-align: center;
    margin-bottom: 1.5rem;
    color: var(--color-primary);
}

.nx-adult-confirm__glyph .las {
    font-size: 3.5rem;
}

.nx-adult-confirm__heading {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--color-primary);
    text-align: center;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.nx-adult-confirm__copy {
    color: var(--color-text);
    text-align: center;
    margin-bottom: 1.25rem;
    font-size: 1.05rem;
}

.nx-adult-confirm__caution {
    color: var(--color-text-light);
    font-size: 0.95rem;
    text-align: center;
    margin-bottom: 2rem;
    padding: 1rem;
    background-color: hsl(268, 70%, 97%);
    border-radius: var(--radius-md);
    border-left: 4px solid var(--color-accent);
}

.nx-adult-confirm__path {
    color: var(--color-primary);
    text-decoration: underline;
    font-weight: 600;
}

.nx-adult-confirm__path:hover {
    text-decoration: none;
}

.nx-adult-confirm__acts {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.nx-adult-confirm__trigger {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 1.05rem;
    transition: all var(--transition-base);
    min-width: 160px;
}

.nx-adult-confirm__trigger .las {
    font-size: 1.5rem;
}

.nx-adult-confirm__trigger--approve {
    background-color: var(--color-secondary);
    color: white;
}

.nx-adult-confirm__trigger--approve:hover {
    background-color: hsl(292, 65%, 30%);
    transform: translateY(-2px);
}

.nx-adult-confirm__trigger--reject {
    background-color: transparent;
    color: var(--color-text);
    border: 2px solid var(--color-border);
}

.nx-adult-confirm__trigger--reject:hover {
    background-color: var(--color-border);
    border-color: var(--color-text-light);
}

@media (max-width: 768px) {
    .nx-adult-confirm {
        align-items: flex-start;
        padding-top: 15vh;
    }
    
    .nx-adult-confirm__nrq {
        padding: 2rem 1.5rem;
        margin: 1rem;
    }
    
    .nx-adult-confirm__heading {
        font-size: 1.5rem;
    }
    
    .nx-adult-confirm__acts {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .nx-adult-confirm__trigger {
        width: 100%;
        min-width: unset;
    }
}

@media (max-width: 480px) {
    .nx-adult-confirm__heading {
        font-size: 1.35rem;
    }
    
    .nx-adult-confirm__copy {
        font-size: 1rem;
    }
}

.br-crumb-bulletin {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9997;
    background-color: var(--color-background);
    border-top: 3px solid var(--color-primary);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
    transform: translateY(100%);
    transition: transform var(--transition-slow) cubic-bezier(0.34, 1.56, 0.64, 1);
}

.br-crumb-bulletin[aria-hidden="false"] {
    transform: translateY(0);
}

.br-crumb-bulletin[aria-hidden="true"] {
    display: none;
}

.br-crumb-bulletin__body {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 1.5rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.br-crumb-bulletin__glyph-copy {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    flex: 1;
}

.br-crumb-bulletin__glyph {
    color: var(--color-primary);
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.br-crumb-bulletin__glyph .las {
    font-size: 2.5rem;
}

.br-crumb-bulletin__copy {
    flex: 1;
}

.br-crumb-bulletin__note {
    color: var(--color-text);
    font-size: 1rem;
    margin-bottom: 0.5rem;
    line-height: 1.5;
}

.br-crumb-bulletin__nqy {
    color: var(--color-text-light);
    font-size: 0.95rem;
}

.br-crumb-bulletin__path {
    color: var(--color-primary);
    text-decoration: underline;
    font-weight: 600;
}

.br-crumb-bulletin__path:hover {
    text-decoration: none;
}

.br-crumb-bulletin__trigger {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 0.875rem 2rem;
    background-color: var(--color-primary);
    color: white;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 1rem;
    transition: all var(--transition-base);
    flex-shrink: 0;
    border: 2px solid transparent;
}

.br-crumb-bulletin__trigger:hover {
    background-color: hsl(268, 70%, 30%);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.br-crumb-bulletin__trigger .las {
    font-size: 1.25rem;
}

@media (max-width: 768px) {
    .br-crumb-bulletin__body {
        flex-direction: column;
        gap: 1.5rem;
        padding: 1.5rem;
    }
    
    .br-crumb-bulletin__glyph-copy {
        width: 100%;
    }
    
    .br-crumb-bulletin__trigger {
        width: 100%;
    }
    
    .br-crumb-bulletin__glyph .las {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .br-crumb-bulletin__body {
        padding: 1.25rem 1rem;
    }
    
    .br-crumb-bulletin__glyph-copy {
        gap: 1rem;
    }
    
    .br-crumb-bulletin__note {
        font-size: 0.95rem;
    }
    
    .br-crumb-bulletin__nqy {
        font-size: 0.9rem;
    }
}

.rx-glide-n1j {
    position: fixed;
    right: 1.5rem;
    bottom: 6rem;
    z-index: 9995;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    opacity: 0;
    visibility: hidden;
    transform: translateX(20px);
    transition: all var(--transition-base);
}

.rx-glide-n1j--shown {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

.rx-glide-n1j__advance {
    position: relative;
    width: 56px;
    height: 56px;
    background-color: var(--color-background);
    border-radius: 50%;
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid var(--color-border);
}

.rx-glide-n1j__advance-track {
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    border-radius: 50%;
    background: conic-gradient(var(--color-primary) 0%, var(--color-border) 0%);
    z-index: 1;
}

.rx-glide-n1j__n8f {
    position: relative;
    z-index: 2;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--color-primary);
    background-color: var(--color-background);
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.rx-glide-n1j__trigger {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background-color: var(--color-background);
    box-shadow: var(--shadow-md);
    border: 2px solid var(--color-border);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-base);
    color: var(--color-text);
}

.rx-glide-n1j__trigger:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
    border-color: var(--color-primary);
    background-color: var(--color-primary);
    color: white;
}

.rx-glide-n1j__trigger-glyph {
    display: block;
    margin-bottom: 2px;
}

.rx-glide-n1j__trigger-glyph .las {
    font-size: 1.5rem;
    transition: transform var(--transition-base);
}

.rx-glide-n1j__trigger:hover .rx-glide-n1j__trigger-glyph .las {
    transform: scale(1.1);
}

.rx-glide-n1j__trigger-copy {
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.rx-glide-n1j__trigger--nrk:hover {
    background-color: var(--color-primary);
}

.rx-glide-n1j__trigger--n89:hover {
    background-color: var(--color-secondary);
    border-color: var(--color-secondary);
}

@media (max-width: 768px) {
    .rx-glide-n1j {
        right: 1rem;
        bottom: 5rem;
        gap: 0.5rem;
    }
    
    .rx-glide-n1j__advance,
    .rx-glide-n1j__trigger {
        width: 48px;
        height: 48px;
    }
    
    .rx-glide-n1j__n8f {
        width: 30px;
        height: 30px;
        font-size: 0.7rem;
    }
    
    .rx-glide-n1j__trigger-glyph .las {
        font-size: 1.25rem;
    }
    
    .rx-glide-n1j__trigger-copy {
        font-size: 0.6rem;
    }
}

@media (max-width: 480px) {
    .rx-glide-n1j {
        right: 0.75rem;
        bottom: 4.5rem;
    }
}

.vx-portal-crest {
    background-color: var(--color-background);
    box-shadow: var(--shadow-sm);
    top: 0;
    z-index: 9990;
}

.vx-portal-crest__upper {
    background-color: var(--color-primary);
    padding: 0.75rem 0;
}

.vx-portal-crest__upper-body {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.vx-portal-crest__identity-path {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    color: white;
    transition: opacity var(--transition-fast);
}

.vx-portal-crest__identity-path:hover {
    opacity: 0.9;
}

.vx-portal-crest__identity-glyph {
    font-size: 2rem;
}

.vx-portal-crest__identity-alias {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
}

.vx-portal-crest__route-roster {
    display: flex;
    gap: 2rem;
}

.vx-portal-crest__route-path {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    font-weight: 500;
    transition: color var(--transition-fast);
    white-space: nowrap;
}

.vx-portal-crest__route-path:hover {
    color: white;
}

.vx-portal-crest__route-glyph {
    font-size: 1.1rem;
}

.vx-portal-crest__lower {
    padding: 0.75rem 0;
}

.vx-portal-crest__route-prime-roster {
    display: flex;
    justify-content: center;
    gap: 2.5rem;
    flex-wrap: wrap;
}

.vx-portal-crest__route-prime-path {
    color: var(--color-text);
    font-weight: 600;
    font-size: 1.05rem;
    padding: 0.5rem 0;
    position: relative;
    transition: color var(--transition-fast);
}

.vx-portal-crest__route-prime-path:hover {
    color: var(--color-primary);
}

.vx-portal-crest__route-prime-path::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-primary);
    transition: width var(--transition-base);
}

.vx-portal-crest__route-prime-path:hover::after {
    width: 100%;
}

@media (max-width: 1024px) {
    .vx-portal-crest__route-prime-roster {
        gap: 2rem;
    }
    
    .vx-portal-crest__route-roster {
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .vx-portal-crest__upper-body {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .vx-portal-crest__route-roster {
        justify-content: center;
        flex-wrap: wrap;
        gap: 1rem 1.5rem;
    }
    
    .vx-portal-crest__route-prime-roster {
        gap: 1rem 1.5rem;
        justify-content: center;
    }
    
    .vx-portal-crest__lookup-box {
        flex-direction: column;
        gap: 0.75rem;
        padding: 1rem;
    }
    
    .vx-portal-crest__lookup-glyph {
        display: none;
    }
    
    .vx-portal-crest__lookup-field {
        width: 100%;
        text-align: center;
    }
    
    .vx-portal-crest__lookup-trigger {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .vx-portal-crest__identity-alias {
        font-size: 1.25rem;
    }
    
    .vx-portal-crest__route-path {
        font-size: 0.9rem;
    }
    
    .vx-portal-crest__route-prime-path {
        font-size: 1rem;
    }
    
    .vx-portal-crest__route-prime-roster {
        gap: 1rem;
    }
}

.mx-intro-segment {
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    color: white;
}

.mx-intro-segment__backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, hsl(268, 70%, 25%), hsl(292, 65%, 25%));
    z-index: -2;
}

.mx-intro-segment__nlg-veil {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: -1;
    opacity: 0;
    animation: overlayReveal 1.2s cubic-bezier(0.34, 1.56, 0.64, 1) 0.3s forwards;
}

@keyframes overlayReveal {
    0% {
        opacity: 0;
        clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
    }
    50% {
        opacity: 0.7;
    }
    100% {
        opacity: 1;
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    }
}

.mx-intro-segment__body {
    text-align: center;
    padding: 3rem 0;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.mx-intro-segment__heading {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: white;
}

.mx-intro-segment__heading-ncp {
    color: var(--color-accent);
    position: relative;
    display: inline-block;
}

.mx-intro-segment__heading-ncp::after {
    content: '';
    position: absolute;
    bottom: 0.1em;
    left: 0;
    width: 100%;
    height: 0.2em;
    background-color: var(--color-accent);
    opacity: 0.3;
    border-radius: 2px;
}

.mx-intro-segment__summary {
    font-size: clamp(1rem, 2.5vw, 1.25rem);
    line-height: 1.6;
    margin-bottom: 2.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    color: rgba(255, 255, 255, 0.95);
}

.mx-intro-segment__acts {
    margin-bottom: 3rem;
}

.mx-intro-segment__n21-trigger {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1rem 2.5rem;
    background-color: var(--color-accent);
    color: hsl(0, 0%, 15%);
    border-radius: var(--radius-md);
    font-weight: 700;
    font-size: 1.1rem;
    transition: all var(--transition-base);
    box-shadow: var(--shadow-md);
}

.mx-intro-segment__n21-trigger:hover {
    background-color: white;
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.mx-intro-segment__n21-trigger .las {
    font-size: 1.3rem;
}

.mx-intro-segment__nli {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 2rem;
}

.ax-facet-tile {
    flex: 0 1 auto;
    min-width: 160px;
    max-width: 180px;
    padding: 1.5rem 1rem;
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all var(--transition-base);
}

.ax-facet-tile:hover {
    background-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
    border-color: var(--color-accent);
}

.ax-facet-tile__glyph {
    color: var(--color-accent);
    margin-bottom: 0.75rem;
}

.ax-facet-tile__glyph .las {
    font-size: 2.5rem;
}

.ax-facet-tile__heading {
    font-size: 1rem;
    font-weight: 600;
    color: white;
    line-height: 1.3;
    word-break: break-word;
}

@media (max-width: 1024px) {
    .mx-intro-segment {
        max-height: 70vh;
        min-height: 450px;
    }
    
    .mx-intro-segment__nli {
        gap: 1rem;
    }
    
    .ax-facet-tile {
        min-width: 140px;
        max-width: 150px;
        padding: 1.25rem 0.75rem;
    }
}

@media (max-width: 768px) {
    .mx-intro-segment {
        max-height: 100% !important;
        min-height: auto;
        padding: 4rem 0;
    }
    
    .mx-intro-segment__body {
        padding: 0;
    }
    
    .mx-intro-segment__nli {
        gap: 0.75rem;
    }
    
    .ax-facet-tile {
        min-width: calc(33.333% - 0.5rem);
        max-width: calc(33.333% - 0.5rem);
        padding: 1rem 0.5rem;
    }
    
    .ax-facet-tile__glyph .las {
        font-size: 2rem;
    }
    
    .ax-facet-tile__heading {
        font-size: 0.9rem;
    }
    
    .mx-intro-segment__n21-trigger {
        padding: 0.875rem 2rem;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .mx-intro-segment__heading {
        font-size: 1.75rem;
    }
    
    .mx-intro-segment__summary {
        font-size: 1rem;
    }
    
    .mx-intro-segment__nli {
        gap: 0.5rem;
    }
    
    .ax-facet-tile {
        min-width: calc(50% - 0.25rem);
        max-width: calc(50% - 0.25rem);
    }
    
    .ax-facet-tile:nth-child(5) {
        min-width: 100%;
        max-width: 100%;
        margin-top: 0.5rem;
    }
    
    .ax-facet-tile__glyph .las {
        font-size: 1.75rem;
    }
    
    .ax-facet-tile__heading {
        font-size: 0.85rem;
    }
}

@media (max-width: 768px) {
    .no-mobile-anim .mx-intro-segment__nlg-veil {
        animation: none;
        opacity: 1;
        clip-path: none;
    }
}

.wx-venues-segment {
    padding: 4rem 0;
    background-color: var(--color-background);
}

.sx-segment-topline {
    text-align: center;
    margin-bottom: 3rem;
}

.sx-segment-topline__heading {
    font-family: var(--font-heading);
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 1rem;
}

.sx-segment-topline__ncp {
    color: var(--color-primary);
    position: relative;
    display: inline-block;
}

.sx-segment-topline__ncp::after {
    content: '';
    position: absolute;
    bottom: 0.1em;
    left: 0;
    width: 100%;
    height: 0.2em;
    background-color: var(--color-primary);
    opacity: 0.2;
    border-radius: 2px;
}

.sx-segment-topline__summary {
    color: var(--color-text-light);
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.vx-venues-roster {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.qx-venue-tile {
    background-color: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--color-border);
    overflow: hidden;
    transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.qx-venue-tile:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.qx-venue-tile__prime {
    padding: 2rem;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 2rem;
}

.tx-venue-alias-ntt {
    flex: 1 1 100%;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid var(--color-border);
}

.tx-venue-alias-ntt__heading {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--color-primary);
    margin: 0;
}

.tx-venue-alias-ntt__nw8 {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background-color: hsl(268, 70%, 96%);
    color: var(--color-primary);
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 0.9rem;
}

.tx-venue-alias-ntt__nw8 .las {
    font-size: 1.1rem;
}

.ux-venue-n3s-ntt {
    flex: 1 1 180px;
    min-width: 180px;
    text-align: center;
    padding: 1rem;
    background-color: hsl(0, 0%, 98%);
    border-radius: var(--radius-md);
    border: 1px solid var(--color-border);
}

.ux-venue-n3s-ntt__nik {
    margin-bottom: 0.5rem;
}

.ux-venue-n3s-ntt__figure {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--color-primary);
    display: block;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.ux-venue-n3s-ntt__nzs {
    display: flex;
    justify-content: center;
    gap: 0.25rem;
    color: var(--color-accent);
}

.ux-venue-n3s-ntt__nzs .las {
    font-size: 1.5rem;
}

.ux-venue-n3s-ntt__tag {
    font-size: 0.9rem;
    color: var(--color-text-light);
    font-weight: 500;
}

.px-venue-perk-ntt {
    flex: 2 1 250px;
    min-width: 250px;
    display: flex;
    align-items: center;
    gap: 1.25rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, hsl(268, 70%, 96%), hsl(292, 65%, 96%));
    border-radius: var(--radius-md);
    border: 1px solid hsl(268, 70%, 90%);
}

.px-venue-perk-ntt__glyph {
    color: var(--color-primary);
    flex-shrink: 0;
}

.px-venue-perk-ntt__glyph .las {
    font-size: 2.5rem;
}

.px-venue-perk-ntt__body {
    flex: 1;
}

.px-venue-perk-ntt__heading {
    font-size: 0.95rem;
    color: var(--color-text-light);
    margin-bottom: 0.25rem;
    font-weight: 600;
}

.px-venue-perk-ntt__merit {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--color-text);
    line-height: 1.2;
}

.rx-venue-nli-ntt {
    flex: 2 1 300px;
    min-width: 300px;
}

.rx-venue-nli-ntt__heading {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 1rem;
}

.rx-venue-nli-ntt__roster {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.rx-venue-nli-ntt__entry {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1rem;
    color: var(--color-text);
}

.rx-venue-nli-ntt__entry .las {
    color: var(--color-secondary);
    font-size: 1.25rem;
    flex-shrink: 0;
}

.sx-venue-path-ntt {
    flex: 1 1 180px;
    min-width: 180px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1.5rem;
    background-color: hsl(0, 0%, 98%);
    border-radius: var(--radius-md);
    border: 1px solid var(--color-border);
}

.sx-venue-path-ntt__trigger {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 0.875rem 1.75rem;
    background-color: var(--color-primary);
    color: white;
    border-radius: var(--radius-md);
    font-weight: 700;
    font-size: 1rem;
    transition: all var(--transition-base);
    width: 100%;
    text-align: center;
}

.sx-venue-path-ntt__trigger:hover {
    background-color: hsl(268, 70%, 30%);
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

.sx-venue-path-ntt__trigger .las {
    font-size: 1.25rem;
}

.sx-venue-path-ntt__n4u {
    font-size: 0.8rem;
    color: var(--color-text-light);
    text-align: center;
    line-height: 1.4;
}

@media (max-width: 1024px) {
    .qx-venue-tile__prime {
        gap: 1.5rem;
    }
    
    .px-venue-perk-ntt {
        flex: 1 1 100%;
        min-width: 100%;
    }
    
    .rx-venue-nli-ntt {
        flex: 1 1 100%;
        min-width: 100%;
    }
}

@media (max-width: 768px) {
    .wx-venues-segment {
        padding: 3rem 0;
    }
    
    .qx-venue-tile__prime {
        flex-direction: column;
        gap: 1.5rem;
        padding: 1.5rem;
    }
    
    .tx-venue-alias-ntt {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }
    
    .ux-venue-n3s-ntt,
    .sx-venue-path-ntt {
        width: 100%;
        min-width: 100%;
    }
    
    .px-venue-perk-ntt {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .rx-venue-nli-ntt__roster {
        gap: 0.5rem;
    }
}

@media (max-width: 480px) {
    .sx-segment-topline__heading {
        font-size: 1.5rem;
    }
    
    .sx-segment-topline__summary {
        font-size: 1rem;
    }
    
    .tx-venue-alias-ntt__heading {
        font-size: 1.5rem;
    }
    
    .px-venue-perk-ntt__merit {
        font-size: 1.25rem;
    }
    
    .sx-venue-path-ntt__trigger {
        padding: 0.75rem 1.5rem;
        font-size: 0.95rem;
    }
}

.px-critiques-segment {
    padding: 4rem 0;
    background-color: hsl(0, 0%, 98%);
}

.gx-motives-matrix {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.fx-motive-tile {
    background-color: white;
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--color-border);
    text-align: center;
    transition: transform var(--transition-base);
}

.fx-motive-tile:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.fx-motive-tile__glyph {
    color: var(--color-primary);
    margin-bottom: 1.5rem;
}

.fx-motive-tile__glyph .las {
    font-size: 3rem;
}

.fx-motive-tile__heading {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 1rem;
}

.fx-motive-tile__copy {
    color: var(--color-text-light);
    line-height: 1.6;
}

.qx-critiques-nz0 {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
    padding-top: 2rem;
    border-top: 2px solid var(--color-border);
}

.wx-metric-entry {
    text-align: center;
}

.wx-metric-entry__figure {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--color-primary);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.wx-metric-entry__tag {
    font-size: 0.95rem;
    color: var(--color-text-light);
    font-weight: 500;
}

.px-perks-segment {
    padding: 4rem 0;
    background-color: white;
}

.rx-perk-n8y {
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-bottom: 2rem;
}

.rx-perk-n8y__topline {
    display: grid;
    grid-template-columns: 2fr 3fr 1fr 1fr;
    background-color: var(--color-primary);
    color: white;
    padding: 1.25rem 1.5rem;
    font-weight: 700;
}

.rx-perk-n8y__n44 {
    display: grid;
    grid-template-columns: 2fr 3fr 1fr 1fr;
    padding: 1.5rem;
    border-bottom: 1px solid var(--color-border);
    align-items: center;
}

.rx-perk-n8y__n44:last-child {
    border-bottom: none;
}

.rx-perk-n8y__n44:nth-child(even) {
    background-color: hsl(0, 0%, 98%);
}

.qx-perk-venue {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.qx-perk-venue__alias {
    font-weight: 700;
    color: var(--color-text);
}

.qx-perk-venue__nw8 {
    font-size: 0.8rem;
    padding: 0.25rem 0.75rem;
    background-color: hsl(268, 70%, 96%);
    color: var(--color-primary);
    border-radius: var(--radius-sm);
    font-weight: 600;
}

.rx-perk-n8y__n2r--nib {
    font-weight: 600;
    color: var(--color-text);
}

.rx-perk-n8y__n2r--merit {
    font-weight: 800;
    color: var(--color-primary);
    font-size: 1.1rem;
}

.rx-perk-n8y__n2r--n23 {
    font-weight: 700;
    color: var(--color-text-light);
}

.ox-perk-notice {
    background-color: hsl(330, 80%, 96%);
    padding: 1.5rem;
    border-radius: var(--radius-md);
    border-left: 4px solid var(--color-accent);
}

.ox-perk-notice__copy {
    color: var(--color-text-light);
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
}

.lx-manuals-segment {
    padding: 4rem 0;
    background-color: hsl(0, 0%, 98%);
}

.kx-manuals-matrix {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
}

.jx-manual-tile {
    flex: 1 1 490px;
    max-width: 380px;
    background-color: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--color-border);
    transition: transform var(--transition-base);
}

.jx-manual-tile:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.jx-manual-tile__nlg {
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    padding: 2.5rem;
    text-align: center;
    color: white;
}

.jx-manual-tile__nlg .las {
    font-size: 3.5rem;
}

.jx-manual-tile__body {
    padding: 2rem;
}

.jx-manual-tile__heading {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 1rem;
    line-height: 1.3;
    min-height: 72px;
}

.jx-manual-tile__copy {
    color: var(--color-text-light);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    min-height: 78px;
}

.jx-manual-tile__n5f {
    display: flex;
    gap: 1.5rem;
    font-size: 0.9rem;
    color: var(--color-text-light);
}

.jx-manual-tile__n5f-entry {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.jx-manual-tile__n5f-entry .las {
    font-size: 1.1rem;
}

.sx-matchup-segment {
    padding: 4rem 0;
    background-color: white;
}

.tx-matchup-n8y {
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    max-width: 900px;
    margin: 0 auto;
}

.tx-matchup-n8y__topline {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    background-color: var(--color-primary);
    color: white;
    padding: 1.25rem 1.5rem;
    font-weight: 700;
}

.tx-matchup-n8y__n44 {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid var(--color-border);
    align-items: center;
}

.tx-matchup-n8y__n44:nth-child(even) {
    background-color: hsl(0, 0%, 98%);
}

.tx-matchup-n8y__facet {
    font-weight: 600;
    color: var(--color-text);
}

.tx-matchup-n8y__venue {
    text-align: center;
}

.tx-matchup-n8y__venue .las {
    color: var(--color-secondary);
    font-size: 1.5rem;
}

.tx-matchup-n8y__venue .las[aria-label="remove"] {
    color: var(--color-text-light);
}

.iv-toolkit-segment {
    padding: 4rem 0;
    background-color: hsl(0, 0%, 98%);
}

.hx-toolkit-matrix {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(210px, 100%), 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.fx-nyw-tile {
    background-color: white;
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--color-border);
    text-align: center;
    transition: transform var(--transition-base);
}

.fx-nyw-tile:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.fx-nyw-tile__topline {
    margin-bottom: 1.5rem;
}

.fx-nyw-tile__glyph {
    color: var(--color-primary);
    margin-bottom: 1rem;
}

.fx-nyw-tile__glyph .las {
    font-size: 2.5rem;
}

.fx-nyw-tile__heading {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 0.5rem;
}

.fx-nyw-tile__copy {
    color: var(--color-text-light);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    min-height: 100px;
}

.fx-nyw-tile__trigger {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background-color: var(--color-primary);
    color: white;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 0.95rem;
    transition: background-color var(--transition-base);
    border: none;
    width: 100%;
}

.fx-nyw-tile__trigger:hover {
    background-color: hsl(268, 70%, 30%);
}

.gx-toolkit-notice {
    display: flex;
    gap: 1rem;
    background-color: hsl(268, 70%, 96%);
    padding: 1.5rem;
    border-radius: var(--radius-md);
    border-left: 4px solid var(--color-primary);
}

.gx-toolkit-notice__glyph {
    color: var(--color-primary);
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.gx-toolkit-notice__copy {
    color: var(--color-text-light);
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
}

.gx-toolkit-notice__path {
    color: var(--color-primary);
    text-decoration: underline;
    font-weight: 600;
}

.gx-toolkit-notice__path:hover {
    text-decoration: none;
}

@media (max-width: 768px) {
    .qx-critiques-nz0 {
        gap: 2rem;
    }
    
    .wx-metric-entry__figure {
        font-size: 2rem;
    }
    
    .rx-perk-n8y__topline,
    .rx-perk-n8y__n44,
    .tx-matchup-n8y__topline,
    .tx-matchup-n8y__n44 {
        grid-template-columns: 1fr;
        gap: 0.75rem;
        padding: 1rem;
    }
    
    .rx-perk-n8y__n2r,
    .tx-matchup-n8y__facet,
    .tx-matchup-n8y__venue {
        padding: 0.5rem 0;
    }
    
    .rx-perk-n8y__topline .rx-perk-n8y__n2r,
    .tx-matchup-n8y__topline .tx-matchup-n8y__facet,
    .tx-matchup-n8y__topline .tx-matchup-n8y__venue {
        display: none;
    }
    
    .rx-perk-n8y__n2r::before,
    .tx-matchup-n8y__facet::before,
    .tx-matchup-n8y__venue::before {
        content: attr(data-label);
        font-weight: 700;
        color: var(--color-text-light);
        display: block;
        font-size: 0.85rem;
        margin-bottom: 0.25rem;
    }
    
    .kx-manuals-matrix {
        flex-direction: column;
    }
    
    .jx-manual-tile {
        max-width: 100%;
    }
    
    .hx-toolkit-matrix {
        grid-template-columns: 1fr;
    }
    
    .gx-toolkit-notice {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .gx-motives-matrix {
        grid-template-columns: 1fr;
    }
    
    .wx-metric-entry__figure {
        font-size: 1.75rem;
    }
    
    .jx-manual-tile__n5f {
        flex-direction: column;
        gap: 0.5rem;
    }
}

.tx-cycle-chron {
    position: fixed;
    top: 1.5rem;
    right: 1.5rem;
    z-index: 9996;
    transform: translateX(120%);
    transition: transform var(--transition-slow) cubic-bezier(0.34, 1.56, 0.64, 1);
}

.tx-cycle-chron--shown {
    transform: translateX(0);
}

.tx-cycle-chron[aria-hidden="true"] {
    display: none;
}

.tx-cycle-chron__n1w {
    background-color: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    border: 2px solid var(--color-primary);
    width: 280px;
    overflow: hidden;
}

.tx-cycle-chron__topline {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.25rem;
    background-color: var(--color-primary);
    color: white;
}

.tx-cycle-chron__heading {
    font-weight: 700;
    font-size: 1.1rem;
}

.tx-cycle-chron__nc2 {
    color: white;
    background: none;
    border: none;
    padding: 0.25rem;
    border-radius: var(--radius-sm);
    transition: background-color var(--transition-fast);
}

.tx-cycle-chron__nc2:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

.tx-cycle-chron__nc2 .las {
    font-size: 1.25rem;
}

.tx-cycle-chron__nq4 {
    padding: 1.5rem;
    text-align: center;
    background-color: hsl(0, 0%, 98%);
    border-bottom: 1px solid var(--color-border);
}

.tx-cycle-chron__nlh {
    display: flex;
    justify-content: center;
    align-items: baseline;
    gap: 0.25rem;
    margin-bottom: 0.5rem;
}

.tx-cycle-chron__nj3,
.tx-cycle-chron__npr,
.tx-cycle-chron__nt {
    font-family: monospace;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--color-text);
    min-width: 2.2ch;
}

.tx-cycle-chron__npf {
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-text-light);
    margin: 0 0.1rem;
}

.tx-cycle-chron__n38 {
    display: flex;
    justify-content: center;
    gap: 2.5rem;
    padding: 0 1rem;
}

.tx-cycle-chron__tag {
    font-size: 0.8rem;
    color: var(--color-text-light);
    font-weight: 600;
    min-width: 2.2ch;
    text-align: center;
}

.tx-cycle-chron__n24 {
    display: flex;
    padding: 1rem;
    gap: 0.75rem;
}

.tx-cycle-chron__trigger {
    flex: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 0.95rem;
    transition: all var(--transition-base);
    border: none;
}

.tx-cycle-chron__trigger .las {
    font-size: 1.2rem;
}

.tx-cycle-chron__trigger--na0 {
    background-color: var(--color-primary);
    color: white;
}

.tx-cycle-chron__trigger--na0:hover {
    background-color: hsl(268, 70%, 30%);
}

.tx-cycle-chron__trigger--n75 {
    background-color: var(--color-border);
    color: var(--color-text);
}

.tx-cycle-chron__trigger--n75:hover {
    background-color: hsl(0, 0%, 80%);
}

.tx-cycle-chron__n4u {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    background-color: hsl(330, 80%, 96%);
    border-top: 1px solid var(--color-border);
    font-size: 0.85rem;
    color: var(--color-text-light);
}

.tx-cycle-chron__n4u .las {
    font-size: 1rem;
    color: var(--color-accent);
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .tx-cycle-chron {
        top: auto;
        bottom: 1rem;
        right: 1rem;
        left: 1rem;
        transform: translateY(120%);
        width: auto;
    }
    
    .tx-cycle-chron--shown {
        transform: translateY(0);
    }
    
    .tx-cycle-chron__n1w {
        width: 100%;
        max-width: 320px;
        margin: 0 auto;
    }
}

@media (max-width: 480px) {
    .tx-cycle-chron__nj3,
    .tx-cycle-chron__npr,
    .tx-cycle-chron__nt {
        font-size: 2rem;
    }
    
    .tx-cycle-chron__npf {
        font-size: 1.5rem;
    }
    
    .tx-cycle-chron__n38 {
        gap: 2rem;
    }
}

.mx-niu-segment {
    padding: 4rem 0;
    background: linear-gradient(135deg, hsl(268, 70%, 97%), hsl(292, 65%, 97%));
    position: relative;
    overflow: hidden;
}

.mx-niu-segment::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--color-primary), transparent);
}

.lx-niu-topline {
    text-align: center;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.lx-niu-topline__heading {
    font-family: var(--font-heading);
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 1.25rem;
    line-height: 1.2;
}

.lx-niu-topline__ncp {
    color: var(--color-primary);
    position: relative;
    display: inline-block;
}

.lx-niu-topline__ncp::after {
    content: '';
    position: absolute;
    bottom: 0.1em;
    left: 0;
    right: 0;
    height: 0.3em;
    background-color: var(--color-primary);
    opacity: 0.15;
    border-radius: 2px;
    z-index: -1;
}

.lx-niu-topline__summary {
    color: var(--color-text-light);
    font-size: 1.1rem;
    line-height: 1.6;
    margin: 0 auto;
}

.kx-niu-matrix {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.iv-nj2-tile {
    position: relative;
}

.iv-nj2-tile__n8w {
    background-color: white;
    border-radius: var(--radius-lg);
    padding: 2.5rem 2rem;
    height: 100%;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid transparent;
    transition: all var(--transition-base);
}

.iv-nj2-tile:hover .iv-nj2-tile__n8w {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--color-primary);
}

.iv-nj2-tile__glyph {
    color: var(--color-primary);
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.iv-nj2-tile__glyph .las {
    font-size: 3rem;
}

.iv-nj2-tile__body {
    position: relative;
    z-index: 1;
}

.iv-nj2-tile__heading {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.iv-nj2-tile__copy {
    color: var(--color-text-light);
    line-height: 1.6;
    font-size: 1rem;
}

.iv-nj2-tile__n2y {
    position: absolute;
    bottom: -50px;
    right: -50px;
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, var(--color-primary), transparent 70%);
    opacity: 0.05;
    border-radius: 50%;
    transition: opacity var(--transition-base);
}

.iv-nj2-tile:hover .iv-nj2-tile__n2y {
    opacity: 0.1;
}

.jx-niu-n21 {
    text-align: center;
    padding-top: 2rem;
    border-top: 2px solid rgba(0, 0, 0, 0.05);
    max-width: 600px;
    margin: 0 auto;
}

.jx-niu-n21__copy {
    color: var(--color-text);
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.jx-niu-n21__trigger {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1rem 2.5rem;
    background-color: var(--color-primary);
    color: white;
    border-radius: var(--radius-md);
    font-weight: 700;
    font-size: 1.05rem;
    transition: all var(--transition-base);
    box-shadow: var(--shadow-md);
}

.jx-niu-n21__trigger:hover {
    background-color: hsl(268, 70%, 30%);
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.jx-niu-n21__trigger .las {
    font-size: 1.25rem;
    transition: transform var(--transition-base);
}

.jx-niu-n21__trigger:hover .las {
    transform: translateX(4px);
}

@media (max-width: 1024px) {
    .kx-niu-matrix {
        gap: 1.5rem;
    }
    
    .iv-nj2-tile__n8w {
        padding: 2rem 1.5rem;
    }
}

@media (max-width: 768px) {
    .mx-niu-segment {
        padding: 3rem 0;
    }
    
    .lx-niu-topline__heading {
        font-size: 1.5rem;
    }
    
    .lx-niu-topline__summary {
        font-size: 1rem;
    }
    
    .kx-niu-matrix {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .iv-nj2-tile__heading {
        font-size: 1.2rem;
    }
    
    .jx-niu-n21__trigger {
        padding: 0.875rem 2rem;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .iv-nj2-tile__n8w {
        padding: 1.75rem 1.25rem;
    }
    
    .iv-nj2-tile__glyph .las {
        font-size: 2.5rem;
    }
    
    .jx-niu-n21__copy {
        font-size: 1rem;
    }
}

.ux-portal-tail {
    background-color: hsl(0, 0%, 10%);
    color: hsl(0, 0%, 80%);
    padding: 3rem 0 2rem;
    border-top: 3px solid var(--color-primary);
}

.dx-tail-ntt {
    padding: 2rem 0;
    border-bottom: 1px solid hsl(0, 0%, 20%);
}

.dx-tail-ntt:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.dx-tail-ntt__body {
    max-width: 800px;
}

.dx-tail-ntt__heading {
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.dx-tail-ntt__copy {
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.iv-tail-nro {
    background-color: hsl(0, 0%, 15%);
    border-radius: var(--radius-md);
    padding: 0.5rem 0.2rem;
    border: 1px solid hsl(0, 0%, 25%);
}

.iv-tail-nro__heading {
    color: white;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    text-align: center;
}

.iv-tail-nro__summary {
    color: hsl(0, 0%, 70%);
    text-align: center;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    line-height: 1.5;
}

.ox-nro-n8t {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.nx-ally-emblem {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 60px;
    padding: 1rem 1.5rem;
    background-color: hsl(0, 0%, 20%);
    border-radius: var(--radius-md);
    border: 1px solid hsl(0, 0%, 30%);
    transition: all var(--transition-base);
    text-align: center;
}

.nx-ally-emblem:hover {
    background-color: hsl(0, 0%, 25%);
    border-color: var(--color-primary);
    transform: translateY(-2px);
}

.nx-ally-emblem__copy {
    color: hsl(0, 0%, 85%);
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 0.5px;
}

.nx-ally-emblem--nq2:hover .nx-ally-emblem__copy {
    color: #FF6B6B;
}

.nx-ally-emblem--nj2:hover .nx-ally-emblem__copy {
    color: #4ECDC4;
}

.nx-ally-emblem--nx3:hover .nx-ally-emblem__copy {
    color: #45B7D1;
}

.footer-partners__placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    color: hsl(0, 0%, 60%);
}

.footer-partners__placeholder .las {
    font-size: 2.5rem;
}

.gx-tail-nll-matrix {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(220px, 100%), 1fr));
    gap: 2rem;
}

.fx-tail-nll-naz__heading {
    color: white;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--color-primary);
}

.hx-tail-nll-roster {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.hx-tail-nll-roster__entry {
    min-height: 2rem;
    display: flex;
    align-items: center;
}

.hx-tail-nll-roster__path {
    color: hsl(0, 0%, 80%);
    transition: color var(--transition-fast);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.25rem 0;
}

.hx-tail-nll-roster__path:hover {
    color: white;
}

.hx-tail-nll-roster__path--mail {
    word-break: break-word;
    line-height: 1.4;
}

.hx-tail-nll-roster__path .las {
    font-size: 1.1rem;
    flex-shrink: 0;
}

.hx-tail-nll-roster__copy {
    color: hsl(0, 0%, 60%);
    font-size: 0.9rem;
    line-height: 1.5;
    font-style: italic;
}

.ev-tail-lawful__caution {
    display: flex;
    gap: 1rem;
    background-color: hsl(0, 0%, 15%);
    padding: 1.5rem;
    border-radius: var(--radius-md);
    margin-bottom: 1.5rem;
    border-left: 4px solid var(--color-accent);
}

.ev-tail-lawful__caution-glyph {
    color: var(--color-accent);
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.ev-tail-lawful__caution-glyph .las {
    font-size: 1.5rem;
}

.ev-tail-lawful__caution-copy {
    color: hsl(0, 0%, 80%);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

.ev-tail-lawful__rights {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.9rem;
    color: hsl(0, 0%, 60%);
    text-align: center;
}

.ev-tail-lawful__noc {
    font-weight: 700;
    color: hsl(0, 0%, 80%);
}

.ev-tail-lawful__alias {
    color: white;
    font-weight: 600;
}

.ev-tail-lawful__nfw {
    color: hsl(0, 0%, 40%);
}

.ev-tail-lawful__n32 {
    font-style: italic;
}

@media (max-width: 768px) {
    .ux-portal-tail {
        padding: 2rem 0 1.5rem;
    }
    
    .dx-tail-ntt {
        padding: 1.5rem 0;
    }
    
    .dx-tail-ntt__heading {
        font-size: 1.3rem;
    }
    
    .gx-tail-nll-matrix {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .ev-tail-lawful__caution {
        flex-direction: column;
        text-align: center;
        gap: 0.75rem;
        padding: 1.25rem;
    }
    
    .ev-tail-lawful__rights {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .ev-tail-lawful__nfw {
        display: none;
    }
}

@media (max-width: 480px) {
    .iv-tail-nro {
        padding: 1.5rem 1rem;
    }
    
    .fx-tail-nll-naz__heading {
        font-size: 1rem;
    }
    
    .hx-tail-nll-roster__path {
        font-size: 0.95rem;
    }
    
    .ev-tail-lawful__caution-copy {
        font-size: 0.9rem;
    }
}
