:root {
    --col-ink: #10002B;
    --col-deep: #240046;
    --col-volt: #7B2CBF;
    --col-soft: #C77DFF;
    --col-mist: #E0AAFF;
    --col-paper: #f9f5ff;
    --space-3xs: 0.25rem;
    --space-2xs: 0.4rem;
    --space-xs: 0.55rem;
    --space-sm: 0.75rem;
    --space-md: 1rem;
    --space-lg: 1.35rem;
    --space-xl: 1.85rem;
    --space-2xl: 2.6rem;
    --space-3xl: 3.5rem;
    --radius-sm: 0.35rem;
    --radius-md: 0.65rem;
    --radius-lg: 1.1rem;
    --radius-xl: 1.75rem;
    --shadow-soft: 0 0.35rem 1.2rem rgba(16, 0, 43, 0.18);
    --shadow-lift: 0 0.85rem 2.4rem rgba(36, 0, 70, 0.28);
    --font-display: "Fraunces", Georgia, serif;
    --font-body: "Outfit", system-ui, sans-serif;
    --text-xs: 0.72rem;
    --text-sm: 0.8rem;
    --text-base: 0.92rem;
    --text-md: 1.02rem;
    --text-lg: 1.2rem;
    --text-xl: 1.45rem;
    --text-2xl: 1.85rem;
    --text-3xl: 2.35rem;
    --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
    --ease-soft: cubic-bezier(0.45, 0, 0.55, 1);
    --dur-fast: 0.28s;
    --dur-mid: 0.55s;
    --dur-slow: 0.95s;
    --line-tight: 1.25;
    --line-body: 1.55;
    --max-read: 38rem;
    --max-wide: 72rem;
}

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

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: var(--font-body);
    font-size: var(--text-base);
    line-height: var(--line-body);
    color: var(--col-paper);
    background: radial-gradient(120% 80% at 10% 0%, #2a0a52 0%, var(--col-ink) 45%, #0a0214 100%);
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
}

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

a {
    color: var(--col-mist);
    text-decoration-thickness: 1px;
    text-underline-offset: 0.2em;
    transition: color var(--dur-fast) var(--ease-out), opacity var(--dur-fast) var(--ease-out);
}

a:hover {
    color: var(--col-soft);
}

h1,
h2,
h3,
h4 {
    font-family: var(--font-display);
    font-weight: 600;
    line-height: var(--line-tight);
    letter-spacing: -0.02em;
    margin: 0 0 var(--space-sm);
}

h1 {
    font-size: clamp(var(--text-xl), 4vw, var(--text-3xl));
}

h2 {
    font-size: clamp(var(--text-lg), 2.6vw, var(--text-2xl));
}

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

h4 {
    font-size: var(--text-md);
}

p {
    margin: 0 0 var(--space-md);
}

ul {
    margin: 0 0 var(--space-md);
    padding-left: 1.1rem;
}

.shell {
    width: min(100% - var(--space-lg)*2, var(--max-wide));
    margin-inline: auto;
}

.hdr-shift {
    position: relative;
    z-index: 40;
    transition: transform var(--dur-mid) var(--ease-out), opacity var(--dur-mid) var(--ease-out);
}

.hdr-shift.is-away {
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
}

.hdr-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-md);
    padding: var(--space-sm) var(--space-lg);
    margin: var(--space-sm) auto 0;
    width: min(100% - var(--space-md)*2, var(--max-wide));
    background: linear-gradient(120deg, rgba(36, 0, 70, 0.72), rgba(16, 0, 43, 0.55));
    border: 1px solid rgba(199, 125, 255, 0.18);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-soft);
    backdrop-filter: blur(12px);
}

.logo-type {
    font-family: var(--font-display);
    font-size: var(--text-md);
    color: var(--col-mist);
    letter-spacing: 0.04em;
    text-decoration: none;
}

.logo-type:hover {
    color: var(--col-soft);
}

.nav-toggle {
    display: none;
    align-items: center;
    justify-content: center;
    width: 2.4rem;
    height: 2.4rem;
    border-radius: var(--radius-md);
    border: 1px solid rgba(199, 125, 255, 0.35);
    background: rgba(123, 44, 191, 0.25);
    color: var(--col-mist);
    cursor: pointer;
    transition: background var(--dur-fast) var(--ease-out), transform var(--dur-fast) var(--ease-out);
}

.nav-toggle:hover {
    background: rgba(123, 44, 191, 0.45);
}

.nav-toggle i {
    font-size: var(--text-lg);
}

.nav-row {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-xs) var(--space-lg);
    align-items: center;
    justify-content: flex-end;
}

.nav-row a {
    font-size: var(--text-sm);
    text-decoration: none;
    color: rgba(224, 170, 255, 0.88);
    padding: var(--space-3xs) var(--space-xs);
    border-radius: var(--radius-sm);
    position: relative;
}

.nav-row a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 1px;
    background: var(--col-soft);
    transition: width var(--dur-mid) var(--ease-out);
}

.nav-row a:hover::after {
    width: 100%;
}

.nav-panel {
    display: flex;
}

@media(max-width:900px) {
    .nav-toggle {
        display: flex;
    }

    .nav-panel {
        position: fixed;
        inset: 0;
        z-index: 50;
        background: rgba(16, 0, 43, 0.92);
        backdrop-filter: blur(14px);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: var(--space-lg);
        padding: var(--space-2xl);
        opacity: 0;
        pointer-events: none;
        transition: opacity var(--dur-mid) var(--ease-out);
    }

    .nav-panel.is-open {
        opacity: 1;
        pointer-events: auto;
        height: 100vh;
    }

    .nav-panel .nav-row {
        flex-direction: column;
        gap: var(--space-lg);
    }

    .nav-panel .nav-row a {
        font-size: var(--text-lg);
    }
}

body.nav-lock {
    overflow: hidden;
}

.hero-block {
    position: relative;
    min-height: min(78vh, 38rem);
    display: grid;
    align-items: stretch;
    margin-top: var(--space-md);
    border-radius: var(--radius-xl);
    overflow: hidden;
    border: 1px solid rgba(199, 125, 255, 0.2);
    box-shadow: var(--shadow-lift);
}

.hero-fallback {
    position: absolute;
    inset: 0;
    z-index: 0;
    display: none;
    background: radial-gradient(120% 80% at 20% 20%, #2a0a52 0%, #10002B 45%, #240046 100%);
}

.hero-fallback.is-on {
    display: block;
}

.hero-canvas {
    position: absolute;
    inset: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
    display: block;
}

.hero-overlay {
    position: relative;
    z-index: 2;
    display: grid;
    align-content: end;
    padding: var(--space-2xl) var(--space-xl);
    background: linear-gradient(180deg, transparent 0%, rgba(16, 0, 43, 0.75) 55%, rgba(16, 0, 43, 0.95) 100%);
}

.hero-kicker {
    font-size: var(--text-xs);
    text-transform: uppercase;
    letter-spacing: 0.22em;
    color: var(--col-soft);
    margin-bottom: var(--space-xs);
    animation: fadeRise 1.1s var(--ease-out) both;
}

.hero-block h1 {
    max-width: 18ch;
    margin-bottom: var(--space-sm);
    animation: fadeRise 1.15s var(--ease-out) 0.08s both;
}

.hero-lede {
    max-width: var(--max-read);
    font-size: var(--text-sm);
    color: rgba(224, 170, 255, 0.85);
    animation: fadeRise 1.2s var(--ease-out) 0.14s both;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
    margin-top: var(--space-lg);
    animation: fadeRise 1.25s var(--ease-out) 0.2s both;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2xs);
    padding: var(--space-xs) var(--space-md);
    font-family: var(--font-body);
    font-size: var(--text-sm);
    border-radius: 999px;
    border: 1px solid transparent;
    cursor: pointer;
    text-decoration: none;
    transition: transform var(--dur-fast) var(--ease-out), box-shadow var(--dur-fast) var(--ease-out), background var(--dur-fast) var(--ease-out), border-color var(--dur-fast) var(--ease-out);
}

.btn:focus-visible {
    outline: 2px solid var(--col-soft);
    outline-offset: 2px;
}

.btn-prim {
    background: linear-gradient(120deg, var(--col-volt), var(--col-soft));
    color: var(--col-ink);
    box-shadow: 0 0.4rem 1rem rgba(123, 44, 191, 0.45);
}

.btn-prim:hover {
    transform: translateY(-2px);
    box-shadow: 0 0.55rem 1.4rem rgba(199, 125, 255, 0.5);
}

.btn-ghost {
    background: rgba(224, 170, 255, 0.08);
    border-color: rgba(199, 125, 255, 0.45);
    color: var(--col-mist);
}

.btn-ghost:hover {
    background: rgba(224, 170, 255, 0.16);
}

.sec {
    padding: var(--space-2xl) 0;
}

.sec-tight {
    padding: var(--space-xl) 0;
}

.sec-head {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    justify-content: space-between;
    gap: var(--space-md);
    margin-bottom: var(--space-lg);
}

.sec-label {
    font-size: var(--text-xs);
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--col-soft);
}

.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: var(--space-lg);
    align-items: start;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: var(--space-lg);
    align-items: start;
}

@media(max-width:960px) {
    .grid-3 {
        grid-template-columns: 1fr;
    }
}

@media(max-width:720px) {
    .grid-2 {
        grid-template-columns: 1fr;
    }
}

.card {
    background: rgba(36, 0, 70, 0.45);
    border: 1px solid rgba(199, 125, 255, 0.18);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    box-shadow: var(--shadow-soft);
    transition: transform var(--dur-mid) var(--ease-out), border-color var(--dur-mid) var(--ease-out), box-shadow var(--dur-mid) var(--ease-out);
}

.card:hover {
    transform: translateY(-4px);
    border-color: rgba(199, 125, 255, 0.38);
    box-shadow: var(--shadow-lift);
}

.card i {
    color: var(--col-soft);
    font-size: var(--text-lg);
    margin-bottom: var(--space-sm);
    display: inline-block;
}

.pill-row {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-xs);
}

.pill {
    font-size: var(--text-xs);
    padding: var(--space-3xs) var(--space-xs);
    border-radius: 999px;
    border: 1px solid rgba(199, 125, 255, 0.35);
    color: rgba(224, 170, 255, 0.9);
}

.stat-line {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-xl);
    margin-top: var(--space-md);
    font-size: var(--text-sm);
    color: rgba(224, 170, 255, 0.78);
}

.stat-line strong {
    font-family: var(--font-display);
    color: var(--col-mist);
    font-size: var(--text-md);
}

.split-visual {
    border-radius: var(--radius-xl);
    overflow: hidden;
    border: 1px solid rgba(199, 125, 255, 0.2);
    box-shadow: var(--shadow-soft);
    animation: floatSoft 8s ease-in-out infinite;
}

@keyframes floatSoft {

    0%,
    100% {
        transform: translateY(0);
    }

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

@keyframes fadeRise {
    from {
        opacity: 0;
        transform: translateY(12px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes drift {
    0% {
        transform: rotate(-1deg) translateX(0);
    }

    50% {
        transform: rotate(1deg) translateX(6px);
    }

    100% {
        transform: rotate(-1deg) translateX(0);
    }
}

.anim-rise {
    animation: fadeRise 0.85s var(--ease-out) both;
}

.anim-delay-1 {
    animation-delay: 0.1s;
}

.anim-delay-2 {
    animation-delay: 0.2s;
}

.anim-delay-3 {
    animation-delay: 0.3s;
}

.anim-delay-4 {
    animation-delay: 0.4s;
}

.anim-inview {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity var(--dur-slow) var(--ease-out), transform var(--dur-slow) var(--ease-out);
}

.anim-inview.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.page-asym {
    position: relative;
    padding-bottom: var(--space-3xl);
}

.skew-band {
    position: relative;
    transform: skewY(-3deg);
    margin: var(--space-2xl) 0;
    padding: var(--space-2xl) 0;
    background: linear-gradient(90deg, rgba(123, 44, 191, 0.15), transparent 55%);
    border-block: 1px solid rgba(199, 125, 255, 0.12);
}

.skew-band .shell {
    transform: skewY(3deg);
}

.overlap-card {
    position: relative;
    margin-top: calc(var(--space-xl)*-1);
    margin-left: 8%;
    max-width: min(32rem, 92%);
    z-index: 3;
    background: rgba(16, 0, 43, 0.92);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(199, 125, 255, 0.28);
    padding: var(--space-lg);
    box-shadow: var(--shadow-lift);
}

.angle-block {
    position: relative;
    padding: var(--space-xl);
    margin-left: 0;
    margin-right: 5%;
    border-radius: 0 var(--radius-xl) var(--radius-xl) 0;
    background: rgba(36, 0, 70, 0.55);
    border: 1px solid rgba(199, 125, 255, 0.2);
}

.stagger-stack {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.stagger-stack .card:nth-child(odd) {
    margin-left: 0;
    margin-right: auto;
    max-width: 92%;
}

.stagger-stack .card:nth-child(even) {
    margin-left: auto;
    margin-right: 0;
    max-width: 88%;
}

.diagonal-cut {
    clip-path: polygon(0 6%, 100% 0, 100% 94%, 0 100%);
    padding: var(--space-2xl) 0;
    background: rgba(36, 0, 70, 0.35);
}

.contact-shell {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: var(--space-xl);
    align-items: start;
}

@media(max-width:900px) {
    .contact-shell {
        grid-template-columns: 1fr;
    }

    .overlap-card {
        margin-left: 0;
        max-width: 100%;
    }
}

.contact-card {
    background: rgba(16, 0, 43, 0.75);
    border: 1px solid rgba(199, 125, 255, 0.25);
    border-radius: var(--radius-xl);
    padding: var(--space-xl);
    box-shadow: var(--shadow-lift);
}

.contact-card h2 {
    margin-bottom: var(--space-md);
}

.field {
    display: flex;
    flex-direction: column;
    gap: var(--space-2xs);
    margin-bottom: var(--space-md);
}

.field label {
    font-size: var(--text-xs);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(224, 170, 255, 0.75);
}

.field input,
.field textarea {
    font-family: var(--font-body);
    font-size: var(--text-sm);
    padding: var(--space-sm);
    border-radius: var(--radius-md);
    border: 1px solid rgba(199, 125, 255, 0.28);
    background: rgba(36, 0, 70, 0.5);
    color: var(--col-paper);
    resize: vertical;
    min-height: 2.5rem;
    transition: border-color var(--dur-fast) var(--ease-out), box-shadow var(--dur-fast) var(--ease-out);
}

.field textarea {
    min-height: 7rem;
}

.field input:focus,
.field textarea:focus {
    outline: none;
    border-color: var(--col-soft);
    box-shadow: 0 0 0 1px rgba(199, 125, 255, 0.35);
}

.check-line {
    display: flex;
    align-items: flex-start;
    gap: var(--space-sm);
    font-size: var(--text-xs);
    color: rgba(224, 170, 255, 0.82);
    margin-bottom: var(--space-md);
}

.check-line input {
    margin-top: 0.2rem;
}

.map-frame {
    border: 0;
    width: 100%;
    min-height: 14rem;
    border-radius: var(--radius-lg);
    filter: saturate(0.85) contrast(1.05);
}

.mini-list {
    list-style: none;
    padding: 0;
    margin: var(--space-md) 0 0;
    font-size: var(--text-sm);
    color: rgba(224, 170, 255, 0.85);
}

.mini-list li {
    display: flex;
    align-items: flex-start;
    gap: var(--space-sm);
    margin-bottom: var(--space-sm);
}

.mini-list i {
    color: var(--col-soft);
    margin-top: 0.15rem;
}

.foot-mini {
    padding: var(--space-lg) var(--space-md) var(--space-xl);
    font-size: var(--text-xs);
    color: rgba(224, 170, 255, 0.55);
    text-align: center;
}

.foot-mini a {
    color: rgba(224, 170, 255, 0.75);
}

.foot-ads {
    max-width: 46rem;
    margin: var(--space-md) auto 0;
    padding: 0 var(--space-sm);
    font-size: var(--text-xs);
    line-height: 1.5;
    color: rgba(224, 170, 255, 0.52);
}

.foot-ads a {
    color: rgba(224, 170, 255, 0.72);
    text-decoration: underline;
}

.policy-overlay {
    position: fixed;
    inset: 0;
    z-index: 100;
    display: grid;
    place-items: center;
    padding: var(--space-lg);
    background: rgba(16, 0, 43, 0.82);
    backdrop-filter: blur(10px);
    transition: opacity var(--dur-mid) var(--ease-out), visibility var(--dur-mid) var(--ease-out);
}

.policy-overlay.is-hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.policy-box {
    max-width: 26rem;
    width: 100%;
    background: linear-gradient(145deg, rgba(36, 0, 70, 0.95), rgba(16, 0, 43, 0.98));
    border: 1px solid rgba(199, 125, 255, 0.35);
    border-radius: var(--radius-xl);
    padding: var(--space-xl);
    box-shadow: var(--shadow-lift);
    animation: fadeIn var(--dur-mid) var(--ease-out);
}

.policy-box p {
    font-size: var(--text-sm);
    color: rgba(224, 170, 255, 0.88);
}

.policy-actions {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
    margin-top: var(--space-lg);
}

.price-tag {
    font-family: var(--font-display);
    font-size: var(--text-lg);
    color: var(--col-mist);
    margin-top: var(--space-sm);
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: var(--space-lg);
}

@media(max-width:960px) {
    .product-grid {
        grid-template-columns: 1fr;
    }
}

.product-tile {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-xl);
    border: 1px solid rgba(199, 125, 255, 0.22);
    background: rgba(36, 0, 70, 0.4);
    transition: transform var(--dur-mid) var(--ease-out);
}

.product-tile:hover {
    transform: translateY(-6px) scale(1.01);
}

.product-tile img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
}

.product-body {
    padding: var(--space-lg);
}

.legal-page {
    padding: var(--space-2xl) 0 var(--space-3xl);
}

.legal-page h1 {
    margin-bottom: var(--space-lg);
}

.legal-page h2 {
    margin-top: var(--space-xl);
    font-size: var(--text-lg);
}

.legal-page p,
.legal-page li {
    font-size: var(--text-sm);
}

.doc-wrap {
    padding: var(--space-2xl) 0 var(--space-3xl);
    overflow-x: hidden;
}

.doc-hero {
    position: relative;
    margin-bottom: var(--space-2xl);
    padding: var(--space-xl) var(--space-lg);
    border-radius: var(--radius-xl);
    background: linear-gradient(135deg, rgba(36, 0, 70, 0.55) 0%, rgba(16, 0, 43, 0.75) 50%, rgba(123, 44, 191, 0.22) 100%);
    border: 1px solid rgba(199, 125, 255, 0.28);
    box-shadow: var(--shadow-lift);
}

.doc-strip {
    display: inline-block;
    font-size: var(--text-xs);
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--col-soft);
    margin-bottom: var(--space-sm);
}

.doc-lede {
    font-size: var(--text-md);
    color: rgba(224, 170, 255, 0.92);
    max-width: 42rem;
}

.doc-toc {
    margin: var(--space-xl) 0;
    padding: var(--space-lg);
    border-radius: var(--radius-lg);
    background: rgba(16, 0, 43, 0.45);
    border: 1px dashed rgba(199, 125, 255, 0.35);
}

.doc-toc h2 {
    margin-top: 0;
    font-size: var(--text-md);
}

.doc-toc ol {
    margin: var(--space-sm) 0 0;
    padding-left: 1.25rem;
    font-size: var(--text-sm);
    color: rgba(224, 170, 255, 0.88);
}

.doc-toc a {
    text-decoration: none;
}

.doc-toc a:hover {
    text-decoration: underline;
}

.doc-panel {
    margin: var(--space-xl) 0;
    padding: var(--space-lg);
    border-radius: var(--radius-lg);
    background: rgba(36, 0, 70, 0.42);
    border: 1px solid rgba(199, 125, 255, 0.2);
    transition: transform var(--dur-mid) var(--ease-out), border-color var(--dur-mid) var(--ease-out);
}

.doc-panel:hover {
    transform: translateY(-2px);
    border-color: rgba(199, 125, 255, 0.38);
}

.doc-panel--accent {
    border-left: 3px solid var(--col-volt);
    background: linear-gradient(90deg, rgba(123, 44, 191, 0.18), rgba(36, 0, 70, 0.35));
}

.doc-panel--tilt {
    transform: rotate(-0.35deg);
    margin-left: 0;
    margin-right: 4%;
}

.doc-panel--tilt:hover {
    transform: rotate(0deg) translateY(-3px);
}

.doc-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: var(--space-lg);
    margin: var(--space-xl) 0;
}

.doc-aside {
    padding: var(--space-md);
    border-radius: var(--radius-md);
    font-size: var(--text-xs);
    color: rgba(224, 170, 255, 0.78);
    background: rgba(16, 0, 43, 0.55);
    border: 1px solid rgba(199, 125, 255, 0.18);
}

.doc-prose p {
    margin-bottom: var(--space-md);
}

.doc-prose ul li {
    margin-bottom: var(--space-xs);
}

.doc-band {
    margin: var(--space-2xl) calc(var(--space-lg)*-1);
    padding: var(--space-xl) var(--space-lg);
    background: linear-gradient(95deg, rgba(123, 44, 191, 0.12), transparent 55%);
    border-block: 1px solid rgba(199, 125, 255, 0.12);
    transform: skewY(-0.5deg);
}

.doc-band .doc-prose {
    transform: skewY(0.5deg);
}

@media(max-width:720px) {
    .doc-grid {
        grid-template-columns: 1fr;
    }

    .doc-panel--tilt {
        margin-right: 0;
        transform: none;
    }

    .doc-panel--tilt:hover {
        transform: translateY(-2px);
    }
}

.thanks-wrap {
    padding-bottom: var(--space-3xl);
}

.thanks-stage {
    position: relative;
    padding: var(--space-xl) var(--space-md) var(--space-2xl);
    text-align: center;
    overflow: hidden;
}

.thanks-stage .shell {
    position: relative;
    z-index: 1;
}

.nex-hero__doc-top>div {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-xs);
    text-align: left;
}

.nex-hero--thanks .thanks-band {
    margin-top: 0;
}

.thanks-band {
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
    padding: var(--space-2xs) var(--space-sm);
    margin-bottom: var(--space-md);
    border-radius: 999px;
    font-size: var(--text-xs);
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--col-soft);
    border: 1px solid rgba(199, 125, 255, 0.35);
    background: rgba(16, 0, 43, 0.4);
}

.thanks-hero {
    min-height: unset;
    display: block;
    padding: 0;
    text-align: center;
}

.thanks-hero h1 {
    animation: fadeRise 0.9s var(--ease-out) both;
    max-width: 20ch;
    margin-left: auto;
    margin-right: auto;
}

.thanks-hero p {
    max-width: min(36rem, 100%);
    margin-inline: auto;
    animation: fadeRise 1s var(--ease-out) 0.1s both;
}

.thanks-hero .thanks-subline {
    max-width: min(40rem, 100%);
    margin: var(--space-md) auto 0;
    font-size: var(--text-sm);
    color: rgba(224, 170, 255, 0.82);
    animation: fadeRise 1.05s var(--ease-out) 0.15s both;
}

.thanks-steps {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: var(--space-md);
    margin-top: var(--space-2xl);
    text-align: left;
    counter-reset: step;
}

.thanks-step {
    padding: var(--space-lg);
    border-radius: var(--radius-lg);
    background: rgba(36, 0, 70, 0.45);
    border: 1px solid rgba(199, 125, 255, 0.22);
    position: relative;
}

.thanks-step h2 {
    font-size: var(--text-md);
    margin-top: 0;
    padding-right: 2rem;
}

.thanks-step::before {
    content: counter(step);
    counter-increment: step;
    position: absolute;
    top: var(--space-sm);
    right: var(--space-sm);
    font-family: var(--font-display);
    font-size: var(--text-xl);
    color: rgba(199, 125, 255, 0.35);
}

.thanks-quote {
    margin: var(--space-2xl) auto 0;
    max-width: 36rem;
    padding: var(--space-xl);
    border-radius: var(--radius-xl);
    border: 1px solid rgba(199, 125, 255, 0.25);
    background: linear-gradient(160deg, rgba(16, 0, 43, 0.9), rgba(36, 0, 70, 0.55));
    font-family: var(--font-display);
    font-size: var(--text-md);
    font-style: italic;
    color: rgba(224, 170, 255, 0.92);
    line-height: var(--line-body);
}

.thanks-quote footer {
    margin-top: var(--space-md);
    font-family: var(--font-body);
    font-size: var(--text-xs);
    font-style: normal;
    color: rgba(224, 170, 255, 0.55);
}

.thanks-cta {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
    justify-content: center;
    margin-top: var(--space-xl);
}

.thanks-foot {
    margin-top: var(--space-2xl);
    padding: var(--space-lg);
    border-radius: var(--radius-lg);
    background: rgba(16, 0, 43, 0.5);
    border: 1px solid rgba(199, 125, 255, 0.15);
    font-size: var(--text-xs);
    color: rgba(224, 170, 255, 0.65);
    max-width: 32rem;
    margin-left: auto;
    margin-right: auto;
}

.lux-home {
    overflow-x: hidden;
}

.lux-hero-scene {
    position: relative;
    margin-top: var(--space-md);
    border-radius: var(--radius-xl);
    isolation: isolate;
}

.lux-hero-block.hero-block {
    min-height: min(85vh, 42rem);
    border: 1px solid rgba(199, 125, 255, 0.28);
    box-shadow: 0 1.2rem 3.5rem rgba(16, 0, 43, 0.45), 0 0 0 1px rgba(224, 170, 255, 0.06) inset;
}

.lux-veil {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background:
        radial-gradient(ellipse 90% 70% at 15% 85%, rgba(199, 125, 255, 0.14), transparent 52%),
        radial-gradient(ellipse 70% 50% at 92% 18%, rgba(123, 44, 191, 0.18), transparent 50%),
        linear-gradient(195deg, transparent 0%, rgba(16, 0, 43, 0.25) 100%);
    animation: luxVeilPulse 14s var(--ease-soft) infinite alternate;
}

@keyframes luxVeilPulse {
    0% {
        opacity: 0.85;
        transform: scale(1);
    }

    100% {
        opacity: 1;
        transform: scale(1.02);
    }
}

.lux-hero-overlay {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: var(--space-xl);
    align-items: end;
    padding: var(--space-2xl) var(--space-xl);
    min-height: min(85vh, 42rem);
    background: linear-gradient(165deg, transparent 0%, rgba(16, 0, 43, 0.2) 35%, rgba(16, 0, 43, 0.92) 100%);
}

@media(max-width:960px) {
    .lux-hero-overlay {
        grid-template-columns: 1fr;
        min-height: min(78vh, 38rem);
        align-content: end;
    }
}

.lux-hero-copy {
    padding-bottom: var(--space-sm);
}

.lux-hero-copy .hero-kicker {
    letter-spacing: 0.28em;
}

.lux-hero-copy h1 {
    max-width: 14ch;
    font-size: clamp(1.65rem, 5.2vw, 2.75rem);
    font-weight: 600;
    line-height: 1.08;
}

.lux-hero-lede {
    max-width: min(28rem, 100%);
    font-size: var(--text-sm);
    color: rgba(224, 170, 255, 0.88);
    margin-top: var(--space-sm);
}

.lux-hero-side {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
    justify-content: flex-end;
    padding-bottom: var(--space-xs);
}

.lux-glass {
    padding: var(--space-md) var(--space-lg);
    border-radius: var(--radius-lg);
    background: rgba(36, 0, 70, 0.35);
    border: 1px solid rgba(199, 125, 255, 0.22);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    box-shadow: 0 0.5rem 1.5rem rgba(16, 0, 43, 0.25);
    transition: transform var(--dur-mid) var(--ease-out), border-color var(--dur-mid) var(--ease-out);
}

.lux-glass:hover {
    transform: translateY(-3px);
    border-color: rgba(199, 125, 255, 0.4);
}

.lux-glass strong {
    font-family: var(--font-display);
    font-size: var(--text-xl);
    color: var(--col-mist);
    display: block;
    line-height: 1.1;
}

.lux-glass span {
    font-size: var(--text-xs);
    color: rgba(224, 170, 255, 0.65);
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.lux-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
    margin-top: var(--space-lg);
}

.lux-marquee {
    margin: var(--space-2xl) 0 var(--space-lg);
    padding: var(--space-sm) 0;
    border-block: 1px solid rgba(199, 125, 255, 0.12);
    overflow: hidden;
    mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent);
}

.lux-marquee-track {
    display: flex;
    gap: var(--space-3xl);
    width: max-content;
    animation: luxMarquee 38s linear infinite;
}

.lux-marquee-track span {
    font-family: var(--font-display);
    font-size: clamp(var(--text-sm), 2vw, var(--text-md));
    color: rgba(199, 125, 255, 0.45);
    white-space: nowrap;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

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

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

.lux-editorial {
    padding: var(--space-3xl) 0;
}

.lux-editorial-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
    gap: var(--space-2xl);
    align-items: start;
}

@media(max-width:900px) {
    .lux-editorial-grid {
        grid-template-columns: 1fr;
    }
}

.lux-dropcap::first-letter {
    float: left;
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    line-height: 0.85;
    padding-right: var(--space-sm);
    color: var(--col-soft);
}

.lux-editorial-aside {
    padding: var(--space-xl);
    border-radius: var(--radius-xl);
    background: linear-gradient(145deg, rgba(123, 44, 191, 0.15), rgba(16, 0, 43, 0.6));
    border: 1px solid rgba(199, 125, 255, 0.2);
    transform: rotate(-0.4deg);
}

.lux-editorial-aside p {
    margin-bottom: var(--space-md);
}

.lux-bento {
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    grid-auto-rows: minmax(7rem, auto);
    gap: var(--space-md);
    padding: var(--space-xl) 0 var(--space-3xl);
}

.lux-bento-cell {
    grid-column: span 4;
    padding: var(--space-lg);
    border-radius: var(--radius-xl);
    background: rgba(36, 0, 70, 0.4);
    border: 1px solid rgba(199, 125, 255, 0.18);
    transition: transform var(--dur-mid) var(--ease-out), box-shadow var(--dur-mid) var(--ease-out);
    position: relative;
    overflow: hidden;
}

.lux-bento-cell::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 100% 0%, rgba(199, 125, 255, 0.12), transparent 55%);
    pointer-events: none;
}

.lux-bento-cell:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lift);
}

.lux-bento-cell--wide {
    grid-column: span 8;
}

.lux-bento-cell--tall {
    grid-row: span 2;
}

.lux-bento-cell--accent {
    border-color: rgba(199, 125, 255, 0.35);
    background: linear-gradient(160deg, rgba(36, 0, 70, 0.65), rgba(16, 0, 43, 0.45));
}

.lux-bento-cell h3 {
    margin-top: var(--space-sm);
}

@media(max-width:960px) {

    .lux-bento-cell,
    .lux-bento-cell--wide {
        grid-column: span 12;
    }

    .lux-bento-cell--tall {
        grid-row: auto;
    }
}

.lux-split {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: var(--space-2xl);
    align-items: center;
    padding: var(--space-2xl) 0;
}

@media(max-width:900px) {
    .lux-split {
        grid-template-columns: 1fr;
    }
}

.lux-split-visual {
    border-radius: var(--radius-xl);
    overflow: hidden;
    border: 1px solid rgba(199, 125, 255, 0.22);
    box-shadow: var(--shadow-lift);
    aspect-ratio: 4/3;
    position: relative;
}

.lux-split-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.lux-split-visual::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(35deg, transparent 40%, rgba(123, 44, 191, 0.15));
    pointer-events: none;
}

.lux-rail {
    display: grid;
    gap: var(--space-md);
    position: relative;
    padding-left: var(--space-lg);
    border-left: 2px solid rgba(199, 125, 255, 0.25);
}

.lux-rail-item {
    position: relative;
    padding-left: var(--space-md);
}

.lux-rail-item::before {
    content: "";
    position: absolute;
    left: calc(var(--space-lg)*-1 - 5px);
    top: 0.35rem;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--col-volt);
    box-shadow: 0 0 0 4px rgba(123, 44, 191, 0.25);
}

.lux-quote-block {
    margin: var(--space-3xl) 0;
    padding: var(--space-2xl) var(--space-xl);
    border-radius: var(--radius-xl);
    text-align: center;
    background:
        radial-gradient(ellipse 80% 120% at 50% -20%, rgba(199, 125, 255, 0.2), transparent 55%),
        rgba(16, 0, 43, 0.55);
    border: 1px solid rgba(199, 125, 255, 0.2);
}

.lux-quote-block blockquote {
    margin: 0;
    font-family: var(--font-display);
    font-size: clamp(var(--text-lg), 2.8vw, var(--text-2xl));
    font-style: italic;
    color: rgba(224, 170, 255, 0.95);
    line-height: var(--line-tight);
    max-width: 36rem;
    margin-inline: auto;
}

.lux-quote-block cite {
    display: block;
    margin-top: var(--space-lg);
    font-family: var(--font-body);
    font-size: var(--text-xs);
    font-style: normal;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(199, 125, 255, 0.55);
}

.lux-proof {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: var(--space-md);
    padding: var(--space-xl) 0 var(--space-2xl);
}

.lux-proof-card {
    text-align: center;
    padding: var(--space-lg) var(--space-sm);
    border-radius: var(--radius-lg);
    background: rgba(36, 0, 70, 0.35);
    border: 1px solid rgba(199, 125, 255, 0.15);
}

.lux-proof-card i {
    font-size: var(--text-xl);
    color: var(--col-soft);
    margin-bottom: var(--space-sm);
}

.lux-proof-card strong {
    font-family: var(--font-display);
    display: block;
    font-size: var(--text-md);
    color: var(--col-mist);
}

.lux-proof-card span {
    font-size: var(--text-xs);
    color: rgba(224, 170, 255, 0.6);
}

@media(max-width:720px) {
    .lux-proof {
        grid-template-columns: repeat(2, 1fr);
    }
}

.lux-finale {
    position: relative;
    margin: var(--space-2xl) 0 var(--space-3xl);
    padding: var(--space-2xl) var(--space-xl);
    border-radius: var(--radius-xl);
    text-align: center;
    overflow: hidden;
    background: linear-gradient(125deg, rgba(36, 0, 70, 0.85), rgba(16, 0, 43, 0.95));
    border: 1px solid rgba(199, 125, 255, 0.28);
    box-shadow: 0 1rem 3rem rgba(16, 0, 43, 0.4);
}

.lux-finale::before {
    content: "";
    position: absolute;
    inset: -40%;
    background: conic-gradient(from 180deg at 50% 50%, transparent, rgba(199, 125, 255, 0.06), transparent 40%);
    animation: luxFinaleSpin 28s linear infinite;
    pointer-events: none;
}

@keyframes luxFinaleSpin {
    to {
        transform: rotate(360deg);
    }
}

.lux-finale .lux-finale-inner {
    position: relative;
    z-index: 1;
}

.lux-finale h2 {
    margin-bottom: var(--space-md);
}

.lux-finale p {
    max-width: 32rem;
    margin-inline: auto;
}

.lux-finale-actions {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
    justify-content: center;
    margin-top: var(--space-xl);
}

.sec-lux-tight {
    padding: var(--space-xl) 0;
}

.nex-hero {
    position: relative;
    margin-top: var(--space-md);
    border-radius: var(--radius-xl);
    overflow: hidden;
    isolation: isolate;
}

.nex-hero__burst,
.nex-hero__halo {
    position: absolute;
    inset: -20%;
    pointer-events: none;
    z-index: 0;
}

.nex-hero__burst {
    background:
        radial-gradient(ellipse 50% 40% at 15% 40%, rgba(123, 44, 191, 0.45), transparent 55%),
        radial-gradient(ellipse 45% 35% at 88% 65%, rgba(199, 125, 255, 0.22), transparent 50%),
        conic-gradient(from 210deg at 50% 50%, rgba(16, 0, 43, 0.9), rgba(36, 0, 70, 0.4), rgba(16, 0, 43, 0.95));
    animation: nexBurstShift 16s var(--ease-soft) infinite alternate;
}

@keyframes nexBurstShift {
    0% {
        transform: translate(0, 0) scale(1);
    }

    100% {
        transform: translate(2%, -1%) scale(1.03);
    }
}

.nex-hero--home {
    border: 1px solid rgba(199, 125, 255, 0.22);
    box-shadow: 0 1.2rem 3rem rgba(16, 0, 43, 0.38);
}

.nex-hero__split {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.08fr 0.92fr;
    min-height: min(82vh, 44rem);
    align-items: stretch;
}

@media(max-width:960px) {
    .nex-hero__split {
        grid-template-columns: 1fr;
        min-height: unset;
    }
}

.nex-hero__pane--media {
    position: relative;
    min-height: min(42vh, 22rem);
}

@media(min-width:961px) {
    .nex-hero__pane--media {
        min-height: auto;
        clip-path: polygon(0 0, 100% 0, 92% 100%, 0 100%);
    }
}

.nex-hero__pane--media .hero-block {
    margin-top: 0;
    min-height: 100%;
    border-radius: 0;
    border: none;
    border-right: 1px solid rgba(199, 125, 255, 0.15);
}

.nex-hero__pane--copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: var(--space-md);
    padding: var(--space-2xl) var(--space-xl) var(--space-2xl) var(--space-lg);
    background: linear-gradient(125deg, rgba(16, 0, 43, 0.55) 0%, rgba(36, 0, 70, 0.35) 100%);
    backdrop-filter: blur(8px);
}

@media(max-width:960px) {
    .nex-hero__pane--copy {
        padding: var(--space-xl) var(--space-md);
        border-top: 1px solid rgba(199, 125, 255, 0.12);
    }

    .nex-hero__pane--media .hero-block {
        border-right: none;
        border-radius: var(--radius-xl) var(--radius-xl) 0 0;
    }
}

.nex-hero__tag {
    font-size: var(--text-xs);
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: var(--col-soft);
}

.nex-hero__pane--copy h1 {
    font-size: clamp(1.55rem, 4.2vw, 2.65rem);
    max-width: 16ch;
    margin-bottom: 0;
}

.nex-hero__lede {
    font-size: var(--text-sm);
    color: rgba(224, 170, 255, 0.88);
    max-width: 32rem;
    margin: 0;
}

.nex-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
    margin-top: var(--space-sm);
}

.nex-hero__mini {
    display: grid;
    gap: var(--space-sm);
    margin-top: var(--space-md);
}

@media(min-width:961px) {
    .nex-hero__mini {
        grid-template-columns: 1fr 1fr;
    }
}

.nex-hero__mini .lux-glass {
    padding: var(--space-md);
}

.nex-hero--page {
    margin-bottom: var(--space-2xl);
    border: 1px solid rgba(199, 125, 255, 0.2);
    background:
        linear-gradient(105deg, rgba(36, 0, 70, 0.5) 0%, transparent 55%),
        rgba(16, 0, 43, 0.35);
    box-shadow: var(--shadow-lift);
}

.nex-hero__inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: var(--space-xl);
    align-items: center;
    padding: var(--space-2xl) var(--space-xl);
    min-height: min(52vh, 28rem);
}

@media(max-width:900px) {
    .nex-hero__inner {
        grid-template-columns: 1fr;
        padding: var(--space-xl) var(--space-md);
        min-height: unset;
    }
}

.nex-hero__copy .nex-hero__tag {
    margin-bottom: var(--space-xs);
}

.nex-hero__copy h1 {
    margin-bottom: var(--space-sm);
}

.nex-hero__frame {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    border: 1px solid rgba(199, 125, 255, 0.28);
    box-shadow: 0 1rem 2.5rem rgba(16, 0, 43, 0.35);
    transform: rotate(-2deg);
    transition: transform var(--dur-mid) var(--ease-out);
}

.nex-hero__frame:hover {
    transform: rotate(0deg) scale(1.01);
}

.nex-hero__frame::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(145deg, transparent 30%, rgba(123, 44, 191, 0.2));
    pointer-events: none;
}

.nex-hero__frame img {
    width: 100%;
    height: auto;
    display: block;
}

.nex-hero--doc {
    margin-bottom: var(--space-xl);
    padding: var(--space-xl) var(--space-lg);
    border-radius: var(--radius-xl);
    border: 1px solid rgba(199, 125, 255, 0.22);
    background:
        radial-gradient(ellipse 80% 120% at 100% 0%, rgba(123, 44, 191, 0.2), transparent 50%),
        linear-gradient(165deg, rgba(36, 0, 70, 0.55), rgba(16, 0, 43, 0.75));
    box-shadow: var(--shadow-soft);
}

.nex-hero__doc-top {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: var(--space-md);
    margin-bottom: var(--space-md);
}

.nex-hero__doc-top i {
    font-size: var(--text-2xl);
    color: var(--col-soft);
    width: 2.75rem;
    height: 2.75rem;
    display: grid;
    place-items: center;
    border-radius: var(--radius-md);
    background: rgba(123, 44, 191, 0.2);
    border: 1px solid rgba(199, 125, 255, 0.25);
}

.nex-hero--doc h1 {
    font-size: clamp(var(--text-lg), 2.8vw, var(--text-2xl));
    margin: 0;
    flex: 1;
    min-width: 12rem;
}

.nex-hero--doc .doc-lede,
.nex-hero--doc .nex-hero__lede {
    font-size: var(--text-sm);
    color: rgba(224, 170, 255, 0.9);
    max-width: 48rem;
}

.nex-hero--thanks {
    position: relative;
    padding: var(--space-3xl) var(--space-md) var(--space-2xl);
    text-align: center;
    overflow: hidden;
    border-radius: var(--radius-xl);
    border: 1px solid rgba(199, 125, 255, 0.2);
    margin-bottom: var(--space-xl);
    background: rgba(16, 0, 43, 0.4);
}

.nex-hero__halo {
    background: radial-gradient(ellipse 60% 80% at 50% 20%, rgba(199, 125, 255, 0.35), transparent 58%),
        radial-gradient(ellipse 100% 60% at 50% 100%, rgba(123, 44, 191, 0.15), transparent 55%);
    animation: nexHaloPulse 10s var(--ease-soft) infinite alternate;
}

@keyframes nexHaloPulse {
    0% {
        opacity: 0.75;
        transform: scale(1);
    }

    100% {
        opacity: 1;
        transform: scale(1.05);
    }
}

.nex-hero--thanks .shell {
    position: relative;
    z-index: 1;
}

@media(max-width:480px) {
    .nex-hero__inner {
        padding: var(--space-lg) var(--space-sm);
    }

    .nex-hero__frame {
        transform: none;
    }
}

@media(max-width:320px) {
    .nex-hero--doc {
        padding: var(--space-md);
    }

    .nex-hero__doc-top i {
        width: 2.35rem;
        height: 2.35rem;
        font-size: var(--text-lg);
    }
}

@media(prefers-reduced-motion:reduce) {
    .nex-hero__burst {
        animation: none;
    }

    .nex-hero__halo {
        animation: none;
    }

    .lux-marquee-track {
        animation: none;
    }

    .lux-finale::before {
        animation: none;
    }

    .lux-veil {
        animation: none;
    }
}

@media(max-width:480px) {
    .lux-hero-overlay {
        padding: var(--space-xl) var(--space-md);
    }

    .lux-marquee {
        margin: var(--space-xl) 0;
    }

    .lux-editorial-aside {
        transform: none;
        padding: var(--space-lg);
    }
}

@media(max-width:320px) {
    .nex-hero__split .nex-hero__pane--media .hero-block {
        min-height: min(38vh, 18rem);
    }

    .nex-hero__pane--copy {
        padding: var(--space-lg) var(--space-sm);
    }

    .lux-hero-block.hero-block {
        min-height: min(72vh, 26rem);
    }

    .lux-hero-overlay {
        min-height: min(72vh, 26rem);
        padding: var(--space-lg) var(--space-sm);
    }

    .lux-glass {
        padding: var(--space-sm) var(--space-md);
    }

    .lux-bento {
        gap: var(--space-sm);
        padding: var(--space-md) 0 var(--space-xl);
    }

    .lux-bento-cell {
        padding: var(--space-md);
    }

    .lux-quote-block {
        padding: var(--space-lg) var(--space-md);
        margin: var(--space-xl) 0;
    }

    .lux-proof {
        grid-template-columns: 1fr;
        gap: var(--space-sm);
    }

    .lux-finale {
        padding: var(--space-lg) var(--space-md);
        margin: var(--space-lg) 0 var(--space-xl);
    }

    .lux-marquee-track {
        animation-duration: 48s;
    }
}

@media(max-width:900px) {
    .thanks-steps {
        grid-template-columns: 1fr;
    }
}

@media(max-width:480px) {
    .hdr-inner {
        padding: var(--space-xs) var(--space-md);
    }

    .hero-overlay {
        padding: var(--space-xl) var(--space-md);
    }

    .shell {
        width: min(100% - var(--space-md)*2, var(--max-wide));
    }
}

@media(max-width:360px) {
    body {
        font-size: 0.88rem;
    }

    .btn {
        padding: var(--space-2xs) var(--space-sm);
        font-size: 0.78rem;
    }
}

@media(max-width:320px) {
    :root {
        --space-3xs: 0.2rem;
        --space-2xs: 0.32rem;
        --space-xs: 0.45rem;
        --space-sm: 0.62rem;
        --space-md: 0.82rem;
        --space-lg: 0.75rem;
        --space-xl: 1.05rem;
        --space-2xl: 1.65rem;
        --space-3xl: 2.2rem;
        --text-xs: 0.68rem;
        --text-sm: 0.74rem;
        --text-base: 0.82rem;
        --text-md: 0.9rem;
        --text-lg: 1.02rem;
        --text-xl: 1.18rem;
        --text-2xl: 1.45rem;
        --text-3xl: 1.75rem;
        --radius-sm: 0.3rem;
        --radius-md: 0.5rem;
        --radius-lg: 0.85rem;
        --radius-xl: 1.15rem;
        --line-body: 1.5;
    }

    html {
        -webkit-text-size-adjust: 100%;
    }

    body {
        font-size: var(--text-base);
    }

    .shell {
        width: min(100% - var(--space-sm)*2, var(--max-wide));
    }

    .hdr-inner {
        width: min(100% - var(--space-xs)*2, var(--max-wide));
        padding: var(--space-xs) var(--space-sm);
        gap: var(--space-xs);
    }

    .logo-type {
        font-size: 0.72rem;
        letter-spacing: 0.02em;
    }

    .nav-toggle {
        width: 2.15rem;
        height: 2.15rem;
    }

    .nav-panel {
        padding: var(--space-xl);
    }

    .hero-block {
        min-height: min(70vh, 28rem);
        border-radius: var(--radius-lg);
    }

    .hero-overlay {
        padding: var(--space-lg) var(--space-sm);
    }

    .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .btn {
        width: 100%;
        justify-content: center;
    }

    .sec {
        padding: var(--space-xl) 0;
    }

    .card {
        padding: var(--space-md);
    }

    .grid-2,
    .grid-3 {
        gap: var(--space-md);
    }

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

    .product-body {
        padding: var(--space-md);
    }

    .contact-shell {
        gap: var(--space-md);
    }

    .contact-card {
        padding: var(--space-md);
    }

    .field input,
    .field textarea {
        font-size: var(--text-xs);
        padding: var(--space-xs);
    }

    .map-frame {
        min-height: 12rem;
        border-radius: var(--radius-md);
    }

    .policy-box {
        padding: var(--space-md);
        max-width: 100%;
    }

    .policy-actions {
        flex-direction: column;
    }

    .policy-actions .btn {
        width: 100%;
        justify-content: center;
    }

    .foot-mini {
        padding: var(--space-md) var(--space-xs) var(--space-lg);
        font-size: 0.65rem;
        line-height: 1.45;
    }

    .foot-ads {
        max-width: 100%;
        padding: 0 var(--space-xs);
        font-size: 0.62rem;
        line-height: 1.45;
    }

    .legal-page {
        padding: var(--space-xl) 0 var(--space-2xl);
    }

    .doc-wrap {
        padding: var(--space-xl) 0 var(--space-2xl);
    }

    .doc-hero {
        padding: var(--space-md) var(--space-sm);
        margin-bottom: var(--space-lg);
    }

    .doc-toc {
        padding: var(--space-md);
    }

    .doc-panel {
        padding: var(--space-md);
        margin: var(--space-lg) 0;
    }

    .doc-grid {
        gap: var(--space-md);
        margin: var(--space-lg) 0;
    }

    .doc-band {
        margin: var(--space-xl) calc(var(--space-sm)*-1);
        padding: var(--space-md) var(--space-sm);
    }

    .thanks-stage {
        padding: var(--space-2xl) var(--space-xs) var(--space-lg);
    }

    .thanks-quote {
        padding: var(--space-md);
        font-size: var(--text-sm);
    }

    .thanks-step {
        padding: var(--space-md);
    }

    .thanks-cta {
        flex-direction: column;
        align-items: stretch;
    }

    .thanks-cta .btn {
        width: 100%;
    }

    .skew-band {
        margin: var(--space-lg) 0;
        padding: var(--space-lg) 0;
    }

    .overlap-card {
        margin-left: 0;
        padding: var(--space-md);
    }

    .angle-block {
        padding: var(--space-md);
        margin-right: 0;
    }

    .mini-list {
        font-size: var(--text-xs);
    }

    .lux-editorial {
        padding: var(--space-xl) 0;
    }

    .lux-split {
        gap: var(--space-md);
        padding: var(--space-lg) 0;
    }

    .lux-quote-block {
        margin: var(--space-lg) 0;
    }
}