@font-face {
    font-family: 'DM Sans';
    src: url('/assets/fonts/dm-sans-v15-latin-regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'DM Sans';
    src: url('/assets/fonts/dm-sans-v15-latin-500.woff2') format('woff2');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Outfit';
    src: url('/assets/fonts/outfit-v11-latin-600.woff2') format('woff2');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Outfit';
    src: url('/assets/fonts/outfit-v11-latin-700.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

:root {
    --xv-deep-forest: #032721;
    --xv-forest-teal: #069F91;
    --xv-amber-glow: #E4AC46;
    --xv-coral-spin: #E85D5D;
    --xv-soft-mist: #BBFBFF;
    --xv-glow-cyan: #8DD8FF;
    --xv-shadow-deep: #0A1F1C;
    --xv-wood-brown: #8B5A3C;
    --xv-pearl-white: #F8F9FA;
    --xv-mist-grey: #C2D4D8;
    --xv-overlay-dark: rgba(3, 39, 33, 0.92);
    --xv-glow-teal: rgba(6, 159, 145, 0.25);
    --xv-border-soft: rgba(141, 216, 255, 0.35);
    --type-heading: 'Outfit', system-ui, sans-serif;
    --type-body: 'DM Sans', -apple-system, sans-serif;
    --weight-regular: 400;
    --weight-medium: 500;
    --weight-semibold: 600;
    --weight-bold: 700;
    --text-h1: clamp(2.25rem, 5.8vw, 4.5rem);
    --text-h2: clamp(1.75rem, 4.5vw, 3rem);
    --text-h3: clamp(1.5rem, 3.2vw, 2.25rem);
    --text-h4: clamp(1.25rem, 2.6vw, 1.75rem);
    --text-h5: clamp(1.125rem, 2.15vw, 1.5rem);
    --text-h6: clamp(1rem, 1.9vw, 1.25rem);
    --text-body: 1.125rem;
    --text-small: 0.9375rem;
    --icon-xs: 0.875rem;
    --icon-sm: 1.125rem;
    --icon-md: 1.625rem;
    --icon-lg: 2.25rem;
    --icon-xl: 3rem;
}

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

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--type-body);
    font-size: var(--text-body);
    font-weight: var(--weight-regular);
    line-height: 1.7;
    color: var(--xv-mist-grey);
    background: linear-gradient(160deg, var(--xv-deep-forest) 0%, var(--xv-shadow-deep) 100%);
    min-height: 100vh;
    overflow-x: hidden;
}

h1 {
    font-family: var(--type-heading);
    font-size: var(--text-h1);
    font-weight: var(--weight-bold);
    line-height: 1.1;
    letter-spacing: -0.022em;
    color: var(--xv-pearl-white);
    margin-bottom: 1.875rem;
}

h2 {
    font-family: var(--type-heading);
    font-size: var(--text-h2);
    font-weight: var(--weight-semibold);
    line-height: 1.2;
    letter-spacing: -0.016em;
    color: var(--xv-glow-cyan);
    margin-bottom: 1.5rem;
}

h3 {
    font-family: var(--type-heading);
    font-size: var(--text-h3);
    font-weight: var(--weight-semibold);
    line-height: 1.3;
    letter-spacing: -0.011em;
    color: var(--xv-amber-glow);
    margin-bottom: 1.25rem;
}

h4 {
    font-family: var(--type-body);
    font-size: var(--text-h4);
    font-weight: var(--weight-medium);
    line-height: 1.4;
    color: var(--xv-pearl-white);
    margin-bottom: 1rem;
}

h5 {
    font-family: var(--type-body);
    font-size: var(--text-h5);
    font-weight: var(--weight-medium);
    line-height: 1.45;
    color: var(--xv-pearl-white);
    margin-bottom: 0.875rem;
}

h6 {
    font-family: var(--type-body);
    font-size: var(--text-h6);
    font-weight: var(--weight-medium);
    line-height: 1.5;
    color: var(--xv-mist-grey);
    margin-bottom: 0.75rem;
}

p {
    font-size: var(--text-body);
    line-height: 1.8;
    color: var(--xv-mist-grey);
    margin-bottom: 1.25rem;
}

small {
    font-size: var(--text-small);
    line-height: 1.65;
    color: var(--xv-mist-grey);
}

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

a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.xv-wrapper {
    max-width: 1320px;
    width: 100%;
    margin: 0 auto;
    padding: 0 1.875rem;
}

.xv-icon {
    width: 20px;
    height: 20px;
    display: inline-block;
    vertical-align: -0.125em;
    object-fit: contain;
    flex-shrink: 0;
    filter: none;
}

.xv-icon-xs { width: 14px; height: 14px; }
.xv-icon-sm { width: 18px; height: 18px; }
.xv-icon-md { width: 26px; height: 26px; }
.xv-icon-lg { width: 36px; height: 36px; }
.xv-icon-xl { width: 48px; height: 48px; }

.xv-icon-light { filter: brightness(0) invert(1); }
.xv-icon-dark { filter: brightness(0) saturate(100%); }
.xv-icon-muted { filter: brightness(0) saturate(100%) invert(58%); }
.xv-icon-teal { filter: brightness(0) saturate(100%) invert(52%) sepia(85%) saturate(890%) hue-rotate(130deg) brightness(98%) contrast(101%); }
.xv-icon-amber { filter: brightness(0) saturate(100%) invert(68%) sepia(62%) saturate(420%) hue-rotate(6deg) brightness(102%) contrast(96%); }
.xv-icon-cyan { filter: brightness(0) saturate(100%) invert(68%) sepia(45%) saturate(1200%) hue-rotate(155deg) brightness(104%) contrast(98%); }
.xv-icon-coral { filter: brightness(0) saturate(100%) invert(42%) sepia(92%) saturate(1850%) hue-rotate(330deg) brightness(96%) contrast(102%); }

.xv-btn {
    font-family: var(--type-heading);
    font-size: 1.125rem;
    font-weight: var(--weight-bold);
    letter-spacing: 0.2px;
    height: 52px;
    padding: 0 22px;
    border-radius: 14px;
    border: 1px solid;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    position: relative;
    transition: all 0.2s ease;
}

.xv-btn-solid {
    background: var(--xv-forest-teal);
    color: var(--xv-deep-forest);
    border-color: rgba(141, 216, 255, 0.25);
}

.xv-btn-solid:hover {
    background: #058073;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px var(--xv-glow-teal);
}

.xv-btn-solid:active {
    transform: translateY(0);
    box-shadow: 0 2px 10px var(--xv-glow-teal);
}

.xv-btn-outline {
    background: transparent;
    color: var(--xv-glow-cyan);
    border-color: rgba(141, 216, 255, 0.55);
}

.xv-btn-outline:hover {
    background: rgba(6, 159, 145, 0.1);
    border-color: var(--xv-glow-cyan);
    box-shadow: inset 0 0 12px rgba(141, 216, 255, 0.18);
    text-shadow: 0 0 1px rgba(141, 216, 255, 0.4);
}

@media (max-width: 768px) {
    .xv-btn {
        height: 48px;
        padding: 0 18px;
    }
}
/**/
.xv-btn-enhanced {
    position: relative;
    overflow: visible;
}

.xv-btn-solid.xv-btn-enhanced {
    background: var(--xv-forest-teal);
    border-color: rgba(141, 216, 255, 0.35);
    box-shadow: 0 4px 16px rgba(6, 159, 145, 0.15);
}

.xv-btn-solid.xv-btn-enhanced::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 16px;
    padding: 2px;
    background: linear-gradient(135deg, rgba(141, 216, 255, 0.4), rgba(6, 159, 145, 0.2));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.xv-btn-solid.xv-btn-enhanced:hover::before {
    opacity: 1;
}

.xv-btn-solid.xv-btn-enhanced:hover {
    background: #058073;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(6, 159, 145, 0.25), 0 0 16px rgba(141, 216, 255, 0.2);
}

.xv-btn-solid.xv-btn-enhanced:active {
    transform: translateY(0);
}

.xv-btn-outline.xv-btn-enhanced {
    border-width: 2px;
    border-color: rgba(141, 216, 255, 0.6);
    background: rgba(6, 159, 145, 0.04);
}

.xv-btn-outline.xv-btn-enhanced::after {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: 14px;
    background: radial-gradient(circle at top left, rgba(141, 216, 255, 0.15), transparent 60%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.xv-btn-outline.xv-btn-enhanced:hover {
    background: rgba(6, 159, 145, 0.12);
    border-color: var(--xv-glow-cyan);
    box-shadow: inset 0 0 16px rgba(141, 216, 255, 0.22), 0 0 12px rgba(141, 216, 255, 0.15);
    text-shadow: 0 0 2px rgba(141, 216, 255, 0.5);
}

.xv-btn-outline.xv-btn-enhanced:hover::after {
    opacity: 1;
}

.xv-burger {
    justify-content: center;
}

.xv-age-gate {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
}

.xv-age-gate.active {
    display: flex;
}

.xv-age-gate-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(165deg, rgba(3, 39, 33, 0.95) 0%, rgba(10, 31, 28, 0.92) 100%);
    backdrop-filter: blur(12px);
}

.xv-age-gate-overlay::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
            radial-gradient(circle at 20% 30%, rgba(228, 172, 70, 0.03) 0%, transparent 40%),
            radial-gradient(circle at 80% 70%, rgba(141, 216, 255, 0.04) 0%, transparent 50%),
            radial-gradient(1px 1px at 15% 45%, rgba(141, 216, 255, 0.2), transparent),
            radial-gradient(1px 1px at 75% 25%, rgba(228, 172, 70, 0.2), transparent),
            radial-gradient(1px 1px at 55% 85%, rgba(141, 216, 255, 0.15), transparent);
    background-size: 100% 100%, 100% 100%, 200px 200px, 250px 250px, 180px 180px;
    opacity: 0.6;
}

.xv-age-gate-card {
    position: relative;
    max-width: 640px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    background: linear-gradient(150deg, #065744 0%, #032721 100%);
    border: 1px solid rgba(141, 216, 255, 0.25);
    border-radius: 20px;
    padding: 2rem;
    box-shadow:
            0 20px 60px rgba(0, 0, 0, 0.5),
            0 0 40px rgba(6, 159, 145, 0.1),
            inset 0 1px 0 rgba(141, 216, 255, 0.15);
}

.xv-age-gate-card::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(141, 216, 255, 0.2), transparent 50%, rgba(228, 172, 70, 0.15));
    opacity: 0.4;
    pointer-events: none;
    z-index: -1;
}

.xv-age-gate-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.75rem;
    padding-bottom: 1.25rem;
    border-bottom: 1px solid rgba(141, 216, 255, 0.15);
}

.xv-age-gate-logo img {
    height: 44px;
    width: auto;
}

.xv-age-gate-seal img {
    height: 52px;
    width: auto;
}

.xv-age-gate-content {
    margin-bottom: 2rem;
}

.xv-age-gate-intro {
    text-align: center;
    margin-bottom: 1.75rem;
}

.xv-age-gate-intro h1 {
    font-size: clamp(1.5rem, 3.5vw, 2rem);
    margin-bottom: 0.625rem;
}

.xv-age-gate-subtitle {
    font-size: 1rem;
    line-height: 1.5;
    color: var(--xv-soft-mist);
    margin: 0;
}

.xv-age-gate-checklist {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
}

.xv-checklist-item {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    padding: 0.75rem 0.875rem;
    background: rgba(6, 159, 145, 0.08);
    border: 1px solid rgba(141, 216, 255, 0.18);
    border-radius: 10px;
    transition: all 0.2s ease;
}

.xv-checklist-item:hover {
    background: rgba(6, 159, 145, 0.12);
    border-color: rgba(141, 216, 255, 0.3);
}

.xv-checklist-item span {
    font-weight: var(--weight-medium);
    color: var(--xv-pearl-white);
    font-size: 0.9375rem;
}

.xv-age-gate-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1.25rem;
}

.xv-age-gate-actions .xv-btn {
    height: 52px;
    font-size: 1.0625rem;
}

.xv-age-gate-links {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.5rem;
    padding-top: 1.25rem;
    border-top: 1px solid rgba(141, 216, 255, 0.12);
}

.xv-age-gate-links a {
    font-size: 0.8125rem;
    color: var(--xv-mist-grey);
    transition: color 0.2s ease;
}

.xv-age-gate-links a:hover {
    color: var(--xv-glow-cyan);
}

.xv-dot {
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: var(--xv-amber-glow);
    display: inline-block;
    opacity: 0.7;
}

@media (max-width: 768px) {
    .xv-age-gate-card {
        padding: 1.75rem 1.5rem;
    }

    .xv-age-gate-logo img {
        height: 38px;
    }

    .xv-age-gate-seal img {
        height: 46px;
    }

    .xv-age-gate-header {
        margin-bottom: 1.5rem;
        padding-bottom: 1rem;
    }

    .xv-age-gate-intro h1 {
        font-size: 1.5rem;
    }

    .xv-age-gate-checklist {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .xv-age-gate {
        padding: 1rem;
    }

    .xv-age-gate-card {
        padding: 1.5rem 1.25rem;
        border-radius: 18px;
    }

    .xv-age-gate-actions {
        grid-template-columns: 1fr;
    }

    .xv-age-gate-actions .xv-btn {
        height: 50px;
    }

    .xv-checklist-item {
        padding: 0.625rem 0.75rem;
    }

    .xv-checklist-item span {
        font-size: 0.875rem;
    }
}
/**/
.xv-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(12px);
}

.xv-header-utility {
    background: rgba(3, 39, 33, 0.85);
    border-bottom: 1px solid rgba(141, 216, 255, 0.12);
    padding: 0.5rem 0;
}

.xv-header-utility-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.xv-safety-capsule {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.375rem 0.875rem;
    background: rgba(6, 159, 145, 0.08);
    border: 1px solid rgba(141, 216, 255, 0.18);
    border-radius: 24px;
}

.xv-safety-capsule span {
    font-size: 0.8125rem;
    color: var(--xv-soft-mist);
    line-height: 1.4;
}

.xv-header-main {
    background: rgba(10, 31, 28, 0.92);
    border-bottom: 2px solid var(--xv-amber-glow);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.25);
}

.xv-header-main-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.875rem;
    gap: 2.5rem;
}

.xv-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    transition: opacity 0.3s ease;
}

.xv-logo:hover {
    opacity: 0.85;
}

.xv-logo-img {
    width: 42px;
    height: 42px;
}

.xv-logo-text {
    font-family: var(--type-heading);
    font-weight: var(--weight-bold);
    font-size: 1.375rem;
    color: var(--xv-pearl-white);
}

.xv-nav {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.xv-nav-link {
    position: relative;
    font-weight: var(--weight-medium);
    color: var(--xv-mist-grey);
    transition: all 0.2s ease;
    padding-bottom: 0.25rem;
}

.xv-nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--xv-glow-cyan);
    transition: width 0.2s ease;
}

.xv-nav-link::before {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 4px;
    background: var(--xv-amber-glow);
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.2s ease;
}

.xv-nav-link:hover {
    color: var(--xv-glow-cyan);
    transform: translateY(-1px);
}

.xv-nav-link:hover::after {
    width: 100%;
}

.xv-nav-link:hover::before {
    opacity: 1;
}

.xv-nav-link.active {
    color: var(--xv-pearl-white);
}

.xv-nav-link.active::after {
    width: 100%;
}

.xv-nav-link.active::before {
    opacity: 1;
}

.xv-header-actions {
    display: flex;
    align-items: center;
    gap: 0.875rem;
}

.xv-header-btn {
    padding: 0 1.5rem;
    height: 44px;
    font-size: 1rem;
}

.xv-burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    width: 28px;
    height: 28px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}

.xv-burger span {
    width: 100%;
    height: 2px;
    background: var(--xv-glow-cyan);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.xv-mobile-menu {
    display: none;
}

@media (max-width: 968px) {
    .xv-nav {
        display: none;
    }

    .xv-header-btn:first-child {
        display: none;
    }

    .xv-burger {
        display: flex;
    }

    .xv-mobile-menu {
        display: block;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 2000;
        pointer-events: none;
        opacity: 0;
        transition: opacity 0.3s ease;
    }

    .xv-mobile-menu.active {
        pointer-events: all;
        opacity: 1;
    }

    .xv-mobile-menu-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(3, 39, 33, 0.85);
        backdrop-filter: blur(8px);
    }

    .xv-mobile-menu-sheet {
        position: absolute;
        top: 0;
        right: 0;
        width: 100%;
        max-width: 390px;
        height: 100%;
        background: linear-gradient(165deg, var(--xv-shadow-deep) 0%, var(--xv-deep-forest) 100%);
        display: flex;
        flex-direction: column;
        transform: translateY(100%);
        transition: transform 0.3s ease;
        overflow-y: auto;
    }

    .xv-mobile-menu.active .xv-mobile-menu-sheet {
        transform: translateY(0);
    }

    .xv-mobile-menu-header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 1.25rem 1.5rem;
        border-bottom: 1px solid rgba(141, 216, 255, 0.12);
    }

    .xv-mobile-menu-header h3 {
        margin: 0;
    }

    .xv-mobile-menu-close {
        background: none;
        border: none;
        cursor: pointer;
        padding: 0.5rem;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .xv-mobile-menu-disclaimer {
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
        padding: 1rem 1.5rem;
        border-bottom: 1px solid rgba(141, 216, 255, 0.12);
    }

    .xv-mobile-menu-disclaimer .xv-safety-capsule {
        padding: 0.625rem 1rem;
    }

    .xv-mobile-menu-disclaimer .xv-safety-capsule span {
        font-size: 0.8125rem;
        line-height: 1.5;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .xv-mobile-menu-disclaimer .xv-age-badge {
        align-self: flex-start;
    }

    .xv-mobile-nav {
        display: flex;
        flex-direction: column;
        gap: 0.625rem;
        padding: 1.5rem 1.5rem;
        flex: 1;
    }

    .xv-mobile-nav-item {
        display: flex;
        align-items: center;
        gap: 0.875rem;
        padding: 0.875rem 1rem;
        background: rgba(6, 159, 145, 0.06);
        border: 1px solid rgba(141, 216, 255, 0.15);
        border-radius: 14px;
        transition: all 0.2s ease;
        min-height: 52px;
    }

    .xv-mobile-nav-item span {
        flex: 1;
        font-weight: var(--weight-medium);
        color: var(--xv-pearl-white);
    }

    .xv-mobile-nav-item:active {
        background: rgba(6, 159, 145, 0.12);
        border-color: rgba(141, 216, 255, 0.3);
    }

    .xv-mobile-nav-item.active {
        border-color: var(--xv-amber-glow);
        box-shadow: 0 0 12px rgba(228, 172, 70, 0.2);
    }

    .xv-mobile-nav-item.active::before {
        content: '';
        width: 4px;
        height: 4px;
        background: var(--xv-amber-glow);
        border-radius: 50%;
        margin-left: -0.25rem;
    }

    .xv-mobile-menu-cta {
        padding: 1.5rem 1.5rem calc(1.5rem + env(safe-area-inset-bottom));
        border-top: 1px solid rgba(141, 216, 255, 0.12);
        background: rgba(3, 39, 33, 0.6);
    }

    .xv-mobile-cta-btn {
        width: 100%;
        margin-bottom: 0.75rem;
    }

    .xv-mobile-cta-text {
        text-align: center;
        font-size: 0.8125rem;
        color: var(--xv-mist-grey);
        margin: 0;
    }
}

@media (max-width: 480px) {
    .xv-safety-capsule span {
        font-size: 0.75rem;
    }

    .xv-header-main-inner {
        padding: 0.875rem 1rem;
    }

    .xv-logo-img {
        width: 36px;
        height: 36px;
    }

    .xv-logo-text {
        font-size: 1.125rem;
    }

    .xv-header-btn {
        padding: 0 1.125rem;
        font-size: 0.9375rem;
    }
}
.xv-age-badge {
    width: auto;
    height: 60px;
}

.xv-age-badge img {
    height: 100%;
    width: auto;
    object-fit: contain;
}

.xv-nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--xv-glow-cyan);
    transition: width 0.2s ease;
}

.xv-nav-link::before {
    display: none;
}

.xv-nav-link:hover::after {
    width: 100%;
}

.xv-nav-link.active::after {
    width: 100%;
}

.xv-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 6rem 0 4rem;
    overflow: hidden;
}

.xv-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
            radial-gradient(circle at 15% 25%, rgba(6, 159, 145, 0.08) 0%, transparent 50%),
            radial-gradient(circle at 85% 75%, rgba(228, 172, 70, 0.06) 0%, transparent 50%);
    pointer-events: none;
}

.xv-hero-grid {
    display: grid;
    grid-template-columns: 7fr 5fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.xv-hero-content h1 {
    font-size: clamp(2.5rem, 6vw, 4.25rem);
    margin-bottom: 1.25rem;
    line-height: 1.05;
}

.xv-hero-subtitle {
    font-size: clamp(1.125rem, 2vw, 1.375rem);
    color: var(--xv-soft-mist);
    margin-bottom: 2.5rem;
    line-height: 1.5;
}

.xv-forest-vows {
    display: flex;
    flex-direction: column;
    gap: 1.125rem;
    margin-bottom: 2.5rem;
}

.xv-vow-item {
    display: flex;
    align-items: center;
    gap: 0.875rem;
    padding: 1rem 1.25rem;
    background: rgba(6, 159, 145, 0.06);
    border: 1px solid rgba(141, 216, 255, 0.15);
    border-radius: 12px;
    transition: all 0.2s ease;
}

.xv-vow-item:hover {
    background: rgba(6, 159, 145, 0.1);
    border-color: rgba(141, 216, 255, 0.25);
    transform: translateX(4px);
}

.xv-vow-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.xv-vow-text {
    font-size: 1.0625rem;
    font-weight: var(--weight-medium);
    color: var(--xv-pearl-white);
}

.xv-hero-cta {
    display: flex;
    gap: 1.125rem;
    margin-bottom: 1.5rem;
}

.xv-hero-cta .xv-btn {
    height: 56px;
    padding: 0 2.25rem;
    font-size: 1.125rem;
}

.xv-hero-disclaimer {
    font-size: 0.875rem;
    color: var(--xv-mist-grey);
    font-style: italic;
}

.xv-hero-preview {
    position: relative;
}

.xv-portal-frame {
    position: relative;
    border-radius: 20px;
    padding: 1.25rem;
    background: linear-gradient(145deg, rgba(3, 39, 33, 0.6) 0%, rgba(10, 31, 28, 0.8) 100%);
    border: 1px solid rgba(141, 216, 255, 0.2);
    box-shadow:
            0 20px 60px rgba(0, 0, 0, 0.4),
            inset 0 1px 0 rgba(141, 216, 255, 0.1);
    transition: all 0.3s ease;
}

.xv-portal-frame:hover {
    transform: translateY(-4px);
    box-shadow:
            0 24px 70px rgba(0, 0, 0, 0.5),
            0 0 30px rgba(6, 159, 145, 0.15),
            inset 0 1px 0 rgba(141, 216, 255, 0.15);
}

.xv-game-preview {
    width: 100%;
    border-radius: 14px;
    overflow: hidden;
    aspect-ratio: 4/3;
}

.xv-game-preview img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.xv-firefly-trail {
    position: absolute;
    top: -10px;
    right: -10px;
    width: 120%;
    height: 120%;
    pointer-events: none;
}

.xv-firefly-badge {
    position: absolute;
    padding: 0.5rem 0.875rem;
    background: rgba(3, 39, 33, 0.85);
    border: 1px solid rgba(141, 216, 255, 0.25);
    border-radius: 20px;
    font-size: 0.8125rem;
    font-weight: var(--weight-medium);
    color: var(--xv-soft-mist);
    backdrop-filter: blur(8px);
    transition: all 0.2s ease;
    white-space: nowrap;
}

.xv-firefly-badge:hover {
    border-color: rgba(141, 216, 255, 0.4);
    box-shadow: 0 0 12px rgba(141, 216, 255, 0.15);
}

.xv-firefly-badge:nth-child(1) {
    top: 5%;
    right: 15%;
    animation: float 3s ease-in-out infinite;
}

.xv-firefly-badge:nth-child(2) {
    top: 25%;
    right: 5%;
    animation: float 3.5s ease-in-out infinite 0.5s;
}

.xv-firefly-badge:nth-child(3) {
    top: 50%;
    right: 8%;
    animation: float 3.2s ease-in-out infinite 1s;
}

.xv-firefly-badge:nth-child(4) {
    top: 70%;
    right: 12%;
    animation: float 3.8s ease-in-out infinite 1.5s;
}

.xv-firefly-badge:nth-child(5) {
    top: 85%;
    right: 20%;
    animation: float 3.3s ease-in-out infinite 2s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) translateX(0);
    }
    50% {
        transform: translateY(-8px) translateX(4px);
    }
}

@media (max-width: 968px) {
    .xv-hero {
        min-height: auto;
        padding: 4rem 0 3rem;
    }

    .xv-hero-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .xv-hero-content {
        text-align: center;
    }

    .xv-hero-content h1 {
        font-size: 2.25rem;
    }

    .xv-hero-subtitle {
        font-size: 1.125rem;
    }

    .xv-hero-cta {
        justify-content: center;
    }

    .xv-firefly-trail {
        position: static;
        width: 100%;
        height: auto;
        display: flex;
        flex-wrap: wrap;
        gap: 0.625rem;
        justify-content: center;
        margin-top: 1.5rem;
        pointer-events: all;
    }

    .xv-firefly-badge {
        position: static;
        animation: none;
    }
}

@media (max-width: 480px) {
    .xv-hero-cta {
        flex-direction: column;
        width: 100%;
    }

    .xv-hero-cta .xv-btn {
        width: 100%;
        height: 52px;
    }

    .xv-forest-vows {
        gap: 0.875rem;
    }

    .xv-vow-item {
        padding: 0.875rem 1rem;
    }

    .xv-vow-text {
        font-size: 0.9375rem;
    }
}
.xv-pact {
    position: relative;
    padding: 5.5rem 0;
    background: linear-gradient(165deg, rgba(10, 31, 28, 0.5) 0%, rgba(3, 39, 33, 0.7) 100%);
}

.xv-pact::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
            radial-gradient(1px 1px at 25% 50%, rgba(228, 172, 70, 0.12), transparent),
            radial-gradient(1px 1px at 75% 30%, rgba(141, 216, 255, 0.1), transparent);
    background-size: 180px 180px, 200px 200px;
    opacity: 0.4;
}

.xv-pact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4.5rem;
    align-items: start;
    position: relative;
    z-index: 1;
}

.xv-eyebrow {
    font-size: 0.8125rem;
    font-weight: var(--weight-bold);
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: var(--xv-amber-glow);
    margin-bottom: 1rem;
}

.xv-pact h2 {
    margin-bottom: 1.125rem;
}

.xv-pact-desc {
    font-size: 1.0625rem;
    line-height: 1.6;
    color: var(--xv-soft-mist);
    margin-bottom: 2.75rem;
}

.xv-seals {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem 1.25rem;
}

.xv-seal {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    padding: 1.25rem;
    background: rgba(6, 159, 145, 0.06);
    border: 1px solid rgba(141, 216, 255, 0.15);
    border-radius: 12px;
    transition: all 0.2s ease;
}

.xv-seal:hover {
    background: rgba(6, 159, 145, 0.1);
    border-color: rgba(141, 216, 255, 0.28);
    transform: translateY(-2px);
}

.xv-seal-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(6, 159, 145, 0.1);
    border: 1px solid rgba(141, 216, 255, 0.22);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.xv-seal-title {
    font-size: 1rem;
    font-weight: var(--weight-semibold);
    color: var(--xv-pearl-white);
    margin-bottom: 0.25rem;
}

.xv-seal-desc {
    font-size: 0.875rem;
    line-height: 1.5;
    color: var(--xv-mist-grey);
}

.xv-pact-right h3 {
    margin-bottom: 2.25rem;
}

.xv-route {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.xv-route-step {
    display: flex;
    gap: 1.125rem;
    padding: 1.125rem 1.25rem;
    background: rgba(6, 159, 145, 0.06);
    border: 1px solid rgba(141, 216, 255, 0.15);
    border-radius: 12px;
    transition: all 0.2s ease;
}

.xv-route-step:hover {
    background: rgba(6, 159, 145, 0.1);
    border-color: rgba(141, 216, 255, 0.28);
    transform: translateX(4px);
}

.xv-route-icon-wrap {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--xv-amber-glow);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.xv-route-icon-wrap img {
    filter: brightness(0) saturate(100%) invert(10%) sepia(20%) saturate(2000%) hue-rotate(130deg);
}

.xv-route-content {
    flex: 1;
}

.xv-route-title {
    font-size: 1.0625rem;
    font-weight: var(--weight-semibold);
    color: var(--xv-pearl-white);
    margin-bottom: 0.25rem;
}

.xv-route-desc {
    font-size: 0.875rem;
    line-height: 1.5;
    color: var(--xv-mist-grey);
}

.xv-preview-card {
    padding: 1rem;
    background: rgba(3, 39, 33, 0.6);
    border: 1px solid rgba(141, 216, 255, 0.18);
    border-radius: 14px;
    transition: all 0.3s ease;
}

.xv-preview-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.xv-preview-img {
    width: 100%;
    border-radius: 10px;
    overflow: hidden;
    aspect-ratio: 16/9;
    margin-bottom: 0.875rem;
}

.xv-preview-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.xv-preview-tags {
    display: flex;
    gap: 0.625rem;
    justify-content: center;
}

.xv-tag {
    padding: 0.4375rem 0.875rem;
    background: rgba(6, 159, 145, 0.08);
    border: 1px solid rgba(141, 216, 255, 0.2);
    border-radius: 18px;
    font-size: 0.8125rem;
    font-weight: var(--weight-medium);
    color: var(--xv-soft-mist);
}

@media (max-width: 968px) {
    .xv-pact {
        padding: 4rem 0;
    }

    .xv-pact-grid {
        grid-template-columns: 1fr;
        gap: 3.5rem;
    }

    .xv-seals {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .xv-route {
        gap: 1.25rem;
    }
}

@media (max-width: 480px) {
    .xv-pact {
        padding: 3rem 0;
    }

    .xv-pact-grid {
        gap: 3rem;
    }

    .xv-seal {
        padding: 1rem;
    }

    .xv-route-step {
        padding: 1rem;
        gap: 0.875rem;
    }

    .xv-preview-tags {
        flex-wrap: wrap;
    }
}
.xv-live {
    position: relative;
    padding: 6rem 0;
    background: linear-gradient(160deg, rgba(3, 39, 33, 0.85) 0%, rgba(10, 31, 28, 0.75) 100%);
    overflow: hidden;
}

.xv-live::before {
    content: '';
    position: absolute;
    top: -100px;
    left: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(228, 172, 70, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.xv-live-grid {
    display: grid;
    grid-template-columns: 5fr 7fr;
    gap: 3.5rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.xv-live-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(228, 172, 70, 0.12);
    border: 1px solid rgba(228, 172, 70, 0.3);
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: var(--weight-bold);
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: var(--xv-amber-glow);
    margin-bottom: 1.25rem;
}

.xv-live-left h2 {
    margin-bottom: 1rem;
}

.xv-live-desc {
    font-size: 1.0625rem;
    color: var(--xv-soft-mist);
    margin-bottom: 2rem;
}

.xv-live-cta {
    margin-bottom: 1.25rem;
}

.xv-live-micro {
    font-size: 0.875rem;
    color: var(--xv-mist-grey);
    font-style: italic;
}

.xv-portal-container {
    position: relative;
}

.xv-portal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.875rem 1.25rem;
    background: rgba(3, 39, 33, 0.7);
    border: 1px solid rgba(141, 216, 255, 0.2);
    border-bottom: none;
    border-radius: 16px 16px 0 0;
}

.xv-portal-title {
    font-size: 1rem;
    font-weight: var(--weight-semibold);
    color: var(--xv-pearl-white);
}

.xv-portal-seal {
    height: 32px;
    width: auto;
}

.xv-portal-frame {
    display: flex;
    position: relative;
    background: linear-gradient(145deg, rgba(3, 39, 33, 0.6) 0%, rgba(10, 31, 28, 0.8) 100%);
    border: 1px solid rgba(141, 216, 255, 0.2);
    border-radius: 0 0 16px 16px;
    overflow: hidden;
}

.xv-game-container {
    position: relative;
    width: 100%;
    aspect-ratio: 16/9;
    background: var(--xv-deep-forest);
}

.xv-game-iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}

.xv-game-loading {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(3, 39, 33, 0.95);
    color: var(--xv-soft-mist);
    font-size: 1rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.xv-game-loading.active {
    opacity: 1;
    pointer-events: all;
}

.xv-firefly-deco {
    position: absolute;
    width: 8px;
    height: 8px;
    background: var(--xv-amber-glow);
    border-radius: 50%;
    box-shadow: 0 0 12px rgba(228, 172, 70, 0.6);
    opacity: 0.7;
    animation: glow 3s ease-in-out infinite;
}

.xv-firefly-deco:nth-child(1) {
    top: 20px;
    right: 20px;
    animation-delay: 0s;
}

.xv-firefly-deco:nth-child(2) {
    bottom: 20px;
    left: 20px;
    animation-delay: 1s;
}

.xv-firefly-deco:nth-child(3) {
    bottom: 20px;
    right: 20px;
    animation-delay: 2s;
}

@keyframes glow {
    0%, 100% {
        opacity: 0.5;
    }
    50% {
        opacity: 1;
    }
}

@media (max-width: 968px) {
    .xv-live {
        padding: 4rem 0 0;
    }

    .xv-live-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .xv-live-left {
        text-align: center;
        padding: 0 1.5rem;
    }

    .xv-live-cta {
        display: flex;
        justify-content: center;
    }

    .xv-portal-container {
        margin: 0 -1.5rem;
    }

    .xv-portal-header {
        border-radius: 0;
        border-left: none;
        border-right: none;
    }

    .xv-portal-frame {
        border-radius: 0;
        border-left: none;
        border-right: none;
    }

    .xv-game-container {
        aspect-ratio: auto;
        min-height: 560px;
    }
}

@media (max-width: 480px) {
    .xv-live {
        padding: 3rem 0 0;
    }

    .xv-live-left {
        padding: 0 1rem;
    }

    .xv-portal-container {
        margin: 0 -1rem;
    }

    .xv-game-container {
        min-height: 520px;
    }
}
.xv-calm {
    position: relative;
    padding: 6rem 0;
    background: linear-gradient(165deg, rgba(3, 39, 33, 0.9) 0%, rgba(10, 31, 28, 0.85) 100%);
    overflow: hidden;
}

.xv-calm::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
            radial-gradient(1px 1px at 20% 40%, rgba(228, 172, 70, 0.08), transparent),
            radial-gradient(1px 1px at 80% 60%, rgba(141, 216, 255, 0.06), transparent);
    background-size: 160px 160px, 200px 200px;
    opacity: 0.3;
}

.xv-calm-inner {
    position: relative;
    z-index: 1;
}

.xv-calm-header {
    text-align: center;
    margin-bottom: 4rem;
}

.xv-calm-eyebrow {
    font-size: 0.8125rem;
    font-weight: var(--weight-bold);
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: var(--xv-amber-glow);
    margin-bottom: 1.125rem;
}

.xv-calm-header h2 {
    margin-bottom: 1rem;
}

.xv-calm-subtitle {
    font-size: 1.0625rem;
    color: var(--xv-soft-mist);
    max-width: 640px;
    margin: 0 auto;
}

.xv-calm-grid {
    display: grid;
    grid-template-columns: 7fr 5fr;
    gap: 3rem;
}

.xv-pact-board {
    background: rgba(3, 39, 33, 0.5);
    border: 1px solid rgba(141, 216, 255, 0.18);
    border-radius: 16px;
    padding: 2.5rem 2rem;
    box-shadow: inset 0 2px 8px rgba(0, 0, 0, 0.2);
}

.xv-pillars {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.xv-pillar {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 2rem 1.5rem;
    background: rgba(6, 159, 145, 0.06);
    border: 1px solid rgba(141, 216, 255, 0.15);
    border-radius: 14px;
    transition: all 0.2s ease;
}

.xv-pillar:hover {
    border-color: rgba(141, 216, 255, 0.3);
    transform: translateY(-2px);
}

.xv-pillar-icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: rgba(6, 159, 145, 0.1);
    border: 1px solid rgba(141, 216, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.125rem;
}

.xv-pillar-title {
    font-size: 1.125rem;
    font-weight: var(--weight-semibold);
    color: var(--xv-pearl-white);
    margin-bottom: 0.625rem;
}

.xv-pillar-desc {
    font-size: 0.9375rem;
    line-height: 1.5;
    color: var(--xv-mist-grey);
}

.xv-board-micro {
    font-size: 0.875rem;
    color: var(--xv-mist-grey);
    font-style: italic;
    text-align: center;
}

.xv-session-panel {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.xv-checklist-card {
    background: rgba(3, 39, 33, 0.5);
    border: 1px solid rgba(141, 216, 255, 0.18);
    border-radius: 16px;
    padding: 2rem 1.75rem;
}

.xv-checklist-title {
    font-size: 1.25rem;
    font-weight: var(--weight-semibold);
    color: var(--xv-pearl-white);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.625rem;
}

.xv-checklist-title::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--xv-amber-glow);
    border-radius: 50%;
    box-shadow: 0 0 8px rgba(228, 172, 70, 0.5);
}

.xv-check-list {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.xv-check-row {
    display: flex;
    gap: 1rem;
    padding-bottom: 1.25rem;
    border-bottom: 1px solid rgba(141, 216, 255, 0.08);
    transition: all 0.2s ease;
    cursor: default;
}

.xv-check-row:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.xv-check-row:hover {
    padding-left: 4px;
}

.xv-check-row:hover .xv-check-text {
    color: var(--xv-pearl-white);
}

.xv-check-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(6, 159, 145, 0.1);
    border: 1px solid rgba(141, 216, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.xv-check-content h4 {
    font-size: 1rem;
    font-weight: var(--weight-semibold);
    color: var(--xv-pearl-white);
    margin-bottom: 0.25rem;
}

.xv-check-text {
    font-size: 0.875rem;
    line-height: 1.5;
    color: var(--xv-mist-grey);
    transition: color 0.2s ease;
}

.xv-support-card {
    background: rgba(10, 31, 28, 0.6);
    border: 1px solid rgba(141, 216, 255, 0.15);
    border-radius: 14px;
    overflow: hidden;
}

.xv-support-toggle {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 1.5rem;
    background: none;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
}

.xv-support-toggle:hover {
    background: rgba(6, 159, 145, 0.05);
}

.xv-support-toggle-text {
    font-size: 1rem;
    font-weight: var(--weight-semibold);
    color: var(--xv-pearl-white);
    text-align: left;
}

.xv-support-toggle-icon {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.xv-support-card.active .xv-support-toggle-icon {
    transform: rotate(180deg);
}

.xv-support-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.xv-support-card.active .xv-support-content {
    max-height: 300px;
}

.xv-support-inner {
    padding: 0 1.5rem 1.5rem;
}

.xv-support-desc {
    font-size: 0.875rem;
    color: var(--xv-mist-grey);
    margin-bottom: 1rem;
}

.xv-support-links {
    display: flex;
    flex-wrap: wrap;
    gap: 0.625rem;
}

.xv-support-link {
    font-size: 0.875rem;
    color: var(--xv-glow-cyan);
    padding: 0.5rem 0.875rem;
    background: rgba(6, 159, 145, 0.08);
    border: 1px solid rgba(141, 216, 255, 0.2);
    border-radius: 18px;
    transition: all 0.2s ease;
    display: inline-block;
}

.xv-support-link:hover {
    background: rgba(6, 159, 145, 0.12);
    border-color: rgba(141, 216, 255, 0.35);
}

@media (max-width: 968px) {
    .xv-calm {
        padding: 4rem 0;
    }

    .xv-calm-header {
        margin-bottom: 3rem;
    }

    .xv-calm-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .xv-pact-board {
        padding: 2rem 1.5rem;
    }

    .xv-pillars {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: 1rem;
        margin: 0 -1.5rem 2rem;
        padding: 0 1.5rem;
    }

    .xv-pillar {
        min-width: 280px;
        scroll-snap-align: start;
    }

    .xv-session-panel {
        gap: 1.25rem;
    }
}

@media (max-width: 480px) {
    .xv-calm {
        padding: 3rem 0;
    }

    .xv-pact-board {
        padding: 1.75rem 1.25rem;
    }

    .xv-pillar {
        min-width: 260px;
        padding: 1.75rem 1.25rem;
    }

    .xv-checklist-card {
        padding: 1.75rem 1.5rem;
    }

    .xv-check-row {
        gap: 0.875rem;
    }
}
.xv-footer {
    position: relative;
    background: linear-gradient(165deg, rgba(3, 39, 33, 0.95) 0%, rgba(10, 31, 28, 0.9) 100%);
    border-top: 2px solid var(--xv-amber-glow);
}

.xv-pact-panel {
    position: relative;
    padding: 3rem 0;
    border-bottom: 1px solid rgba(141, 216, 255, 0.12);
}

.xv-pact-panel::before {
    content: '';
    position: absolute;
    top: -8px;
    right: 20px;
    width: 6px;
    height: 6px;
    background: var(--xv-amber-glow);
    border-radius: 50%;
    box-shadow: 0 0 12px rgba(228, 172, 70, 0.6);
}

.xv-pact-panel::after {
    content: '';
    position: absolute;
    top: -8px;
    left: 20px;
    width: 6px;
    height: 6px;
    background: var(--xv-amber-glow);
    border-radius: 50%;
    box-shadow: 0 0 12px rgba(228, 172, 70, 0.6);
}

.xv-pact-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 2rem;
}

.xv-pact-intro {
    display: flex;
    align-items: center;
    gap: 0.875rem;
}

.xv-pact-intro-icon {
    width: 28px;
    height: 28px;
}

.xv-pact-intro h3 {
    font-size: 1.375rem;
    margin: 0;
    color: var(--xv-pearl-white);
}

.xv-pact-intro p {
    font-size: 0.9375rem;
    color: var(--xv-mist-grey);
    margin: 0;
}

.xv-pact-seal {
    height: 40px;
    width: auto;
}

.xv-statements {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
}

.xv-statement {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 1rem 1.25rem;
    background: rgba(6, 159, 145, 0.06);
    border: 1px solid rgba(141, 216, 255, 0.15);
    border-radius: 10px;
}

.xv-statement-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    margin-top: 2px;
}

.xv-statement-text {
    font-size: 0.9375rem;
    line-height: 1.5;
    color: var(--xv-pearl-white);
}

.xv-pact-toggle {
    display: none;
}

.xv-resources {
    padding: 2.5rem 0;
    border-bottom: 1px solid rgba(141, 216, 255, 0.12);
}

.xv-resources-label {
    font-size: 0.8125rem;
    font-weight: var(--weight-medium);
    letter-spacing: 0.5px;
    color: var(--xv-mist-grey);
    margin-bottom: 1rem;
}

.xv-resources-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.xv-resource-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.625rem 1rem;
    background: rgba(6, 159, 145, 0.08);
    border: 1px solid rgba(141, 216, 255, 0.2);
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: var(--weight-medium);
    color: var(--xv-glow-cyan);
    transition: all 0.2s ease;
}

.xv-resource-chip:hover {
    background: rgba(6, 159, 145, 0.12);
    border-color: rgba(141, 216, 255, 0.35);
}

.xv-resource-chip-icon {
    width: 14px;
    height: 14px;
}

.xv-dock {
    padding: 3.5rem 0 2rem;
}

.xv-dock-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.xv-brand {
    max-width: 420px;
}

.xv-brand-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.25rem;
}

.xv-brand-logo-img {
    width: 42px;
    height: 42px;
}

.xv-brand-logo-text {
    font-family: var(--type-heading);
    font-weight: var(--weight-bold);
    font-size: 1.375rem;
    color: var(--xv-pearl-white);
}

.xv-brand-desc {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--xv-mist-grey);
    margin-bottom: 1.5rem;
}

.xv-brand-pledge {
    font-size: 0.9375rem;
    font-style: italic;
    color: var(--xv-soft-mist);
    margin-bottom: 1.5rem;
}

.xv-link-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem 2rem;
}

.xv-footer-link {
    font-size: 0.9375rem;
    color: var(--xv-mist-grey);
    transition: color 0.2s ease;
    display: inline-block;
}

.xv-footer-link:hover {
    color: var(--xv-glow-cyan);
}

.xv-bottom-bar {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 2rem;
    padding: 1.5rem 0;
    border-top: 1px solid rgba(141, 216, 255, 0.12);
}

.xv-copyright {
    font-size: 0.875rem;
    color: var(--xv-mist-grey);
}

.xv-bottom-disclaimer {
    font-size: 0.8125rem;
    color: var(--xv-mist-grey);
    text-align: center;
}

.xv-bottom-seal {
    height: 36px;
    width: auto;
    margin-left: auto;
}

@media (max-width: 968px) {
    .xv-pact-panel {
        padding: 2.5rem 0;
    }

    .xv-pact-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.25rem;
    }

    .xv-pact-content {
        display: none;
    }

    .xv-pact-toggle {
        display: block;
        width: 100%;
        padding: 1.25rem 1.5rem;
        background: rgba(3, 39, 33, 0.5);
        border: 1px solid rgba(141, 216, 255, 0.18);
        border-radius: 12px;
        cursor: pointer;
        transition: all 0.2s ease;
    }

    .xv-pact-toggle:hover {
        background: rgba(6, 159, 145, 0.08);
    }

    .xv-pact-toggle-inner {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .xv-pact-toggle-text {
        font-size: 1rem;
        font-weight: var(--weight-semibold);
        color: var(--xv-pearl-white);
    }

    .xv-pact-toggle-icon {
        width: 20px;
        height: 20px;
        transition: transform 0.3s ease;
    }

    .xv-pact-panel.active .xv-pact-toggle-icon {
        transform: rotate(180deg);
    }

    .xv-pact-panel.active .xv-pact-content {
        display: block;
        padding-top: 1.5rem;
    }

    .xv-statements {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .xv-resources {
        padding: 2rem 0;
    }

    .xv-resources-chips {
        overflow-x: auto;
        flex-wrap: nowrap;
        padding-bottom: 0.5rem;
    }

    .xv-resource-chip {
        white-space: nowrap;
    }

    .xv-dock {
        padding: 3rem 0 2rem;
    }

    .xv-dock-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .xv-brand {
        max-width: 100%;
    }

    .xv-link-grid {
        gap: 1rem 1.5rem;
    }

    .xv-bottom-bar {
        grid-template-columns: 1fr;
        gap: 1.25rem;
        text-align: center;
    }

    .xv-bottom-seal {
        margin: 0 auto;
    }
}

@media (max-width: 480px) {
    .xv-pact-panel {
        padding: 2rem 0;
    }

    .xv-pact-intro {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .xv-statement {
        padding: 0.875rem 1rem;
    }

    .xv-resources {
        padding: 1.75rem 0;
    }

    .xv-dock {
        padding: 2.5rem 0 1.5rem;
    }

    .xv-dock-grid {
        gap: 2.5rem;
    }
}