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

:root {
    --color-abyss-navy: #061a2b;
    --color-glass-blue: #1f7aff;
    --color-crystal-cyan: #00d9ff;
    --color-sea-mint: #3ef0b8;
    --color-sand-glow: #ffe8a3;
    --color-surface-0: rgba(6, 26, 43, 0.82);
    --color-surface-1: rgba(16, 45, 70, 0.55);
    --color-border-soft: rgba(0, 217, 255, 0.25);
    --color-border-strong: rgba(31, 122, 255, 0.45);
    --color-text-strong: rgba(246, 250, 255, 0.97);
    --color-text-soft: rgba(214, 230, 246, 0.78);
    --color-text-muted: rgba(173, 200, 224, 0.66);
    --shadow-depth-1: 0 8px 30px rgba(0, 0, 0, 0.32);
    --shadow-depth-2: 0 26px 60px rgba(0, 0, 0, 0.45);
    --shadow-glow-soft: 0 0 0 1px rgba(0, 217, 255, 0.15), 0 18px 60px rgba(31, 122, 255, 0.22);
    --radius-panel: clamp(14px, 2.4vw, 22px);
    --radius-pill: 999px;
    --space-xxs: 0.25rem;
    --space-xs: 0.55rem;
    --space-sm: clamp(0.65rem, 1.9vw, 1rem);
    --space-md: clamp(1rem, 3.2vw, 1.6rem);
    --space-lg: clamp(1.6rem, 5vw, 2.6rem);
    --space-xl: clamp(2.3rem, 7vw, 4rem);
    --space-xxl: clamp(3rem, 9vw, 5.75rem);
    --font-display: "Segoe UI", system-ui, -apple-system, sans-serif;
    --font-body: "Segoe UI", system-ui, -apple-system, sans-serif;
    --text-step--1: clamp(0.82rem, 0.74rem + 0.35vw, 0.95rem);
    --text-step-0: clamp(0.95rem, 0.88rem + 0.42vw, 1.075rem);
    --text-step-1: clamp(1.05rem, 0.93rem + 0.72vw, 1.35rem);
    --text-step-2: clamp(1.28rem, 1.05rem + 1.05vw, 1.76rem);
    --text-step-3: clamp(1.6rem, 1.15rem + 1.72vw, 2.38rem);
    --text-step-4: clamp(2rem, 1.38rem + 2.52vw, 3.05rem);
    --text-step-5: clamp(2.55rem, 1.55rem + 3.72vw, 3.82rem);
    --transition-fast: 180ms cubic-bezier(0.32, 0.72, 0, 1);
    --transition-mid: 320ms cubic-bezier(0.25, 0.74, 0.24, 0.96);
    --layout-gutter: clamp(14px, 4.2vw, 28px);
    --burger-ease: 0.45s cubic-bezier(0.34, 1.2, 0.52, 1);
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    margin: 0;
    font-family: var(--font-body);
    font-size: var(--text-step-0);
    line-height: 1.62;
    color: var(--color-text-soft);
    background-color: var(--color-abyss-navy);
    background-image:
        radial-gradient(1200px circle at 8% -10%, rgba(31, 122, 255, 0.26), transparent 55%),
        radial-gradient(900px circle at 112% 18%, rgba(0, 217, 255, 0.18), transparent 58%),
        radial-gradient(800px circle at 72% 108%, rgba(62, 240, 184, 0.12), transparent 55%);
    background-attachment: fixed;
    overflow-x: hidden;
}

::selection {
    background: rgba(0, 217, 255, 0.35);
    color: var(--color-text-strong);
}

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

a {
    color: var(--color-crystal-cyan);
    text-underline-offset: 0.2em;
    transition: color var(--transition-fast), opacity var(--transition-fast);
}

a:hover {
    color: var(--color-sea-mint);
}

a:focus-visible {
    outline: 2px solid rgba(62, 240, 184, 0.65);
    outline-offset: 3px;
    border-radius: 4px;
}

.page-wrap {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

main {
    flex: 1;
}

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

.skip-link:focus {
    position: fixed;
    top: var(--space-sm);
    left: var(--space-sm);
    z-index: 200;
    width: auto;
    height: auto;
    clip: auto;
    clip-path: none;
    margin: 0;
    padding: var(--space-sm) var(--space-md);
    background: rgba(31, 122, 255, 0.95);
    color: var(--color-text-strong);
    border-radius: var(--radius-pill);
    text-decoration: none;
    font-weight: 600;
}

.header-sentinel {
    height: 1px;
    margin: 0;
    pointer-events: none;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 64;
    backdrop-filter: blur(18px);
    background: rgba(6, 26, 43, 0.64);
    border-bottom: 1px solid transparent;
    transition: border-color var(--transition-mid), box-shadow var(--transition-mid), background var(--transition-mid);
}

.site-header--dense {
    border-color: rgba(0, 217, 255, 0.18);
    box-shadow: 0 22px 50px rgba(0, 0, 0, 0.32);
}

.site-header__inner {
    width: min(1160px, calc(100% - var(--layout-gutter) * 2));
    margin-inline: auto;
    display: grid;
    grid-template-columns: minmax(0, 2fr) minmax(0, 4fr);
    align-items: center;
    gap: var(--space-sm);
    padding-block: clamp(12px, 2.5vw, 18px);
}

@media (max-width: 899px) {
    .site-header__inner {
        grid-template-columns: minmax(0, 1fr) auto;
        grid-template-rows: auto;
        align-items: center;
    }
}

.brand-link {
    text-decoration: none;
    font-weight: 650;
    letter-spacing: 0.015em;
    color: var(--color-text-strong);
    font-size: var(--text-step-1);
    display: inline-flex;
    gap: var(--space-sm);
    align-items: center;
    min-width: 0;
}

.brand-badge {
    display: inline-grid;
    place-items: center;
    width: clamp(38px, 11vw, 44px);
    height: clamp(38px, 11vw, 44px);
    border-radius: 14px;
    background: radial-gradient(circle at 30% 20%, rgba(0, 217, 255, 0.36), transparent 62%),
        linear-gradient(140deg, rgba(31, 122, 255, 0.65), rgba(6, 26, 43, 0.35));
    box-shadow: var(--shadow-glow-soft), inset 0 1px 0 rgba(255, 232, 163, 0.18);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.brand-badge i {
    color: var(--color-sand-glow);
}

.site-nav {
    justify-self: end;
}

@media (min-width: 900px) {
    .brand-link {
        grid-column: 1;
        grid-row: 1;
    }

    .site-nav {
        grid-column: 2;
        grid-row: 1;
        justify-self: end;
    }
}

.site-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: clamp(6px, 2vw, 14px);
    flex-wrap: wrap;
    justify-content: flex-end;
}

.site-nav li {
    display: inline-flex;
}

.site-nav__link {
    padding: calc(var(--space-xs) + 1px) calc(var(--space-sm) + 4px);
    border-radius: var(--radius-pill);
    text-decoration: none;
    border: 1px solid transparent;
    color: rgba(235, 244, 255, 0.88);
    font-size: var(--text-step--1);
}

.site-nav__link:hover {
    background: rgba(31, 122, 255, 0.16);
    border-color: rgba(0, 217, 255, 0.24);
}

.site-nav__link--current {
    color: var(--color-abyss-navy);
    background: linear-gradient(120deg, var(--color-sea-mint), var(--color-crystal-cyan));
}

#nav-toggle {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    opacity: 0;
    clip: rect(0 0 0 0);
    clip-path: inset(50%);
}

.menu-toggle {
    display: none;
}

.menu-toggle__burger {
    position: relative;
    width: 24px;
    height: 16px;
    display: block;
}

.menu-toggle__line {
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    border-radius: 2px;
    background: linear-gradient(105deg, var(--color-sand-glow), var(--color-crystal-cyan) 70%);
    transition: transform var(--burger-ease), opacity 0.2s cubic-bezier(0.32, 0.72, 0, 1), top var(--burger-ease);
}

.menu-toggle__line:nth-child(1) {
    top: 0;
}

.menu-toggle__line:nth-child(2) {
    top: 7px;
}

.menu-toggle__line:nth-child(3) {
    top: 14px;
}

#nav-toggle:checked~.menu-toggle .menu-toggle__line:nth-child(1) {
    top: 7px;
    transform: rotate(45deg);
}

#nav-toggle:checked~.menu-toggle .menu-toggle__line:nth-child(2) {
    opacity: 0;
    transform: scaleX(0.08);
}

#nav-toggle:checked~.menu-toggle .menu-toggle__line:nth-child(3) {
    top: 7px;
    transform: rotate(-45deg);
}

.nav-scrim {
    display: none;
}

@media (max-width: 899px) {
    @supports selector(:has(*)) {
        body:has(#nav-toggle:checked) {
            overflow: hidden;
        }
    }

    .menu-toggle {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: min(52px, 14vw);
        height: min(52px, 14vw);
        min-width: 48px;
        min-height: 48px;
        border-radius: 18px;
        background:
            radial-gradient(circle at 30% 20%, rgba(0, 217, 255, 0.25), transparent 65%),
            rgba(31, 122, 255, 0.12);
        border: 1px solid rgba(0, 217, 255, 0.35);
        box-shadow:
            inset 0 1px 1px rgba(255, 255, 255, 0.1),
            0 8px 26px rgba(0, 0, 0, 0.4);
        cursor: pointer;
        grid-column: 2;
        grid-row: 1;
        justify-self: end;
        z-index: 66;
        position: relative;
        transition:
            transform var(--transition-fast),
            border-color var(--transition-mid),
            box-shadow var(--transition-mid),
            background var(--transition-mid);
    }

    .menu-toggle:hover {
        border-color: rgba(62, 240, 184, 0.45);
    }

    .menu-toggle:active {
        transform: scale(0.95);
    }

    #nav-toggle:checked~.menu-toggle {
        background:
            radial-gradient(circle at 72% 80%, rgba(62, 240, 184, 0.18), transparent 55%),
            rgba(6, 26, 43, 0.92);
        border-color: rgba(62, 240, 184, 0.55);
        box-shadow:
            inset 0 0 32px rgba(31, 122, 255, 0.12),
            0 0 0 1px rgba(0, 217, 255, 0.18);
    }

    .nav-scrim {
        pointer-events: none;
        visibility: hidden;
        opacity: 0;
        cursor: pointer;
        display: block;
        border: 0;
        margin: 0;
        appearance: none;
        -webkit-appearance: none;
        position: fixed;
        inset: 0;
        z-index: 60;
        background: radial-gradient(circle at 50% -20%, rgba(31, 122, 255, 0.18), transparent 55%), rgba(2, 8, 16, 0.68);
        backdrop-filter: blur(14px);
        transition: opacity 0.4s cubic-bezier(0.32, 0.72, 0, 1), visibility 0.4s;
    }

    #nav-toggle:checked~.nav-scrim {
        pointer-events: auto;
        visibility: visible;
        opacity: 1;
    }

    .brand-link {
        grid-column: 1;
        grid-row: 1;
    }

    .site-nav {
        position: fixed;
        inset: 0 0 0 auto;
        z-index: 62;
        width: min(calc(100vw - clamp(52px, 18vw, 84px)), 400px);
        max-width: 100vw;
        margin: 0;
        padding-top: clamp(72px, 22vw, 108px);
        padding-bottom: calc(var(--space-lg) + env(safe-area-inset-bottom, 0px));
        padding-inline-start: clamp(18px, 5vw, 28px);
        padding-inline-end: clamp(16px, 4vw, 24px);
        display: flex;
        flex-direction: column;
        align-items: stretch;
        overflow-y: auto;
        overflow-x: hidden;
        background:
            linear-gradient(195deg, rgba(6, 26, 43, 0.82) 0%, rgba(4, 16, 30, 0.94) 100%);
        backdrop-filter: blur(22px) saturate(160%);
        border-left: 1px solid rgba(0, 217, 255, 0.28);
        box-shadow:
            -40px 0 100px rgba(0, 0, 0, 0.55),
            inset 1px 0 0 rgba(255, 255, 255, 0.06);
        transform: translate3d(102%, 0, 0);
        transition: transform 0.45s cubic-bezier(0.34, 1.1, 0.52, 1);
    }

    .site-nav::before {
        content: "";
        position: absolute;
        left: clamp(14px, 4vw, 22px);
        top: clamp(56px, 15vw, 84px);
        width: clamp(72px, 22vw, 120px);
        height: 3px;
        border-radius: 3px;
        background: linear-gradient(90deg, var(--color-crystal-cyan), var(--color-sea-mint), transparent);
        pointer-events: none;
    }

    #nav-toggle:checked~.site-nav {
        transform: translate3d(0, 0, 0);
        height: 100vh;
        height: 100dvh;
    }

    .site-nav ul {
        position: relative;
        inset: unset;
        top: unset;
        right: unset;
        flex-direction: column;
        gap: clamp(10px, 3vw, 14px);
        align-items: stretch;
        justify-content: flex-start;
        padding: clamp(26px, 7vw, 36px) 0 0;
        margin-top: clamp(28px, 8vw, 40px);
        border-radius: 0;
        background: transparent;
        border: 0;
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        transform: none;
        flex-wrap: nowrap;
        min-width: 0;
        width: 100%;
    }

    .site-nav ul li {
        opacity: 0;
        transform: translateX(var(--slide-nudge, 12px));
        transition:
            opacity 0.4s cubic-bezier(0.32, 0.72, 0, 1),
            transform 0.4s cubic-bezier(0.32, 0.72, 0, 1);
    }

    .site-nav li:nth-child(1) {
        --slide-nudge: 6px;
    }

    .site-nav li:nth-child(2) {
        --slide-nudge: 10px;
    }

    .site-nav li:nth-child(3) {
        --slide-nudge: 14px;
    }

    .site-nav li:nth-child(4) {
        --slide-nudge: 18px;
    }

    #nav-toggle:checked~.site-nav ul li:nth-child(1),
    #nav-toggle:checked~.site-nav ul li:nth-child(2),
    #nav-toggle:checked~.site-nav ul li:nth-child(3),
    #nav-toggle:checked~.site-nav ul li:nth-child(4) {
        opacity: 1;
        transform: translateX(0);
    }

    #nav-toggle:checked~.site-nav ul li:nth-child(1) {
        transition-delay: 0.06s;
    }

    #nav-toggle:checked~.site-nav ul li:nth-child(2) {
        transition-delay: 0.1s;
    }

    #nav-toggle:checked~.site-nav ul li:nth-child(3) {
        transition-delay: 0.14s;
    }

    #nav-toggle:checked~.site-nav ul li:nth-child(4) {
        transition-delay: 0.18s;
    }

    #nav-toggle:not(:checked)~.site-nav ul li {
        transition-delay: 0s !important;
    }

    .site-nav__link {
        display: flex;
        align-items: center;
        gap: var(--space-sm);
        padding: clamp(13px, 4vw, 17px) clamp(16px, 4vw, 22px);
        border-radius: 14px;
        font-size: var(--text-step-0);
        border: 1px solid transparent;
        background: rgba(16, 45, 70, 0.28);
        box-shadow: 0 2px 0 rgba(0, 0, 0, 0.08);
        transition:
            transform var(--transition-fast),
            border-color var(--transition-fast),
            background var(--transition-fast),
            box-shadow var(--transition-mid);
    }

    .site-nav__link::after {
        content: "\ea6c";
        font-family: remixicon;
        margin-left: auto;
        opacity: 0.45;
        font-size: 1.08em;
    }

    .site-nav__link:hover {
        background: rgba(31, 122, 255, 0.28);
        border-color: rgba(0, 217, 255, 0.22);
        transform: translateX(-2px);
    }

    .site-nav__link--current {
        background: rgba(62, 240, 184, 0.12);
        border-color: rgba(62, 240, 184, 0.35);
    }
}

@media (min-width: 900px) {
    .nav-scrim {
        display: none;
    }

    .site-nav {
        position: relative;
        width: auto;
        padding: 0;
        inset: unset;
        transform: none;
        backdrop-filter: none;
        border: 0;
        box-shadow: none;
        overflow: visible;
        display: block;
        background: transparent;
        z-index: auto;
    }

    .site-nav li:nth-child(n) {
        opacity: 1;
        transform: none;
    }

    .site-nav::before {
        display: none;
    }

    .site-nav__link::after {
        display: none;
    }

    .site-nav ul {
        position: relative;
        top: auto;
        right: auto;
        opacity: 1;
        visibility: visible;
        transform: none;
        flex-direction: row;
        flex-wrap: wrap;
        box-shadow: none;
        border: 0;
        background: transparent;
        padding: 0;
        margin: 0;
        gap: clamp(6px, 2vw, 14px);
    }

    .site-nav ul li {
        opacity: 1 !important;
        transform: none !important;
        transition: none;
    }

    .site-nav__link {
        display: inline-flex;
        padding: calc(var(--space-xs) + 1px) calc(var(--space-sm) + 4px);
        border-radius: var(--radius-pill);
        background: transparent;
        box-shadow: none;
        border: 1px solid transparent;
        font-size: var(--text-step--1);
        transform: none;
    }

    .site-nav__link:hover {
        transform: none;
        background: rgba(31, 122, 255, 0.16);
    }
}

.surface-section {
    position: relative;
    padding-block: var(--space-xl);
}

.surface-section__glow {
    pointer-events: none;
    position: absolute;
    inset: 6% auto auto 50%;
    width: clamp(520px, 118vw, 820px);
    height: clamp(320px, 58vw, 520px);
    transform: translateX(-50%);
    opacity: 0.36;
    background: radial-gradient(circle at 50% 30%, rgba(31, 122, 255, 0.28), transparent 68%);
}

.layout-wrap {
    width: min(1160px, calc(100% - var(--layout-gutter) * 2));
    margin-inline: auto;
}

.heading-accent {
    display: inline-flex;
    gap: var(--space-xs);
    align-items: center;
    font-size: var(--text-step--1);
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: rgba(255, 232, 163, 0.78);
}

.heading-accent::before {
    content: "";
    width: 26px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--color-crystal-cyan), transparent);
}

.heading-accent--inline {
    margin-bottom: var(--space-sm);
}

h1,
h2,
h3 {
    margin: 0 0 var(--space-sm);
    color: var(--color-text-strong);
    font-family: var(--font-display);
    letter-spacing: -0.02em;
    line-height: 1.1;
}

h1 {
    font-size: var(--text-step-5);
}

h2 {
    font-size: var(--text-step-4);
}

h3 {
    font-size: var(--text-step-2);
}

p {
    margin: 0 0 var(--space-md);
    max-width: 68ch;
}

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

.intro-ribbon {
    display: grid;
    grid-template-columns: minmax(0, 1.12fr) minmax(280px, 0.94fr);
    gap: clamp(18px, 4vw, 44px);
    align-items: end;
}

@media (max-width: 820px) {
    .intro-ribbon {
        grid-template-columns: 1fr;
    }
}

.intro-ribbon__orbit {
    order: -1;
    position: relative;
    min-height: clamp(205px, 46vw, 330px);
    border-radius: calc(var(--radius-panel) + 8px);
    background: radial-gradient(circle at 24% 20%, rgba(0, 217, 255, 0.22), transparent 58%),
        linear-gradient(150deg, rgba(31, 122, 255, 0.28), rgba(6, 26, 43, 0.35));
    border: 1px solid rgba(255, 255, 255, 0.11);
    box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.18), var(--shadow-glow-soft);
    overflow: hidden;
}

.intro-ribbon__orbit::before,
.intro-ribbon__orbit::after {
    content: "";
    position: absolute;
    border-radius: 999px;
}

.intro-ribbon__orbit::before {
    width: 72%;
    height: 74%;
    right: -16%;
    top: -18%;
    background: radial-gradient(circle at center, rgba(62, 240, 184, 0.22), transparent 66%);
}

.intro-ribbon__orbit::after {
    width: 58%;
    height: 62%;
    left: -8%;
    bottom: -26%;
    background: radial-gradient(circle at center, rgba(255, 232, 163, 0.16), transparent 65%);
}

.orbit-marker {
    position: absolute;
    inset: clamp(34px, 9vw, 56px);
    border-radius: 22px;
    border: 1px dashed rgba(0, 217, 255, 0.22);
}

.orbit-stat-grid {
    position: absolute;
    inset: clamp(22px, 6vw, 34px);
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(10px, 3vw, 16px);
    align-content: end;
}

.orbit-chip {
    border-radius: 16px;
    padding: clamp(10px, 3vw, 14px);
    background: rgba(6, 26, 43, 0.48);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 12px 44px rgba(0, 0, 0, 0.32);
}

.orbit-chip strong {
    display: block;
    font-size: var(--text-step-2);
    color: var(--color-text-strong);
}

.orbit-chip span {
    display: block;
    font-size: var(--text-step--1);
    color: var(--color-text-muted);
}

.intro-ribbon__copy {
    padding-bottom: clamp(6px, 2vw, 18px);
}

.lede {
    font-size: var(--text-step-1);
    color: rgba(235, 244, 255, 0.92);
}

.pill-actions {
    display: flex;
    gap: clamp(8px, 2.4vw, 14px);
    flex-wrap: wrap;
    align-items: center;
}

.btn {
    appearance: none;
    border-radius: var(--radius-pill);
    border: 1px solid transparent;
    padding: clamp(11px, 3vw, 14px) clamp(22px, 6vw, 30px);
    font-weight: 600;
    font-size: var(--text-step--1);
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    gap: var(--space-xs);
    align-items: center;
    justify-content: center;
    transition: transform var(--transition-fast), border-color var(--transition-fast),
        box-shadow var(--transition-fast), background var(--transition-fast), color var(--transition-fast);
}

.btn:active {
    transform: translateY(1px);
}

.btn--solid {
    color: var(--color-abyss-navy);
    border-color: rgba(255, 255, 255, 0.18);
    background: linear-gradient(110deg, var(--color-sea-mint), var(--color-crystal-cyan));
    box-shadow: var(--shadow-glow-soft), 0 10px 32px rgba(31, 122, 255, 0.22);
}

.btn--solid:hover {
    box-shadow: 0 0 0 1px rgba(255, 232, 163, 0.14), 0 18px 50px rgba(31, 122, 255, 0.45);
}

.btn--ghost {
    color: rgba(235, 244, 255, 0.92);
    background: rgba(31, 122, 255, 0.12);
    border-color: rgba(0, 217, 255, 0.24);
}

.btn--ghost:hover {
    background: rgba(31, 122, 255, 0.24);
}

.band-offset {
    position: relative;
    margin-block-start: clamp(40px, 9vw, 78px);
    padding-inline: clamp(12px, 4vw, 28px);
    padding-block: var(--space-lg);
}

.band-offset::before {
    content: "";
    position: absolute;
    inset: -1px clamp(-8vw, -40px, -18vw) -1px -6vw;
    border-radius: 0 var(--radius-panel) var(--radius-panel) 0;
    background: linear-gradient(118deg, rgba(31, 122, 255, 0.18), transparent 74%);
    opacity: 0.75;
}

.band-offset__inner {
    position: relative;
    display: grid;
    gap: clamp(18px, 4vw, 28px);
    grid-template-columns: minmax(0, 3fr);
}

@media (min-width: 880px) {
    .band-offset__inner {
        grid-template-columns: minmax(0, 4fr) minmax(260px, 2.2fr);
        align-items: center;
        gap: var(--space-xl);
    }
}

.metric-row {
    display: grid;
    grid-template-columns: repeat(3, minmax(92px, 1fr));
    gap: clamp(8px, 2.4vw, 18px);
}

@media (max-width: 480px) {
    .metric-row {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .metric-row .metric-chip:nth-last-child(1):nth-child(odd) {
        grid-column: 1 / -1;
    }
}

.metric-chip {
    border-radius: 18px;
    padding: clamp(12px, 3.4vw, 16px);
    background: rgba(6, 26, 43, 0.48);
    border: 1px solid rgba(0, 217, 255, 0.18);
    box-shadow: 0 12px 42px rgba(0, 0, 0, 0.3);
}

.metric-chip dt {
    font-size: clamp(22px, 6.4vw, 30px);
    font-weight: 700;
    color: var(--color-text-strong);
}

.metric-chip dd {
    margin: var(--space-xxs) 0 0;
    font-size: var(--text-step--1);
    color: var(--color-text-muted);
}

.mesh-feature {
    position: relative;
    border-radius: var(--radius-panel);
    padding: var(--space-lg);
    background: radial-gradient(circle at 12% -10%, rgba(255, 232, 163, 0.12), transparent 58%), var(--color-surface-1);
    border: 1px solid rgba(255, 255, 255, 0.09);
    box-shadow: var(--shadow-depth-1), inset 0 1px 0 rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(18px);
}

.mesh-feature ul {
    margin: var(--space-sm) 0 0;
    padding-inline-start: 1.2rem;
    color: var(--color-text-soft);
}

.mesh-feature li {
    margin-block-end: var(--space-xs);
}

.split-stagger {
    padding-block-start: clamp(40px, 9vw, 88px);
    display: grid;
    gap: clamp(26px, 6vw, 46px);
}

@media (min-width: 900px) {
    .split-stagger__row {
        display: grid;
        grid-template-columns: minmax(0, 7fr) minmax(260px, 5fr);
        gap: clamp(22px, 5vw, 44px);
        align-items: start;
        margin-block-start: clamp(24px, 5vw, 46px);
    }

    .split-stagger__row--reverse .split-panel {
        order: 2;
    }

    .split-stagger__row--reverse .tile-stack {
        order: 1;
        align-self: center;
        transform: rotate(-2deg);
    }

    .split-stagger__row:not(.split-stagger__row--reverse) .tile-stack {
        transform: rotate(1deg);
        margin-inline-start: clamp(6px, 2vw, 18px);
    }
}

.split-panel {
    display: grid;
    gap: var(--space-md);
}

.tile-stack {
    display: grid;
    gap: var(--space-sm);
}

.artboard {
    position: relative;
    border-radius: 22px;
    min-height: clamp(216px, 46vw, 320px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: radial-gradient(circle at 24% -10%, rgba(0, 217, 255, 0.24), transparent 58%),
        linear-gradient(150deg, rgba(6, 26, 43, 0.86), rgba(31, 122, 255, 0.18));
    box-shadow: var(--shadow-depth-1);
}

.artboard-grid {
    position: absolute;
    inset: clamp(26px, 7vw, 38px);
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(12px, 3vw, 18px);
}

.artboard-chip {
    border-radius: 16px;
    background: rgba(6, 26, 43, 0.55);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.artboard-chip figcaption {
    padding: clamp(10px, 3vw, 14px);
    font-size: var(--text-step--1);
    color: var(--color-text-soft);
}

.asym-grid-cards {
    display: grid;
    gap: clamp(14px, 3.6vw, 22px);
    grid-template-columns: minmax(0, 1fr);
}

@media (min-width: 720px) {
    .asym-grid-cards {
        grid-template-columns: minmax(0, 1.22fr) minmax(0, 0.88fr);
        grid-template-rows: auto auto;
    }

    .asym-grid-cards .card-tall {
        grid-row: span 2;
    }
}

.card-surface {
    border-radius: var(--radius-panel);
    padding: clamp(18px, 4vw, 26px);
    background: rgba(6, 26, 43, 0.48);
    border: 1px solid rgba(0, 217, 255, 0.18);
    box-shadow: var(--shadow-depth-1);
    transition: transform var(--transition-mid), border-color var(--transition-mid), box-shadow var(--transition-mid);
}

.card-surface:hover {
    transform: translateY(-4px);
    border-color: rgba(62, 240, 184, 0.28);
    box-shadow: 0 22px 60px rgba(0, 0, 0, 0.36);
}

.card-surface__icon {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    display: inline-grid;
    place-items: center;
    background: rgba(31, 122, 255, 0.16);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--color-sand-glow);
    margin-bottom: var(--space-sm);
}

.card-surface p {
    max-width: none;
}

.flow-list {
    display: grid;
    gap: var(--space-md);
    margin: 0;
    padding: 0;
    list-style: none;
}

.flow-list__item {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: var(--space-md);
    padding: var(--space-md);
    border-radius: var(--radius-panel);
    background: rgba(6, 26, 43, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.flow-index {
    width: 44px;
    height: 44px;
    border-radius: 16px;
    display: inline-grid;
    place-items: center;
    background: linear-gradient(140deg, rgba(31, 122, 255, 0.55), rgba(0, 217, 255, 0.22));
    color: var(--color-text-strong);
    font-weight: 700;
}

.pull-quote {
    margin-block: var(--space-xl);
    padding: var(--space-lg);
    border-radius: calc(var(--radius-panel) + 6px);
    background: linear-gradient(120deg, rgba(31, 122, 255, 0.18), rgba(6, 26, 43, 0.38));
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: var(--shadow-glow-soft);
}

.pull-quote blockquote {
    margin: 0;
    font-size: var(--text-step-2);
    color: rgba(246, 250, 255, 0.94);
}

.pull-quote cite {
    display: block;
    margin-top: var(--space-md);
    font-style: normal;
    font-size: var(--text-step--1);
    color: var(--color-text-muted);
}

.split-cta {
    margin-block: var(--space-xl);
    border-radius: calc(var(--radius-panel) + 10px);
    padding: clamp(22px, 5vw, 34px);
    background: radial-gradient(900px circle at 20% 0%, rgba(62, 240, 184, 0.16), transparent 56%),
        rgba(6, 26, 43, 0.55);
    border: 1px solid rgba(0, 217, 255, 0.22);
    display: grid;
    gap: var(--space-md);
}

@media (min-width: 820px) {
    .split-cta {
        grid-template-columns: minmax(0, 2.3fr) minmax(180px, 1fr);
        align-items: center;
    }
}

.media-panel {
    border-radius: var(--radius-panel);
    padding: var(--space-md);
    background: rgba(16, 45, 70, 0.45);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.media-panel figure {
    margin: 0;
}

.media-panel figcaption {
    margin-top: var(--space-sm);
    font-size: var(--text-step--1);
    color: var(--color-text-muted);
}

.media-panel img {
    border-radius: 18px;
    width: 100%;
    height: auto;
    opacity: 0;
    transform: translateY(8px);
    transition: opacity var(--transition-mid), transform var(--transition-mid);
}

.media-panel img.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.accordion {
    margin-top: var(--space-lg);
    border-radius: var(--radius-panel);
    border: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
}

.accordion details {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(6, 26, 43, 0.45);
}

.accordion details:last-child {
    border-bottom: 0;
}

.accordion summary {
    cursor: pointer;
    list-style: none;
    padding: var(--space-md);
    font-weight: 600;
    color: var(--color-text-strong);
    display: flex;
    justify-content: space-between;
    gap: var(--space-sm);
    align-items: center;
}

.accordion summary::-webkit-details-marker {
    display: none;
}

.accordion__chevron {
    flex-shrink: 0;
    color: var(--color-crystal-cyan);
    transition: transform var(--transition-mid);
    font-size: 20px;
    line-height: 1;
}

.accordion details[open] .accordion__chevron {
    transform: rotate(90deg);
}

.accordion .details-body {
    padding: 0 var(--space-md) var(--space-md);
}

[data-reveal] {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 640ms cubic-bezier(0.16, 0.84, 0.24, 1), transform 640ms cubic-bezier(0.16, 0.84, 0.24, 1);
}

[data-reveal].is-revealed {
    opacity: 1;
    transform: translateY(0);
}

.site-footer {
    margin-top: var(--space-xxl);
    padding-block: var(--space-xl);
    border-top: 1px solid rgba(0, 217, 255, 0.18);
    background: rgba(4, 18, 30, 0.78);
}

.site-footer__grid {
    width: min(1160px, calc(100% - var(--layout-gutter) * 2));
    margin-inline: auto;
    display: grid;
    gap: var(--space-lg);
}

@media (min-width: 820px) {
    .site-footer__grid {
        grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr) minmax(0, 1fr);
        align-items: start;
    }
}

.footer-brand {
    font-weight: 650;
    color: var(--color-text-strong);
    margin-bottom: var(--space-sm);
}

.footer-meta {
    font-size: var(--text-step--1);
    color: var(--color-text-muted);
}

.footer-links {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: var(--space-xs);
}

.footer-links a {
    text-decoration: none;
    color: rgba(214, 230, 246, 0.86);
}

.footer-links a:hover {
    color: var(--color-sea-mint);
}

.cookie-bar {
    position: fixed;
    inset: auto var(--layout-gutter) max(var(--space-sm), env(safe-area-inset-bottom, 0)) var(--layout-gutter);
    z-index: 90;
    border-radius: calc(var(--radius-panel) + 6px);
    padding: var(--space-md);
    background: rgba(6, 26, 43, 0.88);
    border: 1px solid rgba(0, 217, 255, 0.24);
    box-shadow: var(--shadow-depth-2);
    backdrop-filter: blur(18px);
}

.cookie-bar__actions {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-xs);
    margin-top: var(--space-sm);
}

.cookie-bar__actions .btn {
    flex: 1 1 120px;
}

.cookie-panel {
    position: fixed;
    inset: max(var(--space-sm), env(safe-area-inset-top, 0)) var(--layout-gutter) max(var(--space-sm), env(safe-area-inset-bottom, 0)) var(--layout-gutter);
    z-index: 100;
    border-radius: calc(var(--radius-panel) + 10px);
    padding: var(--space-lg);
    background: rgba(6, 26, 43, 0.96);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: var(--shadow-depth-2);
    max-width: 520px;
    margin-inline: auto;
    max-height: min(720px, calc(100vh - env(safe-area-inset-top, 0px) - env(safe-area-inset-bottom, 0px) - 24px));
    overflow: auto;
}

.cookie-panel__head {
    display: flex;
    justify-content: space-between;
    gap: var(--space-sm);
    align-items: center;
    margin-bottom: var(--space-md);
}

.cookie-toggle-list {
    display: grid;
    gap: var(--space-sm);
    margin: var(--space-md) 0;
}

.toggle-row {
    display: flex;
    justify-content: space-between;
    gap: var(--space-sm);
    align-items: center;
    padding: var(--space-sm);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(16, 45, 70, 0.45);
}

.switch {
    position: relative;
    width: 48px;
    height: 28px;
    display: inline-block;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.switch__track {
    position: absolute;
    inset: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.16);
    transition: background var(--transition-mid);
}

.switch__thumb {
    position: absolute;
    width: 22px;
    height: 22px;
    border-radius: 999px;
    top: 3px;
    left: 3px;
    background: rgba(246, 250, 255, 0.92);
    transition: transform var(--transition-mid);
}

.switch input:checked~.switch__thumb {
    transform: translateX(20px);
}

.switch input:checked+.switch__track {
    background: linear-gradient(120deg, var(--color-glass-blue), var(--color-crystal-cyan));
}

.switch input:disabled+.switch__track {
    opacity: 0.45;
}

.policy-hero {
    padding-block: var(--space-xl);
}

.policy-hero__panel {
    border-radius: calc(var(--radius-panel) + 10px);
    padding: var(--space-lg);
    background: rgba(6, 26, 43, 0.55);
    border: 1px solid rgba(0, 217, 255, 0.22);
    box-shadow: var(--shadow-glow-soft);
}

.policy-content {
    padding-block: var(--space-lg) var(--space-xxl);
}

.policy-content article {
    margin-bottom: var(--space-lg);
}

.policy-content h2 {
    margin-top: var(--space-lg);
}

.policy-content ul {
    margin: 0 0 var(--space-md);
    padding-inline-start: 1.2rem;
}

.thankyou-panel {
    min-height: 48vh;
    display: grid;
    place-items: center;
    padding-block: var(--space-xxl);
}

.thankyou-card {
    width: min(720px, 100%);
    border-radius: calc(var(--radius-panel) + 12px);
    padding: var(--space-xl);
    background: rgba(6, 26, 43, 0.55);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: var(--shadow-depth-2);
    text-align: center;
}

.form {
    margin-top: var(--space-lg);
}

.form__grid {
    display: grid;
    gap: var(--space-md);
}

.form-field {
    display: grid;
    gap: var(--space-xs);
}

.form-field label {
    font-weight: 600;
    color: rgba(246, 250, 255, 0.94);
}

.form-field input[type="text"],
.form-field input[type="email"],
.form-field textarea {
    width: 100%;
    padding: clamp(11px, 3vw, 14px);
    border-radius: 16px;
    border: 1px solid rgba(0, 217, 255, 0.22);
    background: rgba(6, 26, 43, 0.55);
    color: var(--color-text-strong);
    font: inherit;
    transition: border-color var(--transition-fast), box-shadow var(--transition-fast), transform var(--transition-fast);
}

.form-field textarea {
    min-height: 160px;
    resize: vertical;
}

.form-field input:focus-visible,
.form-field textarea:focus-visible {
    outline: none;
    border-color: rgba(62, 240, 184, 0.55);
    box-shadow: 0 0 0 4px rgba(31, 122, 255, 0.18);
}

.form-field input[aria-invalid="true"],
.form-field textarea[aria-invalid="true"],
.form-field input[type="checkbox"][aria-invalid="true"] {
    border-color: rgba(255, 120, 120, 0.55);
}

.form-error {
    color: rgba(255, 194, 194, 0.96);
    font-size: var(--text-step--1);
}

.checkbox-row {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: var(--space-sm);
    align-items: flex-start;
}

.checkbox-row input {
    margin-top: 4px;
    width: 18px;
    height: 18px;
    accent-color: var(--color-crystal-cyan);
}

.checkbox-row input[type="checkbox"][aria-invalid="true"] {
    outline: 2px solid rgba(255, 152, 152, 0.88);
    outline-offset: 2px;
}

.form--attention {
    animation: attention 1.08s cubic-bezier(0.32, 0.72, 0, 1);
}

@keyframes attention {
    0% {
        transform: translateX(0);
    }

    20% {
        transform: translateX(-6px);
    }

    40% {
        transform: translateX(6px);
    }

    60% {
        transform: translateX(-4px);
    }

    80% {
        transform: translateX(4px);
    }

    100% {
        transform: translateX(0);
    }
}


.legal-quick-nav--plain-on-mobile li {
    list-style: none;
}

@media (min-width: 960px) {
    .legal-quick-nav--plain-on-mobile li {
        list-style: decimal;
    }
}

.legal-skin--privacy {
    background-image:
        radial-gradient(900px circle at -6% 20%, rgba(31, 122, 255, 0.22), transparent 58%),
        radial-gradient(800px ellipse at 108% 0%, rgba(0, 217, 255, 0.18), transparent 52%),
        radial-gradient(circle at 82% 88%, rgba(62, 240, 184, 0.1), transparent 55%);
}

.legal-skin--cookie {
    background-image:
        radial-gradient(circle at 104% 32%, rgba(255, 232, 163, 0.1), transparent 48%),
        radial-gradient(circle at 22% -8%, rgba(31, 122, 255, 0.24), transparent 55%);
}

.legal-skin--terms {
    background-image:
        radial-gradient(circle at 50% -12%, rgba(0, 217, 255, 0.16), transparent 45%),
        radial-gradient(circle at 0% 100%, rgba(31, 122, 255, 0.15), transparent 50%);
}

.legal-skin--refund {
    background-image:
        radial-gradient(ellipse at 94% 40%, rgba(62, 240, 184, 0.14), transparent 55%),
        radial-gradient(circle at 14% 60%, rgba(255, 232, 163, 0.08), transparent 45%);
}

.legal-skin--thanks {
    background-image:
        radial-gradient(circle at 40% -10%, rgba(31, 122, 255, 0.22), transparent 50%),
        radial-gradient(circle at 112% 80%, rgba(0, 217, 255, 0.12), transparent 55%);
}

.legal-hero-wave {
    position: relative;
    padding-block: var(--space-xl);
    overflow: clip;
}

.legal-hero-wave .legal-hero-glow-ring {
    position: absolute;
    inset: auto -12% -40% auto;
    width: min(520px, 120vw);
    height: min(520px, 120vw);
    border-radius: 50%;
    background: radial-gradient(circle at 40% 40%, rgba(0, 217, 255, 0.16), transparent 68%);
    pointer-events: none;
}

.legal-hero-panel {
    position: relative;
    border-radius: calc(var(--radius-panel) + 16px);
    padding: clamp(22px, 5vw, 44px);
    background:
        linear-gradient(145deg, rgba(16, 45, 70, 0.55), rgba(6, 26, 43, 0.82)),
        linear-gradient(to bottom, rgba(255, 255, 255, 0.05), transparent 36%);
    border: 1px solid rgba(0, 217, 255, 0.22);
    box-shadow: var(--shadow-glow-soft), var(--shadow-depth-1);
    backdrop-filter: blur(20px);
}

.legal-date-stamp {
    display: inline-flex;
    gap: var(--space-sm);
    align-items: baseline;
    flex-wrap: wrap;
    padding: var(--space-sm) clamp(14px, 3vw, 20px);
    border-radius: var(--radius-pill);
    background: rgba(6, 26, 43, 0.55);
    border: 1px solid rgba(255, 232, 163, 0.18);
    font-size: var(--text-step--1);
    color: rgba(235, 244, 255, 0.92);
}

.legal-date-stamp strong {
    color: var(--color-sea-mint);
    font-weight: 650;
}

.legal-matrix {
    padding-block: var(--space-lg) var(--space-xxl);
}

.legal-matrix__grid {
    display: grid;
    gap: clamp(24px, 5vw, 48px);
    grid-template-columns: minmax(0, 1fr);
}

@media (min-width: 960px) {
    .legal-matrix__grid {
        grid-template-columns: minmax(0, 220px) minmax(0, 1fr);
        align-items: start;
        gap: clamp(36px, 6vw, 64px);
    }
}

.legal-scroll-rail {
    position: relative;
}

@media (min-width: 960px) {
    .legal-scroll-rail {
        position: sticky;
        top: clamp(88px, 14vh, 120px);
    }
}

.legal-quick-nav {
    list-style: none;
    padding: clamp(14px, 3vw, 20px);
    margin: 0;
    border-radius: var(--radius-panel);
    background: rgba(6, 26, 43, 0.48);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: var(--shadow-depth-1);
}

@media (max-width: 959px) {
    .legal-quick-nav {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
        gap: var(--space-xs);
    }

    .legal-quick-nav li a {
        display: block;
        padding: var(--space-sm);
        border-radius: 12px;
        border: 1px solid transparent;
        text-decoration: none;
        transition: border-color var(--transition-fast), background var(--transition-fast);
        color: rgba(214, 230, 246, 0.9);
    }

    .legal-quick-nav li a:hover {
        background: rgba(31, 122, 255, 0.16);
        border-color: rgba(0, 217, 255, 0.2);
    }
}

@media (min-width: 960px) {
    .legal-quick-nav li+li {
        margin-top: var(--space-xs);
    }

    .legal-quick-nav a {
        display: block;
        padding: var(--space-sm) calc(var(--space-sm) + 2px);
        border-radius: 12px;
        text-decoration: none;
        border-left: 3px solid transparent;
        transition: border-color var(--transition-fast), background var(--transition-fast);
        font-size: var(--text-step--1);
        color: rgba(214, 230, 246, 0.88);
    }

    .legal-quick-nav a:hover {
        border-left-color: var(--color-crystal-cyan);
        background: rgba(31, 122, 255, 0.12);
    }
}

.legal-chapter-stack {
    display: flex;
    flex-direction: column;
    gap: clamp(22px, 4vw, 36px);
}

.legal-chapter {
    position: relative;
    border-radius: calc(var(--radius-panel) + 6px);
    padding: clamp(18px, 4vw, 30px);
    background: rgba(6, 26, 43, 0.42);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.26);
}

.legal-chapter::before {
    content: "";
    position: absolute;
    inset: clamp(14px, 3vw, 22px) auto clamp(14px, 3vw, 22px) 0;
    width: 3px;
    border-radius: 2px;
    background: linear-gradient(180deg, var(--legal-accent-a), var(--legal-accent-b));
    opacity: 0.9;
}

.legal-chapter-header {
    display: flex;
    gap: clamp(12px, 3vw, 18px);
    align-items: flex-start;
}

.legal-chapter-num {
    flex-shrink: 0;
    width: clamp(42px, 11vw, 52px);
    height: clamp(42px, 11vw, 52px);
    border-radius: 16px;
    display: inline-grid;
    place-items: center;
    font-weight: 750;
    font-size: clamp(0.92rem, 3.2vw, 1rem);
    color: var(--color-text-strong);
    background: radial-gradient(circle at 36% 24%, rgba(0, 217, 255, 0.35), transparent 62%), rgba(31, 122, 255, 0.24);
    border: 1px solid rgba(255, 232, 163, 0.16);
    box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.1);
}

.legal-chapter h2 {
    margin-bottom: var(--space-sm);
}

.legal-matrix .legal-chapter p,
.legal-matrix .legal-chapter ul {
    margin-left: 0;
}

@media (min-width: 960px) {

    .legal-matrix .legal-chapter p,
    .legal-matrix .legal-chapter ul,
    .legal-matrix .legal-table-wrap {
        margin-inline-start: calc(clamp(42px, 11vw, 52px) + clamp(12px, 3vw, 18px));
    }

    .legal-chapter-header h2 {
        margin-bottom: var(--space-sm);
    }
}

@media (max-width: 959px) {
    .legal-chapter-num {
        display: none;
    }
}

.legal-callout-sand {
    margin-top: var(--space-md);
    padding: var(--space-md);
    border-radius: 16px;
    background: rgba(255, 232, 163, 0.08);
    border: 1px solid rgba(255, 232, 163, 0.22);
    color: rgba(246, 250, 255, 0.94);
}

.legal-callout-mint {
    margin-top: var(--space-md);
    padding: var(--space-md);
    border-radius: 16px;
    background: rgba(62, 240, 184, 0.08);
    border: 1px solid rgba(62, 240, 184, 0.22);
}

.legal-callout-plain {
    margin-top: var(--space-md);
    padding: var(--space-md);
    border-radius: 16px;
    background: rgba(31, 122, 255, 0.1);
    border: 1px solid rgba(31, 122, 255, 0.22);
}

.legal-table-wrap {
    margin-top: var(--space-md);
    overflow-x: auto;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.legal-table {
    width: 100%;
    border-collapse: collapse;
    font-size: var(--text-step--1);
}

.legal-table th,
.legal-table td {
    padding: var(--space-sm) var(--space-md);
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.legal-table th {
    color: var(--color-text-strong);
    background: rgba(16, 45, 70, 0.45);
    font-weight: 650;
}

.legal-pull-band {
    margin-block: clamp(28px, 6vw, 48px);
    padding-block: clamp(22px, 5vw, 36px);
    border-block: 1px solid rgba(0, 217, 255, 0.15);
}

.legal-pull-band blockquote {
    margin: 0 auto;
    max-width: min(760px, 100%);
    font-size: var(--text-step-2);
    font-style: italic;
    color: rgba(246, 250, 255, 0.92);
}

.legal-duo-grid {
    display: grid;
    gap: var(--space-md);
    grid-template-columns: repeat(auto-fill, minmax(min(260px, 100%), 1fr));
    margin-block: var(--space-md);
}

.legal-micro-card {
    padding: var(--space-md);
    border-radius: 16px;
    background: rgba(16, 45, 70, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.legal-micro-card h4 {
    margin: 0 0 var(--space-xs);
    color: var(--color-sea-mint);
    font-size: var(--text-step-1);
}

.thank-studio {
    padding-block: var(--space-xxl);
}

.thank-studio__card {
    max-width: 720px;
    margin-inline: auto;
    border-radius: calc(var(--radius-panel) + 20px);
    padding: clamp(28px, 7vw, 48px);
    background:
        radial-gradient(circle at 18% -10%, rgba(0, 217, 255, 0.18), transparent 55%), rgba(6, 26, 43, 0.68);
    border: 1px solid rgba(0, 217, 255, 0.24);
    box-shadow: var(--shadow-depth-2);
}

.thank-studio__ribbon {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
    margin-top: var(--space-lg);
    justify-content: center;
}

@media (min-width: 320px) {
    html {
        -webkit-text-size-adjust: 100%;
        text-size-adjust: 100%;
    }

    body {
        min-width: 280px;
        overflow-x: hidden;
        word-break: break-word;
        hyphens: manual;
        padding-inline-start: env(safe-area-inset-left, 0);
        padding-inline-end: env(safe-area-inset-right, 0);
    }

    .site-nav__link {
        min-height: 44px;
        display: inline-flex;
        align-items: center;
        box-sizing: border-box;
    }

    .btn {
        width: auto;
        min-height: 44px;
        box-sizing: border-box;
    }

    @media (max-width: 380px) {
        :root {
            --layout-gutter: max(11px, 3.2vw);
        }

        .brand-badge {
            width: clamp(34px, 10vw, 40px);
            height: clamp(34px, 10vw, 40px);
        }

        .brand-link {
            font-size: var(--text-step-0);
        }

        .cookie-bar__actions .btn {
            flex-basis: 100%;
            min-width: min(260px, 100%);
        }
    }

    @media (max-width: 359px) {
        h1 {
            font-size: clamp(1.75rem, 9.2vw, 3.05rem);
        }

        h2 {
            font-size: clamp(1.42rem, 7.8vw, 2.42rem);
        }

        .site-header__inner {
            width: calc(100% - var(--layout-gutter) * 2);
        }

        .menu-toggle__burger {
            width: 21px;
            height: 15px;
        }

        .menu-toggle__line:nth-child(3) {
            top: 13px;
        }

        .menu-toggle__line:nth-child(2) {
            top: 6.5px;
        }

        #nav-toggle:checked~.menu-toggle .menu-toggle__line:nth-child(1),
        #nav-toggle:checked~.menu-toggle .menu-toggle__line:nth-child(3) {
            top: 6.5px;
        }

        .legal-chapter-num {
            min-width: 2.05rem;
        }
    }
}

html.js-on [data-reveal-stagger]:not(.is-revealed)>.fx-piece {
    opacity: 0;
    transform: translateY(34px);
    filter: blur(2px);
}

html.js-on [data-reveal-stagger].is-revealed>.fx-piece {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
    transition:
        opacity 0.82s cubic-bezier(0.16, 0.84, 0.24, 1),
        transform 0.82s cubic-bezier(0.16, 0.84, 0.24, 1),
        filter 0.6s cubic-bezier(0.16, 0.84, 0.24, 1);
}

html.js-on [data-reveal-stagger].is-revealed>.fx-piece:nth-child(1) {
    transition-delay: 0.04s;
}

html.js-on [data-reveal-stagger].is-revealed>.fx-piece:nth-child(2) {
    transition-delay: 0.1s;
}

html.js-on [data-reveal-stagger].is-revealed>.fx-piece:nth-child(3) {
    transition-delay: 0.16s;
}

html.js-on [data-reveal-stagger].is-revealed>.fx-piece:nth-child(4) {
    transition-delay: 0.22s;
}

html.js-on [data-reveal-stagger].is-revealed>.fx-piece:nth-child(5) {
    transition-delay: 0.28s;
}

html.js-on [data-reveal-stagger].is-revealed>.fx-piece:nth-child(6) {
    transition-delay: 0.34s;
}

html.js-on [data-reveal-stagger].is-revealed>.fx-piece:nth-child(7) {
    transition-delay: 0.4s;
}

html.js-on [data-reveal-stagger].is-revealed>.fx-piece:nth-child(8) {
    transition-delay: 0.46s;
}

html.js-on [data-reveal-stagger].is-revealed>.fx-piece:nth-child(9) {
    transition-delay: 0.52s;
}

html.js-on [data-reveal-stagger].is-revealed>.fx-piece:nth-child(10) {
    transition-delay: 0.58s;
}

html.js-on [data-reveal-stagger].is-revealed>.fx-piece:nth-child(11) {
    transition-delay: 0.64s;
}

html.js-on [data-reveal-stagger].is-revealed>.fx-piece:nth-child(12) {
    transition-delay: 0.7s;
}

.experience-skin {
    background-image:
        radial-gradient(ellipse 940px 640px at 10% -6%, rgba(31, 122, 255, 0.18), transparent 58%),
        radial-gradient(circle at 106% 12%, rgba(0, 217, 255, 0.12), transparent 50%),
        radial-gradient(circle at 52% 108%, rgba(62, 240, 184, 0.1), transparent 55%);
}

.fx-section {
    position: relative;
    padding-block: clamp(52px, 12vw, 112px);
}

.fx-section>.layout-wrap {
    position: relative;
    z-index: 2;
}

.fx-kicker {
    display: inline-flex;
    align-items: center;
    gap: 0.4em;
    font-size: var(--text-step--1);
    font-weight: 650;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--color-crystal-cyan);
    margin: 0 0 var(--space-sm);
}

.fx-kicker i {
    font-size: 1.2em;
    opacity: 0.85;
    animation: fx-icon-wobble 7s ease-in-out infinite;
}

@keyframes fx-icon-wobble {

    0%,
    100% {
        transform: translateY(0) rotate(-4deg);
    }

    50% {
        transform: translateY(-3px) rotate(6deg);
    }
}

.fx-hero-cinema {
    position: relative;
    isolation: isolate;
    padding-block: clamp(56px, 14vw, 132px);
    overflow: clip;
}

.fx-hero-cinema__mesh {
    position: absolute;
    inset: -8% -6% auto -10%;
    height: clamp(420px, 72vw, 680px);
    pointer-events: none;
    opacity: 0.45;
    z-index: 0;
    background-image:
        linear-gradient(rgba(0, 217, 255, 0.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(31, 122, 255, 0.07) 1px, transparent 1px);
    background-size: 48px 48px;
    mask-image: radial-gradient(ellipse 90% 80% at 50% -10%, rgba(0, 0, 0, 0.9), transparent 72%);
}

.fx-hero-cinema__aurora {
    position: absolute;
    inset: -24% -18% auto -22%;
    height: clamp(540px, 118vw, 920px);
    filter: blur(34px);
    z-index: 0;
    pointer-events: none;
}

.fx-hero-cinema__aurora span:nth-child(1) {
    position: absolute;
    width: clamp(320px, 56vw, 500px);
    height: clamp(320px, 56vw, 500px);
    left: -2%;
    top: -16%;
    border-radius: 50%;
    background: radial-gradient(circle at 42% 40%, rgba(0, 217, 255, 0.32), transparent 70%);
    animation: orb-drift-a 22s ease-in-out infinite alternate;
}

.fx-hero-cinema__aurora span:nth-child(2) {
    position: absolute;
    width: clamp(380px, 60vw, 560px);
    height: clamp(380px, 60vw, 560px);
    right: -16%;
    top: -12%;
    border-radius: 50%;
    background: radial-gradient(circle at 54% 50%, rgba(31, 122, 255, 0.28), transparent 68%);
    animation: orb-drift-b 26s ease-in-out infinite alternate;
}

.fx-hero-cinema__aurora span:nth-child(3) {
    position: absolute;
    width: clamp(280px, 46vw, 400px);
    height: clamp(280px, 46vw, 400px);
    left: 36%;
    bottom: -24%;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, rgba(255, 232, 163, 0.12), transparent 72%);
    animation: orb-drift-c 19s ease-in-out infinite alternate;
}

@keyframes orb-drift-a {
    from {
        transform: translate(-3vw, -1vh) scale(1);
    }

    to {
        transform: translate(4vw, 4vh) scale(1.1);
    }
}

@keyframes orb-drift-b {
    from {
        transform: translate(2vw, -2vh) scale(1.03);
    }

    to {
        transform: translate(-5vw, 5vh) scale(1.08);
    }
}

@keyframes orb-drift-c {
    from {
        transform: translate(-2vw, 2vh);
    }

    to {
        transform: translate(3vw, -3vh);
    }
}

.fx-hero-shell {
    position: relative;
    z-index: 2;
}

.fx-hero-row {
    display: grid;
    gap: clamp(28px, 6vw, 56px);
    align-items: end;
}

@media (min-width: 900px) {
    .fx-hero-row {
        grid-template-columns: minmax(0, 1.06fr) minmax(260px, 0.94fr);
    }
}

.fx-hero-title {
    max-width: 18ch;
    letter-spacing: -0.03em;
    line-height: 1.05;
}

.fx-hero-glare {
    position: absolute;
    width: clamp(260px, 44vw, 420px);
    height: clamp(260px, 44vw, 420px);
    right: clamp(-20px, -4vw, 8px);
    top: clamp(12%, 18vh, 32%);
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 217, 255, 0.18), transparent 68%);
    filter: blur(10px);
    pointer-events: none;
    opacity: 0.75;
}

.fx-pulse-pill {
    display: inline-flex;
    gap: var(--space-xs);
    align-items: center;
    padding: clamp(10px, 2.8vw, 13px) clamp(14px, 3vw, 18px);
    border-radius: var(--radius-pill);
    background: rgba(6, 26, 43, 0.58);
    border: 1px solid rgba(0, 217, 255, 0.26);
    font-size: var(--text-step--1);
    color: rgba(235, 244, 255, 0.94);
}

.fx-pulse-pill strong {
    color: var(--color-sea-mint);
    font-weight: 650;
}

.fx-pulse-pill[data-pulse] {
    animation: fx-pulse-border 3.9s ease-in-out infinite;
}

@keyframes fx-pulse-border {

    0%,
    100% {
        border-color: rgba(0, 217, 255, 0.22);
        box-shadow: 0 0 0 0 rgba(0, 217, 255, 0.05);
    }

    50% {
        border-color: rgba(62, 240, 184, 0.55);
        box-shadow: 0 0 22px rgba(62, 240, 184, 0.12);
    }
}

.fx-hero-chips {
    display: flex;
    flex-wrap: wrap;
    gap: clamp(10px, 2.4vw, 14px);
    margin-block-start: clamp(18px, 4vw, 28px);
}

.fx-float-shell {
    position: relative;
    min-height: 280px;
}

.fx-float-stack {
    position: relative;
    display: grid;
    gap: var(--space-sm);
}

.fx-float-card {
    border-radius: 22px;
    padding: clamp(16px, 4vw, 22px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: linear-gradient(150deg, rgba(6, 26, 43, 0.85), rgba(12, 40, 64, 0.48));
    box-shadow:
        inset 0 1px rgba(255, 255, 255, 0.07),
        0 26px 64px rgba(2, 8, 20, 0.38);
}

.fx-float-card--tilt[data-fx-tilt] {
    transform-style: preserve-3d;
    transition:
        transform 0.42s cubic-bezier(0.2, 0.82, 0.22, 1),
        border-color 0.35s ease;
}

.fx-float-badge {
    animation: fx-badge-float-y 10s ease-in-out infinite alternate;
}

@keyframes fx-badge-float-y {
    from {
        transform: translateY(0);
    }

    to {
        transform: translateY(-14px);
    }
}

.fx-glass {
    padding: clamp(18px, 4.5vw, 28px);
    border-radius: calc(var(--radius-panel) + 8px);
    background: rgba(6, 26, 43, 0.46);
    border: 1px solid rgba(0, 217, 255, 0.18);
    backdrop-filter: blur(18px);
    box-shadow:
        inset 0 1px rgba(255, 255, 255, 0.06),
        0 20px 50px rgba(2, 8, 20, 0.28);
}

.fx-gloss-sheen {
    position: relative;
    overflow: hidden;
}

.fx-gloss-sheen::before {
    content: "";
    position: absolute;
    inset: -40% -120%;
    transform: skewX(-16deg);
    background: linear-gradient(88deg,
            transparent 40%,
            rgba(255, 255, 255, 0.09) 50%,
            transparent 62%);
    animation: fx-gloss-shift 13s linear infinite;
    pointer-events: none;
}

@keyframes fx-gloss-shift {
    from {
        transform: translateX(-34%) skewX(-16deg);
    }

    to {
        transform: translateX(74%) skewX(-16deg);
    }
}

.fx-marquee-mask {
    position: relative;
    overflow: clip;
    border-block: 1px solid rgba(0, 217, 255, 0.16);
    background: rgba(4, 16, 30, 0.55);
    padding-block: var(--space-sm);
    mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent);
}

.fx-marquee-track {
    display: flex;
    width: max-content;
    gap: clamp(56px, 12vw, 120px);
    animation: marquee-x 44s linear infinite;
    align-items: center;
    padding-inline: clamp(12px, 3vw, 24px);
}

.fx-marquee-group {
    display: flex;
    align-items: center;
    gap: clamp(56px, 12vw, 120px);
}

@keyframes marquee-x {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

.fx-marquee-item {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: var(--text-step--1);
    font-weight: 600;
    color: rgba(230, 240, 255, 0.88);
}

.fx-marquee-item i {
    color: var(--color-crystal-cyan);
    font-size: 1.2em;
}

.fx-bento {
    display: grid;
    gap: clamp(14px, 3.2vw, 22px);
    grid-template-columns: repeat(auto-fit, minmax(min(232px, 100%), 1fr));
}

.fx-cell {
    border-radius: 22px;
    padding: clamp(18px, 4vw, 26px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: radial-gradient(circle at 12% -10%, rgba(0, 217, 255, 0.16), transparent 46%), rgba(6, 26, 43, 0.42);
    min-height: 160px;
    transition:
        transform 0.42s cubic-bezier(0.2, 0.82, 0.22, 1),
        border-color 0.35s ease;
}

.fx-cell[data-fx-tilt] {
    transform-style: preserve-3d;
}

.fx-cell:is(:hover, :focus-within),
.fx-float-card--tilt:is(:hover, :focus-within) {
    border-color: rgba(62, 240, 184, 0.35);
}

.fx-cell:not([data-fx-tilt]):is(:hover, :focus-within) {
    transform: translateY(-4px);
}

.fx-cell-num {
    display: grid;
    place-items: center;
    width: 2rem;
    height: 2rem;
    margin-bottom: var(--space-sm);
    border-radius: 999px;
    font-size: var(--text-step--1);
    font-weight: 700;
    border: 1px solid rgba(0, 217, 255, 0.26);
    color: var(--color-crystal-cyan);
    background: rgba(2, 10, 20, 0.45);
}

.fx-prose-duo {
    display: grid;
    gap: var(--space-lg);
}

@media (min-width: 880px) {
    .fx-prose-duo {
        grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.92fr);
        align-items: start;
        gap: clamp(28px, 5vw, 42px);
    }
}

.fx-timeline {
    display: grid;
    gap: 0;
    margin-block-start: clamp(24px, 5vw, 40px);
    border-radius: calc(var(--radius-panel) + 6px);
    border: 1px solid rgba(0, 217, 255, 0.14);
    overflow: clip;
}

.fx-step {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: clamp(14px, 3vw, 22px);
    padding: clamp(18px, 4vw, 26px);
    align-items: start;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    background: linear-gradient(100deg, rgba(6, 26, 43, 0.35), transparent 74%);
}

.fx-step:last-child {
    border-bottom: 0;
}

.fx-step-marker i {
    font-size: 1.35rem;
    line-height: 1;
    opacity: 0.92;
}

.fx-cell-num i {
    font-size: 1.2em;
    line-height: 1;
}

.fx-sheet {
    width: 100%;
    border-collapse: collapse;
    margin-block-start: var(--space-md);
    font-size: var(--text-step--1);
    border-radius: 16px;
    overflow: clip;
}

.fx-sheet caption {
    text-align: start;
    font-weight: 700;
    margin-bottom: var(--space-xs);
}

.fx-sheet th,
.fx-sheet td {
    padding: clamp(11px, 2.8vw, 15px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    vertical-align: top;
}

.fx-sheet thead th {
    background: rgba(6, 26, 43, 0.65);
    color: rgba(235, 244, 255, 0.93);
}

.fx-sheet tbody tr:nth-child(odd) td {
    background: rgba(4, 16, 30, 0.28);
}

.fx-wave-ribbon {
    position: absolute;
    inset: auto 0 calc(-1px + env(safe-area-inset-bottom, 0));
    height: clamp(140px, 22vw, 220px);
    pointer-events: none;
    opacity: 0.5;
}

.fx-wave-svg {
    display: block;
    width: 100%;
    height: 100%;
}

.fx-wave-hero .fx-wave-path {
    fill: rgba(4, 16, 30, 0.55);
    animation: fx-wave-roll 26s linear infinite alternate;
}

.fx-wave-fill {
    position: absolute;
    inset-inline: -2%;
    top: clamp(18%, 22vh, 38%);
    height: clamp(220px, 38vw, 420px);
    border-radius: 50%;
    opacity: 0.28;
    background: radial-gradient(circle, rgba(0, 217, 255, 0.42), transparent 68%);
    filter: blur(16px);
    animation: fx-blob-shift 23s ease-in-out infinite alternate;
}

@keyframes fx-blob-shift {
    from {
        transform: translate(-3vw, 2vh);
    }

    to {
        transform: translate(4vw, -3vh);
    }
}

.fx-wave-svg path.fx-wave-accent {
    fill: rgba(62, 240, 184, 0.12);
}

@keyframes fx-wave-roll {
    from {
        transform: translateX(-2%);
    }

    to {
        transform: translateX(4%);
    }
}

.fx-relax-studio {
    position: relative;
    isolation: isolate;
    padding-block: clamp(62px, 14vw, 130px);
    padding-bottom: clamp(120px, 24vw, 200px);
    overflow: clip;
}

.fx-breathe {
    position: relative;
    aspect-ratio: 1;
    margin-inline: auto;
    max-width: clamp(260px, 58vw, 380px);
    display: grid;
    place-items: center;
}

.fx-breathe-hub {
    position: relative;
    z-index: 3;
    width: clamp(90px, 22vw, 120px);
    height: clamp(90px, 22vw, 120px);
    border-radius: 999px;
    background: radial-gradient(circle at 35% 30%, rgba(255, 255, 255, 0.16), rgba(6, 26, 43, 0.88));
    border: 2px solid rgba(0, 217, 255, 0.35);
    display: grid;
    place-items: center;
    font-size: var(--text-step-1);
    font-weight: 800;
}

.fx-breathe-ring {
    position: absolute;
    border-radius: 999px;
    border: 1px solid rgba(0, 217, 255, 0.28);
}

.fx-breathe-ring:nth-of-type(1) {
    width: 134%;
    height: 134%;
    animation: breathe-scale 11s ease-in-out infinite;
}

.fx-breathe-ring:nth-of-type(2) {
    width: 170%;
    height: 170%;
    animation: breathe-scale 11s ease-in-out infinite;
    animation-delay: 2.2s;
    opacity: 0.72;
}

.fx-breathe-ring:nth-of-type(3) {
    width: 210%;
    height: 210%;
    animation: breathe-scale 11s ease-in-out infinite;
    animation-delay: 4.6s;
    opacity: 0.48;
}

@keyframes breathe-scale {

    0%,
    100% {
        transform: scale(0.92);
        opacity: 0.28;
        border-color: rgba(0, 217, 255, 0.15);
    }

    44% {
        transform: scale(1.06);
        opacity: 0.65;
        border-color: rgba(62, 240, 184, 0.45);
    }
}

.fx-orbit-shell {
    position: relative;
    isolation: isolate;
    max-width: 460px;
    margin-inline: auto;
    padding-block: var(--space-md);
}

.fx-orbit-grid {
    display: grid;
    gap: var(--space-sm);
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-block-start: var(--space-md);
}

@media (max-width: 420px) {
    .fx-orbit-grid {
        grid-template-columns: 1fr;
    }
}

.fx-orbit-sphere {
    position: relative;
    width: fit-content;
    margin-inline: auto;
}

.fx-orbit-core {
    position: relative;
    z-index: 2;
    width: clamp(148px, 36vw, 200px);
    height: clamp(148px, 36vw, 200px);
    margin: 0 auto;
    border-radius: 999px;
    display: grid;
    place-items: center;
    text-align: center;
    padding: clamp(16px, 4vw, 22px);
    border: 1px dashed rgba(0, 217, 255, 0.35);
    background: radial-gradient(circle at 40% 30%, rgba(0, 217, 255, 0.18), rgba(6, 26, 43, 0.78));
}

.fx-orbit-band {
    position: absolute;
    inset: clamp(4px, 1.2vw, 10px);
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.fx-orbit-dash {
    position: absolute;
    inset: clamp(4px, 1.2vw, 10px);
    border-radius: 999px;
    border: 1px dashed rgba(62, 240, 184, 0.22);
    animation: fx-orbit-spin 68s linear infinite;
}

.fx-orbit-pill {
    display: grid;
    gap: var(--space-xs);
    justify-items: center;
    text-align: center;
    padding: clamp(12px, 3vw, 14px);
    border-radius: 18px;
    font-size: var(--text-step--1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(4, 16, 30, 0.78);
}

.fx-orbit-pill strong {
    color: rgba(246, 250, 255, 0.96);
}

.fx-orbit-pill span {
    color: rgba(230, 240, 255, 0.78);
    font-weight: 500;
}

@keyframes fx-orbit-spin {
    to {
        transform: rotateZ(360deg);
    }
}

.fx-contact-shell {
    display: grid;
    gap: clamp(26px, 5vw, 44px);
    align-items: start;
}

@media (min-width: 960px) {
    .fx-contact-shell {
        grid-template-columns: minmax(0, 1.02fr) minmax(288px, 0.94fr);
    }
}

.fx-contact-side {
    position: sticky;
    top: calc(var(--space-lg, 28px) + 56px);
    display: grid;
    gap: var(--space-md);
}

.fx-mini-stat {
    display: grid;
    gap: 6px;
    padding: clamp(14px, 3.2vw, 18px);
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(6, 26, 43, 0.38);
}

.fx-mini-stat em {
    font-style: normal;
    font-weight: 800;
    font-size: var(--text-step-3);
    color: var(--color-crystal-cyan);
}

.fx-form-card.fx-gloss-sheen {
    border-radius: calc(var(--radius-panel) + 16px);
    padding: clamp(22px, 5vw, 34px);
    border-color: rgba(0, 217, 255, 0.22);
    background:
        radial-gradient(circle at 14% -8%, rgba(0, 217, 255, 0.16), transparent 56%),
        rgba(6, 26, 43, 0.58);
}

@media (prefers-reduced-motion: reduce) {

    .fx-marquee-track,
    .fx-hero-cinema__aurora span,
    .fx-wave-hero .fx-wave-path,
    .fx-breathe-ring,
    .fx-orbit-dash,
    .fx-float-badge,
    .fx-kicker i,
    .fx-pulse-pill[data-pulse],
    .fx-gloss-sheen::before,
    .fx-wave-fill {
        animation: none !important;
    }

    [data-fx-tilt] {
        transform: none !important;
    }

    html.js-on [data-reveal-stagger]:not(.is-revealed)>.fx-piece {
        opacity: 1 !important;
        transform: none !important;
        filter: none !important;
    }

    html.js-on [data-reveal-stagger].is-revealed>.fx-piece {
        transition: none !important;
    }
}

/* --- Policy & thank-you (migrated from root styles.css) --- */
body.policy-skin-light {
    margin: 0;
    --primary-color: #2563eb;
    --secondary-color: #10b981;
    --text-dark: #1f2937;
    --text-light: #6b7280;
    --bg-light: #f9fafb;
    --bg-white: #ffffff;
    --border-color: #e5e7eb;
    --success: #10b981;
    --warning: #f59e0b;
    --danger: #ef4444;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background: var(--bg-light);
}

body.policy-skin-light a {
    color: var(--primary-color);
}

body.policy-skin-light a:hover {
    color: #1d4ed8;
}

body.policy-skin-light a:focus-visible {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

body.policy-skin-light .page-container {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

body.policy-skin-light .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}


body.policy-skin-light .policy-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, #1e40af 100%);
    color: white;
    padding: 60px 20px 40px;
    text-align: center;
}

body.policy-skin-light .back-link {
    display: inline-block;
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    margin-bottom: 20px;
    font-size: 14px;
    transition: color 0.3s;
}

body.policy-skin-light .back-link:hover {
    color: white;
}

body.policy-skin-light .policy-title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 10px;
}

body.policy-skin-light .policy-subtitle {
    font-size: 16px;
    opacity: 0.9;
}


body.policy-skin-light .policy-content {
    flex: 1;
    padding: 60px 20px;
}

body.policy-skin-light .policy-content .container {
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 60px;
}


body.policy-skin-light .policy-nav {
    position: sticky;
    top: 20px;
    height: fit-content;
    background: var(--bg-white);
    padding: 24px;
    border-radius: 12px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

body.policy-skin-light .policy-nav h3 {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-light);
    margin-bottom: 16px;
}

body.policy-skin-light .policy-nav ul {
    list-style: none;
}

body.policy-skin-light .policy-nav li {
    margin-bottom: 8px;
}

body.policy-skin-light .policy-nav a {
    color: var(--text-dark);
    text-decoration: none;
    font-size: 14px;
    display: block;
    padding: 8px 12px;
    border-radius: 6px;
    transition: all 0.3s;
}

body.policy-skin-light .policy-nav a:hover {
    background: var(--bg-light);
    color: var(--primary-color);
}


body.policy-skin-light .policy-sections {
    background: var(--bg-white);
    padding: 48px;
    border-radius: 12px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

body.policy-skin-light .policy-section {
    margin-bottom: 48px;
}

body.policy-skin-light .policy-section:last-child {
    margin-bottom: 0;
}

body.policy-skin-light .policy-section h2 {
    font-size: 32px;
    color: var(--text-dark);
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--border-color);
}

body.policy-skin-light .policy-section h3 {
    font-size: 24px;
    color: var(--text-dark);
    margin: 32px 0 16px;
}

body.policy-skin-light .policy-section h4 {
    font-size: 18px;
    color: var(--text-dark);
    margin: 24px 0 12px;
}

body.policy-skin-light .policy-section p {
    color: var(--text-light);
    margin-bottom: 16px;
    font-size: 16px;
}

body.policy-skin-light .policy-section ul,
body.policy-skin-light .policy-section ol {
    margin: 16px 0 16px 24px;
    color: var(--text-light);
}

body.policy-skin-light .policy-section li {
    margin-bottom: 12px;
    padding-left: 8px;
}


body.policy-skin-light .info-box {
    background: #eff6ff;
    border-left: 4px solid var(--primary-color);
    padding: 20px;
    margin: 24px 0;
    border-radius: 8px;
}

body.policy-skin-light .info-box strong {
    color: var(--primary-color);
    display: block;
    margin-bottom: 8px;
}

body.policy-skin-light .note {
    font-size: 14px;
    color: var(--text-light);
    font-style: italic;
    margin-top: 12px;
}


body.policy-skin-light .contact-info {
    background: var(--bg-light);
    padding: 24px;
    border-radius: 8px;
    margin-top: 20px;
}

body.policy-skin-light .contact-info p {
    margin-bottom: 12px;
}

body.policy-skin-light .contact-info a {
    color: var(--primary-color);
    text-decoration: none;
}

body.policy-skin-light .contact-info a:hover {
    text-decoration: underline;
}


body.policy-skin-light .cookie-type-card {
    background: var(--bg-light);
    padding: 24px;
    border-radius: 8px;
    margin-bottom: 20px;
    position: relative;
}

body.policy-skin-light .cookie-type-card h3 {
    margin-top: 0;
    margin-bottom: 12px;
}

body.policy-skin-light .cookie-badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 12px;
}

body.policy-skin-light .cookie-badge.required {
    background: #dcfce7;
    color: #166534;
}

body.policy-skin-light .cookie-badge.optional {
    background: #fef3c7;
    color: #92400e;
}


body.policy-skin-light .use-case-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 24px 0;
}

body.policy-skin-light .use-case {
    background: var(--bg-light);
    padding: 20px;
    border-radius: 8px;
}

body.policy-skin-light .use-case h4 {
    color: var(--primary-color);
    margin: 0 0 8px 0;
}

body.policy-skin-light .use-case p {
    margin: 0;
    font-size: 14px;
}


body.policy-skin-light .refund-timeline {
    margin: 24px 0;
}

body.policy-skin-light .timeline-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background: var(--bg-light);
    border-radius: 8px;
    margin-bottom: 16px;
}

body.policy-skin-light .timeline-badge {
    background: var(--primary-color);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    flex-shrink: 0;
}

body.policy-skin-light .timeline-item strong {
    display: block;
    color: var(--text-dark);
    margin-bottom: 4px;
}

body.policy-skin-light .timeline-item p {
    margin: 0;
    font-size: 14px;
}


body.policy-skin-light .thank-you-card {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    background: var(--bg-white);
    padding: 60px 40px;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

body.policy-skin-light .success-icon {
    margin-bottom: 24px;
}

body.policy-skin-light .thank-you-card h2 {
    font-size: 32px;
    color: var(--text-dark);
    margin-bottom: 16px;
}

body.policy-skin-light .thank-you-card p {
    color: var(--text-light);
    font-size: 18px;
    margin-bottom: 32px;
}

body.policy-skin-light .next-steps {
    background: var(--bg-light);
    padding: 24px;
    border-radius: 8px;
    margin: 32px 0;
    text-align: left;
}

body.policy-skin-light .next-steps h3 {
    font-size: 20px;
    margin-bottom: 16px;
}

body.policy-skin-light .next-steps ul {
    list-style: none;
    margin: 0;
}

body.policy-skin-light .next-steps li {
    padding: 8px 0 8px 28px;
    position: relative;
}

body.policy-skin-light .next-steps li:before {
    content: "âœ“";
    position: absolute;
    left: 0;
    color: var(--success);
    font-weight: bold;
}

body.policy-skin-light .action-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-top: 32px;
}


body.policy-skin-light .btn {
    display: inline-block;
    padding: 12px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    font-size: 16px;
}

body.policy-skin-light .btn-primary {
    background: var(--primary-color);
    color: white;
}

body.policy-skin-light .btn-primary:hover {
    background: #1e40af;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

body.policy-skin-light .btn-secondary {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

body.policy-skin-light .btn-secondary:hover {
    background: var(--primary-color);
    color: white;
}


body.policy-skin-light .browser-controls {
    background: var(--bg-light);
    padding: 24px;
    border-radius: 8px;
    margin-top: 24px;
}


body.policy-skin-light .policy-footer {
    background: var(--text-dark);
    color: white;
    padding: 32px 20px;
    margin-top: auto;
}

body.policy-skin-light .policy-footer .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

body.policy-skin-light .policy-footer p {
    margin: 0;
    opacity: 0.8;
}

body.policy-skin-light .footer-links {
    display: flex;
    gap: 24px;
}

body.policy-skin-light .footer-links a {
    color: white;
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s;
}

body.policy-skin-light .footer-links a:hover {
    opacity: 1;
}


@media (max-width: 968px) {
    body.policy-skin-light .policy-content .container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    body.policy-skin-light .policy-nav {
        position: static;
    }

    body.policy-skin-light .policy-sections {
        padding: 32px 24px;
    }

    body.policy-skin-light .policy-title {
        font-size: 36px;
    }

    body.policy-skin-light .policy-section h2 {
        font-size: 28px;
    }

    body.policy-skin-light .use-case-grid {
        grid-template-columns: 1fr;
    }

    body.policy-skin-light .action-buttons {
        flex-direction: column;
    }

    body.policy-skin-light .policy-footer .container {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}

@media (max-width: 640px) {
    body.policy-skin-light .policy-header {
        padding: 40px 20px 30px;
    }

    body.policy-skin-light .policy-title {
        font-size: 28px;
    }

    body.policy-skin-light .policy-sections {
        padding: 24px 16px;
    }

    body.policy-skin-light .policy-section h2 {
        font-size: 24px;
    }

    body.policy-skin-light .thank-you-card {
        padding: 40px 24px;
    }

    body.policy-skin-light .timeline-item {
        flex-direction: column;
        text-align: center;
    }
}