:root {
    --color-coral: #FF6B4A;
    --color-pink: #FF3F8F;
    --color-sky: #4DA6FF;
    --color-mint: #7FFFD4;
    --color-navy: #1A1F36;
    --color-white: #ffffff;
    --color-off: #f8fafc;
    --color-muted: #94a3b8;
    --color-text: #e2e8f0;
    --color-text-dark: #0f172a;
    --font-sans: "Segoe UI", system-ui, -apple-system, sans-serif;
    --font-display: "Segoe UI", system-ui, sans-serif;
    --fs-xs: clamp(0.75rem, 0.7rem + 0.2vw, 0.875rem);
    --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.25rem);
    --fs-hero: clamp(2.5rem, 2rem + 2.5vw, 4rem);
    --fw-normal: 400;
    --fw-medium: 500;
    --fw-bold: 700;
    --fw-black: 800;
    --lh-tight: 1.15;
    --lh-body: 1.6;
    --shadow-sm: 0 2px 8px rgba(26, 31, 54, 0.08);
    --shadow-md: 0 8px 24px rgba(26, 31, 54, 0.12);
    --shadow-lg: 0 16px 48px rgba(26, 31, 54, 0.18);
    --shadow-glow-coral: 0 0 32px rgba(255, 107, 74, 0.45), 0 0 64px rgba(255, 63, 143, 0.25);
    --shadow-glow-sky: 0 0 28px rgba(77, 166, 255, 0.4);
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 22px;
    --radius-xl: 28px;
    --radius-full: 9999px;
    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;
    --space-3xl: 4rem;
    --space-section: clamp(3rem, 8vw, 5rem);
    --transition-fast: 0.15s ease;
    --transition-base: 0.25s ease;
    --transition-slow: 0.45s cubic-bezier(0.22, 1, 0.36, 1);
    --glass-bg: rgba(26, 31, 54, 0.55);
    --glass-border: rgba(255, 255, 255, 0.12);
    --glass-blur: 16px;
    --max-width: 1200px;
    --header-h: 72px;
}

*,
*::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-text);
    background: linear-gradient(165deg, var(--color-navy) 0%, #0f1428 45%, #151a32 100%);
    min-height: 100vh;
    overflow-x: hidden;
}

body.modal-open {
    overflow: hidden;
}

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

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

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

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

.skip-link {
    position: absolute;
    left: -9999px;
    z-index: 10000;
    padding: var(--space-md) var(--space-lg);
    background: var(--color-coral);
    color: var(--color-white);
    font-weight: var(--fw-bold);
}

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

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

.site-header__inner {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--space-lg);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-lg);
}

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

.brand span {
    background: linear-gradient(90deg, var(--color-coral), var(--color-pink), var(--color-sky));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.nav-primary {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: var(--space-md) var(--space-xl);
}

.nav-primary a {
    color: var(--color-text);
    font-weight: var(--fw-medium);
    font-size: var(--fs-sm);
    padding: var(--space-xs) 0;
    position: relative;
    transition: color var(--transition-fast), transform var(--transition-fast);
}

.nav-primary a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--color-coral), var(--color-pink));
    transition: width var(--transition-base);
}

.nav-primary a:hover {
    color: var(--color-mint);
}

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

.burger {
    display: none;
    position: relative;
    z-index: 1003;
    width: 48px;
    height: 48px;
    padding: 0;
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    background: linear-gradient(145deg, rgba(255, 107, 74, 0.15), rgba(77, 166, 255, 0.12));
    cursor: pointer;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    transition: border-color var(--transition-fast), box-shadow var(--transition-fast), transform var(--transition-fast);
}

.burger:hover {
    border-color: rgba(127, 255, 212, 0.45);
    box-shadow: 0 0 20px rgba(255, 63, 143, 0.25);
}

.burger__bar {
    display: block;
    width: 22px;
    height: 2px;
    border-radius: 2px;
    background: linear-gradient(90deg, var(--color-mint), var(--color-white));
    transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.25s ease, width 0.25s ease;
}

.burger.is-active .burger__bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.burger.is-active .burger__bar:nth-child(2) {
    opacity: 0;
    width: 0;
}

.burger.is-active .burger__bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

.nav-backdrop {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 1001;
    background: rgba(5, 8, 18, 0.62);
    backdrop-filter: blur(4px);
    opacity: 0;
    transition: opacity 0.35s ease;
}

body.nav-open .nav-backdrop {
    display: block;
    opacity: 1;
}

@media (min-width: 901px) {
    .nav-backdrop {
        display: none !important;
    }
}

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

    .nav-primary {
        position: fixed;
        top: 0;
        right: 0;
        width: min(320px, 100%);
        max-width: 100%;
        height: 100vh;
        height: 100dvh;
        margin: 0;
        padding: calc(var(--header-h) + var(--space-lg)) var(--space-xl) var(--space-xl);
        flex-direction: column;
        align-items: stretch;
        flex-wrap: nowrap;
        gap: var(--space-sm);
        background: linear-gradient(180deg, rgba(15, 20, 40, 0.98) 0%, rgba(26, 31, 54, 0.98) 40%, #0d1224 100%);
        border-left: 1px solid var(--glass-border);
        box-shadow: -12px 0 48px rgba(0, 0, 0, 0.45);
        transform: translateX(105%);
        opacity: 0;
        visibility: hidden;
        transition: transform 0.42s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.35s ease, visibility 0.35s;
        z-index: 1002;
        overflow-y: auto;
    }

    .nav-primary a {
        font-size: var(--fs-md);
        padding: var(--space-md);
        border-radius: var(--radius-md);
        border: 1px solid transparent;
    }

    .nav-primary a::after {
        display: none;
    }

    .nav-primary a:hover {
        background: rgba(255, 255, 255, 0.06);
        border-color: rgba(127, 255, 212, 0.2);
    }

    .nav-primary.is-open {
        transform: translateX(0);
        opacity: 1;
        visibility: visible;
    }

    body.nav-open {
        overflow: hidden;
        touch-action: none;
    }
}

main {
    overflow-x: hidden;
    position: relative;
    z-index: 1;
}

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

.section--alt {
    background: rgba(255, 255, 255, 0.02);
}

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

.section__title {
    font-family: var(--font-display);
    font-size: var(--fs-xl);
    font-weight: var(--fw-black);
    line-height: var(--lh-tight);
    color: var(--color-white);
    margin: 0 0 var(--space-sm);
    letter-spacing: -0.03em;
}

.section__lead {
    margin: 0 0 var(--space-2xl);
    color: var(--color-muted);
    max-width: 42ch;
    font-size: var(--fs-md);
}

.reveal {
    opacity: 0;
    transform: translateY(32px) scale(0.98);
}

.reveal.is-visible {
    animation: reveal-pop 0.85s cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes reveal-pop {
    0% {
        opacity: 0;
        transform: translateY(32px) scale(0.98);
    }

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

.hero {
    padding-top: var(--space-2xl);
    padding-bottom: var(--space-3xl);
    position: relative;
}

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

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

.hero__visual {
    position: relative;
    padding: clamp(1rem, 4vw, 2rem);
}

.hero__visual-ring {
    position: absolute;
    inset: 0;
    border-radius: var(--radius-xl);
    border: 1px solid rgba(127, 255, 212, 0.15);
    background: radial-gradient(ellipse 70% 60% at 50% 50%, rgba(77, 166, 255, 0.08), transparent 65%);
    animation: hero-ring-pulse 5s ease-in-out infinite;
    pointer-events: none;
}

.hero__visual-ring::before {
    content: "";
    position: absolute;
    inset: -2px;
    border-radius: inherit;
    padding: 1px;
    background: linear-gradient(135deg, var(--color-coral), var(--color-pink), var(--color-sky), var(--color-mint));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0.55;
    animation: hero-ring-rotate 14s linear infinite;
}

@keyframes hero-ring-pulse {

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

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

@keyframes hero-ring-rotate {
    0% {
        filter: hue-rotate(0deg);
    }

    100% {
        filter: hue-rotate(360deg);
    }
}

.hero__particles {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: visible;
}

.hero__particle {
    position: absolute;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    opacity: 0.65;
    box-shadow: 0 0 12px currentColor;
}

.hero__particle--1 {
    top: 12%;
    left: 8%;
    background: var(--color-coral);
    color: var(--color-coral);
    animation: hero-particle-drift 9s ease-in-out infinite;
}

.hero__particle--2 {
    top: 22%;
    right: 6%;
    width: 6px;
    height: 6px;
    background: var(--color-sky);
    color: var(--color-sky);
    animation: hero-particle-drift 11s ease-in-out infinite -2s;
}

.hero__particle--3 {
    bottom: 28%;
    left: 4%;
    width: 5px;
    height: 5px;
    background: var(--color-mint);
    color: var(--color-mint);
    animation: hero-particle-drift 8s ease-in-out infinite -4s;
}

.hero__particle--4 {
    bottom: 18%;
    right: 14%;
    background: var(--color-pink);
    color: var(--color-pink);
    animation: hero-particle-drift 10s ease-in-out infinite -1s;
}

.hero__particle--5 {
    top: 48%;
    left: 2%;
    width: 4px;
    height: 4px;
    background: var(--color-white);
    color: var(--color-white);
    opacity: 0.4;
    animation: hero-particle-drift 12s ease-in-out infinite -6s;
}

@keyframes hero-particle-drift {

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

    25% {
        transform: translate(12px, -10px) scale(1.15);
    }

    50% {
        transform: translate(-6px, 14px) scale(0.9);
    }

    75% {
        transform: translate(10px, 6px) scale(1.05);
    }
}

.hero__figure-wrap {
    position: relative;
    z-index: 1;
    border-radius: var(--radius-xl);
    transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.hero__figure-wrap:hover {
    transform: scale(1.03);
}

.hero__figure {
    position: relative;
    margin: 0;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-glow-coral);
    animation: hero-float 6s ease-in-out infinite;
}

.hero__figure::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(115deg,
            transparent 35%,
            rgba(255, 255, 255, 0.18) 48%,
            rgba(255, 255, 255, 0.06) 52%,
            transparent 65%);
    transform: translateX(-120%) skewX(-12deg);
    animation: hero-shimmer 5s ease-in-out infinite;
    pointer-events: none;
}

@keyframes hero-shimmer {
    0% {
        transform: translateX(-130%) skewX(-12deg);
    }

    40%,
    100% {
        transform: translateX(130%) skewX(-12deg);
    }
}

@keyframes hero-float {

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

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

.hero__meta {
    position: relative;
    z-index: 1;
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-md);
    margin-top: var(--space-lg);
    align-items: center;
}

.rating {
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
    color: var(--color-mint);
    font-weight: var(--fw-bold);
    font-size: var(--fs-sm);
}

.rating__score {
    animation: hero-score-pulse 3s ease-in-out infinite;
}

.rating__stars {
    display: inline-block;
    letter-spacing: 0.05em;
    animation: hero-stars-twinkle 2.5s ease-in-out infinite;
}

@keyframes hero-score-pulse {

    0%,
    100% {
        text-shadow: 0 0 0 transparent;
    }

    50% {
        text-shadow: 0 0 14px rgba(127, 255, 212, 0.45);
    }
}

@keyframes hero-stars-twinkle {

    0%,
    100% {
        opacity: 1;
        filter: brightness(1);
    }

    50% {
        opacity: 0.88;
        filter: brightness(1.25);
    }
}

.trust-badge {
    display: inline-block;
    padding: var(--space-xs) var(--space-md);
    background: rgba(127, 255, 212, 0.12);
    border: 1px solid rgba(127, 255, 212, 0.35);
    border-radius: var(--radius-full);
    font-size: var(--fs-xs);
    color: var(--color-mint);
    font-weight: var(--fw-medium);
    animation: hero-badge-glow 4s ease-in-out infinite;
}

@keyframes hero-badge-glow {

    0%,
    100% {
        box-shadow: 0 0 0 rgba(127, 255, 212, 0);
        border-color: rgba(127, 255, 212, 0.35);
    }

    50% {
        box-shadow: 0 0 20px rgba(127, 255, 212, 0.2);
        border-color: rgba(127, 255, 212, 0.55);
    }
}

.hero__title {
    font-family: var(--font-display);
    font-size: var(--fs-hero);
    font-weight: var(--fw-black);
    line-height: var(--lh-tight);
    color: var(--color-white);
    margin: 0 0 var(--space-md);
    letter-spacing: -0.04em;
}

.hero__title-rest {
    display: inline-block;
    animation: hero-title-shift 6s ease-in-out infinite;
}

@keyframes hero-title-shift {

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

    50% {
        opacity: 0.92;
        transform: translateX(2px);
    }
}

.hero__copy .highlight {
    display: inline-block;
    background: linear-gradient(90deg,
            var(--color-coral),
            var(--color-pink),
            var(--color-sky),
            var(--color-coral));
    background-size: 280% 100%;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    animation: hero-gradient-flow 7s ease infinite;
}

@keyframes hero-gradient-flow {
    0% {
        background-position: 0% 50%;
    }

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

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

.hero__copy .hero__title {
    margin: 0 0 var(--space-md);
}

.hero__desc {
    color: var(--color-muted);
    margin: 0 0 var(--space-lg);
    font-size: var(--fs-md);
    max-width: 48ch;
    animation: hero-desc-breathe 8s ease-in-out infinite;
}

@keyframes hero-desc-breathe {

    0%,
    100% {
        opacity: 0.95;
    }

    50% {
        opacity: 1;
    }
}

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

.price {
    font-size: clamp(1.75rem, 1.5rem + 1vw, 2.5rem);
    font-weight: var(--fw-black);
    color: var(--color-mint);
}

.price__inner {
    display: inline-block;
    animation: hero-price-glow 3.5s ease-in-out infinite;
}

@keyframes hero-price-glow {

    0%,
    100% {
        text-shadow: 0 0 0 transparent;
        transform: scale(1);
    }

    50% {
        text-shadow: 0 0 24px rgba(127, 255, 212, 0.35), 0 0 40px rgba(77, 166, 255, 0.15);
        transform: scale(1.02);
    }
}

.price__note {
    font-size: var(--fs-sm);
    font-weight: var(--fw-medium);
    color: var(--color-muted);
    vertical-align: super;
    margin-left: var(--space-xs);
}

.hero__price-disclaimer {
    margin: 0 0 var(--space-lg);
    font-size: var(--fs-xs);
    color: var(--color-muted);
    line-height: 1.55;
    max-width: 52ch;
}

.trust-badge a {
    color: inherit;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.trust-badge a:hover {
    color: var(--color-sky);
}

.disclaimer-box--ads p {
    margin: 0 0 var(--space-md);
}

.disclaimer-box--ads p:last-child {
    margin-bottom: 0;
}

.stat-strip {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
    margin-bottom: var(--space-xl);
}

.stat-pill {
    flex: 1 1 auto;
    min-width: 100px;
    padding: var(--space-md) var(--space-lg);
    border-radius: var(--radius-md);
    border: 1px solid var(--glass-border);
    background: rgba(77, 166, 255, 0.08);
    text-align: center;
    transition: transform var(--transition-base), border-color var(--transition-base), box-shadow var(--transition-base);
}

.stat-pill:hover {
    transform: translateY(-3px);
    border-color: rgba(255, 107, 74, 0.45);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.stat-pill__num {
    display: block;
    font-size: clamp(1.5rem, 1.2rem + 1vw, 2rem);
    font-weight: var(--fw-black);
    background: linear-gradient(90deg, var(--color-mint), var(--color-sky));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    line-height: 1.2;
}

.stat-pill__lbl {
    display: block;
    margin-top: var(--space-xs);
    font-size: var(--fs-xs);
    color: var(--color-muted);
    line-height: 1.35;
}

.order-form {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    backdrop-filter: blur(8px);
}

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

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: var(--space-md);
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: rgba(15, 20, 40, 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 {
    outline: none;
    border-color: var(--color-sky);
    box-shadow: 0 0 0 3px rgba(77, 166, 255, 0.25);
}

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

.form-error {
    display: none;
    font-size: var(--fs-xs);
    color: var(--color-coral);
    margin-top: var(--space-xs);
}

.form-group.has-error input,
.form-group.has-error textarea {
    border-color: var(--color-coral);
}

.form-group.has-error .form-error {
    display: block;
}

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

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

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

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

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

.btn--primary:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 0 40px rgba(255, 107, 74, 0.55), 0 8px 24px rgba(0, 0, 0, 0.2);
}

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

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

.btn--outline:hover {
    background: rgba(127, 255, 212, 0.1);
}

.btn--sky {
    background: linear-gradient(135deg, var(--color-sky), var(--color-mint));
    color: var(--color-navy);
}

.btn--magnetic {
    position: relative;
    will-change: transform;
}

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

.bento__card:nth-child(1) {
    grid-column: 1 / 3;
    grid-row: 1 / 3;
}

.bento__card:nth-child(2) {
    grid-column: 3 / 5;
    grid-row: 1;
}

.bento__card:nth-child(3) {
    grid-column: 3;
    grid-row: 2;
}

.bento__card:nth-child(4) {
    grid-column: 4;
    grid-row: 2;
}

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

    .bento__card:nth-child(1) {
        grid-column: 1 / 3;
        grid-row: auto;
    }

    .bento__card:nth-child(2) {
        grid-column: 1;
        grid-row: auto;
    }

    .bento__card:nth-child(3) {
        grid-column: 2;
        grid-row: auto;
    }

    .bento__card:nth-child(4) {
        grid-column: 1 / 3;
        grid-row: auto;
    }
}

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

    .bento__card:nth-child(1),
    .bento__card:nth-child(2),
    .bento__card:nth-child(3),
    .bento__card:nth-child(4) {
        grid-column: 1;
        grid-row: auto;
    }
}

.bento__card {
    position: relative;
    display: flex;
    flex-direction: column;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--glass-border);
    transition: transform var(--transition-base), box-shadow var(--transition-base);
    min-height: 140px;
}

.bento__card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-glow-sky);
}

.bento__icon {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 120px;
    padding: var(--space-xl) var(--space-lg);
    font-size: clamp(2.75rem, 7vw, 4.25rem);
    line-height: 1;
}

.bento__icon i {
    filter: drop-shadow(0 4px 20px rgba(0, 0, 0, 0.35));
}

.bento__icon--coral i {
    color: var(--color-coral);
}

.bento__icon--sky i {
    color: var(--color-sky);
}

.bento__icon--mint i {
    color: var(--color-mint);
}

.bento__icon--pink i {
    color: var(--color-pink);
}

.bento__body {
    padding: var(--space-lg);
    margin-top: auto;
    border-top: 1px solid var(--glass-border);
    background: rgba(15, 20, 40, 0.85);
}

.bento__body h3 {
    margin: 0;
    font-size: var(--fs-lg);
    color: var(--color-white);
}

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

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

.ingredient-card {
    perspective: 1000px;
    border-radius: var(--radius-lg);
}

.ingredient-card__inner {
    position: relative;
    border-radius: var(--radius-lg);
    border: 1px solid var(--glass-border);
    background: rgba(255, 255, 255, 0.04);
    min-height: 200px;
    padding: var(--space-xl);
    transition: transform var(--transition-slow), box-shadow var(--transition-base);
    transform-style: preserve-3d;
}

.ingredient-card:hover .ingredient-card__inner {
    box-shadow: var(--shadow-glow-coral);
}

.ingredient-card__icon {
    width: 2.5rem;
    height: 2.5rem;
    margin: 0 0 var(--space-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.08);
    color: var(--color-mint);
}

.ingredient-card h3 {
    margin: 0 0 var(--space-sm);
    color: var(--color-white);
    font-size: var(--fs-lg);
}

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

.ingredient-card .ingredient-back {
    position: absolute;
    inset: var(--space-xl);
    opacity: 0;
    transition: opacity var(--transition-base);
    color: var(--color-mint);
    font-size: var(--fs-sm);
}

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

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

.trust-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
    align-items: start;
}

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

.trust-item {
    text-align: center;
    padding: var(--space-xl);
    background: rgba(255, 255, 255, 0.03);
    border-radius: var(--radius-lg);
    border: 1px solid var(--glass-border);
    transition: transform var(--transition-base), border-color var(--transition-base);
}

.trust-item:hover {
    transform: translateY(-6px);
    border-color: rgba(77, 166, 255, 0.4);
}

.trust-item__icon {
    font-size: 3rem;
    line-height: 1;
    margin: 0 auto var(--space-md);
    animation: trust-pulse 5s ease-in-out infinite;
}

.trust-item__icon--sky i {
    color: var(--color-sky);
}

.trust-item__icon--coral i {
    color: var(--color-coral);
}

.trust-item__icon--mint i {
    color: var(--color-mint);
}

@keyframes trust-pulse {

    0%,
    100% {
        filter: drop-shadow(0 0 0 transparent);
        transform: scale(1);
    }

    50% {
        filter: drop-shadow(0 0 12px rgba(77, 166, 255, 0.35));
        transform: scale(1.04);
    }
}

.trust-item h3 {
    margin: 0 0 var(--space-sm);
    color: var(--color-white);
    font-size: var(--fs-lg);
}

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

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

.spec-item,
.benefit-item {
    padding: var(--space-lg);
    background: rgba(255, 255, 255, 0.03);
    border-radius: var(--radius-md);
    border: 1px solid var(--glass-border);
    transition: border-color var(--transition-base), transform var(--transition-base);
}

.spec-item:hover,
.benefit-item:hover {
    border-color: var(--color-pink);
    transform: translateY(-3px);
}

.spec-item dt {
    font-weight: var(--fw-bold);
    color: var(--color-mint);
    margin-bottom: var(--space-xs);
}

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

.benefit-item__icon {
    font-size: 1.75rem;
    margin-bottom: var(--space-md);
    color: var(--color-coral);
}

.benefit-item__icon i {
    filter: drop-shadow(0 2px 8px rgba(255, 107, 74, 0.35));
}

.benefit-item h3 {
    margin: 0 0 var(--space-sm);
    color: var(--color-white);
    font-size: var(--fs-md);
}

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

.product-figure {
    margin: 0 0 var(--space-xl) 0;
    max-width: 400px;
}

.product-figure--icons {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 280px;
    min-width: 240px;
    max-width: 400px;
    border-radius: var(--radius-xl);
    border: 1px solid var(--glass-border);
    background: linear-gradient(165deg, rgba(255, 107, 74, 0.12), rgba(77, 166, 255, 0.08));
}

.product-figure__icon-ring {
    position: absolute;
    inset: 12%;
    border-radius: var(--radius-lg);
    border: 2px solid rgba(127, 255, 212, 0.35);
    border-style: dashed;
    opacity: 0.6;
    pointer-events: none;
}

.product-figure__icon-main {
    position: relative;
    z-index: 1;
    font-size: clamp(4rem, 12vw, 7rem);
    line-height: 1;
}

.product-figure__icon-main i {
    color: var(--color-mint);
    filter: drop-shadow(0 8px 32px rgba(77, 166, 255, 0.4));
}

.prose-block {
    color: var(--color-muted);
    max-width: 75ch;
}

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

.effects-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.effects-list li {
    padding: var(--space-md) var(--space-lg);
    margin-bottom: var(--space-sm);
    background: rgba(77, 166, 255, 0.08);
    border-left: 4px solid var(--color-sky);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    color: var(--color-text);
    font-size: var(--fs-sm);
}

.cta-banner {
    text-align: center;
    padding: var(--space-3xl) var(--space-lg);
    background: linear-gradient(135deg, rgba(255, 107, 74, 0.2), rgba(255, 63, 143, 0.15));
    border-radius: var(--radius-xl);
    border: 1px solid var(--glass-border);
}

.cta-banner h2 {
    margin: 0 0 var(--space-md);
    color: var(--color-white);
    font-size: var(--fs-xl);
}

.cta-banner p {
    margin: 0 0 var(--space-xl);
    color: var(--color-muted);
}

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

.steps li {
    position: relative;
    padding-left: var(--space-3xl);
    margin-bottom: var(--space-lg);
    color: var(--color-muted);
}

.steps li::before {
    counter-increment: step;
    content: counter(step);
    position: absolute;
    left: 0;
    top: 0;
    width: 36px;
    height: 36px;
    border-radius: var(--radius-full);
    background: linear-gradient(135deg, var(--color-sky), var(--color-mint));
    color: var(--color-navy);
    font-weight: var(--fw-bold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--fs-sm);
}

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

.ingredient-list article {
    padding: var(--space-md);
    background: rgba(255, 255, 255, 0.03);
    border-radius: var(--radius-md);
    border: 1px solid var(--glass-border);
    font-size: var(--fs-sm);
    color: var(--color-text);
}

.ingredient-list strong {
    color: var(--color-mint);
    display: block;
    margin-bottom: var(--space-xs);
}

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

.review-card {
    padding: var(--space-xl);
    background: rgba(255, 255, 255, 0.04);
    border-radius: var(--radius-lg);
    border: 1px solid var(--glass-border);
    transition: transform var(--transition-base);
}

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

.review-card blockquote {
    margin: 0 0 var(--space-md);
    font-style: italic;
    color: var(--color-text);
    font-size: var(--fs-sm);
}

.review-card cite {
    font-size: var(--fs-xs);
    color: var(--color-muted);
    font-style: normal;
}

.faq details {
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    margin-bottom: var(--space-sm);
    padding: var(--space-md) var(--space-lg);
    background: rgba(255, 255, 255, 0.02);
    transition: border-color var(--transition-fast);
}

.faq details:hover {
    border-color: rgba(127, 255, 212, 0.3);
}

.faq summary {
    cursor: pointer;
    font-weight: var(--fw-bold);
    color: var(--color-white);
    list-style: none;
}

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

.faq details[open] summary {
    margin-bottom: var(--space-sm);
    color: var(--color-mint);
}

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

.disclaimer-box {
    padding: var(--space-xl);
    background: rgba(15, 20, 40, 0.8);
    border: 1px solid rgba(255, 107, 74, 0.25);
    border-radius: var(--radius-lg);
    font-size: var(--fs-xs);
    color: var(--color-muted);
    line-height: 1.7;
}

.disclaimer-box strong {
    color: var(--color-coral);
}

.site-footer {
    margin-top: var(--space-3xl);
    padding: var(--space-2xl) var(--space-lg);
    background: #0a0e1a;
    border-top: 1px solid var(--glass-border);
}

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

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

.footer-nav {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-md) var(--space-xl);
}

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

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

.footer-copy {
    margin: var(--space-lg) 0 0;
    font-size: var(--fs-xs);
    color: var(--color-muted);
}

.legal-ads {
    margin-top: var(--space-xl);
    padding: var(--space-lg);
    background: rgba(255, 255, 255, 0.03);
    border-radius: var(--radius-md);
    font-size: var(--fs-xs);
    color: var(--color-muted);
    line-height: 1.65;
    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-md) var(--space-lg) calc(var(--space-lg) + env(safe-area-inset-bottom, 0px));
    pointer-events: none;
    transform: translateY(110%);
    transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

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

.cookie-banner__surface {
    pointer-events: auto;
    max-width: var(--max-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: var(--space-lg);
    padding: var(--space-lg) var(--space-xl);
    background: linear-gradient(145deg, rgba(26, 31, 54, 0.97) 0%, rgba(15, 20, 40, 0.98) 100%);
    border: 1px solid rgba(127, 255, 212, 0.18);
    border-radius: var(--radius-xl);
    box-shadow: 0 -8px 40px rgba(0, 0, 0, 0.45), 0 0 0 1px rgba(255, 255, 255, 0.06) inset, 0 0 48px rgba(255, 107, 74, 0.12);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.cookie-banner__brand {
    width: 52px;
    height: 52px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    background: linear-gradient(135deg, rgba(255, 107, 74, 0.25), rgba(77, 166, 255, 0.2));
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--color-mint);
    flex-shrink: 0;
}

.cookie-banner__main {
    min-width: 0;
}

.cookie-banner__title {
    margin: 0 0 var(--space-xs);
    font-family: var(--font-display);
    font-size: var(--fs-md);
    font-weight: var(--fw-bold);
    color: var(--color-white);
    letter-spacing: -0.02em;
}

.cookie-banner__text {
    margin: 0;
    font-size: var(--fs-sm);
    line-height: 1.55;
    color: var(--color-muted);
}

.cookie-banner__text a {
    color: var(--color-mint);
    font-weight: var(--fw-medium);
}

.cookie-banner__actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-end;
    gap: var(--space-sm);
    flex-shrink: 0;
}

.cookie-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-xs);
    padding: var(--space-sm) var(--space-lg);
    font-family: inherit;
    font-size: var(--fs-sm);
    font-weight: var(--fw-bold);
    border-radius: var(--radius-md);
    border: 1px solid transparent;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease;
    white-space: nowrap;
}

.cookie-btn--ghost {
    background: rgba(255, 255, 255, 0.06);
    border-color: var(--glass-border);
    color: var(--color-text);
}

.cookie-btn--ghost:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(127, 255, 212, 0.35);
    color: var(--color-white);
}

.cookie-btn--accept {
    background: linear-gradient(135deg, var(--color-coral), var(--color-pink));
    color: var(--color-white);
    box-shadow: 0 4px 20px rgba(255, 107, 74, 0.35);
}

.cookie-btn--accept:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 28px rgba(255, 107, 74, 0.45);
}

.cookie-btn--accept:active {
    transform: translateY(0);
}

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

    .cookie-banner__brand {
        justify-self: center;
    }

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

    .cookie-btn {
        flex: 1 1 auto;
        min-width: 0;
    }
}

@media (max-width: 520px) {
    .cookie-banner__actions {
        flex-direction: column;
    }

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

.modal-overlay {
    position: fixed;
    inset: 0;
    z-index: 3000;
    background: rgba(5, 8, 18, 0.82);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-lg);
    padding-bottom: calc(var(--space-lg) + env(safe-area-inset-bottom, 0px));
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s ease, visibility 0.35s ease;
}

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

.cookie-modal {
    width: 100%;
    max-width: 440px;
    max-height: min(88vh, 640px);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    background: linear-gradient(180deg, rgba(30, 36, 58, 0.98) 0%, rgba(18, 22, 38, 0.99) 100%);
    border: 1px solid rgba(127, 255, 212, 0.2);
    border-radius: var(--radius-xl);
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.55), 0 0 0 1px rgba(255, 255, 255, 0.05) inset;
    transform: translateY(16px) scale(0.98);
    opacity: 0;
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.35s ease;
}

.modal-overlay.is-open .cookie-modal {
    transform: translateY(0) scale(1);
    opacity: 1;
}

.cookie-modal__header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: var(--space-md);
    padding: var(--space-lg) var(--space-xl);
    border-bottom: 1px solid var(--glass-border);
}

.cookie-modal__head {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    min-width: 0;
}

.cookie-modal__icon {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    background: rgba(77, 166, 255, 0.15);
    color: var(--color-sky);
    flex-shrink: 0;
}

.cookie-modal__header h2 {
    margin: 0;
    font-size: var(--fs-lg);
    font-weight: var(--fw-bold);
    color: var(--color-white);
    line-height: var(--lh-tight);
}

.cookie-modal__close {
    width: 40px;
    height: 40px;
    padding: 0;
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.05);
    color: var(--color-muted);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    transition: color 0.2s ease, background 0.2s ease, border-color 0.2s ease;
    flex-shrink: 0;
}

.cookie-modal__close:hover {
    color: var(--color-white);
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(127, 255, 212, 0.3);
}

.cookie-modal__lead {
    margin: 0;
    padding: var(--space-md) var(--space-xl) 0;
    font-size: var(--fs-sm);
    color: var(--color-muted);
    line-height: 1.5;
}

.cookie-modal__list {
    padding: var(--space-lg) var(--space-xl);
    overflow-y: auto;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.cookie-option {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-md);
    padding: var(--space-md) var(--space-lg);
    border-radius: var(--radius-md);
    border: 1px solid var(--glass-border);
    background: rgba(255, 255, 255, 0.03);
    transition: border-color 0.2s ease, background 0.2s ease;
}

.cookie-option:hover:not(.cookie-option--locked) {
    border-color: rgba(77, 166, 255, 0.35);
    background: rgba(255, 255, 255, 0.05);
}

.cookie-option--locked {
    opacity: 0.95;
    border-style: dashed;
}

.cookie-option__text {
    min-width: 0;
}

.cookie-option__text strong {
    display: block;
    font-size: var(--fs-sm);
    color: var(--color-white);
    margin-bottom: 2px;
}

.cookie-option__text span {
    font-size: var(--fs-xs);
    color: var(--color-muted);
    line-height: 1.45;
}

.cookie-option__badge {
    flex-shrink: 0;
    font-size: var(--fs-xs);
    font-weight: var(--fw-bold);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    padding: var(--space-xs) var(--space-md);
    border-radius: var(--radius-full);
    background: rgba(127, 255, 212, 0.12);
    color: var(--color-mint);
    border: 1px solid rgba(127, 255, 212, 0.25);
}

.cookie-option__switch {
    position: relative;
    width: 48px;
    height: 28px;
    flex-shrink: 0;
}

.cookie-option__switch input {
    position: absolute;
    opacity: 0;
    width: 100%;
    height: 100%;
    margin: 0;
    cursor: pointer;
    z-index: 2;
}

.cookie-option__track {
    position: absolute;
    inset: 0;
    border-radius: var(--radius-full);
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid var(--glass-border);
    transition: background 0.25s ease, border-color 0.25s ease;
}

.cookie-option__thumb {
    position: absolute;
    top: 3px;
    left: 3px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--color-white);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
    transition: transform 0.25s cubic-bezier(0.22, 1, 0.36, 1);
}

.cookie-option__switch input:checked+.cookie-option__track {
    background: linear-gradient(135deg, var(--color-coral), var(--color-pink));
    border-color: transparent;
}

.cookie-option__switch input:checked+.cookie-option__track .cookie-option__thumb {
    transform: translateX(20px);
}

.cookie-option__switch input:focus-visible+.cookie-option__track {
    outline: 2px solid var(--color-sky);
    outline-offset: 2px;
}

.cookie-modal__actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: var(--space-sm);
    padding: var(--space-lg) var(--space-xl);
    border-top: 1px solid var(--glass-border);
    background: rgba(0, 0, 0, 0.2);
}

.tilt-card {
    transition: transform 0.1s linear;
}

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

.hero-bg__orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.35;
    animation: orb-float 18s ease-in-out infinite;
}

.hero-bg__orb--1 {
    width: min(420px, 90vw);
    height: min(420px, 90vw);
    top: -10%;
    right: -5%;
    background: radial-gradient(circle, var(--color-coral) 0%, transparent 70%);
    animation-delay: 0s;
}

.hero-bg__orb--2 {
    width: min(360px, 80vw);
    height: min(360px, 80vw);
    bottom: 10%;
    left: -8%;
    background: radial-gradient(circle, var(--color-sky) 0%, transparent 70%);
    animation-delay: -6s;
}

.hero-bg__orb--3 {
    width: min(280px, 70vw);
    height: min(280px, 70vw);
    top: 40%;
    left: 35%;
    background: radial-gradient(circle, var(--color-pink) 0%, transparent 70%);
    animation-delay: -12s;
    opacity: 0.22;
}

@keyframes orb-float {

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

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

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

.section--rhythm {
    position: relative;
}

.tab-stack {
    max-width: 900px;
    margin: 0 auto;
}

.tab-stack__list {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
    margin-bottom: var(--space-xl);
    padding: var(--space-xs);
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--glass-border);
}

.tab-stack__tab {
    flex: 1 1 auto;
    min-width: 72px;
    padding: var(--space-md) var(--space-lg);
    font-family: inherit;
    font-size: var(--fs-sm);
    font-weight: var(--fw-bold);
    color: var(--color-muted);
    background: transparent;
    border: 1px solid transparent;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: color var(--transition-fast), background var(--transition-fast), box-shadow var(--transition-fast), transform var(--transition-fast);
}

.tab-stack__tab:hover {
    color: var(--color-white);
    background: rgba(255, 255, 255, 0.06);
}

.tab-stack__tab.is-active {
    color: var(--color-navy);
    background: linear-gradient(135deg, var(--color-mint), var(--color-sky));
    box-shadow: 0 4px 24px rgba(77, 166, 255, 0.35);
    transform: translateY(-2px);
}

.tab-stack__panels {
    position: relative;
    min-height: 220px;
}

.tab-stack__panel {
    position: relative;
    padding: var(--space-xl);
    border-radius: var(--radius-xl);
    border: 1px solid var(--glass-border);
    background: rgba(15, 20, 40, 0.75);
    overflow: hidden;
    opacity: 0;
    transform: translateY(12px);
    transition: opacity 0.45s ease, transform 0.45s ease;
}

.tab-stack__panel.is-active {
    opacity: 1;
    transform: translateY(0);
}

.tab-stack__panel[hidden] {
    display: none;
}

.tab-stack__mesh {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 107, 74, 0.12), rgba(255, 63, 143, 0.08), transparent 55%);
    pointer-events: none;
}

.tab-stack__mesh--b {
    background: linear-gradient(225deg, rgba(77, 166, 255, 0.15), rgba(127, 255, 212, 0.08), transparent 50%);
}

.tab-stack__mesh--c {
    background: linear-gradient(180deg, rgba(255, 63, 143, 0.12), rgba(255, 107, 74, 0.06), transparent 60%);
}

.tab-stack__mesh--d {
    background: linear-gradient(90deg, rgba(127, 255, 212, 0.1), rgba(26, 31, 54, 0.4), rgba(77, 166, 255, 0.1));
}

.tab-stack__panel-title {
    position: relative;
    margin: 0 0 var(--space-md);
    font-size: var(--fs-lg);
    color: var(--color-white);
}

.tab-stack__panel-text {
    position: relative;
    margin: 0 0 var(--space-lg);
    color: var(--color-muted);
    font-size: var(--fs-sm);
    line-height: 1.65;
    max-width: 62ch;
}

.tab-stack__meter {
    position: relative;
    height: 8px;
    border-radius: var(--radius-full);
    background: rgba(255, 255, 255, 0.08);
    overflow: hidden;
    margin-bottom: var(--space-md);
}

.tab-stack__meter-fill {
    display: block;
    height: 100%;
    width: var(--meter);
    border-radius: var(--radius-full);
    background: linear-gradient(90deg, var(--color-coral), var(--color-pink));
    transform-origin: left center;
    animation: meter-grow 1.1s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.tab-stack__meter-fill--b {
    background: linear-gradient(90deg, var(--color-sky), var(--color-mint));
}

.tab-stack__meter-fill--c {
    background: linear-gradient(90deg, var(--color-pink), var(--color-coral));
}

.tab-stack__meter-fill--d {
    background: linear-gradient(90deg, var(--color-mint), var(--color-sky));
}

@keyframes meter-grow {
    0% {
        transform: scaleX(0.2);
        opacity: 0.5;
    }

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

.tab-stack__tag {
    position: relative;
    display: inline-block;
    font-size: var(--fs-xs);
    font-weight: var(--fw-bold);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--color-mint);
    padding: var(--space-xs) var(--space-md);
    border: 1px solid rgba(127, 255, 212, 0.35);
    border-radius: var(--radius-full);
}

.legal-page {
    min-height: 100vh;
    background: linear-gradient(165deg, #0a0e1a 0%, var(--color-navy) 35%, #12172e 100%);
}

.legal-page__glow {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    background: radial-gradient(ellipse 80% 50% at 50% -10%, rgba(255, 107, 74, 0.18), transparent 50%),
        radial-gradient(ellipse 60% 40% at 100% 50%, rgba(77, 166, 255, 0.1), transparent 45%);
}

.legal-shell {
    position: relative;
    z-index: 1;
    max-width: 920px;
    margin: 0 auto;
    padding: var(--space-xl) var(--space-lg) var(--space-3xl);
}

.legal-hero {
    padding: var(--space-2xl);
    margin-bottom: var(--space-2xl);
    border-radius: var(--radius-xl);
    border: 1px solid var(--glass-border);
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(12px);
    box-shadow: var(--shadow-lg);
}

.legal-hero__label {
    display: inline-block;
    font-size: var(--fs-xs);
    font-weight: var(--fw-bold);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--color-coral);
    margin-bottom: var(--space-md);
}

.legal-hero h1 {
    margin: 0 0 var(--space-md);
    font-size: clamp(1.5rem, 1.2rem + 1.5vw, 2.25rem);
    color: var(--color-white);
    line-height: var(--lh-tight);
}

.legal-hero__meta {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-md);
    align-items: center;
    font-size: var(--fs-sm);
    color: var(--color-muted);
}

.legal-hero__meta time {
    color: var(--color-mint);
    font-weight: var(--fw-medium);
}

.legal-hero__sub {
    margin: var(--space-lg) 0 0;
    font-size: var(--fs-sm);
    color: var(--color-muted);
    line-height: 1.6;
}

.legal-grid {
    display: grid;
    gap: var(--space-lg);
}

.legal-card {
    padding: var(--space-xl);
    border-radius: var(--radius-lg);
    border: 1px solid var(--glass-border);
    background: rgba(15, 20, 40, 0.65);
    transition: border-color var(--transition-base), transform var(--transition-base);
}

.legal-card:hover {
    border-color: rgba(77, 166, 255, 0.35);
    transform: translateY(-2px);
}

.legal-card h2 {
    margin: 0 0 var(--space-md);
    font-size: var(--fs-lg);
    color: var(--color-mint);
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.legal-card h2::before {
    content: "";
    width: 4px;
    height: 1.1em;
    border-radius: 2px;
    background: linear-gradient(180deg, var(--color-coral), var(--color-pink));
}

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

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

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

.legal-card li {
    margin-bottom: var(--space-sm);
}

.legal-card a {
    color: var(--color-sky);
}

.legal-nav-foot {
    margin-top: var(--space-2xl);
    padding: var(--space-lg);
    text-align: center;
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.03);
    border: 1px dashed var(--glass-border);
}

.legal-nav-foot a {
    font-weight: var(--fw-bold);
}

.thank-page {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background: linear-gradient(165deg, #0a0e1a 0%, var(--color-navy) 50%, #151a32 100%);
}

.thank-page__inner {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-2xl) var(--space-lg);
}

.thank-card {
    max-width: 520px;
    width: 100%;
    padding: var(--space-2xl);
    border-radius: var(--radius-xl);
    border: 1px solid var(--glass-border);
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(16px);
    text-align: center;
    box-shadow: var(--shadow-glow-coral);
    animation: thank-in 0.8s cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes thank-in {
    0% {
        opacity: 0;
        transform: translateY(40px) scale(0.96);
    }

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

.thank-card__icon {
    width: 72px;
    height: 72px;
    margin: 0 auto var(--space-lg);
    border-radius: var(--radius-full);
    background: linear-gradient(135deg, var(--color-coral), var(--color-pink));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.25rem;
    line-height: 1;
    box-shadow: var(--shadow-glow-coral);
    color: var(--color-white);
}

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

.thank-card p {
    margin: 0 0 var(--space-sm);
    color: var(--color-muted);
    font-size: var(--fs-sm);
    line-height: 1.65;
}

.thank-card__fineprint {
    font-size: var(--fs-xs);
    color: var(--color-muted);
    line-height: 1.55;
    margin-bottom: var(--space-md);
}

.thank-card__fineprint a {
    color: var(--color-sky);
}

.thank-card__date {
    display: block;
    margin-bottom: var(--space-xl);
    font-size: var(--fs-xs);
    color: var(--color-mint);
}

@media (max-width: 320px) {
    :root {
        --space-lg: 1.125rem;
        --space-xl: 1.5rem;
        --space-2xl: 2rem;
        --space-3xl: 2.5rem;
        --space-section: 2rem;
        --header-h: 64px;
        --max-width: 100%;
    }

    .site-header__inner {
        padding-left: var(--space-sm);
        padding-right: var(--space-sm);
        gap: var(--space-sm);
    }

    .brand {
        font-size: clamp(0.95rem, 4vw, 1.1rem);
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

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

    .burger__bar {
        width: 20px;
    }

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

    .hero__copy .hero__title {
        font-size: clamp(1.75rem, 8vw, 2.25rem);
        word-break: break-word;
    }

    .hero__desc {
        font-size: var(--fs-sm);
    }

    .price-row {
        flex-wrap: wrap;
        gap: var(--space-sm);
    }

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

    .form-group input,
    .form-group textarea {
        padding: var(--space-sm) var(--space-md);
        font-size: 0.8125rem;
    }

    .btn {
        width: 100%;
        padding: var(--space-md) var(--space-lg);
        font-size: var(--fs-sm);
    }

    .tab-stack__list {
        flex-direction: column;
    }

    .tab-stack__tab {
        width: 100%;
        text-align: center;
    }

    .tab-stack__panels {
        min-height: 0;
    }

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

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

    .bento__card {
        min-height: 120px;
    }

    .ingredient-grid {
        grid-template-columns: 1fr;
        gap: var(--space-md);
    }

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

    .spec-grid,
    .benefits-grid {
        grid-template-columns: 1fr;
    }

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

    .cta-banner {
        padding: var(--space-xl) var(--space-sm);
    }

    .cta-banner h2 {
        font-size: var(--fs-lg);
    }

    .cookie-banner {
        padding: var(--space-sm);
    }

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

    .footer-nav {
        flex-direction: column;
        gap: var(--space-sm);
    }

    .legal-shell {
        padding-left: var(--space-sm);
        padding-right: var(--space-sm);
    }

    .legal-hero {
        padding: var(--space-lg) var(--space-md);
    }

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

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

    .modal {
        padding: var(--space-md);
        margin: var(--space-sm);
    }

    .stat-strip {
        flex-direction: column;
    }

    .stat-pill {
        min-width: 0;
    }
}

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

    .hero-bg__orb,
    .hero__figure,
    .hero__visual-ring,
    .hero__visual-ring::before,
    .hero__particle,
    .hero__figure::after,
    .hero__copy .highlight,
    .hero__title-rest,
    .hero__desc,
    .price__inner,
    .price--old,
    .rating__score,
    .rating__stars,
    .trust-badge,
    .trust-item__icon,
    .tab-stack__meter-fill,
    .thank-card {
        animation: none !important;
    }

    .reveal.is-visible {
        animation: none !important;
        opacity: 1;
        transform: none;
    }
}