:root {
    --color-tangerine: #FF7E3D;
    --color-fuchsia: #FF2EB2;
    --color-aqua: #00E5FF;
    --color-lime: #CFFF1F;
    --color-indigo: #1A0F3D;
    --color-indigo-mid: #2d1f55;
    --color-white: #ffffff;
    --color-muted: rgba(255, 255, 255, 0.72);
    --color-surface: rgba(26, 15, 61, 0.55);
    --font-sans: "Segoe UI", system-ui, -apple-system, sans-serif;
    --font-display: "Segoe UI", system-ui, -apple-system, sans-serif;
    --fs-xs: clamp(0.75rem, 0.7rem + 0.2vw, 0.85rem);
    --fs-sm: clamp(0.875rem, 0.8rem + 0.3vw, 1rem);
    --fs-md: clamp(1rem, 0.95rem + 0.35vw, 1.125rem);
    --fs-lg: clamp(1.25rem, 1.1rem + 0.5vw, 1.5rem);
    --fs-xl: clamp(1.75rem, 1.4rem + 1vw, 2.5rem);
    --fs-hero: clamp(2.25rem, 1.6rem + 2.5vw, 3.75rem);
    --fw-normal: 400;
    --fw-semibold: 600;
    --fw-bold: 700;
    --lh-tight: 1.15;
    --lh-body: 1.6;
    --shadow-sm: 0 4px 14px rgba(0, 0, 0, 0.12);
    --shadow-md: 0 12px 40px rgba(26, 15, 61, 0.35);
    --shadow-glow-tangerine: 0 0 40px rgba(255, 126, 61, 0.45);
    --shadow-glow-fuchsia: 0 0 36px rgba(255, 46, 178, 0.4);
    --shadow-glow-aqua: 0 0 32px rgba(0, 229, 255, 0.35);
    --shadow-card-tilt: 0 20px 50px rgba(0, 0, 0, 0.25);
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 22px;
    --radius-xl: 28px;
    --radius-full: 9999px;
    --space-1: 0.25rem;
    --space-2: 0.5rem;
    --space-3: 0.75rem;
    --space-4: 1rem;
    --space-5: 1.5rem;
    --space-6: 2rem;
    --space-7: 2.5rem;
    --space-8: 3.5rem;
    --space-9: 5rem;
    --space-section: clamp(3rem, 8vw, 6rem);
    --max-width: 1180px;
    --nav-height: 72px;
    --transition-fast: 0.18s ease;
    --transition-base: 0.28s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

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

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

body {
    margin: 0;
    font-family: var(--font-sans);
    font-size: var(--fs-md);
    line-height: var(--lh-body);
    color: var(--color-white);
    background: radial-gradient(ellipse 120% 80% at 50% -20%, #3d1f6e 0%, var(--color-indigo) 45%, #0d0618 100%);
    min-height: 100vh;
    overflow-x: hidden;
}

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

a {
    color: var(--color-aqua);
    text-decoration: none;
    transition: color var(--transition-fast), opacity var(--transition-fast);
}

a:hover {
    color: var(--color-lime);
}

:focus-visible {
    outline: 3px solid var(--color-aqua);
    outline-offset: 2px;
}

.skip-link {
    position: absolute;
    left: -9999px;
    z-index: 10000;
    padding: var(--space-3) var(--space-4);
    background: var(--color-tangerine);
    color: var(--color-indigo);
    font-weight: var(--fw-semibold);
}

.skip-link:focus {
    left: var(--space-4);
    top: var(--space-4);
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    height: var(--nav-height);
    display: flex;
    align-items: center;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    background: rgba(26, 15, 61, 0.55);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: var(--shadow-sm);
}

.header-inner {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--space-5);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-4);
}

.brand {
    font-family: var(--font-display);
    font-weight: var(--fw-bold);
    font-size: var(--fs-lg);
    color: var(--color-white);
    letter-spacing: -0.02em;
}

.brand span {
    background: linear-gradient(90deg, var(--color-tangerine), var(--color-fuchsia), var(--color-aqua));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.main-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-4);
}

.main-nav a {
    color: var(--color-muted);
    font-weight: var(--fw-semibold);
    font-size: var(--fs-sm);
}

.main-nav a:hover {
    color: var(--color-white);
}

.nav-toggle {
    display: none;
    position: relative;
    z-index: 1002;
    width: 48px;
    height: 48px;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.05);
    cursor: pointer;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    transition: background var(--transition-fast), border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.nav-toggle:hover {
    background: rgba(255, 126, 61, 0.2);
    border-color: rgba(255, 126, 61, 0.45);
}

.burger-line {
    display: block;
    width: 22px;
    height: 2px;
    border-radius: 2px;
    background: linear-gradient(90deg, var(--color-white), var(--color-aqua));
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.25s ease, width 0.25s ease;
}

.nav-toggle.is-open {
    background: rgba(255, 46, 178, 0.2);
    border-color: rgba(255, 46, 178, 0.5);
}

.nav-toggle.is-open .burger-line:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.nav-toggle.is-open .burger-line:nth-child(2) {
    opacity: 0;
    width: 0;
}

.nav-toggle.is-open .burger-line:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

.nav-backdrop {
    position: fixed;
    inset: 0;
    top: var(--nav-height);
    z-index: 998;
    background: rgba(13, 6, 24, 0.65);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--transition-base), visibility var(--transition-base);
    pointer-events: none;
}

.nav-backdrop.is-visible {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

body.nav-open {
    overflow: hidden;
}

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

    .main-nav {
        position: fixed;
        top: var(--nav-height);
        right: 0;
        bottom: 0;
        width: min(100%, 320px);
        z-index: 1001;
        background: linear-gradient(165deg, rgba(26, 15, 61, 0.98) 0%, rgba(13, 6, 24, 0.98) 100%);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        padding: var(--space-6) var(--space-5);
        box-shadow: -12px 0 40px rgba(0, 0, 0, 0.45);
        border-left: 1px solid rgba(255, 255, 255, 0.1);
        transform: translateX(105%);
        opacity: 0;
        pointer-events: none;
        transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.35s ease;
    }

    .main-nav.is-open {
        transform: translateX(0);
        opacity: 1;
        pointer-events: auto;
        height: 100vh;
    }

    .main-nav ul {
        flex-direction: column;
        gap: var(--space-2);
    }

    .main-nav a {
        display: block;
        padding: var(--space-3) var(--space-4);
        border-radius: var(--radius-md);
        border: 1px solid transparent;
        transition: background var(--transition-fast), border-color var(--transition-fast), transform var(--transition-fast);
    }

    .main-nav a:hover {
        background: rgba(255, 126, 61, 0.12);
        border-color: rgba(255, 126, 61, 0.25);
        transform: translateX(4px);
    }
}

main {
    display: block;
}

.section {
    padding: var(--space-section) var(--space-5);
}

.section-inner {
    max-width: var(--max-width);
    margin: 0 auto;
}

.section-title {
    font-family: var(--font-display);
    font-size: var(--fs-xl);
    font-weight: var(--fw-bold);
    line-height: var(--lh-tight);
    margin: 0 0 var(--space-4);
    letter-spacing: -0.02em;
}

.section-lead {
    color: var(--color-muted);
    max-width: 42rem;
    margin: 0 0 var(--space-6);
    font-size: var(--fs-md);
}

.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity var(--transition-slow), transform var(--transition-slow);
}

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

.hero-studio {
    padding-top: var(--space-8);
    padding-bottom: var(--space-8);
    position: relative;
    overflow: hidden;
    isolation: isolate;
}

.hero-canvas {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.hero-aurora {
    position: absolute;
    inset: -20% -30%;
    background: conic-gradient(from 120deg at 50% 50%, rgba(255, 126, 61, 0.35), rgba(255, 46, 178, 0.25), rgba(0, 229, 255, 0.3), rgba(207, 255, 31, 0.15), rgba(255, 126, 61, 0.35));
    animation: heroAuroraSpin 22s linear infinite;
    opacity: 0.65;
}

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

.hero-bg-mesh {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.mesh-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(52px);
    opacity: 0.5;
    animation: meshFloat 18s ease-in-out infinite;
}

.mesh-blob-a {
    width: min(55vw, 420px);
    height: min(55vw, 420px);
    top: -8%;
    left: -5%;
    background: radial-gradient(circle, rgba(255, 126, 61, 0.55) 0%, transparent 70%);
}

.mesh-blob-b {
    width: min(45vw, 360px);
    height: min(45vw, 360px);
    bottom: 5%;
    right: -8%;
    background: radial-gradient(circle, rgba(255, 46, 178, 0.45) 0%, transparent 68%);
    animation-delay: -6s;
}

.mesh-blob-c {
    width: min(35vw, 280px);
    height: min(35vw, 280px);
    top: 40%;
    left: 35%;
    background: radial-gradient(circle, rgba(0, 229, 255, 0.35) 0%, transparent 65%);
    animation-delay: -12s;
}

.mesh-blob-d {
    width: min(28vw, 220px);
    height: min(28vw, 220px);
    bottom: 25%;
    left: 8%;
    background: radial-gradient(circle, rgba(207, 255, 31, 0.28) 0%, transparent 62%);
    animation-delay: -9s;
}

@keyframes meshFloat {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    33% {
        transform: translate(3%, -4%) scale(1.05);
    }

    66% {
        transform: translate(-4%, 3%) scale(0.96);
    }
}

.hero-scanline {
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(255, 255, 255, 0.02) 2px, rgba(255, 255, 255, 0.02) 4px);
    opacity: 0.4;
    animation: scanDrift 10s linear infinite;
    mix-blend-mode: overlay;
}

@keyframes scanDrift {
    from {
        transform: translateY(0);
    }

    to {
        transform: translateY(24px);
    }
}

.hero-spark {
    position: absolute;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--color-white);
    box-shadow: 0 0 12px var(--color-aqua), 0 0 24px var(--color-fuchsia);
    animation: sparkTwinkle 2.5s ease-in-out infinite;
}

.hero-spark-1 {
    top: 18%;
    left: 12%;
    animation-delay: 0s;
}

.hero-spark-2 {
    top: 28%;
    right: 22%;
    animation-delay: 0.4s;
}

.hero-spark-3 {
    bottom: 35%;
    left: 20%;
    animation-delay: 0.8s;
}

.hero-spark-4 {
    bottom: 22%;
    right: 15%;
    animation-delay: 1.2s;
}

.hero-spark-5 {
    top: 55%;
    left: 45%;
    animation-delay: 1.6s;
}

@keyframes sparkTwinkle {

    0%,
    100% {
        opacity: 0.35;
        transform: scale(0.8);
    }

    50% {
        opacity: 1;
        transform: scale(1.15);
    }
}

.hero-title-line.hero-title-animated {
    animation: heroTitleIn 0.85s cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes heroTitleIn {
    from {
        opacity: 0;
        transform: translateY(22px) skewY(1deg);
    }

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

.hero-title-block {
    font-family: var(--font-display);
    font-size: var(--fs-hero);
    font-weight: var(--fw-bold);
    line-height: var(--lh-tight);
    margin: 0 0 var(--space-4);
    letter-spacing: -0.03em;
    display: flex;
    flex-direction: column;
    gap: var(--space-2);
}

.hero-title-line {
    display: block;
    color: var(--color-white);
}

.hero-title-accent {
    display: block;
    font-size: clamp(1.5rem, 1.1rem + 2vw, 2.35rem);
    line-height: 1.2;
    background: linear-gradient(105deg, var(--color-tangerine), var(--color-fuchsia) 40%, var(--color-aqua) 75%, var(--color-lime));
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    animation: heroGradientFlow 6s ease infinite, heroTitleAccentIn 1s cubic-bezier(0.22, 1, 0.36, 1) 0.15s both;
}

@keyframes heroGradientFlow {

    0%,
    100% {
        background-position: 0% center;
    }

    50% {
        background-position: 100% center;
    }
}

@keyframes heroTitleAccentIn {
    from {
        opacity: 0;
        transform: translateX(-18px);
        filter: blur(6px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
        filter: blur(0);
    }
}

.hero-kicker {
    display: inline-flex;
    align-items: center;
    gap: var(--space-3);
    margin-bottom: var(--space-4);
    padding: var(--space-2) var(--space-4);
    border-radius: var(--radius-full);
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(8px);
    animation: kickerFade 0.7s cubic-bezier(0.22, 1, 0.36, 1) both;
}

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

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

.hero-kicker-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--color-lime);
    box-shadow: 0 0 0 0 rgba(207, 255, 31, 0.5);
    animation: kickerPulse 2s ease-in-out infinite;
}

@keyframes kickerPulse {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(207, 255, 31, 0.45);
    }

    50% {
        box-shadow: 0 0 0 10px rgba(207, 255, 31, 0);
    }
}

.hero-kicker-text {
    font-size: var(--fs-xs);
    font-weight: var(--fw-semibold);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--color-muted);
}

.hero-stars-glow {
    animation: starsShimmer 3s ease-in-out infinite;
}

@keyframes starsShimmer {

    0%,
    100% {
        filter: drop-shadow(0 0 4px rgba(207, 255, 31, 0.3));
    }

    50% {
        filter: drop-shadow(0 0 10px rgba(0, 229, 255, 0.45));
    }
}

.badge--pop {
    animation: badgePop 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}

.badge--pop:nth-child(2) {
    animation-delay: 0.1s;
}

@keyframes badgePop {
    from {
        opacity: 0;
        transform: scale(0.85) rotate(-4deg);
    }

    to {
        opacity: 1;
        transform: scale(1) rotate(0);
    }
}

.hero-lead-reveal {
    animation: heroLeadIn 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.25s both;
}

@keyframes heroLeadIn {
    from {
        opacity: 0;
        transform: translateY(14px);
    }

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

.price-row-pulse {
    position: relative;
}

.price-currency {
    font-size: 0.65em;
    vertical-align: super;
    margin-right: 2px;
}

.price-tag {
    margin-left: var(--space-2);
    font-size: var(--fs-xs);
    font-weight: var(--fw-bold);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    padding: var(--space-1) var(--space-3);
    border-radius: var(--radius-full);
    background: linear-gradient(90deg, rgba(255, 46, 178, 0.35), rgba(0, 229, 255, 0.25));
    border: 1px solid rgba(255, 255, 255, 0.15);
    animation: priceTagGlow 2.5s ease-in-out infinite;
}

@keyframes priceTagGlow {

    0%,
    100% {
        box-shadow: 0 0 12px rgba(255, 46, 178, 0.2);
    }

    50% {
        box-shadow: 0 0 20px rgba(0, 229, 255, 0.35);
    }
}

.price-current {
    animation: pricePop 0.7s cubic-bezier(0.34, 1.56, 0.64, 1) 0.35s both;
}

@keyframes pricePop {
    from {
        opacity: 0;
        transform: scale(0.92);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

.hero-highlights .highlight-item {
    animation: highlightRise 0.65s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.hero-highlights .highlight-item:nth-child(1) {
    animation-delay: 0.4s;
}

.hero-highlights .highlight-item:nth-child(2) {
    animation-delay: 0.52s;
}

.hero-highlights .highlight-item:nth-child(3) {
    animation-delay: 0.64s;
}

@keyframes highlightRise {
    from {
        opacity: 0;
        transform: translateY(16px);
    }

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

.highlight-bounce:hover {
    animation: highlightWiggle 0.45s ease;
}

@keyframes highlightWiggle {

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

    40% {
        transform: translateY(-4px);
    }

    70% {
        transform: translateY(-2px);
    }
}

.hero-cta-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: var(--space-4);
    margin-top: var(--space-5);
    justify-content: inherit;
}

.hero-jump-btn {
    animation: ctaAppear 0.75s cubic-bezier(0.22, 1, 0.36, 1) 0.5s both;
}

@keyframes ctaAppear {
    from {
        opacity: 0;
        transform: translateY(12px) scale(0.96);
    }

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

.hero-secondary-link {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: var(--space-3);
    padding: var(--space-3) var(--space-4);
    font-size: var(--fs-sm);
    font-weight: var(--fw-semibold);
    color: var(--color-aqua);
    border-radius: var(--radius-full);
    border: 1px solid rgba(0, 229, 255, 0.35);
    background: rgba(0, 229, 255, 0.06);
    transition: color var(--transition-fast), transform var(--transition-fast), box-shadow var(--transition-fast);
    animation: ctaAppear 0.75s cubic-bezier(0.22, 1, 0.36, 1) 0.62s both;
}

.hero-secondary-link:hover {
    color: var(--color-lime);
    transform: translateY(-2px);
    box-shadow: 0 0 24px rgba(0, 229, 255, 0.25);
}

.hero-secondary-ring {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 2px solid transparent;
    border-top-color: var(--color-fuchsia);
    border-right-color: var(--color-tangerine);
    animation: ringSpin 3s linear infinite;
}

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

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-7);
    align-items: center;
    position: relative;
    z-index: 1;
}

@media (max-width: 960px) {
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-showcase {
        order: -1;
    }

    .hero-eyebrow,
    .hero-cta-row,
    .price-row {
        justify-content: center;
    }

    .hero-kicker {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-lead {
        margin-left: auto;
        margin-right: auto;
    }
}

.hero-showcase {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 420px;
}

.hero-orbit-ring {
    position: absolute;
    width: min(95%, 380px);
    height: min(95%, 380px);
    border-radius: 50%;
    border: 1px dashed rgba(255, 255, 255, 0.18);
    animation: orbitSpin 28s linear infinite;
}

.hero-orbit-ring--delayed {
    width: min(108%, 430px);
    height: min(108%, 430px);
    border-color: rgba(0, 229, 255, 0.22);
    animation-duration: 38s;
    animation-direction: reverse;
}

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

.hero-glow {
    position: absolute;
    inset: 10%;
    background: radial-gradient(circle, rgba(0, 229, 255, 0.28) 0%, transparent 65%);
    filter: blur(28px);
    z-index: 0;
}

.hero-glow-pulse {
    animation: glowPulse 4s ease-in-out infinite;
}

@keyframes glowPulse {

    0%,
    100% {
        opacity: 0.85;
        transform: scale(1);
    }

    50% {
        opacity: 1;
        transform: scale(1.06);
    }
}

.hero-chip {
    position: absolute;
    z-index: 2;
    font-size: var(--fs-xs);
    font-weight: var(--fw-bold);
    padding: var(--space-2) var(--space-3);
    border-radius: var(--radius-md);
    background: rgba(26, 15, 61, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    color: var(--color-lime);
    animation: chipFloat 5s ease-in-out infinite;
}

.hero-chip-a {
    top: 8%;
    right: 4%;
    animation-delay: 0s;
}

.hero-chip-b {
    bottom: 14%;
    left: 0;
    color: var(--color-aqua);
    animation-delay: -2.5s;
}

@keyframes chipFloat {

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

    50% {
        transform: translateY(-10px) rotate(2deg);
    }
}

.hero-product-img {
    position: relative;
    z-index: 1;
    filter: drop-shadow(var(--shadow-glow-tangerine));
    transition: transform var(--transition-base);
}

.hero-product-float {
    animation: productBob 5s ease-in-out infinite;
}

@keyframes productBob {

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

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

.tilt-card {
    transform-style: preserve-3d;
    perspective: 1000px;
}

.tilt-card-inner {
    transition: transform var(--transition-base);
    will-change: transform;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: var(--space-3);
    margin-bottom: var(--space-4);
    flex-wrap: wrap;
    justify-content: inherit;
}

.stars {
    color: var(--color-lime);
    letter-spacing: 2px;
    font-size: var(--fs-lg);
}

.trust-badges {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-2);
}

.badge {
    font-size: var(--fs-xs);
    font-weight: var(--fw-semibold);
    padding: var(--space-1) var(--space-3);
    border-radius: var(--radius-full);
    background: rgba(207, 255, 31, 0.15);
    border: 1px solid rgba(207, 255, 31, 0.35);
    color: var(--color-lime);
}

.hero-lead {
    color: var(--color-muted);
    font-size: var(--fs-lg);
    margin: 0 0 var(--space-5);
    max-width: 36rem;
}

.price-row {
    display: flex;
    align-items: baseline;
    gap: var(--space-3);
    margin-bottom: var(--space-4);
    flex-wrap: wrap;
    justify-content: inherit;
}

.price-current {
    font-size: clamp(2rem, 1.5rem + 1.5vw, 2.75rem);
    font-weight: var(--fw-bold);
    color: var(--color-tangerine);
}

.price-old {
    font-size: var(--fs-lg);
    color: var(--color-muted);
    text-decoration: line-through;
}

.highlights {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-3);
    margin-bottom: var(--space-6);
    text-align: left;
}

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

.highlight-item {
    padding: var(--space-3);
    border-radius: var(--radius-md);
    background: var(--color-surface);
    border: 1px solid rgba(255, 255, 255, 0.08);
    font-size: var(--fs-sm);
    transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.highlight-item:hover {
    border-color: rgba(0, 229, 255, 0.4);
    box-shadow: var(--shadow-glow-aqua);
}

.order-card {
    padding: var(--space-5);
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(12px);
    box-shadow: var(--shadow-md);
}

.order-card h2 {
    font-size: var(--fs-lg);
    margin: 0 0 var(--space-4);
}

.form-group {
    margin-bottom: var(--space-4);
}

.form-group label {
    display: block;
    font-size: var(--fs-sm);
    font-weight: var(--fw-semibold);
    margin-bottom: var(--space-2);
    color: var(--color-muted);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: var(--space-3) var(--space-4);
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: rgba(26, 15, 61, 0.6);
    color: var(--color-white);
    font-family: inherit;
    font-size: var(--fs-sm);
    transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--color-aqua);
    box-shadow: 0 0 0 3px rgba(0, 229, 255, 0.2);
    outline: none;
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
}

.field-error {
    font-size: var(--fs-xs);
    color: #ff6b8a;
    margin-top: var(--space-2);
    min-height: 1.1em;
}

.checkbox-row {
    display: flex;
    align-items: flex-start;
    gap: var(--space-3);
    font-size: var(--fs-sm);
    color: var(--color-muted);
}

.checkbox-row input {
    margin-top: 4px;
    accent-color: var(--color-tangerine);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-2);
    padding: var(--space-4) var(--space-6);
    border-radius: var(--radius-md);
    font-weight: var(--fw-bold);
    font-size: var(--fs-md);
    border: none;
    cursor: pointer;
    font-family: inherit;
    transition: transform var(--transition-fast), box-shadow var(--transition-fast), opacity var(--transition-fast);
}

.btn-primary {
    background: linear-gradient(135deg, var(--color-tangerine), var(--color-fuchsia));
    color: var(--color-white);
    box-shadow: var(--shadow-glow-tangerine), var(--shadow-glow-fuchsia);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 50px rgba(255, 126, 61, 0.55), 0 0 40px rgba(255, 46, 178, 0.45);
}

.btn-primary:disabled {
    opacity: 0.55;
    cursor: not-allowed;
    transform: none;
}

.btn-magnetic {
    position: relative;
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--color-aqua);
    color: var(--color-aqua);
}

.btn-outline:hover {
    background: rgba(0, 229, 255, 0.12);
    transform: translateY(-2px);
}

.btn-block {
    width: 100%;
}

.social-proof {
    background: linear-gradient(180deg, transparent, rgba(255, 46, 178, 0.08));
}

.proof-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: var(--space-5);
    align-items: start;
}

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

.proof-stat {
    text-align: center;
    padding: var(--space-5);
    border-radius: var(--radius-lg);
    background: var(--color-surface);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.proof-stat strong {
    display: block;
    font-size: var(--fs-xl);
    color: var(--color-lime);
}

.review-preview-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-4);
    margin-top: var(--space-6);
}

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

.review-card {
    padding: var(--space-4);
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.review-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-glow-fuchsia);
}

.bento-categories {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: auto auto;
    gap: var(--space-4);
}

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

@media (max-width: 520px) {
    .bento-categories {
        grid-template-columns: 1fr;
    }
}

.bento-cat-a {
    grid-column: span 2;
    grid-row: span 2;
    min-height: 220px;
}

.bento-cat-b {
    grid-column: span 2;
}

.bento-cat-c,
.bento-cat-d {
    min-height: 140px;
}

.cat-card {
    border-radius: var(--radius-lg);
    padding: var(--space-5);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.cat-card:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow-glow-tangerine);
}

.cat-card h3 {
    margin: 0 0 var(--space-2);
    font-size: var(--fs-lg);
}

.cat-energy {
    background: linear-gradient(145deg, rgba(255, 126, 61, 0.35), rgba(26, 15, 61, 0.9));
}

.cat-muscle {
    background: linear-gradient(145deg, rgba(0, 229, 255, 0.25), rgba(26, 15, 61, 0.95));
}

.cat-immunity {
    background: linear-gradient(145deg, rgba(255, 46, 178, 0.3), rgba(26, 15, 61, 0.95));
}

.cat-vitamins {
    background: linear-gradient(145deg, rgba(207, 255, 31, 0.22), rgba(26, 15, 61, 0.95));
}

.ingredient-spotlight {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--space-4);
}

.ingredient-card {
    border-radius: var(--radius-md);
    background: var(--color-surface);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: var(--space-5);
    position: relative;
    overflow: hidden;
    cursor: default;
    transition: transform var(--transition-base), border-color var(--transition-fast);
}

.ingredient-card:hover {
    transform: translateY(-6px);
    border-color: rgba(0, 229, 255, 0.45);
}

.ingredient-card .ingredient-front,
.ingredient-card .ingredient-back {
    transition: opacity var(--transition-base), transform var(--transition-base);
}

.ingredient-card .ingredient-back {
    position: absolute;
    inset: 0;
    padding: var(--space-5);
    background: rgba(26, 15, 61, 0.92);
    opacity: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: var(--fs-sm);
    color: var(--color-muted);
}

.ingredient-card:hover .ingredient-front {
    opacity: 0;
}

.ingredient-card:hover .ingredient-back {
    opacity: 1;
}

.trust-science {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-5);
}

@media (max-width: 768px) {
    .trust-science {
        grid-template-columns: 1fr;
    }
}

.trust-item {
    text-align: center;
    padding: var(--space-6);
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: box-shadow var(--transition-base), transform var(--transition-base);
}

.trust-item:hover {
    box-shadow: var(--shadow-glow-aqua);
    transform: translateY(-4px);
}

.trust-item svg {
    width: 72px;
    height: 72px;
    margin: 0 auto var(--space-4);
}

.trust-item h3 {
    margin: 0 0 var(--space-2);
    font-size: var(--fs-md);
}

.trust-item p {
    margin: 0;
    font-size: var(--fs-sm);
    color: var(--color-muted);
}

.icon-pulse {
    animation: iconPulse 2.4s ease-in-out infinite;
}

@keyframes iconPulse {

    0%,
    100% {
        filter: drop-shadow(0 0 0 rgba(0, 229, 255, 0));
    }

    50% {
        filter: drop-shadow(0 0 12px rgba(0, 229, 255, 0.6));
    }
}

.rhythm-section {
    position: relative;
    overflow: hidden;
}

.rhythm-section::before {
    content: "";
    position: absolute;
    width: 400px;
    height: 400px;
    top: 10%;
    right: -120px;
    background: radial-gradient(circle, rgba(207, 255, 31, 0.12) 0%, transparent 65%);
    pointer-events: none;
    animation: rhythmGlow 12s ease-in-out infinite;
}

@keyframes rhythmGlow {

    0%,
    100% {
        opacity: 0.6;
        transform: scale(1);
    }

    50% {
        opacity: 1;
        transform: scale(1.08);
    }
}

.rhythm-shell {
    border-radius: var(--radius-xl);
    padding: var(--space-5);
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: var(--shadow-md), inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.rhythm-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-2);
    margin-bottom: var(--space-5);
}

.rhythm-tab {
    flex: 1 1 auto;
    min-width: 120px;
    padding: var(--space-3) var(--space-4);
    border-radius: var(--radius-full);
    border: 2px solid rgba(255, 255, 255, 0.12);
    background: rgba(26, 15, 61, 0.5);
    color: var(--color-muted);
    font-family: inherit;
    font-size: var(--fs-sm);
    font-weight: var(--fw-semibold);
    cursor: pointer;
    transition: color var(--transition-fast), border-color var(--transition-fast), box-shadow var(--transition-fast), transform var(--transition-fast);
}

.rhythm-tab:hover {
    color: var(--color-white);
    border-color: rgba(0, 229, 255, 0.4);
    transform: translateY(-2px);
}

.rhythm-tab.is-active {
    color: var(--color-indigo);
    background: linear-gradient(135deg, var(--color-tangerine), var(--color-fuchsia));
    border-color: transparent;
    box-shadow: var(--shadow-glow-tangerine);
}

.rhythm-panels {
    position: relative;
    min-height: 280px;
}

.rhythm-panel {
    display: none;
    gap: var(--space-6);
    align-items: center;
    grid-template-columns: minmax(160px, 220px) 1fr;
    animation: panelIn 0.45s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.rhythm-panel.is-visible {
    display: grid;
}

@keyframes panelIn {
    from {
        opacity: 0;
        transform: translateY(16px);
    }

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

.rhythm-visual {
    display: flex;
    align-items: center;
    justify-content: center;
}

.rhythm-visual svg {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 0 24px rgba(0, 229, 255, 0.25));
    animation: svgPulse 4s ease-in-out infinite;
}

@keyframes svgPulse {

    0%,
    100% {
        filter: drop-shadow(0 0 20px rgba(0, 229, 255, 0.2));
    }

    50% {
        filter: drop-shadow(0 0 32px rgba(255, 126, 61, 0.35));
    }
}

.rhythm-copy h3 {
    margin: 0 0 var(--space-3);
    font-size: var(--fs-lg);
    color: var(--color-lime);
}

.rhythm-copy p {
    margin: 0 0 var(--space-4);
    color: var(--color-muted);
}

.rhythm-list {
    margin: 0;
    padding-left: var(--space-5);
    color: var(--color-muted);
    font-size: var(--fs-sm);
}

.rhythm-list li {
    margin-bottom: var(--space-2);
}

@media (max-width: 640px) {
    .rhythm-panel.is-visible {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .rhythm-visual {
        order: -1;
    }

    .rhythm-list {
        text-align: left;
    }
}

.live-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-4);
    margin-top: var(--space-7);
}

.live-stat {
    text-align: center;
    padding: var(--space-5);
    border-radius: var(--radius-lg);
    background: linear-gradient(145deg, rgba(255, 126, 61, 0.12), rgba(26, 15, 61, 0.85));
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.live-stat:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-glow-aqua);
}

.live-stat-value {
    display: block;
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: var(--fw-bold);
    background: linear-gradient(90deg, var(--color-tangerine), var(--color-aqua));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    line-height: 1.1;
}

.live-stat-label {
    display: block;
    margin-top: var(--space-2);
    font-size: var(--fs-xs);
    color: var(--color-muted);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.live-stat-value.live-stat-text {
    font-size: clamp(1.15rem, 2.5vw, 1.5rem);
    background: none;
    -webkit-background-clip: unset;
    background-clip: unset;
    color: var(--color-lime);
    text-transform: none;
    letter-spacing: -0.02em;
}

.live-stat--lite .live-stat-label {
    text-transform: none;
    letter-spacing: 0.02em;
    font-size: var(--fs-sm);
    font-weight: var(--fw-normal);
    line-height: 1.5;
}

@media (max-width: 640px) {
    .live-stats {
        grid-template-columns: 1fr;
    }
}

.reveal-stagger>* {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.55s cubic-bezier(0.22, 1, 0.36, 1), transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal-stagger.is-visible>* {
    opacity: 1;
    transform: translateY(0);
}

.reveal-stagger.is-visible>*:nth-child(1) {
    transition-delay: 0.05s;
}

.reveal-stagger.is-visible>*:nth-child(2) {
    transition-delay: 0.12s;
}

.reveal-stagger.is-visible>*:nth-child(3) {
    transition-delay: 0.19s;
}

.reveal-stagger.is-visible>*:nth-child(4) {
    transition-delay: 0.26s;
}

.bento-benefits {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    grid-auto-rows: minmax(140px, auto);
    gap: var(--space-4);
}

@media (max-width: 1024px) {
    .bento-benefits {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 520px) {
    .bento-benefits {
        grid-template-columns: 1fr;
    }
}

.benefit-span-2 {
    grid-column: span 2;
}

.benefit-span-3 {
    grid-column: span 3;
}

.benefit-span-4 {
    grid-column: span 4;
}

.benefit-span-6 {
    grid-column: span 6;
}

@media (max-width: 1024px) {

    .benefit-span-2,
    .benefit-span-3,
    .benefit-span-4,
    .benefit-span-6 {
        grid-column: span 2;
    }
}

@media (max-width: 520px) {

    .benefit-span-2,
    .benefit-span-3,
    .benefit-span-4,
    .benefit-span-6 {
        grid-column: span 1;
    }
}

.benefit-card {
    padding: var(--space-5);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.04);
    transition: transform var(--transition-base), border-color var(--transition-fast);
}

.benefit-card:hover {
    transform: translateY(-4px) rotateX(2deg);
    border-color: rgba(207, 255, 31, 0.35);
}

.benefit-icon {
    font-size: 1.75rem;
    margin-bottom: var(--space-3);
}

.product-overview-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-7);
    align-items: center;
}

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

.specs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: var(--space-4);
}

.spec-card {
    padding: var(--space-5);
    border-radius: var(--radius-md);
    background: var(--color-surface);
    border: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    gap: var(--space-4);
    align-items: flex-start;
    transition: box-shadow var(--transition-fast);
}

.spec-card:hover {
    box-shadow: var(--shadow-glow-aqua);
}

.spec-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.spec-card .spec-icon {
    width: 28px;
    height: 28px;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-4);
}

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

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

.step-card {
    text-align: center;
    padding: var(--space-5);
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    position: relative;
    transition: transform var(--transition-base);
}

.step-card:hover {
    transform: translateY(-6px);
}

.step-num {
    width: 40px;
    height: 40px;
    margin: 0 auto var(--space-3);
    border-radius: var(--radius-full);
    background: linear-gradient(135deg, var(--color-fuchsia), var(--color-aqua));
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: var(--fw-bold);
    color: var(--color-indigo);
}

.ingredients-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--space-4);
}

.ingredient-simple {
    padding: var(--space-4);
    border-radius: var(--radius-md);
    background: var(--color-surface);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.ingredient-simple h3 {
    margin: 0 0 var(--space-2);
    font-size: var(--fs-md);
    color: var(--color-aqua);
}

.instructions-list {
    counter-reset: step;
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: var(--space-4);
}

.instructions-list li {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: var(--space-4);
    align-items: start;
    padding: var(--space-4);
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.instructions-list li::before {
    counter-increment: step;
    content: counter(step);
    width: 36px;
    height: 36px;
    border-radius: var(--radius-full);
    background: var(--color-tangerine);
    color: var(--color-indigo);
    font-weight: var(--fw-bold);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-4);
}

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

.review-full {
    padding: var(--space-5);
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.faq-list {
    max-width: 720px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.faq-trigger {
    width: 100%;
    text-align: left;
    padding: var(--space-4) 0;
    background: none;
    border: none;
    color: var(--color-white);
    font-family: inherit;
    font-size: var(--fs-md);
    font-weight: var(--fw-semibold);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: var(--space-3);
}

.faq-trigger span:last-child {
    font-size: 1.5rem;
    color: var(--color-aqua);
    transition: transform var(--transition-fast);
}

.faq-item.is-open .faq-trigger span:last-child {
    transform: rotate(45deg);
}

.faq-panel {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-base);
}

.faq-panel-inner {
    padding-bottom: var(--space-4);
    color: var(--color-muted);
    font-size: var(--fs-sm);
}

.final-cta {
    text-align: center;
    padding: var(--space-8) var(--space-5);
    border-radius: var(--radius-xl);
    background: linear-gradient(135deg, rgba(255, 126, 61, 0.25), rgba(255, 46, 178, 0.2), rgba(0, 229, 255, 0.15));
    border: 1px solid rgba(255, 255, 255, 0.15);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-4);
}

.cta-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--space-4);
    width: 100%;
}

.disclaimer-block {
    padding: var(--space-6);
    border-radius: var(--radius-lg);
    background: rgba(0, 0, 0, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.1);
    font-size: var(--fs-sm);
    color: var(--color-muted);
    margin-top: var(--space-6);
}

.disclaimer-block strong {
    color: var(--color-white);
}

.compliance-panel {
    padding: var(--space-7);
    border-radius: var(--radius-xl);
    background: rgba(13, 6, 24, 0.55);
    border: 1px solid rgba(0, 229, 255, 0.22);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04);
}

.compliance-intro {
    color: var(--color-muted);
    font-size: var(--fs-sm);
    margin: 0 0 var(--space-5);
    max-width: 52rem;
    line-height: 1.65;
}

.compliance-list {
    margin: 0;
    padding-left: var(--space-5);
    color: var(--color-muted);
    font-size: var(--fs-sm);
    line-height: 1.65;
}

.compliance-list li {
    margin-bottom: var(--space-4);
}

.compliance-list a {
    word-break: break-word;
}

.site-footer {
    padding: var(--space-8) var(--space-5) var(--space-6);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(13, 6, 24, 0.85);
}

.footer-grid {
    max-width: var(--max-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: var(--space-7);
}

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

.footer-legal-box {
    grid-column: 1 / -1;
    padding: var(--space-5);
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    font-size: var(--fs-xs);
    color: var(--color-muted);
    line-height: 1.65;
}

.footer-legal-box p {
    margin: 0 0 var(--space-3);
}

.footer-legal-box p:last-child {
    margin-bottom: 0;
}

.footer-brand {
    font-weight: var(--fw-bold);
    font-size: var(--fs-lg);
    margin-bottom: var(--space-3);
}

.footer-links h3 {
    font-size: var(--fs-sm);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--color-muted);
    margin: 0 0 var(--space-3);
}

.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: var(--space-2);
}

.footer-links a {
    color: var(--color-muted);
    font-size: var(--fs-sm);
}

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

.footer-copy {
    margin-top: var(--space-6);
    padding-top: var(--space-5);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    font-size: var(--fs-xs);
    color: var(--color-muted);
    text-align: center;
    max-width: var(--max-width);
    margin-left: auto;
    margin-right: auto;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 2000;
    padding: var(--space-4);
    transform: translateY(110%);
    transition: transform var(--transition-base);
}

.cookie-banner.is-visible {
    transform: translateY(0);
}

.cookie-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: var(--space-5);
    border-radius: var(--radius-lg);
    background: rgba(26, 15, 61, 0.85);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: var(--shadow-md);
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-4);
    align-items: center;
    justify-content: space-between;
}

.cookie-text {
    flex: 1;
    min-width: 240px;
    font-size: var(--fs-sm);
    color: var(--color-muted);
}

.cookie-actions {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-3);
}

.modal-overlay {
    position: fixed;
    inset: 0;
    z-index: 3000;
    background: rgba(13, 6, 24, 0.75);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-5);
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition-base);
}

.modal-overlay.is-open {
    opacity: 1;
    pointer-events: auto;
}

.modal-panel {
    width: min(100%, 480px);
    max-height: 90vh;
    overflow-y: auto;
    padding: var(--space-6);
    border-radius: var(--radius-lg);
    background: rgba(26, 15, 61, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: var(--shadow-md);
}

.modal-panel h2 {
    margin: 0 0 var(--space-4);
    font-size: var(--fs-lg);
}

.cookie-setting-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: var(--space-4);
    padding: var(--space-3) 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-size: var(--fs-sm);
}

.cookie-setting-row small {
    display: block;
    color: var(--color-muted);
    margin-top: var(--space-1);
}

.switch {
    position: relative;
    width: 48px;
    height: 26px;
    flex-shrink: 0;
}

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

.switch-slider {
    position: absolute;
    cursor: pointer;
    inset: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-full);
    transition: background var(--transition-fast);
}

.switch-slider::before {
    content: "";
    position: absolute;
    height: 20px;
    width: 20px;
    left: 3px;
    bottom: 3px;
    background: var(--color-white);
    border-radius: 50%;
    transition: transform var(--transition-fast);
}

.switch input:checked+.switch-slider {
    background: linear-gradient(90deg, var(--color-tangerine), var(--color-fuchsia));
}

.switch input:checked+.switch-slider::before {
    transform: translateX(22px);
}

.switch input:disabled+.switch-slider {
    opacity: 0.6;
    cursor: not-allowed;
}

.modal-actions {
    display: flex;
    gap: var(--space-3);
    margin-top: var(--space-5);
    flex-wrap: wrap;
}

.policy-page {
    padding-top: var(--space-6);
    padding-bottom: var(--space-9);
}

.policy-page h1 {
    font-size: var(--fs-xl);
    margin-bottom: var(--space-5);
}

.policy-page h2 {
    font-size: var(--fs-lg);
    margin-top: var(--space-6);
    margin-bottom: var(--space-3);
}

.policy-page p,
.policy-page ul {
    color: var(--color-muted);
    margin: 0 0 var(--space-4);
}

.policy-page ul {
    padding-left: var(--space-5);
}

.policy-page li {
    margin-bottom: var(--space-2);
}

.thank-you-hero {
    text-align: center;
    padding: var(--space-9) var(--space-5);
}

.thank-you-hero h1 {
    font-size: var(--fs-xl);
    margin-bottom: var(--space-4);
}

.legal-body {
    background: linear-gradient(180deg, #120a28 0%, var(--color-indigo) 35%, #0a0514 100%);
}

.legal-page {
    padding: var(--space-7) var(--space-5) var(--space-9);
    max-width: 1100px;
    margin: 0 auto;
}

.legal-hero {
    position: relative;
    padding: var(--space-8) var(--space-6);
    margin-bottom: var(--space-7);
    border-radius: var(--radius-xl);
    background: linear-gradient(135deg, rgba(255, 126, 61, 0.18), rgba(255, 46, 178, 0.12), rgba(0, 229, 255, 0.1));
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: var(--shadow-md), inset 0 1px 0 rgba(255, 255, 255, 0.08);
    overflow: hidden;
}

.legal-hero::after {
    content: "";
    position: absolute;
    top: -40%;
    right: -15%;
    width: 280px;
    height: 280px;
    background: radial-gradient(circle, rgba(207, 255, 31, 0.12) 0%, transparent 65%);
    pointer-events: none;
}

.legal-hero h1 {
    position: relative;
    margin: 0 0 var(--space-4);
    font-size: var(--fs-xl);
    z-index: 1;
}

.legal-date {
    position: relative;
    margin: 0;
    font-size: var(--fs-sm);
    color: var(--color-lime);
    font-weight: var(--fw-semibold);
    letter-spacing: 0.02em;
    z-index: 1;
}

.legal-layout {
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: var(--space-7);
    align-items: start;
}

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

.legal-toc {
    position: sticky;
    top: calc(var(--nav-height) + var(--space-4));
    padding: var(--space-5);
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    font-size: var(--fs-sm);
}

.legal-toc strong {
    display: block;
    margin-bottom: var(--space-3);
    color: var(--color-aqua);
    font-size: var(--fs-xs);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

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

.legal-toc a {
    display: block;
    padding: var(--space-2) 0;
    color: var(--color-muted);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    transition: color var(--transition-fast), padding-left var(--transition-fast);
}

.legal-toc a:hover {
    color: var(--color-white);
    padding-left: var(--space-2);
}

.legal-article {
    padding: var(--space-6);
    border-radius: var(--radius-xl);
    background: rgba(13, 6, 24, 0.45);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.legal-article h2 {
    margin: var(--space-7) 0 var(--space-3);
    font-size: var(--fs-lg);
    color: var(--color-white);
    scroll-margin-top: calc(var(--nav-height) + var(--space-3));
}

.legal-article h2:first-of-type {
    margin-top: 0;
}

.legal-article h3 {
    margin: var(--space-5) 0 var(--space-2);
    font-size: var(--fs-md);
    color: var(--color-aqua);
}

.legal-article p,
.legal-article ul {
    color: var(--color-muted);
    margin: 0 0 var(--space-4);
    font-size: var(--fs-sm);
    line-height: 1.7;
}

.legal-article ul {
    padding-left: var(--space-5);
}

.legal-article li {
    margin-bottom: var(--space-2);
}

.legal-callout {
    margin: var(--space-5) 0;
    padding: var(--space-4) var(--space-5);
    border-radius: var(--radius-md);
    border-left: 4px solid var(--color-tangerine);
    background: rgba(255, 126, 61, 0.1);
    font-size: var(--fs-sm);
    color: var(--color-muted);
}

.legal-grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-4);
}

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

.thank-layout {
    max-width: 720px;
    margin: 0 auto;
    padding: var(--space-8) var(--space-5);
}

.thank-card {
    padding: var(--space-8);
    border-radius: var(--radius-xl);
    text-align: center;
    background: linear-gradient(160deg, rgba(255, 126, 61, 0.15), rgba(26, 15, 61, 0.9));
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: var(--shadow-glow-tangerine);
    animation: thankPop 0.7s cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes thankPop {
    from {
        opacity: 0;
        transform: scale(0.94) translateY(20px);
    }

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

.thank-card h1 {
    margin: 0 0 var(--space-4);
    font-size: var(--fs-xl);
}

.thank-checklist {
    text-align: left;
    max-width: 420px;
    margin: var(--space-6) auto;
    padding: var(--space-5);
    border-radius: var(--radius-lg);
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.thank-checklist li {
    margin-bottom: var(--space-3);
    padding-left: var(--space-5);
    position: relative;
    color: var(--color-muted);
    font-size: var(--fs-sm);
}

.thank-checklist li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--color-lime);
    font-weight: var(--fw-bold);
}

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

    .mesh-blob,
    .rhythm-section::before,
    .rhythm-visual svg,
    .icon-pulse,
    .hero-aurora,
    .hero-scanline,
    .hero-spark,
    .hero-orbit-ring,
    .hero-orbit-ring--delayed,
    .hero-secondary-ring,
    .hero-chip,
    .hero-product-float,
    .hero-title-accent,
    .hero-kicker-dot,
    .hero-stars-glow,
    .price-tag,
    .badge--pop,
    .hero-lead-reveal,
    .price-current,
    .hero-jump-btn,
    .hero-secondary-link,
    .hero-highlights .highlight-item,
    .hero-title-line.hero-title-animated {
        animation: none !important;
    }

    .hero-title-line,
    .hero-title-accent,
    .hero-lead-reveal {
        opacity: 1 !important;
        transform: none !important;
        filter: none !important;
    }

    .reveal,
    .reveal-stagger>* {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }

    .thank-card {
        animation: none !important;
    }
}

@media (max-width: 320px) {
    :root {
        --nav-height: 64px;
        --space-section: 2.25rem;
    }

    html {
        font-size: 15px;
    }

    .header-inner {
        padding-left: 0.65rem;
        padding-right: 0.65rem;
        gap: 0.5rem;
    }

    .brand {
        font-size: 0.72rem;
        line-height: 1.25;
        max-width: calc(100% - 56px);
    }

    .nav-toggle {
        width: 44px;
        height: 44px;
        flex-shrink: 0;
    }

    .section {
        padding-left: 0.65rem;
        padding-right: 0.65rem;
    }

    .section-inner {
        padding-left: 0;
        padding-right: 0;
    }

    .hero-grid {
        gap: var(--space-5);
    }

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

    .hero-jump-btn,
    .hero-secondary-link {
        width: 100%;
        justify-content: center;
    }

    .hero-showcase {
        min-height: 300px;
    }

    .hero-chip {
        font-size: 0.65rem;
        padding: 0.35rem 0.5rem;
    }

    .price-row {
        justify-content: center;
    }

    .highlights {
        grid-template-columns: 1fr;
    }

    .bento-categories {
        display: grid;
        grid-template-columns: minmax(0, 1fr);
        grid-template-rows: none;
        gap: 0.65rem;
        width: 100%;
        max-width: 100%;
        min-width: 0;
    }

    .bento-cat-a,
    .bento-cat-b,
    .bento-cat-c,
    .bento-cat-d {
        grid-column: 1 / -1;
        grid-row: auto;
        min-height: 0;
    }

    .bento-cat-a {
        min-height: 150px;
    }

    .bento-cat-b {
        min-height: 118px;
    }

    .bento-cat-c,
    .bento-cat-d {
        min-height: 112px;
    }

    .bento-categories .cat-card {
        min-width: 0;
        width: 100%;
        padding: 0.85rem 0.7rem;
        border-radius: 12px;
    }

    .bento-categories .cat-card h3 {
        font-size: 1.02rem;
        line-height: 1.2;
        margin-bottom: 0.35rem;
    }

    .bento-categories .cat-card p {
        font-size: 0.8125rem;
        line-height: 1.45;
        margin: 0;
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
    }

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

    .rhythm-tabs {
        flex-direction: column;
    }

    .rhythm-tab {
        min-width: 0;
        width: 100%;
        text-align: center;
    }

    .rhythm-shell {
        padding: var(--space-4);
    }

    .live-stat-value {
        font-size: 1.65rem;
    }

    .cookie-inner {
        padding: var(--space-4);
        flex-direction: column;
        align-items: stretch;
    }

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

    .cookie-actions .btn {
        width: 100%;
    }

    .btn {
        padding: 0.85rem 1rem;
        font-size: 0.9rem;
    }

    .footer-grid {
        gap: var(--space-5);
    }

    .legal-hero {
        padding: var(--space-5) var(--space-4);
    }

    .legal-article {
        padding: var(--space-4);
    }

    .legal-toc {
        position: static;
    }

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

    .modal-panel {
        padding: var(--space-4);
    }

    .faq-trigger {
        font-size: 0.9rem;
        padding: var(--space-3) 0;
    }
}