:root {
    --color-solar: #ff7b00;
    --color-hyper: #ff1e9e;
    --color-ice: #2dffdf;
    --color-lime: #cfff00;
    --color-cosmic: #120a2a;
    --color-cosmic-mid: #1e1250;
    --color-white: #ffffff;
    --color-muted: rgba(255, 255, 255, 0.72);
    --color-surface: rgba(255, 255, 255, 0.06);
    --font-sans: "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
    --font-display: "Segoe UI", system-ui, sans-serif;
    --fs-xs: clamp(0.75rem, 0.7rem + 0.2vw, 0.85rem);
    --fs-sm: clamp(0.875rem, 0.8rem + 0.35vw, 1rem);
    --fs-md: clamp(1rem, 0.92rem + 0.4vw, 1.125rem);
    --fs-lg: clamp(1.25rem, 1.05rem + 0.9vw, 1.5rem);
    --fs-xl: clamp(1.75rem, 1.35rem + 1.8vw, 2.5rem);
    --fs-hero: clamp(2.25rem, 1.6rem + 3vw, 3.75rem);
    --shadow-sm: 0 4px 14px rgba(18, 10, 42, 0.25);
    --shadow-md: 0 12px 40px rgba(18, 10, 42, 0.45);
    --shadow-glow-orange: 0 0 40px rgba(255, 123, 0, 0.45), 0 0 80px rgba(255, 30, 158, 0.2);
    --shadow-glow-mint: 0 0 32px rgba(45, 255, 223, 0.35);
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 22px;
    --radius-xl: 32px;
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2.5rem;
    --space-xl: 4rem;
    --space-2xl: 6rem;
    --transition-fast: 0.18s ease;
    --transition-base: 0.28s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    --header-h: 76px;
    --glass-bg: rgba(18, 10, 42, 0.55);
    --glass-border: rgba(255, 255, 255, 0.12);
}

*,
*::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: 1.6;
    color: var(--color-white);
    background: radial-gradient(120% 80% at 10% 0%, var(--color-cosmic-mid) 0%, var(--color-cosmic) 45%, #0a0618 100%);
    min-height: 100vh;
    overflow-x: hidden;
}

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

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

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

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

.skip-link {
    position: absolute;
    left: -9999px;
    z-index: 10000;
    padding: var(--space-xs) var(--space-sm);
    background: var(--color-solar);
    color: var(--color-cosmic);
    font-weight: 700;
}

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

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

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    height: var(--header-h);
    display: flex;
    align-items: center;
    backdrop-filter: blur(16px) saturate(140%);
    -webkit-backdrop-filter: blur(16px) saturate(140%);
    background: var(--glass-bg);
    border-bottom: 1px solid var(--glass-border);
    box-shadow: var(--shadow-sm);
}

.header-inner {
    width: min(1200px, 100% - 2rem);
    margin-inline: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-md);
}

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

.brand span {
    background: linear-gradient(90deg, var(--color-solar), var(--color-hyper), var(--color-ice));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

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

.nav-list a {
    color: var(--color-muted);
    font-weight: 600;
    font-size: var(--fs-sm);
}

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

main {
    display: block;
}

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

.section--tight {
    padding-block: var(--space-lg);
}

.container {
    width: min(1200px, 100% - 2rem);
    margin-inline: auto;
}

.hero--cinema {
    padding-block: 0;
    min-height: min(92vh, 1100px);
    display: flex;
    flex-direction: column;
}

.hero__stage {
    position: relative;
    flex: 1;
    display: flex;
    flex-direction: column;
    padding-block: var(--space-2xl) var(--space-xl);
    overflow: hidden;
}

.hero {
    position: relative;
    padding-block: var(--space-2xl) var(--space-xl);
    overflow: hidden;
}

.hero--cinema.hero {
    padding-block: 0;
}

.hero__bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 90% 70% at 50% -15%, rgba(255, 123, 0, 0.42) 0%, transparent 55%),
        radial-gradient(ellipse 55% 45% at 110% 25%, rgba(255, 30, 158, 0.28) 0%, transparent 52%),
        radial-gradient(ellipse 50% 50% at -10% 70%, rgba(45, 255, 223, 0.18) 0%, transparent 48%),
        radial-gradient(ellipse 80% 60% at 50% 100%, rgba(18, 10, 42, 0.9) 0%, transparent 55%);
    pointer-events: none;
    animation: heroBgPulse 12s ease-in-out infinite alternate;
}

@keyframes heroBgPulse {
    0% {
        opacity: 1;
        filter: saturate(1);
    }

    100% {
        opacity: 0.92;
        filter: saturate(1.15);
    }
}

.hero__grid-lines {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(45, 255, 223, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 30, 158, 0.035) 1px, transparent 1px);
    background-size: 48px 48px;
    mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, black 20%, transparent 75%);
    animation: heroGridDrift 24s linear infinite;
    pointer-events: none;
}

@keyframes heroGridDrift {
    0% {
        transform: translate(0, 0);
    }

    100% {
        transform: translate(-48px, -48px);
    }
}

.hero__noise {
    position: absolute;
    inset: 0;
    opacity: 0.035;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    animation: heroNoiseShift 0.4s steps(2) infinite;
    pointer-events: none;
}

@keyframes heroNoiseShift {

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

    50% {
        transform: translate(-2%, 2%);
    }
}

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

.hero__column--copy {
    display: flex;
    flex-direction: column;
    gap: 0;
}

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

    .hero--cinema {
        min-height: auto;
    }
}

.hero__kicker {
    margin: 0 0 var(--space-sm);
    overflow: hidden;
}

.hero__kicker-track {
    display: inline-block;
    padding: 0.4rem 0.9rem;
    border-radius: 999px;
    font-size: var(--fs-xs);
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--color-cosmic);
    background: linear-gradient(110deg, var(--color-lime), var(--color-ice), var(--color-hyper));
    background-size: 200% 100%;
    animation: heroKickerShimmer 4s ease infinite;
    box-shadow: 0 0 24px rgba(207, 255, 0, 0.25);
}

@keyframes heroKickerShimmer {

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

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

.hero__stars {
    animation: heroStarsGlow 2.8s ease-in-out infinite;
}

@keyframes heroStarsGlow {

    0%,
    100% {
        filter: drop-shadow(0 0 0 transparent);
        color: var(--color-solar);
    }

    50% {
        filter: drop-shadow(0 0 8px rgba(255, 123, 0, 0.7));
        color: var(--color-lime);
    }
}

.hero__headline {
    font-family: var(--font-display);
    font-size: var(--fs-hero);
    line-height: 1.06;
    margin: 0 0 var(--space-sm);
    letter-spacing: -0.03em;
}

.hero__title-pre {
    display: inline;
    color: var(--color-white);
    animation: heroLineIn 0.85s ease 0.15s both;
}

.hero__title-gradient {
    display: inline;
    background: linear-gradient(100deg, var(--color-ice), var(--color-hyper), var(--color-solar), var(--color-lime));
    background-size: 300% 100%;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    animation: heroGradientFlow 7s ease infinite, heroLineIn 0.85s ease 0.28s both;
}

.hero__title-brand {
    display: inline;
    background: linear-gradient(90deg, var(--color-lime), var(--color-ice));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    animation: heroBrandPop 0.9s cubic-bezier(0.34, 1.4, 0.64, 1) 0.45s both;
}

@keyframes heroGradientFlow {

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

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

@keyframes heroLineIn {
    from {
        opacity: 0;
        transform: translateY(18px);
    }

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

@keyframes heroBrandPop {
    from {
        opacity: 0;
        transform: scale(0.92);
        letter-spacing: -0.08em;
    }

    to {
        opacity: 1;
        transform: scale(1);
        letter-spacing: -0.03em;
    }
}

.hero__lead {
    animation: heroLineIn 0.75s ease 0.55s both;
}

.hero__pulse-bar {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: var(--space-md);
}

.hero__pulse-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--color-hyper);
    animation: heroPulseDot 1.4s ease-in-out infinite;
}

.hero__pulse-dot:nth-child(2) {
    background: var(--color-solar);
    animation-delay: 0.2s;
}

.hero__pulse-dot:nth-child(3) {
    background: var(--color-ice);
    animation-delay: 0.4s;
}

@keyframes heroPulseDot {

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

    50% {
        transform: scale(1.35);
        opacity: 1;
        box-shadow: 0 0 12px currentColor;
    }
}

.hero__pulse-line {
    flex: 1;
    height: 2px;
    border-radius: 2px;
    background: linear-gradient(90deg, var(--color-hyper), transparent);
    animation: heroPulseLine 2s ease infinite;
}

@keyframes heroPulseLine {

    0%,
    100% {
        opacity: 0.35;
        transform: scaleX(0.85);
        transform-origin: left;
    }

    50% {
        opacity: 1;
        transform: scaleX(1);
    }
}

.hero__price {
    display: inline-block;
    animation: heroPriceTick 0.6s ease 0.8s both;
}

@keyframes heroPriceTick {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

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

.hero__highlights li {
    animation: heroHighlightRow 0.55s ease both;
}

.hero__highlights li:nth-child(1) {
    animation-delay: 0.65s;
}

.hero__highlights li:nth-child(2) {
    animation-delay: 0.75s;
}

.hero__highlights li:nth-child(3) {
    animation-delay: 0.85s;
}

@keyframes heroHighlightRow {
    from {
        opacity: 0;
        transform: translateX(-12px);
    }

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

.hero__visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero__visual-shell {
    position: relative;
    width: min(100%, 440px);
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: heroShellIn 1s ease 0.2s both;
}

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

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

.hero__rings {
    position: absolute;
    inset: -8%;
    pointer-events: none;
    z-index: 0;
}

.hero__ring {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 2px solid transparent;
}

.hero__ring--1 {
    background: linear-gradient(var(--color-cosmic), var(--color-cosmic)) padding-box,
        conic-gradient(from 0deg, var(--color-solar), var(--color-hyper), var(--color-ice), var(--color-lime), var(--color-solar)) border-box;
    animation: heroRingSpin 22s linear infinite;
    opacity: 0.85;
}

.hero__ring--2 {
    inset: 6%;
    background: linear-gradient(var(--color-cosmic), var(--color-cosmic)) padding-box,
        conic-gradient(from 180deg, transparent, rgba(45, 255, 223, 0.5), transparent, rgba(255, 30, 158, 0.45), transparent) border-box;
    animation: heroRingSpin 18s linear infinite reverse;
    opacity: 0.55;
}

.hero__ring--3 {
    inset: 14%;
    border: 1px dashed rgba(255, 255, 255, 0.15);
    animation: heroRingSpin 30s linear infinite;
    background: none;
}

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

.hero__glow {
    position: absolute;
    width: min(420px, 90vw);
    height: min(420px, 90vw);
    border-radius: 50%;
    background: radial-gradient(circle, rgba(207, 255, 0, 0.25) 0%, rgba(255, 30, 158, 0.12) 40%, transparent 70%);
    filter: blur(4px);
    z-index: 0;
}

.hero__glow--core {
    width: 78%;
    height: 78%;
    left: 50%;
    top: 50%;
    z-index: 1;
    transform: translate(-50%, -50%);
    animation: heroGlowBreathe 5s ease-in-out infinite;
}

@keyframes heroGlowBreathe {

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

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

.hero__tags {
    position: absolute;
    inset: 0;
    z-index: 3;
    pointer-events: none;
}

.hero__tag {
    position: absolute;
    padding: 0.35rem 0.65rem;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--color-white);
    border-radius: var(--radius-sm);
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(18, 10, 42, 0.65);
    backdrop-filter: blur(8px);
    animation: heroTagFloat 5s ease-in-out infinite;
}

.hero__tag:nth-child(1) {
    top: 8%;
    right: 0;
    animation-delay: 0s;
}

.hero__tag:nth-child(2) {
    bottom: 28%;
    left: -4%;
    animation-delay: -1.5s;
}

.hero__tag:nth-child(3) {
    bottom: 6%;
    right: 8%;
    animation-delay: -3s;
}

@keyframes heroTagFloat {

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

    50% {
        transform: translate(4px, -8px);
    }
}

.hero__figure {
    position: relative;
    z-index: 2;
    margin: 0;
    width: 72%;
    filter: drop-shadow(var(--shadow-glow-orange));
    animation: heroProductFloat 6s ease-in-out infinite;
}

.hero__product-img {
    position: relative;
    z-index: 1;
}

@keyframes heroProductFloat {

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

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

.trust-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-md);
}

.stars {
    color: var(--color-solar);
    letter-spacing: 0.1em;
    font-size: var(--fs-lg);
}

.badge {
    display: inline-block;
    padding: 0.35rem 0.75rem;
    border-radius: 999px;
    font-size: var(--fs-xs);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    border: 1px solid var(--glass-border);
    background: var(--color-surface);
    transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.badge:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow-mint);
}

.badge--lime {
    border-color: var(--color-lime);
    color: var(--color-lime);
}

.badge--ice {
    border-color: var(--color-ice);
    color: var(--color-ice);
}

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

.price-row {
    display: flex;
    align-items: baseline;
    gap: var(--space-sm);
    margin-bottom: var(--space-md);
}

.price {
    font-size: clamp(2rem, 1.5rem + 2vw, 2.75rem);
    font-weight: 800;
    color: var(--color-lime);
}

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

.highlights {
    list-style: none;
    margin: 0 0 var(--space-lg);
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
}

.highlights li {
    padding-left: 1.5rem;
    position: relative;
    font-size: var(--fs-sm);
    color: var(--color-muted);
}

.highlights li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.55em;
    width: 8px;
    height: 8px;
    border-radius: 2px;
    background: linear-gradient(135deg, var(--color-solar), var(--color-hyper));
}

.order-card {
    margin-top: var(--space-md);
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: var(--space-md);
    box-shadow: var(--shadow-md);
    transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.order-card:hover {
    box-shadow: var(--shadow-glow-orange);
}

.order-card--hero {
    position: relative;
    overflow: hidden;
    animation: heroOrderPulse 4s ease-in-out infinite;
}

.order-card--hero::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(120deg, transparent 30%, rgba(45, 255, 223, 0.12) 50%, transparent 70%);
    background-size: 200% 100%;
    animation: heroOrderSheen 3s ease infinite;
    pointer-events: none;
}

.order-card--hero .section-title {
    font-size: var(--fs-lg);
    margin-bottom: var(--space-sm);
}

@keyframes heroOrderPulse {

    0%,
    100% {
        box-shadow: var(--shadow-md), 0 0 0 0 rgba(255, 123, 0, 0);
    }

    50% {
        box-shadow: var(--shadow-md), 0 0 32px rgba(255, 30, 158, 0.25);
    }
}

@keyframes heroOrderSheen {
    0% {
        background-position: 100% 0;
    }

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

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

.form-group label {
    display: block;
    font-size: var(--fs-xs);
    font-weight: 600;
    margin-bottom: 0.35rem;
    color: var(--color-muted);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border-radius: var(--radius-md);
    border: 1px solid var(--glass-border);
    background: rgba(255, 255, 255, 0.06);
    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-ice);
    box-shadow: 0 0 0 3px rgba(45, 255, 223, 0.2);
    outline: none;
}

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

.form-error {
    font-size: var(--fs-xs);
    color: #ff6b6b;
    margin-top: 0.25rem;
    min-height: 1.2em;
}

.checkbox-row {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    margin-bottom: var(--space-sm);
}

.checkbox-row input {
    margin-top: 0.25rem;
    accent-color: var(--color-solar);
}

.checkbox-row label {
    font-size: var(--fs-xs);
    color: var(--color-muted);
    line-height: 1.4;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.9rem 1.75rem;
    border-radius: var(--radius-md);
    font-weight: 800;
    font-size: var(--fs-sm);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    border: none;
    cursor: pointer;
    font-family: inherit;
    transition: transform var(--transition-base), box-shadow var(--transition-base), background var(--transition-fast);
}

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

.order-card .btn--primary {
    width: 100%;
}

.btn--primary:hover {
    transform: translateY(-2px) scale(1.01);
    box-shadow: 0 0 48px rgba(255, 123, 0, 0.55);
}

.btn--primary:active {
    transform: translateY(0) scale(0.99);
}

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

.btn--ghost:hover {
    background: rgba(45, 255, 223, 0.12);
    color: var(--color-lime);
    border-color: var(--color-lime);
}

.magnetic-wrap {
    display: inline-block;
}

.section-title {
    font-family: var(--font-display);
    font-size: var(--fs-xl);
    margin: 0 0 var(--space-sm);
    letter-spacing: -0.02em;
}

.section-sub {
    color: var(--color-muted);
    margin: 0 0 var(--space-lg);
    max-width: 52ch;
}

.section-sub--flush-top {
    margin-top: 0;
}

.section-sub--flush {
    margin: 0;
}

.section-sub--center {
    margin-inline: auto;
}

.section-sub--cta-after {
    margin-top: var(--space-md);
    margin-bottom: 0;
}

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

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

.bento-cat--muscle {
    grid-column: 3;
    grid-row: 1;
}

.bento-cat--immunity {
    grid-column: 4;
    grid-row: 1;
}

.bento-cat--vitamins {
    grid-column: 3 / span 2;
    grid-row: 2;
}

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

    .bento-cat--1 {
        grid-column: 1 / span 2;
        grid-row: auto;
        min-height: 160px;
    }

    .bento-cat--muscle {
        grid-column: 1;
        grid-row: auto;
    }

    .bento-cat--immunity {
        grid-column: 2;
        grid-row: auto;
    }

    .bento-cat--vitamins {
        grid-column: 1 / span 2;
        grid-row: auto;
    }
}

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

    .bento-cat--1,
    .bento-cat--muscle,
    .bento-cat--immunity,
    .bento-cat--vitamins {
        grid-column: 1;
    }
}

.bento-card {
    border-radius: var(--radius-lg);
    padding: var(--space-md);
    border: 1px solid var(--glass-border);
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
    transition: transform var(--transition-base), box-shadow var(--transition-base), border-color var(--transition-fast);
    position: relative;
    overflow: hidden;
}

.bento-card:hover {
    transform: translateY(-4px);
    border-color: rgba(45, 255, 223, 0.35);
    box-shadow: var(--shadow-glow-mint);
}

.bento-card h3 {
    margin: 0 0 0.5rem;
    font-size: var(--fs-lg);
}

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

.bento-card--energy {
    background: linear-gradient(160deg, rgba(255, 123, 0, 0.25), rgba(18, 10, 42, 0.9));
}

.bento-card--muscle {
    background: linear-gradient(160deg, rgba(255, 30, 158, 0.2), rgba(18, 10, 42, 0.92));
}

.bento-card--immunity {
    background: linear-gradient(160deg, rgba(45, 255, 223, 0.15), rgba(18, 10, 42, 0.92));
}

.bento-card--vitamins {
    background: linear-gradient(160deg, rgba(207, 255, 0, 0.2), rgba(18, 10, 42, 0.92));
}

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

.ingredient-card {
    position: relative;
    border-radius: var(--radius-md);
    border: 1px solid var(--glass-border);
    background: var(--color-surface);
    padding: var(--space-md);
    transition: transform var(--transition-base), background var(--transition-base);
    min-height: 160px;
}

.ingredient-card:hover {
    transform: translateY(-6px);
    background: rgba(255, 123, 0, 0.12);
}

.ingredient-card h3 {
    margin: 0 0 0.5rem;
    font-size: var(--fs-md);
    color: var(--color-lime);
}

.ingredient-front .section-sub {
    margin: 0;
}

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

.ingredient-card .ingredient-back {
    position: absolute;
    left: var(--space-md);
    right: var(--space-md);
    top: 50%;
    transform: translateY(-50%);
    opacity: 0;
    font-size: var(--fs-sm);
    color: var(--color-muted);
    transition: opacity var(--transition-base);
    pointer-events: none;
}

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

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

.ingredient-card:focus {
    outline: 2px solid var(--color-ice);
    outline-offset: 2px;
}

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

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

.trust-item {
    text-align: center;
    padding: var(--space-lg);
    border-radius: var(--radius-lg);
    border: 1px solid var(--glass-border);
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    transition: transform var(--transition-base);
}

.trust-item:hover {
    transform: scale(1.02);
}

.fa-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.fa-icon--trust {
    width: 64px;
    height: 64px;
    margin: 0 auto var(--space-sm);
    font-size: 1.85rem;
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid var(--glass-border);
}

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

.icon-fa-ice {
    color: var(--color-ice);
}

.icon-fa-hyper {
    color: var(--color-hyper);
}

.icon-fa-solar {
    color: var(--color-solar);
}

.icon-fa-lime {
    color: var(--color-lime);
}

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

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

@keyframes iconPulse {

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

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

.carousel {
    position: relative;
    overflow: hidden;
    width: 100%;
    border-radius: var(--radius-xl);
    border: 1px solid var(--glass-border);
    background: rgba(0, 0, 0, 0.2);
    padding: var(--space-lg) 0;
}

.carousel__track {
    display: flex;
    transition: transform var(--transition-slow);
}

.carousel__slide {
    flex: 0 0 100%;
    min-width: 100%;
    display: flex;
    justify-content: center;
    padding: var(--space-md);
    box-sizing: border-box;
}

.carousel__slide figure {
    margin: 0;
    text-align: center;
    transition: transform var(--transition-base);
}

.carousel__slide img {
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-glow-orange);
    margin-inline: auto;
}

.carousel__slide figcaption {
    margin-top: var(--space-sm);
    font-weight: 600;
    color: var(--color-muted);
}

.carousel__nav {
    display: flex;
    justify-content: center;
    gap: var(--space-sm);
    margin-top: var(--space-md);
}

.carousel__btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid var(--glass-border);
    background: var(--glass-bg);
    color: var(--color-white);
    cursor: pointer;
    font-size: 1.25rem;
    transition: background var(--transition-fast), transform var(--transition-fast);
}

.carousel__btn:hover {
    background: rgba(255, 123, 0, 0.35);
    transform: scale(1.08);
}

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

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

.review-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-sm);
}

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

.review-mini {
    padding: var(--space-sm);
    border-radius: var(--radius-md);
    border: 1px solid var(--glass-border);
    background: var(--color-surface);
    font-size: var(--fs-xs);
    color: var(--color-muted);
}

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

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

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

.benefit-card {
    grid-column: span 2;
    border-radius: var(--radius-lg);
    padding: var(--space-md);
    border: 1px solid var(--glass-border);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), transparent);
    transition: transform var(--transition-base), box-shadow var(--transition-base);
}

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

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

@media (max-width: 1024px) {

    .benefit-card,
    .benefit-card--wide,
    .benefit-card--tall {
        grid-column: span 1;
        grid-row: auto;
    }
}

.benefit-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.benefit-card .icon-box {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-sm);
    background: rgba(255, 123, 0, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-sm);
    font-size: 1.2rem;
    color: var(--color-lime);
}

.benefit-card h3 {
    margin: 0 0 0.35rem;
    font-size: var(--fs-md);
}

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

.split-story {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
    align-items: center;
}

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

.split-story figure {
    margin: 0;
}

.product-overview-icons {
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: min(320px, 50vh);
    padding: var(--space-lg);
    border-radius: var(--radius-xl);
    border: 1px solid var(--glass-border);
    background: linear-gradient(165deg, rgba(255, 255, 255, 0.06), rgba(18, 10, 42, 0.6));
    box-shadow: var(--shadow-md);
}

.product-overview-icons__orbit {
    position: relative;
    width: 100%;
    max-width: 280px;
    min-height: 200px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: var(--space-md);
}

.product-overview-icons__main {
    width: 100%;
    text-align: center;
    font-size: clamp(3.5rem, 12vw, 4.75rem);
    line-height: 1;
    background: linear-gradient(135deg, var(--color-solar), var(--color-hyper), var(--color-ice));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    animation: overviewMainPulse 4s ease-in-out infinite;
}

@keyframes overviewMainPulse {

    0%,
    100% {
        filter: drop-shadow(0 0 8px rgba(255, 123, 0, 0.35));
    }

    50% {
        filter: drop-shadow(0 0 22px rgba(45, 255, 223, 0.45));
    }
}

.product-overview-icons__sat {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 3.25rem;
    height: 3.25rem;
    border-radius: var(--radius-md);
    border: 1px solid var(--glass-border);
    background: rgba(255, 255, 255, 0.05);
    font-size: 1.35rem;
    color: var(--color-lime);
    animation: overviewSatBob 3.5s ease-in-out infinite;
}

.product-overview-icons__sat:nth-child(3) {
    color: var(--color-ice);
    animation-delay: 0.4s;
}

.product-overview-icons__sat:nth-child(4) {
    color: var(--color-solar);
    animation-delay: 0.8s;
}

@keyframes overviewSatBob {

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

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

.product-overview-icons__cap {
    margin-top: var(--space-md);
    margin-bottom: 0;
    text-align: center;
}

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

.spec-card {
    border-radius: var(--radius-md);
    border: 1px solid var(--glass-border);
    padding: var(--space-md);
    background: var(--color-surface);
    display: flex;
    gap: var(--space-sm);
    align-items: flex-start;
    transition: border-color var(--transition-fast);
}

.spec-card:hover {
    border-color: var(--color-hyper);
}

.spec-card .spec-icon {
    font-size: 1.45rem;
    flex-shrink: 0;
    width: 2.5rem;
    height: 2.5rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-sm);
    background: rgba(255, 123, 0, 0.15);
    color: var(--color-ice);
}

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

.step-card {
    text-align: center;
    padding: var(--space-md);
    border-radius: var(--radius-lg);
    border: 1px solid var(--glass-border);
    background: var(--glass-bg);
    transition: transform var(--transition-base);
}

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

.step-card__icon {
    margin-bottom: var(--space-xs);
    font-size: 1.35rem;
    color: var(--color-lime);
}

.step-num {
    width: 40px;
    height: 40px;
    margin: 0 auto var(--space-sm);
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-solar), var(--color-hyper));
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
}

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

.ingredient-pill {
    padding: var(--space-sm);
    border-radius: var(--radius-md);
    border: 1px solid var(--glass-border);
    background: rgba(255, 255, 255, 0.04);
}

.ingredient-pill h4 {
    margin: 0 0 0.35rem;
    color: var(--color-ice);
    font-size: var(--fs-sm);
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.ingredient-pill__ico {
    color: var(--color-solar);
    font-size: 1rem;
    flex-shrink: 0;
}

.ingredient-pill p {
    margin: 0;
    font-size: var(--fs-xs);
    color: var(--color-muted);
}

.numbered-list {
    counter-reset: step;
    list-style: none;
    margin: 0;
    padding: 0;
}

.numbered-list li {
    counter-increment: step;
    position: relative;
    padding-left: 3rem;
    margin-bottom: var(--space-md);
}

.numbered-list li::before {
    content: counter(step);
    position: absolute;
    left: 0;
    top: 0;
    width: 2rem;
    height: 2rem;
    border-radius: var(--radius-sm);
    background: var(--color-lime);
    color: var(--color-cosmic);
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--fs-sm);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: var(--space-md);
}

.review-card {
    border-radius: var(--radius-lg);
    border: 1px solid var(--glass-border);
    padding: var(--space-md);
    background: var(--color-surface);
    transition: box-shadow var(--transition-base);
}

.review-card:hover {
    box-shadow: var(--shadow-glow-mint);
}

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

.faq-item {
    border-bottom: 1px solid var(--glass-border);
}

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

.faq-item button::after {
    content: "+";
    color: var(--color-solar);
    font-size: 1.5rem;
    transition: transform var(--transition-base);
}

.faq-item.is-open button::after {
    transform: rotate(45deg);
}

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

.faq-item.is-open .faq-panel {
    max-height: 800px;
}

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

.cta-final {
    text-align: center;
    padding: var(--space-2xl) var(--space-md);
    border-radius: var(--radius-xl);
    border: 1px solid var(--glass-border);
    background: linear-gradient(135deg, rgba(255, 123, 0, 0.15), rgba(255, 30, 158, 0.1));
}

.disclaimer-block {
    font-size: var(--fs-xs);
    color: var(--color-muted);
    line-height: 1.65;
    max-width: 900px;
    margin-inline: auto;
    padding: var(--space-md);
    border-radius: var(--radius-md);
    border: 1px dashed var(--glass-border);
    background: rgba(0, 0, 0, 0.2);
}

.disclaimer-block__au {
    margin-top: var(--space-sm);
    margin-bottom: 0;
}

.hero__price-note {
    font-size: var(--fs-xs);
    color: var(--color-muted);
    line-height: 1.5;
    margin: var(--space-sm) 0 var(--space-md);
    max-width: 42ch;
}

.stats-strip__disclaimer {
    font-size: var(--fs-xs);
    color: var(--color-muted);
    margin: var(--space-md) 0 0;
    max-width: 62ch;
    line-height: 1.55;
}

.social-proof__qual {
    font-size: var(--fs-xs);
    color: var(--color-muted);
    font-weight: 600;
}

.reviews-disclaimer {
    margin-top: 0;
    margin-bottom: var(--space-md);
    max-width: 65ch;
}

.compliance-au {
    display: grid;
    gap: var(--space-md);
    max-width: 900px;
    margin-inline: auto;
}

.compliance-au__block {
    padding: var(--space-md);
    border-radius: var(--radius-lg);
    border: 1px solid var(--glass-border);
    background: rgba(255, 255, 255, 0.04);
}

.compliance-au__h {
    margin: 0 0 var(--space-sm);
    font-size: var(--fs-md);
    color: var(--color-lime);
}

.compliance-au__block p {
    margin: 0;
    font-size: var(--fs-sm);
    color: var(--color-muted);
    line-height: 1.7;
}

.site-footer {
    padding: var(--space-xl) 0 var(--space-lg);
    border-top: 1px solid var(--glass-border);
    margin-top: var(--space-xl);
    background: rgba(0, 0, 0, 0.25);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-lg);
    margin-bottom: var(--space-lg);
}

.footer-grid>div:first-child .brand {
    margin-top: 0;
}

.footer-grid>div:first-child .section-sub {
    margin: 0;
}

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

.footer-nav {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm) var(--space-md);
}

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

.footer-legal-box {
    margin-top: var(--space-md);
    padding: var(--space-md);
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--glass-border);
    font-size: var(--fs-xs);
    color: var(--color-muted);
    line-height: 1.7;
}

.footer-copy {
    text-align: center;
    font-size: var(--fs-xs);
    color: var(--color-muted);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 2000;
    padding: var(--space-md);
    background: var(--glass-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-top: 1px solid var(--glass-border);
    box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.35);
    transform: translateY(100%);
    transition: transform var(--transition-slow);
}

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

.cookie-inner {
    width: min(1100px, 100%);
    margin-inline: auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-md);
}

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

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

.btn--small {
    padding: 0.6rem 1rem;
    font-size: var(--fs-xs);
    width: auto;
}

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

.modal-overlay.is-open {
    opacity: 1;
    visibility: visible;
}

.modal {
    width: min(480px, 100%);
    max-height: 90vh;
    overflow-y: auto;
    border-radius: var(--radius-lg);
    border: 1px solid var(--glass-border);
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: var(--space-lg);
    box-shadow: var(--shadow-md);
    transform: scale(0.95);
    transition: transform var(--transition-base);
}

.modal-overlay.is-open .modal {
    transform: scale(1);
}

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

.toggle-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-sm) 0;
    border-bottom: 1px solid var(--glass-border);
    font-size: var(--fs-sm);
}

.toggle-row input:disabled+span {
    opacity: 0.7;
}

.switch {
    position: relative;
    width: 48px;
    height: 26px;
}

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

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

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

.switch input:checked+.slider {
    background: var(--color-solar);
}

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

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

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

.tilt-card {
    transform-style: preserve-3d;
    transition: transform 0.15s ease-out;
}

.reveal {
    transform: translateY(28px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

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

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

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

.policy-page p,
.policy-page ul {
    color: var(--color-muted);
    font-size: var(--fs-sm);
}

.policy-page ul {
    padding-left: 1.25rem;
}

.thank-you-box {
    text-align: center;
    padding: var(--space-2xl) var(--space-md);
    max-width: 560px;
    margin-inline: auto;
}

.thank-you-box .btn--primary {
    width: auto;
}

@media (min-width: 769px) {
    .nav-panel {
        position: static;
        width: auto;
        height: auto;
        transform: none;
        border: none;
        background: transparent;
        padding: 0;
    }
}

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

    .nav-panel {
        position: fixed;
        top: var(--header-h);
        right: 0;
        width: min(320px, 100%);
        height: calc(100vh - var(--header-h));
        background: var(--color-cosmic);
        border-left: 1px solid var(--glass-border);
        padding: var(--space-md);
        transform: translateX(100%);
        transition: transform var(--transition-base);
        z-index: 1001;
    }

    .nav-panel.is-open {
        transform: translateX(0);
    }

    .nav-list {
        flex-direction: column;
    }

    .nav-list a {
        display: block;
        padding: 0.65rem 0;
        font-size: var(--fs-md);
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    }
}

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

.nav-toggle:hover {
    background: rgba(255, 123, 0, 0.15);
    border-color: rgba(255, 123, 0, 0.45);
}

.nav-toggle__burger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    width: 22px;
    height: 18px;
}

.nav-toggle__bar {
    display: block;
    height: 2px;
    width: 100%;
    border-radius: 2px;
    background: linear-gradient(90deg, var(--color-ice), var(--color-lime));
    transition: transform var(--transition-base), opacity var(--transition-fast), width var(--transition-fast);
    transform-origin: center;
}

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

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

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

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

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

body.nav-is-open {
    overflow: hidden;
}

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

.hero__float {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.hero__orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(40px);
    opacity: 0.45;
    animation: orbFloat 14s ease-in-out infinite;
}

.hero__orb--a {
    width: min(280px, 50vw);
    height: min(280px, 50vw);
    background: radial-gradient(circle, rgba(255, 30, 158, 0.5), transparent 70%);
    top: 5%;
    right: 10%;
    animation-delay: 0s;
}

.hero__orb--b {
    width: min(220px, 45vw);
    height: min(220px, 45vw);
    background: radial-gradient(circle, rgba(45, 255, 223, 0.35), transparent 70%);
    bottom: 20%;
    left: 5%;
    animation-delay: -4s;
}

.hero__orb--c {
    width: min(180px, 40vw);
    height: min(180px, 40vw);
    background: radial-gradient(circle, rgba(255, 123, 0, 0.4), transparent 70%);
    top: 40%;
    left: 40%;
    animation-delay: -7s;
}

.hero__orb--d {
    width: min(140px, 35vw);
    height: min(140px, 35vw);
    background: radial-gradient(circle, rgba(207, 255, 0, 0.35), transparent 70%);
    bottom: 8%;
    right: 18%;
    animation-delay: -10s;
    animation-duration: 18s;
}

@keyframes orbFloat {

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

    33% {
        transform: translate(12px, -18px) scale(1.05);
    }

    66% {
        transform: translate(-10px, 14px) scale(0.95);
    }
}

.section--mesh {
    position: relative;
}

.section--mesh::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(125deg,
            rgba(255, 123, 0, 0.08) 0%,
            transparent 40%,
            rgba(255, 30, 158, 0.06) 60%,
            rgba(45, 255, 223, 0.05) 100%);
    background-size: 200% 200%;
    animation: meshShift 18s ease infinite;
    pointer-events: none;
    z-index: 0;
}

.section--mesh>.container {
    position: relative;
    z-index: 1;
}

@keyframes meshShift {

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

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

.section-title--gradient {
    background: linear-gradient(100deg, var(--color-white) 0%, var(--color-ice) 35%, var(--color-hyper) 65%, var(--color-solar) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    animation: titleShimmer 8s ease infinite;
    background-size: 200% auto;
}

@keyframes titleShimmer {

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

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

.stats-strip {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-sm);
    margin-bottom: var(--space-xl);
}

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

.stats-strip__item {
    text-align: center;
    padding: var(--space-md);
    border-radius: var(--radius-lg);
    border: 1px solid var(--glass-border);
    background: rgba(255, 255, 255, 0.04);
    transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.stats-strip__item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-glow-mint);
}

.stats-strip__num {
    display: block;
    font-size: clamp(2rem, 5vw, 2.75rem);
    font-weight: 800;
    background: linear-gradient(135deg, var(--color-lime), var(--color-ice));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    line-height: 1.1;
}

.stats-strip__label {
    display: block;
    font-size: var(--fs-xs);
    color: var(--color-muted);
    margin-top: 0.35rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.formula-matrix {
    border-radius: var(--radius-xl);
    border: 1px solid var(--glass-border);
    background: var(--glass-bg);
    backdrop-filter: blur(14px);
    padding: var(--space-md);
    box-shadow: var(--shadow-md);
}

.formula-matrix__tabs {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-xs);
    margin-bottom: var(--space-md);
}

.formula-matrix__tab {
    flex: 1 1 auto;
    min-width: 140px;
    padding: 0.75rem 1rem;
    border-radius: var(--radius-md);
    border: 1px solid var(--glass-border);
    background: rgba(0, 0, 0, 0.2);
    color: var(--color-muted);
    font-family: inherit;
    font-size: var(--fs-sm);
    font-weight: 700;
    cursor: pointer;
    transition: color var(--transition-fast), border-color var(--transition-fast), box-shadow var(--transition-base), transform var(--transition-fast);
}

.formula-matrix__tab:hover {
    color: var(--color-white);
    border-color: rgba(45, 255, 223, 0.35);
}

.formula-matrix__tab.is-active {
    color: var(--color-cosmic);
    background: linear-gradient(135deg, var(--color-solar), var(--color-hyper));
    border-color: transparent;
    box-shadow: var(--shadow-glow-orange);
    transform: translateY(-2px);
}

.formula-matrix__panels {
    position: relative;
    min-height: 220px;
}

.formula-matrix__panel {
    border-radius: var(--radius-lg);
    padding: var(--space-md);
    background: linear-gradient(160deg, rgba(255, 255, 255, 0.06), rgba(18, 10, 42, 0.5));
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.formula-matrix__panel.is-active {
    animation: panelIn 0.45s ease;
}

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

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

.formula-matrix__glyph {
    font-size: clamp(3rem, 12vw, 5rem);
    font-weight: 900;
    line-height: 1;
    margin-bottom: var(--space-sm);
    background: linear-gradient(180deg, var(--color-ice), var(--color-hyper));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    letter-spacing: -0.06em;
}

.formula-matrix__panel-title {
    margin: 0 0 var(--space-sm);
    font-size: var(--fs-lg);
}

.formula-matrix__panel p {
    color: var(--color-muted);
    font-size: var(--fs-sm);
    margin: 0 0 var(--space-sm);
}

.formula-matrix__list {
    margin: 0;
    padding-left: 1.2rem;
    color: var(--color-muted);
    font-size: var(--fs-sm);
}

.formula-matrix__list li {
    margin-bottom: 0.35rem;
}

.formula-matrix__rail {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: var(--space-md);
}

.formula-matrix__dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    cursor: pointer;
    background: rgba(255, 255, 255, 0.2);
    transition: transform var(--transition-base), background var(--transition-base);
}

.formula-matrix__dot--on {
    background: var(--color-solar);
    transform: scale(1.35);
    box-shadow: 0 0 12px rgba(255, 123, 0, 0.6);
}

.section.reveal.is-visible .stagger-scope .stagger-item {
    animation: staggerRise 0.65s ease forwards;
    opacity: 0;
}

.section.reveal.is-visible .stagger-scope .stagger-item:nth-child(1) {
    animation-delay: 0.05s;
}

.section.reveal.is-visible .stagger-scope .stagger-item:nth-child(2) {
    animation-delay: 0.12s;
}

.section.reveal.is-visible .stagger-scope .stagger-item:nth-child(3) {
    animation-delay: 0.19s;
}

.section.reveal.is-visible .stagger-scope .stagger-item:nth-child(4) {
    animation-delay: 0.26s;
}

.section.reveal.is-visible .stagger-scope .stagger-item:nth-child(5) {
    animation-delay: 0.33s;
}

.section.reveal.is-visible .stagger-scope .stagger-item:nth-child(6) {
    animation-delay: 0.4s;
}

@keyframes staggerRise {
    from {
        opacity: 0;
        transform: translateY(22px);
    }

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


.legal-body {
    background: radial-gradient(ellipse 100% 80% at 50% -20%, rgba(255, 123, 0, 0.12), transparent 50%),
        radial-gradient(120% 80% at 10% 0%, var(--color-cosmic-mid) 0%, var(--color-cosmic) 45%, #0a0618 100%);
}

.legal-hero {
    position: relative;
    padding: var(--space-xl) var(--space-md) var(--space-lg);
    text-align: center;
    overflow: hidden;
}

.legal-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(45, 255, 223, 0.06), transparent);
    pointer-events: none;
}

.legal-hero__inner {
    position: relative;
    z-index: 1;
    max-width: 720px;
    margin-inline: auto;
}

.legal-hero__label {
    display: inline-block;
    font-size: var(--fs-xs);
    font-weight: 800;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-solar);
    margin-bottom: var(--space-sm);
}

.legal-hero h1 {
    margin: 0 0 var(--space-sm);
    font-size: clamp(1.75rem, 4vw, 2.5rem);
}

.legal-hero .legal-doc__intro {
    margin-bottom: var(--space-sm);
}

.legal-date-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 999px;
    border: 1px solid var(--glass-border);
    background: rgba(255, 255, 255, 0.06);
    font-size: var(--fs-sm);
    color: var(--color-muted);
    margin-top: var(--space-sm);
}

.legal-date-badge strong {
    color: var(--color-ice);
    font-weight: 700;
}

.legal-doc {
    width: min(900px, 100% - 2rem);
    margin-inline: auto;
    padding-bottom: var(--space-2xl);
}

.legal-doc__intro {
    font-size: var(--fs-md);
    color: var(--color-muted);
    line-height: 1.75;
    margin-bottom: var(--space-xl);
    padding: var(--space-md);
    border-left: 4px solid var(--color-hyper);
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
    background: rgba(255, 255, 255, 0.03);
}

.legal-section {
    margin-bottom: var(--space-xl);
    padding: var(--space-lg);
    border-radius: var(--radius-lg);
    border: 1px solid var(--glass-border);
    background: rgba(255, 255, 255, 0.03);
    transition: border-color var(--transition-base), box-shadow var(--transition-base);
}

.legal-section:hover {
    border-color: rgba(45, 255, 223, 0.25);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
}

.legal-section h2 {
    margin: 0 0 var(--space-md);
    font-size: var(--fs-lg);
    color: var(--color-white);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.legal-section h2::before {
    content: "";
    width: 6px;
    height: 1.25em;
    border-radius: 3px;
    background: linear-gradient(180deg, var(--color-solar), var(--color-hyper));
    flex-shrink: 0;
}

.legal-section p,
.legal-section li {
    color: var(--color-muted);
    font-size: var(--fs-sm);
    line-height: 1.75;
}

.legal-section ul {
    padding-left: 1.25rem;
}

.legal-section ol {
    padding-left: 1.25rem;
}

.legal-callout+p {
    margin-top: var(--space-md);
}

.legal-section li {
    margin-bottom: 0.5rem;
}

.legal-callout {
    margin-top: var(--space-md);
    padding: var(--space-md);
    border-radius: var(--radius-md);
    background: rgba(255, 123, 0, 0.1);
    border: 1px dashed rgba(255, 123, 0, 0.35);
    font-size: var(--fs-sm);
    color: var(--color-muted);
}

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

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

.legal-card-mini {
    padding: var(--space-md);
    border-radius: var(--radius-md);
    border: 1px solid var(--glass-border);
    background: rgba(18, 10, 42, 0.45);
}

.legal-card-mini h3 {
    margin: 0 0 0.5rem;
    font-size: var(--fs-sm);
    color: var(--color-lime);
}

.legal-timeline {
    margin: var(--space-md) 0 0;
    padding: 0;
    list-style: none;
    border-left: 2px solid var(--glass-border);
}

.legal-timeline li {
    position: relative;
    padding-left: var(--space-md);
    margin-bottom: var(--space-md);
}

.legal-timeline li::before {
    content: "";
    position: absolute;
    left: -5px;
    top: 0.35em;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--color-ice);
    box-shadow: 0 0 0 3px rgba(45, 255, 223, 0.25);
}

.thank-hero {
    min-height: 42vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: var(--space-xl) var(--space-md);
    position: relative;
    overflow: hidden;
}

.thank-hero::before {
    content: "";
    position: absolute;
    width: 120%;
    height: 120%;
    background: conic-gradient(from 120deg at 50% 50%, rgba(255, 123, 0, 0.15), transparent, rgba(255, 30, 158, 0.12), transparent);
    animation: thankSpin 28s linear infinite;
}

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

.thank-hero__content {
    position: relative;
    z-index: 1;
    max-width: 640px;
}

.thank-hero .legal-doc__intro {
    border-left-color: var(--color-ice);
    margin-bottom: 0;
}

.thank-check {
    width: 88px;
    height: 88px;
    margin: 0 auto var(--space-md);
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-ice), var(--color-lime));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--color-cosmic);
    box-shadow: var(--shadow-glow-mint);
    animation: thankPop 0.7s cubic-bezier(0.34, 1.56, 0.64, 1) 0.2s both;
}

@keyframes thankPop {
    from {
        transform: scale(0.3);
        opacity: 0;
    }

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

.thank-body {
    width: min(720px, 100% - 2rem);
    margin: 0 auto;
    padding-bottom: var(--space-2xl);
}

.thank-body__block {
    margin-bottom: var(--space-lg);
    padding: var(--space-lg);
    border-radius: var(--radius-lg);
    border: 1px solid var(--glass-border);
    background: rgba(255, 255, 255, 0.04);
}

.thank-body h2 {
    margin: 0 0 var(--space-sm);
    font-size: var(--fs-lg);
}

.thank-body p {
    color: var(--color-muted);
    font-size: var(--fs-sm);
    line-height: 1.75;
}

.thank-body__cta {
    text-align: center;
    margin-top: var(--space-lg);
}

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

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

.policy-page p,
.policy-page ul {
    color: var(--color-muted);
    font-size: var(--fs-sm);
}

.policy-page ul {
    padding-left: 1.25rem;
}

.thank-you-box {
    text-align: center;
    padding: var(--space-2xl) var(--space-md);
    max-width: 560px;
    margin-inline: auto;
}

.thank-you-box .btn--primary {
    width: auto;
}

@media (max-width: 320px) {
    :root {
        --space-xs: 0.35rem;
        --space-sm: 0.65rem;
        --space-md: 1rem;
        --space-lg: 1.35rem;
        --space-xl: 2rem;
        --space-2xl: 2.75rem;
        --header-h: 68px;
        --fs-hero: clamp(1.65rem, 1.2rem + 2vw, 2.25rem);
    }

    .container,
    .legal-doc,
    .thank-body {
        width: 100%;
        padding-inline: 0.75rem;
    }

    .header-inner {
        width: 100%;
        padding-inline: 0.75rem;
        gap: 0.5rem;
    }

    .brand {
        font-size: clamp(0.8rem, 3.5vw, 1rem);
        line-height: 1.2;
        max-width: calc(100% - 56px);
    }

    .nav-panel {
        width: 100%;
        max-width: 100%;
        left: 0;
        right: 0;
        border-left: none;
        border-top: 1px solid var(--glass-border);
    }

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

    .hero__visual-shell {
        width: min(100%, 320px);
        aspect-ratio: 1;
    }

    .hero__tag {
        font-size: 0.55rem;
        padding: 0.25rem 0.45rem;
    }

    .hero__headline {
        font-size: clamp(1.75rem, 8vw, 2.4rem);
    }

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

    .price-row {
        flex-wrap: wrap;
    }

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

    .form-group input,
    .form-group textarea {
        padding: 0.65rem 0.75rem;
        font-size: 16px;
    }

    .btn {
        padding: 0.75rem 1rem;
        font-size: 0.7rem;
    }

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

    .bento-categories {
        gap: var(--space-sm);
    }

    .bento-cat--1 {
        min-height: 140px;
    }

    .formula-matrix__tab {
        min-width: 100%;
        font-size: 0.75rem;
        padding: 0.65rem 0.75rem;
    }

    .formula-matrix__glyph {
        font-size: 2.5rem;
    }

    .stats-strip__num {
        font-size: 1.75rem;
    }

    .trust-item {
        padding: var(--space-sm);
    }

    .cookie-inner {
        flex-direction: column;
        align-items: stretch;
    }

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

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

    .footer-nav {
        flex-direction: column;
        align-items: flex-start;
    }

    .legal-hero {
        padding-inline: 0.75rem;
    }

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

    .thank-check {
        width: 72px;
        height: 72px;
        font-size: 2rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    .hero__bg,
    .hero__grid-lines,
    .hero__noise,
    .hero__orb,
    .hero__kicker-track,
    .hero__stars,
    .hero__title-pre,
    .hero__title-gradient,
    .hero__title-brand,
    .hero__lead,
    .hero__pulse-dot,
    .hero__pulse-line,
    .hero__price,
    .hero__highlights li,
    .hero__visual-shell,
    .hero__ring,
    .hero__glow--core,
    .hero__tag,
    .hero__figure,
    .order-card--hero,
    .order-card--hero::before,
    .section--mesh::before,
    .section-title--gradient,
    .thank-hero::before,
    .fa-icon--pulse,
    .product-overview-icons__main,
    .product-overview-icons__sat {
        animation: none !important;
    }

    .reveal,
    .section.reveal.is-visible .stagger-scope .stagger-item,
    .formula-matrix__panel.is-active,
    .thank-check {
        animation: none !important;
        opacity: 1 !important;
        transform: none !important;
    }

    .hero__title-pre,
    .hero__title-gradient,
    .hero__title-brand,
    .hero__lead,
    .hero__price,
    .hero__highlights li,
    .hero__visual-shell {
        opacity: 1 !important;
        transform: none !important;
    }
}