:root {
    --color-citrus: #FF9F1C;
    --color-pink: #FF1F8F;
    --color-ice: #5EDFFF;
    --color-pistachio: #CFFF3A;
    --color-indigo: #1B1A55;
    --color-white: #ffffff;
    --color-cream: #f8f9fc;
    --color-text: #1a1a2e;
    --color-text-muted: #5c5c6f;
    --font-display: "Segoe UI", system-ui, -apple-system, sans-serif;
    --font-body: "Segoe UI", system-ui, -apple-system, sans-serif;
    --font-size-xs: 0.75rem;
    --font-size-sm: 0.875rem;
    --font-size-base: 1rem;
    --font-size-lg: 1.125rem;
    --font-size-xl: 1.25rem;
    --font-size-2xl: 1.5rem;
    --font-size-3xl: 2rem;
    --font-size-4xl: 2.5rem;
    --font-size-5xl: clamp(2rem, 5vw, 3.25rem);
    --line-tight: 1.2;
    --line-normal: 1.5;
    --line-relaxed: 1.65;
    --shadow-sm: 0 2px 8px rgba(27, 26, 85, 0.08);
    --shadow-md: 0 8px 24px rgba(27, 26, 85, 0.12);
    --shadow-lg: 0 16px 48px rgba(27, 26, 85, 0.18);
    --shadow-glow-citrus: 0 0 32px rgba(255, 159, 28, 0.45);
    --shadow-glow-pink: 0 0 28px rgba(255, 31, 143, 0.35);
    --shadow-glow-ice: 0 0 24px rgba(94, 223, 255, 0.4);
    --radius-sm: 0.5rem;
    --radius-md: 0.75rem;
    --radius-lg: 1rem;
    --radius-xl: 1.25rem;
    --radius-2xl: 1.5rem;
    --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.4s cubic-bezier(0.4, 0, 0.2, 1);
    --header-h: 4.25rem;
    --glass-bg: rgba(255, 255, 255, 0.72);
    --glass-border: rgba(255, 255, 255, 0.35);
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: calc(var(--header-h) + var(--space-sm));
    overflow-x: hidden;
}

body {
    margin: 0;
    font-family: var(--font-body);
    font-size: var(--font-size-base);
    line-height: var(--line-normal);
    color: var(--color-text);
    background: linear-gradient(165deg, var(--color-cream) 0%, #eef1ff 50%, #fff5f8 100%);
    min-height: 100vh;
    overflow-x: hidden;
}

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

a {
    color: var(--color-indigo);
    text-decoration: none;
    transition: color var(--transition-fast);
}

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

.skip-link {
    position: absolute;
    left: -9999px;
    z-index: 9999;
    padding: var(--space-md);
    background: var(--color-indigo);
    color: var(--color-white);
}

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

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

.header-inner {
    width: min(1200px, 100% - var(--space-xl));
    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(--font-size-lg);
    color: var(--color-indigo);
    letter-spacing: -0.02em;
}

.brand span {
    color: var(--color-citrus);
}

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

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

.burger-btn {
    display: none;
    z-index: 160;
    position: relative;
    width: 48px;
    height: 48px;
    padding: 0;
    border: none;
    border-radius: var(--radius-lg);
    background: linear-gradient(145deg, rgba(255, 159, 28, 0.15), rgba(94, 223, 255, 0.12));
    cursor: pointer;
    box-shadow: inset 0 0 0 2px rgba(27, 26, 85, 0.12);
    transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.burger-btn:hover {
    transform: scale(1.05);
    box-shadow: inset 0 0 0 2px rgba(255, 31, 143, 0.25), var(--shadow-sm);
}

.burger-box {
    display: block;
    position: relative;
    width: 22px;
    height: 16px;
    margin: 0 auto;
}

.burger-bar {
    position: absolute;
    left: 0;
    right: 0;
    height: 2px;
    border-radius: 2px;
    background: var(--color-indigo);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.25s ease, top 0.35s ease;
}

.burger-bar--top {
    top: 0;
}

.burger-bar--mid {
    top: 7px;
}

.burger-bar--bot {
    top: 14px;
}

.burger-btn.is-active .burger-bar--top {
    top: 7px;
    transform: rotate(45deg);
}

.burger-btn.is-active .burger-bar--mid {
    opacity: 0;
    transform: scaleX(0);
}

.burger-btn.is-active .burger-bar--bot {
    top: 7px;
    transform: rotate(-45deg);
}

.nav-backdrop {
    display: none;
}

body.nav-open {
    overflow: hidden;
}

.hero--studio {
    position: relative;
    overflow: hidden;
    padding: var(--space-3xl) var(--space-md) var(--space-section);
    background: #0e0d28;
}

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

.hero-gradient-shift {
    position: absolute;
    inset: -50%;
    background: linear-gradient(125deg,
            #1b1a55 0%,
            #3d1f5c 22%,
            #1a3a5c 45%,
            #5c1a4a 68%,
            #1b1a55 100%);
    background-size: 400% 400%;
    animation: heroBgShift 18s ease-in-out infinite;
}

@keyframes heroBgShift {

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

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

.hero-grid-mesh {
    position: absolute;
    inset: 0;
    opacity: 0.15;
    background-image: linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
    background-size: 48px 48px;
    animation: heroMeshDrift 24s linear infinite;
    mask-image: radial-gradient(ellipse 80% 70% at 50% 45%, black 20%, transparent 75%);
}

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

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

.hero-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(50px);
    opacity: 0.55;
    animation: heroBlobFloat 16s ease-in-out infinite;
}

.hero-blob--1 {
    width: 220px;
    height: 220px;
    background: radial-gradient(circle, #ff9f1c, transparent 70%);
    top: 5%;
    left: 2%;
    animation-delay: 0s;
}

.hero-blob--2 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, #ff1f8f, transparent 72%);
    bottom: 8%;
    right: 0;
    animation-delay: -4s;
}

.hero-blob--3 {
    width: 160px;
    height: 160px;
    background: radial-gradient(circle, #5edfff, transparent 70%);
    top: 42%;
    right: 18%;
    animation-delay: -8s;
}

.hero-blob--4 {
    width: 120px;
    height: 120px;
    background: radial-gradient(circle, #cfff3a, transparent 68%);
    bottom: 28%;
    left: 12%;
    animation-delay: -11s;
}

.hero-blob--5 {
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(255, 159, 28, 0.8), transparent 75%);
    top: 60%;
    left: 35%;
    animation-delay: -6s;
}

@keyframes heroBlobFloat {

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

    25% {
        transform: translate(16px, -22px) scale(1.05) rotate(4deg);
    }

    50% {
        transform: translate(-12px, 14px) scale(0.96) rotate(-3deg);
    }

    75% {
        transform: translate(20px, 8px) scale(1.02) rotate(2deg);
    }
}

.hero-light-ray {
    position: absolute;
    top: -20%;
    left: 50%;
    width: 140%;
    height: 80%;
    margin-left: -70%;
    background: linear-gradient(105deg,
            transparent 35%,
            rgba(255, 255, 255, 0.04) 45%,
            rgba(94, 223, 255, 0.12) 50%,
            rgba(255, 255, 255, 0.04) 55%,
            transparent 65%);
    animation: heroRaySweep 12s ease-in-out infinite;
    transform-origin: 50% 0;
}

@keyframes heroRaySweep {

    0%,
    100% {
        opacity: 0.4;
        transform: rotate(-6deg) scaleY(1);
    }

    50% {
        opacity: 0.85;
        transform: rotate(8deg) scaleY(1.08);
    }
}

.hero-inner {
    position: relative;
    z-index: 1;
    width: min(1180px, 100% - var(--space-xl));
    margin-inline: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2xl);
    align-items: center;
}

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

    .hero-heading {
        align-items: center;
    }

    .hero-heading__line {
        text-align: center;
    }
}

.hero-visual-stage {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: min(520px, 70vw);
}

.hero-orbit {
    position: absolute;
    left: 50%;
    top: 50%;
    border-radius: 50%;
    border: 2px solid transparent;
    pointer-events: none;
    box-sizing: border-box;
}

.hero-orbit--a {
    width: min(92%, 420px);
    height: min(92vw, 420px);
    max-height: 420px;
    border-color: rgba(255, 159, 28, 0.35);
    animation: heroOrbitSpinA 22s linear infinite;
    box-shadow: 0 0 0 1px rgba(255, 31, 143, 0.12) inset;
}

.hero-orbit--b {
    width: min(78%, 360px);
    height: min(78vw, 360px);
    max-height: 360px;
    border-color: rgba(94, 223, 255, 0.4);
    animation: heroOrbitSpinB 18s linear infinite;
}

.hero-orbit--c {
    width: min(64%, 300px);
    height: min(64vw, 300px);
    max-height: 300px;
    border: 2px dashed rgba(207, 255, 58, 0.35);
    animation: heroOrbitSpinC 14s linear infinite;
}

@keyframes heroOrbitSpinA {
    from {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

@keyframes heroOrbitSpinB {
    from {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    to {
        transform: translate(-50%, -50%) rotate(-360deg);
    }
}

@keyframes heroOrbitSpinC {
    from {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

.hero-glow-core {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: min(55%, 260px);
    aspect-ratio: 1;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 159, 28, 0.35) 0%, rgba(94, 223, 255, 0.12) 45%, transparent 70%);
    filter: blur(12px);
    animation: heroCorePulse 3.5s ease-in-out infinite;
    z-index: 1;
}

@keyframes heroCorePulse {

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

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

.hero-product-img {
    position: relative;
    z-index: 2;
    margin: 0;
    animation: heroProductEnter 1.1s cubic-bezier(0.34, 1.2, 0.64, 1) 0.15s both;
    filter: drop-shadow(0 12px 40px rgba(255, 159, 28, 0.35)) drop-shadow(0 0 28px rgba(255, 31, 143, 0.2));
}

@keyframes heroProductEnter {
    0% {
        opacity: 0;
        transform: translateY(28px) scale(0.92);
    }

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

.hero-chip {
    position: absolute;
    z-index: 3;
    padding: var(--space-xs) var(--space-md);
    font-size: var(--font-size-xs);
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    border-radius: var(--radius-xl);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    animation: heroChipBob 4s ease-in-out infinite;
}

.hero-chip--a {
    top: 12%;
    right: 4%;
    color: var(--color-indigo);
    background: linear-gradient(135deg, rgba(207, 255, 58, 0.95), rgba(94, 223, 255, 0.85));
    border: 1px solid rgba(255, 255, 255, 0.35);
    box-shadow: var(--shadow-md);
    animation-delay: 0s;
}

.hero-chip--b {
    bottom: 16%;
    left: 2%;
    color: var(--color-white);
    background: rgba(255, 31, 143, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.25);
    animation-delay: -2s;
}

@keyframes heroChipBob {

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

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

.hero-heading {
    display: flex;
    flex-direction: column;
    gap: 0.15em;
    margin: 0 0 var(--space-md);
    text-shadow: 0 4px 32px rgba(0, 0, 0, 0.35);
}

.hero-heading__line {
    display: block;
    animation: heroLineUp 0.85s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.hero-heading__line--brand {
    font-size: clamp(2.5rem, 6vw, 3.75rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1;
    background: linear-gradient(105deg, #ffffff 0%, #cfff3a 40%, #5edfff 75%, #ff9f1c 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    animation: heroLineUp 0.85s cubic-bezier(0.22, 1, 0.36, 1) both, heroShimmerText 7s ease-in-out infinite;
    animation-delay: 0s, 1s;
}

.hero-heading__line--accent {
    font-size: clamp(1.35rem, 3.5vw, 1.85rem);
    font-weight: 700;
    color: #ff9f1c;
    animation-delay: 0.12s;
}

.hero-heading__line--muted {
    font-size: clamp(1rem, 2.5vw, 1.25rem);
    font-weight: 600;
    color: rgba(255, 255, 255, 0.82);
    animation-delay: 0.22s;
}

@keyframes heroLineUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }

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

@keyframes heroShimmerText {

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

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

.hero-meta--enter {
    animation: heroLineUp 0.75s cubic-bezier(0.22, 1, 0.36, 1) 0.05s both;
}

.hero-lead--enter {
    animation: heroLineUp 0.75s cubic-bezier(0.22, 1, 0.36, 1) 0.32s both;
}

.price-row--enter {
    animation: heroLineUp 0.75s cubic-bezier(0.22, 1, 0.36, 1) 0.42s both;
}

.highlights--enter li {
    animation: heroLineUp 0.65s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.highlights--enter li:nth-child(1) {
    animation-delay: 0.48s;
}

.highlights--enter li:nth-child(2) {
    animation-delay: 0.56s;
}

.highlights--enter li:nth-child(3) {
    animation-delay: 0.64s;
}

.order-card--enter {
    animation: heroLineUp 0.85s cubic-bezier(0.22, 1, 0.36, 1) 0.72s both;
}

.hero-form-title {
    color: var(--color-white);
    font-size: 1.25rem;
    margin: 0 0 var(--space-md);
    font-weight: 700;
}

.hero-copy .hero-heading {
    font-family: var(--font-display);
}

.hero-lead {
    font-size: var(--font-size-lg);
    color: rgba(255, 255, 255, 0.92);
    margin: 0 0 var(--space-sm);
    max-width: 38ch;
}

.hero-price-note {
    margin: 0 0 var(--space-md);
    font-size: var(--font-size-xs);
    line-height: var(--line-relaxed);
    color: rgba(255, 255, 255, 0.75);
    max-width: 42ch;
}

.hero-rating-note {
    margin: 0 0 var(--space-xs);
    font-size: var(--font-size-xs);
    color: rgba(255, 255, 255, 0.7);
    max-width: 36ch;
}

.stars--muted {
    opacity: 0.65;
}

@media (max-width: 900px) {

    .hero-lead,
    .hero-price-note,
    .hero-rating-note {
        margin-inline: auto;
    }
}

.hero-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: var(--space-md);
    margin-bottom: var(--space-lg);
}

@media (max-width: 900px) {
    .hero-meta {
        justify-content: center;
    }
}

.stars {
    display: flex;
    gap: 2px;
    color: var(--color-citrus);
    font-size: var(--font-size-xl);
    letter-spacing: 2px;
}

.stars--fa {
    gap: 4px;
    font-size: var(--font-size-base);
}

.stars--fa .fa-star {
    color: var(--color-citrus);
}

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

.badge {
    display: inline-block;
    padding: var(--space-xs) var(--space-md);
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: var(--radius-xl);
    color: var(--color-white);
    font-size: var(--font-size-xs);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

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

@media (max-width: 900px) {
    .price-row {
        justify-content: center;
    }
}

.price-current {
    font-size: var(--font-size-3xl);
    font-weight: 800;
    color: var(--color-pistachio);
}

.price-old {
    font-size: var(--font-size-xl);
    color: rgba(255, 255, 255, 0.55);
    text-decoration: line-through;
}

.highlights {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-md);
    margin-bottom: var(--space-xl);
    list-style: none;
    padding: 0;
    margin-inline: 0;
}

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

.highlights li {
    padding: var(--space-md);
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: rgba(255, 255, 255, 0.95);
    font-size: var(--font-size-sm);
    font-weight: 600;
    transition: transform var(--transition-base), background var(--transition-base);
}

.highlights li:hover {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.16);
}

.order-card {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-2xl);
    padding: var(--space-xl);
    backdrop-filter: blur(8px);
}

.order-card .field-label {
    color: rgba(255, 255, 255, 0.9);
}

.order-card .field-input {
    background: rgba(255, 255, 255, 0.95);
    color: var(--color-text);
}

.order-card .error-msg {
    color: #ffb4c8;
}

.checkbox-row label {
    color: rgba(255, 255, 255, 0.9);
}

.checkbox-row a {
    color: var(--color-ice);
}

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

.field-label {
    display: block;
    font-weight: 600;
    font-size: var(--font-size-sm);
    margin-bottom: var(--space-xs);
}

.field-input {
    width: 100%;
    padding: var(--space-md);
    border: 2px solid rgba(27, 26, 85, 0.12);
    border-radius: var(--radius-md);
    font-family: inherit;
    font-size: var(--font-size-base);
    transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.field-input:focus {
    outline: none;
    border-color: var(--color-ice);
    box-shadow: 0 0 0 3px rgba(94, 223, 255, 0.35);
}

.field-input.invalid {
    border-color: var(--color-pink);
}

textarea.field-input {
    min-height: 100px;
    resize: vertical;
}

.error-msg {
    display: block;
    font-size: var(--font-size-xs);
    color: #c41e5c;
    margin-top: var(--space-xs);
    min-height: 1.2em;
}

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

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

.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(--font-size-base);
    font-weight: 700;
    border: none;
    border-radius: var(--radius-xl);
    cursor: pointer;
    transition: transform var(--transition-base), box-shadow var(--transition-base), background var(--transition-base);
}

.btn-primary {
    background: linear-gradient(135deg, var(--color-citrus) 0%, #ff7a00 100%);
    color: var(--color-indigo);
    box-shadow: var(--shadow-glow-citrus);
    width: 100%;
}

.btn-primary:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 12px 36px rgba(255, 159, 28, 0.55);
}

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

.btn-secondary {
    background: var(--color-white);
    color: var(--color-indigo);
    border: 2px solid var(--color-indigo);
}

.btn-secondary:hover {
    background: var(--color-indigo);
    color: var(--color-white);
}

.btn-magnetic {
    position: relative;
}

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

.section-inner {
    width: min(1200px, 100% - var(--space-xl));
    margin-inline: auto;
}

.section-title {
    font-size: clamp(var(--font-size-2xl), 4vw, var(--font-size-3xl));
    color: var(--color-indigo);
    margin: 0 0 var(--space-sm);
    line-height: var(--line-tight);
}

.section-sub {
    font-size: var(--font-size-lg);
    color: var(--color-text-muted);
    margin: 0 0 var(--space-xl);
    max-width: 60ch;
}

.text-muted-relaxed {
    color: var(--color-text-muted);
    line-height: 1.65;
}

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

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

.live-stats {
    padding: var(--space-xl) var(--space-md);
    background: linear-gradient(135deg, rgba(207, 255, 58, 0.12) 0%, rgba(94, 223, 255, 0.1) 50%, rgba(255, 31, 143, 0.08) 100%);
    border-block: 1px solid rgba(27, 26, 85, 0.06);
}

.stats-row {
    width: min(1100px, 100% - var(--space-xl));
    margin-inline: auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-md);
}

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

.stat-block {
    text-align: center;
    padding: var(--space-lg);
    border-radius: var(--radius-xl);
    background: rgba(255, 255, 255, 0.85);
    border: 1px solid rgba(27, 26, 85, 0.08);
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.stat-block:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md), 0 0 24px rgba(255, 159, 28, 0.2);
}

.stat-num {
    display: block;
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 800;
    color: var(--color-indigo);
    line-height: 1.1;
    background: linear-gradient(90deg, var(--color-citrus), var(--color-pink));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.stat-label {
    display: block;
    margin-top: var(--space-sm);
    font-size: var(--font-size-xs);
    font-weight: 600;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.marquee-strip {
    overflow: hidden;
    padding: var(--space-md) 0;
    background: var(--color-indigo);
    border-block: 2px solid rgba(255, 159, 28, 0.35);
}

.marquee-inner {
    display: flex;
    width: max-content;
    animation: marqueeScroll 28s linear infinite;
}

.marquee-content {
    flex-shrink: 0;
    padding-right: var(--space-3xl);
    font-size: var(--font-size-sm);
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.92);
    white-space: nowrap;
}

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

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

.rhythm-section {
    background: linear-gradient(180deg, #fff 0%, #f3f6ff 100%);
}

.rhythm-layout {
    display: grid;
    gap: var(--space-xl);
}

@media (min-width: 900px) {
    .rhythm-layout {
        grid-template-columns: 280px 1fr;
        align-items: start;
    }
}

.rhythm-tabs {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.rhythm-tab {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    width: 100%;
    padding: var(--space-md) var(--space-lg);
    text-align: left;
    font-family: inherit;
    border: 2px solid rgba(27, 26, 85, 0.1);
    border-radius: var(--radius-xl);
    background: var(--color-white);
    cursor: pointer;
    color: var(--color-indigo);
    transition: border-color var(--transition-base), box-shadow var(--transition-base), transform var(--transition-base), background var(--transition-base);
}

.rhythm-tab:hover {
    border-color: rgba(94, 223, 255, 0.6);
    transform: translateX(4px);
}

.rhythm-tab.is-active {
    border-color: var(--color-citrus);
    background: linear-gradient(135deg, rgba(255, 159, 28, 0.12), rgba(255, 255, 255, 0.95));
    box-shadow: var(--shadow-glow-citrus);
}

.rhythm-tab-icon {
    color: var(--color-pink);
    flex-shrink: 0;
}

.rhythm-tab.is-active .rhythm-tab-icon {
    color: var(--color-citrus);
}

.rhythm-tab-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.rhythm-tab-text strong {
    font-size: var(--font-size-base);
}

.rhythm-tab-text small {
    font-size: var(--font-size-xs);
    color: var(--color-text-muted);
    font-weight: 600;
}

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

.rhythm-panel {
    padding: var(--space-xl);
    border-radius: var(--radius-2xl);
    background: var(--color-white);
    border: 1px solid rgba(27, 26, 85, 0.08);
    box-shadow: var(--shadow-md);
    opacity: 0;
    transform: translateY(12px) scale(0.98);
    pointer-events: none;
    transition: opacity 0.45s ease, transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

.rhythm-panel.is-visible {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
}

.rhythm-visual {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 8px;
    height: 100px;
    margin-bottom: var(--space-lg);
    padding: var(--space-md);
    border-radius: var(--radius-lg);
    background: linear-gradient(180deg, rgba(27, 26, 85, 0.04), rgba(94, 223, 255, 0.08));
}

.rhythm-bar {
    width: 14%;
    max-width: 40px;
    border-radius: var(--radius-sm);
    background: linear-gradient(180deg, var(--color-citrus), var(--color-pink));
    animation: barPulse 2.4s ease-in-out infinite;
}

.rhythm-bar--p25 {
    height: 25%;
}

.rhythm-bar--p28 {
    height: 28%;
}

.rhythm-bar--p30 {
    height: 30%;
}

.rhythm-bar--p32 {
    height: 32%;
}

.rhythm-bar--p35 {
    height: 35%;
}

.rhythm-bar--p40 {
    height: 40%;
}

.rhythm-bar--p45 {
    height: 45%;
}

.rhythm-bar--p48 {
    height: 48%;
}

.rhythm-bar--p50 {
    height: 50%;
}

.rhythm-bar--p51 {
    height: 51%;
}

.rhythm-bar--p52 {
    height: 52%;
}

.rhythm-bar--p55 {
    height: 55%;
}

.rhythm-bar--p65 {
    height: 65%;
}

.rhythm-bar--p80 {
    height: 80%;
}

.rhythm-bar:nth-child(2) {
    animation-delay: 0.15s;
}

.rhythm-bar:nth-child(3) {
    animation-delay: 0.3s;
}

.rhythm-bar:nth-child(4) {
    animation-delay: 0.45s;
}

.rhythm-bar:nth-child(5) {
    animation-delay: 0.6s;
}

@keyframes barPulse {

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

    50% {
        filter: brightness(1.15);
    }
}

.rhythm-visual--pulse {
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.rhythm-ring {
    position: absolute;
    width: 72px;
    height: 72px;
    border: 3px solid var(--color-ice);
    border-radius: 50%;
    animation: ringExpand 2.5s ease-out infinite;
}

.rhythm-ring--delay {
    animation-delay: 1.25s;
    border-color: var(--color-pink);
}

@keyframes ringExpand {
    0% {
        transform: scale(0.5);
        opacity: 0.9;
    }

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

.rhythm-copy {
    margin: 0 0 var(--space-md);
    color: var(--color-text);
    line-height: var(--line-relaxed);
}

.rhythm-bullets {
    margin: 0;
    padding-left: var(--space-lg);
    color: var(--color-text-muted);
    font-size: var(--font-size-sm);
    line-height: 1.7;
}

.social-proof {
    background: var(--color-white);
}

.proof-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: var(--space-lg);
    align-items: start;
}

.proof-trust-heading {
    font-weight: 700;
    color: var(--color-indigo);
    margin: 0 0 0.5rem;
}

.proof-trust-list {
    margin: 0;
    padding-left: 1.25rem;
    color: var(--color-text-muted);
    font-size: 0.875rem;
    line-height: 1.6;
}

.proof-score {
    text-align: center;
    padding: var(--space-xl);
    border-radius: var(--radius-xl);
    background: linear-gradient(145deg, rgba(94, 223, 255, 0.15), rgba(255, 31, 143, 0.08));
    border: 1px solid rgba(27, 26, 85, 0.08);
}

.proof-score .big {
    font-size: var(--font-size-4xl);
    font-weight: 800;
    color: var(--color-indigo);
}

.proof-score--soft .big {
    font-size: var(--font-size-2xl);
    color: var(--color-text-muted);
}

.proof-score--soft p {
    font-size: var(--font-size-sm);
    line-height: var(--line-relaxed);
}

.footer-fine {
    margin-top: var(--space-md);
    font-size: var(--font-size-xs);
    opacity: 0.85;
    line-height: var(--line-relaxed);
}

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

.review-card-mini {
    padding: var(--space-lg);
    background: var(--color-cream);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(27, 26, 85, 0.06);
    transition: box-shadow var(--transition-base), transform var(--transition-base);
}

.review-card-mini:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

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

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

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

.bento-card {
    padding: var(--space-lg);
    border-radius: var(--radius-xl);
    background: var(--color-white);
    border: 1px solid rgba(27, 26, 85, 0.08);
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition-base), box-shadow var(--transition-base);
    position: relative;
    overflow: hidden;
}

.bento-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.bento-card.tilt-card {
    transform-style: preserve-3d;
}

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

.bento-span-2-row {
    grid-row: span 2;
}

@media (max-width: 520px) {
    .bento-span-2 {
        grid-column: span 1;
    }

    .bento-span-2-row {
        grid-row: span 1;
    }
}

.bento-icon {
    display: block;
    margin-bottom: var(--space-sm);
    font-size: 2.5rem;
    line-height: 1;
    color: var(--color-citrus);
}

.bento-card h3 {
    margin: 0 0 var(--space-sm);
    font-size: var(--font-size-lg);
    color: var(--color-indigo);
}

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

.categories-bento .bento-energy {
    background: linear-gradient(160deg, rgba(255, 159, 28, 0.2), var(--color-white));
}

.categories-bento .bento-muscle {
    background: linear-gradient(160deg, rgba(255, 31, 143, 0.12), var(--color-white));
}

.categories-bento .bento-immunity {
    background: linear-gradient(160deg, rgba(94, 223, 255, 0.2), var(--color-white));
}

.categories-bento .bento-vitamins {
    background: linear-gradient(160deg, rgba(207, 255, 58, 0.25), var(--color-white));
}

.ingredient-spotlight {
    background: linear-gradient(180deg, #fff 0%, #f0f4ff 100%);
}

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

.spotlight-item {
    position: relative;
    padding: var(--space-xl);
    border-radius: var(--radius-xl);
    background: var(--color-white);
    border: 2px solid rgba(27, 26, 85, 0.08);
    min-height: 160px;
    overflow: hidden;
    cursor: default;
    transition: border-color var(--transition-base), box-shadow var(--transition-base);
}

.spotlight-item:hover {
    border-color: var(--color-ice);
    box-shadow: var(--shadow-glow-ice);
}

.spotlight-fa {
    margin: 0 0 var(--space-sm);
    font-size: 1.75rem;
    color: var(--color-pink);
    line-height: 1;
}

.spotlight-front h3 {
    margin: 0 0 var(--space-sm);
    color: var(--color-indigo);
}

.spotlight-front p {
    margin: 0;
    font-size: var(--font-size-sm);
    color: var(--color-text-muted);
}

.spotlight-benefit {
    position: absolute;
    inset: 0;
    z-index: 2;
    padding: var(--space-lg);
    background: linear-gradient(135deg, var(--color-indigo) 0%, #3d3b9e 100%);
    color: var(--color-white);
    font-size: var(--font-size-sm);
    line-height: var(--line-relaxed);
    display: flex;
    align-items: center;
    opacity: 0;
    transform: translateY(12px);
    transition: opacity var(--transition-base), transform var(--transition-base);
    pointer-events: none;
}

.spotlight-item:hover .spotlight-benefit {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.spotlight-item:hover .spotlight-front {
    opacity: 0;
}

.spotlight-front {
    position: relative;
    z-index: 1;
    transition: opacity var(--transition-base);
}

.trust-science {
    background: var(--color-indigo);
    color: var(--color-white);
}

.trust-science .section-title {
    color: var(--color-white);
}

.trust-science .section-sub {
    color: rgba(255, 255, 255, 0.8);
}

.trust-icons-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--space-xl);
    text-align: center;
}

.trust-icon-wrap {
    padding: var(--space-xl);
    border-radius: var(--radius-xl);
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: transform var(--transition-base), background var(--transition-base);
}

.trust-icon-wrap:hover {
    transform: scale(1.03);
    background: rgba(255, 255, 255, 0.12);
}

.trust-icon-wrap .trust-fa {
    display: block;
    margin: 0 auto var(--space-md);
    font-size: 3.25rem;
    line-height: 1;
    transition: transform var(--transition-base), filter var(--transition-base);
}

.trust-icon-wrap .trust-fa--lab {
    color: var(--color-pistachio);
}

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

.trust-icon-wrap .trust-fa--natural {
    color: var(--color-citrus);
}

.trust-icon-wrap:hover .trust-fa {
    transform: scale(1.08);
    filter: drop-shadow(0 6px 14px rgba(255, 159, 28, 0.45));
}

.carousel-wrap {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-2xl);
    padding: var(--space-xl) 0;
}

.carousel-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

.carousel-slide {
    flex: 0 0 100%;
    display: flex;
    justify-content: center;
    align-items: stretch;
    padding: var(--space-md);
    box-sizing: border-box;
}

.carousel-card {
    max-width: 320px;
    padding: var(--space-xl);
    background: var(--color-white);
    border-radius: var(--radius-2xl);
    text-align: center;
    box-shadow: var(--shadow-md), var(--shadow-glow-pink);
    transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.carousel-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg), 0 0 40px rgba(255, 159, 28, 0.35);
}

.carousel-card.tilt-card {
    transform-style: preserve-3d;
}

.carousel-card img {
    margin: 0 auto var(--space-lg);
    border-radius: var(--radius-lg);
    filter: drop-shadow(0 8px 20px rgba(255, 31, 143, 0.25));
}

.carousel-nav {
    display: flex;
    justify-content: center;
    gap: var(--space-md);
    margin-top: var(--space-lg);
}

.carousel-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 2px solid var(--color-indigo);
    background: var(--color-white);
    cursor: pointer;
    font-size: var(--font-size-xl);
    line-height: 1;
    transition: background var(--transition-fast), color var(--transition-fast), transform var(--transition-fast);
}

.carousel-btn:hover {
    background: var(--color-indigo);
    color: var(--color-white);
    transform: scale(1.08);
}

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

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

.product-overview-aside {
    width: 100%;
}

.product-overview-visual {
    position: relative;
    min-height: min(360px, 55vw);
    border-radius: var(--radius-2xl);
    background: linear-gradient(145deg, rgba(27, 26, 85, 0.06) 0%, rgba(94, 223, 255, 0.12) 45%, rgba(255, 31, 143, 0.08) 100%);
    border: 1px solid rgba(27, 26, 85, 0.08);
    overflow: hidden;
}

.product-overview-ring {
    position: absolute;
    inset: 10%;
    border-radius: 50%;
    border: 2px dashed rgba(255, 159, 28, 0.35);
    transform-origin: center center;
    animation: overviewRingSpin 36s linear infinite;
}

@keyframes overviewRingSpin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.product-overview-fa {
    position: absolute;
    line-height: 1;
    color: var(--color-indigo);
    filter: drop-shadow(0 4px 12px rgba(27, 26, 85, 0.15));
}

.product-overview-fa--main {
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    font-size: clamp(4rem, 14vw, 7rem);
    color: var(--color-citrus);
    opacity: 0.95;
}

.product-overview-fa--leaf {
    top: 14%;
    right: 12%;
    font-size: clamp(1.75rem, 5vw, 2.5rem);
    color: var(--color-pistachio);
}

.product-overview-fa--drop {
    bottom: 18%;
    left: 14%;
    font-size: clamp(1.5rem, 4vw, 2rem);
    color: var(--color-ice);
}

.product-overview-fa--shield {
    bottom: 22%;
    right: 16%;
    font-size: clamp(1.35rem, 3.5vw, 1.85rem);
    color: var(--color-pink);
}

.overview-caption {
    margin: var(--space-md) 0 0;
    font-size: var(--font-size-sm);
    color: var(--color-text-muted);
    text-align: center;
}

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

.spec-card {
    padding: var(--space-lg);
    background: var(--color-white);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(27, 26, 85, 0.08);
    display: flex;
    gap: var(--space-md);
    align-items: flex-start;
    transition: box-shadow var(--transition-base);
}

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

.spec-fa {
    flex-shrink: 0;
    font-size: 2rem;
    line-height: 1;
    color: var(--color-pink);
    margin-top: 2px;
}

.spec-card>div>p {
    margin: 0.25rem 0 0;
    font-size: 0.875rem;
    color: var(--color-text-muted);
}

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

.step-card {
    padding: var(--space-xl);
    background: var(--color-white);
    border-radius: var(--radius-xl);
    border: 1px solid rgba(27, 26, 85, 0.08);
    position: relative;
    transition: transform var(--transition-base);
}

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

.step-fa {
    display: block;
    font-size: 1.75rem;
    color: var(--color-citrus);
    margin-bottom: var(--space-md);
}

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

.ingredient-card {
    padding: var(--space-lg);
    background: var(--color-white);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(27, 26, 85, 0.08);
    transition: border-color var(--transition-base), box-shadow var(--transition-base);
}

.ingredient-fa {
    display: block;
    font-size: 1.5rem;
    color: var(--color-citrus);
    margin-bottom: var(--space-sm);
    line-height: 1;
}

.ingredient-card:hover {
    border-color: var(--color-pink);
    box-shadow: var(--shadow-sm);
}

.instructions-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: var(--space-md);
    max-width: 640px;
}

.instructions-list li {
    display: flex;
    gap: var(--space-md);
    align-items: flex-start;
    padding: var(--space-lg);
    background: var(--color-white);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--color-citrus);
    box-shadow: var(--shadow-sm);
}

.instructions-list .num {
    font-weight: 800;
    color: var(--color-indigo);
    font-size: var(--font-size-xl);
    min-width: 2rem;
}

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

.review-card {
    padding: var(--space-xl);
    background: var(--color-white);
    border-radius: var(--radius-xl);
    border: 1px solid rgba(27, 26, 85, 0.08);
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition-base), box-shadow var(--transition-base);
}

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

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

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

.faq-question {
    width: 100%;
    text-align: left;
    padding: var(--space-lg) 0;
    font-family: inherit;
    font-size: var(--font-size-base);
    font-weight: 700;
    color: var(--color-indigo);
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: var(--space-md);
}

.faq-question::after {
    content: "+";
    font-size: var(--font-size-xl);
    color: var(--color-citrus);
    transition: transform var(--transition-base);
}

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
}

.faq-answer-inner {
    padding-bottom: var(--space-lg);
    color: var(--color-text-muted);
    font-size: var(--font-size-sm);
    line-height: var(--line-relaxed);
}

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

.cta-final {
    background: linear-gradient(135deg, var(--color-pink) 0%, var(--color-indigo) 100%);
    color: var(--color-white);
    text-align: center;
}

.cta-final .section-title {
    color: var(--color-white);
}

.cta-final .section-sub {
    color: rgba(255, 255, 255, 0.9);
    margin-inline: auto;
}

.cta-final .btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    background: var(--color-white);
    color: var(--color-indigo);
    border-color: transparent;
}

.cta-final .btn-secondary:hover {
    background: var(--color-pistachio);
    color: var(--color-indigo);
}

.disclaimer-block {
    background: #2a2950;
    color: rgba(255, 255, 255, 0.88);
    font-size: var(--font-size-sm);
    line-height: var(--line-relaxed);
}

.disclaimer-block .section-inner {
    max-width: 900px;
}

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

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

.site-footer {
    background: var(--color-indigo);
    color: rgba(255, 255, 255, 0.85);
    padding: var(--space-2xl) var(--space-md);
    font-size: var(--font-size-sm);
}

.footer-grid {
    width: min(1200px, 100% - var(--space-xl));
    margin: 0 auto var(--space-xl);
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--space-xl);
}

.footer-nav-title {
    font-weight: 700;
    margin-bottom: 0.5rem;
}

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

.site-footer .brand {
    color: var(--color-white);
}

.footer-legal-note {
    width: min(1200px, 100% - var(--space-xl));
    margin: 0 auto var(--space-lg);
    padding: var(--space-lg);
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    font-size: var(--font-size-xs);
    line-height: var(--line-relaxed);
}

.footer-legal-note p {
    margin: 0 0 var(--space-sm);
}

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

.site-footer a {
    color: var(--color-ice);
}

.site-footer a:hover {
    color: var(--color-pistachio);
}

.footer-bottom {
    width: min(1200px, 100% - var(--space-xl));
    margin: 0 auto;
    padding-top: var(--space-lg);
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    text-align: center;
}

.footer-bottom--minimal {
    border-top: none;
    padding-top: 0;
}

.legal-shell {
    min-height: 100vh;
    background: linear-gradient(165deg, var(--color-cream) 0%, #e8ecff 40%, #fff5f8 100%);
}

.legal-hero {
    position: relative;
    padding: var(--space-3xl) var(--space-md) var(--space-2xl);
    overflow: hidden;
    background: linear-gradient(135deg, var(--color-indigo) 0%, #3d2b7a 55%, #6b1a4d 100%);
    color: var(--color-white);
}

.legal-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 80% 60% at 80% 20%, rgba(255, 159, 28, 0.35) 0%, transparent 55%),
        radial-gradient(ellipse 60% 50% at 10% 90%, rgba(94, 223, 255, 0.25) 0%, transparent 50%);
    pointer-events: none;
}

.legal-hero-inner {
    position: relative;
    z-index: 1;
    width: min(900px, 100% - var(--space-xl));
    margin-inline: auto;
}

.legal-kicker {
    display: inline-block;
    padding: var(--space-xs) var(--space-md);
    margin-bottom: var(--space-md);
    font-size: var(--font-size-xs);
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--color-pistachio);
    border: 1px solid rgba(207, 255, 58, 0.45);
    border-radius: var(--radius-xl);
    background: rgba(255, 255, 255, 0.08);
}

.legal-hero h1 {
    margin: 0 0 var(--space-md);
    font-size: clamp(1.75rem, 5vw, 2.75rem);
    line-height: var(--line-tight);
}

.legal-lead {
    margin: 0;
    font-size: var(--font-size-lg);
    line-height: var(--line-relaxed);
    color: rgba(255, 255, 255, 0.9);
    max-width: 55ch;
}

.doc-date-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    margin-top: var(--space-xl);
    padding: var(--space-sm) var(--space-lg);
    font-size: var(--font-size-sm);
    font-weight: 700;
    color: var(--color-indigo);
    background: linear-gradient(135deg, var(--color-pistachio), var(--color-ice));
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

.legal-body {
    padding: var(--space-2xl) var(--space-md) var(--space-section);
}

.legal-body .section-inner {
    max-width: 820px;
}

.legal-body h2 {
    color: var(--color-indigo);
    font-size: var(--font-size-xl);
    margin: var(--space-2xl) 0 var(--space-md);
    padding-bottom: var(--space-sm);
    border-bottom: 3px solid transparent;
    border-image: linear-gradient(90deg, var(--color-citrus), var(--color-pink), var(--color-ice)) 1;
}

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

.legal-body h3 {
    color: var(--color-indigo);
    font-size: var(--font-size-lg);
    margin: var(--space-xl) 0 var(--space-sm);
}

.legal-body p,
.legal-body ul,
.legal-body ol {
    color: var(--color-text-muted);
    line-height: var(--line-relaxed);
}

.legal-body ul,
.legal-body ol {
    padding-left: var(--space-xl);
}

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

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

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

.legal-card {
    padding: var(--space-lg);
    border-radius: var(--radius-xl);
    background: var(--color-white);
    border: 1px solid rgba(27, 26, 85, 0.08);
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition-base), box-shadow var(--transition-base);
}

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

.legal-card strong {
    color: var(--color-indigo);
}

.legal-toc {
    margin: var(--space-xl) 0;
    padding: var(--space-lg);
    border-radius: var(--radius-xl);
    background: rgba(255, 255, 255, 0.75);
    border: 1px solid rgba(27, 26, 85, 0.1);
}

.legal-toc p {
    margin: 0 0 var(--space-sm);
    font-weight: 700;
    color: var(--color-indigo);
}

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

.legal-toc a {
    font-weight: 600;
}

.policy-page {
    padding: 0;
}

.thank-you-shell {
    min-height: 100vh;
    background: linear-gradient(165deg, #1b1a55 0%, #3d2b7a 45%, #4a1a5c 100%);
    position: relative;
    overflow: hidden;
}

.thank-you-shell::before {
    content: "";
    position: absolute;
    inset: -30%;
    background: radial-gradient(circle at 30% 30%, rgba(255, 159, 28, 0.25) 0%, transparent 45%),
        radial-gradient(circle at 70% 70%, rgba(94, 223, 255, 0.2) 0%, transparent 40%);
    pointer-events: none;
}

.thank-you-page {
    position: relative;
    z-index: 1;
    min-height: 85vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: var(--space-3xl) var(--space-md);
}

.thank-you-badge {
    width: 88px;
    height: 88px;
    margin: 0 auto var(--space-xl);
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-citrus), var(--color-pink));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    box-shadow: var(--shadow-glow-citrus);
    animation: thankPop 0.7s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

@keyframes thankPop {
    0% {
        transform: scale(0.6);
        opacity: 0;
    }

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

.thank-you-page h1 {
    color: var(--color-white);
    font-size: clamp(1.75rem, 5vw, 2.5rem);
    margin: 0 0 var(--space-md);
    text-shadow: 0 4px 24px rgba(0, 0, 0, 0.2);
}

.thank-you-page .thank-lead {
    color: rgba(255, 255, 255, 0.9);
    max-width: 52ch;
    margin: 0 auto var(--space-xl);
    font-size: var(--font-size-lg);
    line-height: var(--line-relaxed);
}

.thank-steps {
    width: min(520px, 100%);
    margin: 0 auto var(--space-2xl);
    text-align: left;
}

.thank-step {
    display: flex;
    gap: var(--space-md);
    align-items: flex-start;
    padding: var(--space-lg);
    margin-bottom: var(--space-md);
    border-radius: var(--radius-xl);
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(10px);
    color: rgba(255, 255, 255, 0.95);
    font-size: var(--font-size-sm);
    line-height: var(--line-relaxed);
    transition: transform var(--transition-base), background var(--transition-base);
}

.thank-step:hover {
    transform: translateX(6px);
    background: rgba(255, 255, 255, 0.14);
}

.thank-step-num {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--color-pistachio);
    color: var(--color-indigo);
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--font-size-sm);
}

.thank-actions {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-md);
    justify-content: center;
}

.thank-actions .btn-primary {
    width: auto;
    background: linear-gradient(135deg, var(--color-citrus) 0%, #ffb347 100%);
}

.thank-actions .btn-secondary {
    background: rgba(255, 255, 255, 0.15);
    color: var(--color-white);
    border-color: rgba(255, 255, 255, 0.35);
}

.thank-actions .btn-secondary:hover {
    background: var(--color-white);
    color: var(--color-indigo);
}

.thank-you-shell .site-footer {
    position: relative;
    z-index: 1;
    background: rgba(15, 14, 46, 0.85);
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    padding: var(--space-xl) var(--space-md);
}

.thank-you-shell .site-footer a {
    color: var(--color-ice);
}

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

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

.cookie-inner {
    max-width: 960px;
    margin: 0 auto;
    padding: var(--space-xl);
    background: var(--glass-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
}

.cookie-inner p {
    margin: 0 0 var(--space-md);
    font-size: var(--font-size-sm);
    color: var(--color-text);
}

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

.cookie-actions .btn {
    width: auto;
}

.cookie-link {
    background: transparent;
    border: none;
    color: var(--color-indigo);
    font-weight: 600;
    cursor: pointer;
    text-decoration: underline;
    font-size: var(--font-size-sm);
}

.modal-overlay {
    position: fixed;
    inset: 0;
    z-index: 300;
    background: rgba(27, 26, 85, 0.45);
    backdrop-filter: blur(4px);
    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-panel {
    width: min(480px, 100%);
    max-height: 90vh;
    overflow-y: auto;
    padding: var(--space-xl);
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: var(--radius-2xl);
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: var(--shadow-lg);
}

.modal-panel h2 {
    margin: 0 0 var(--space-lg);
    color: var(--color-indigo);
    font-size: var(--font-size-xl);
}

.cookie-cat {
    margin-bottom: var(--space-lg);
    padding-bottom: var(--space-lg);
    border-bottom: 1px solid rgba(27, 26, 85, 0.1);
}

.cookie-cat:last-of-type {
    border-bottom: none;
}

.switch-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-md);
}

.switch-row label {
    font-weight: 600;
    color: var(--color-indigo);
}

.switch-desc {
    font-size: var(--font-size-xs);
    color: var(--color-text-muted);
    margin: var(--space-xs) 0 0;
}

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

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

.switch-slider {
    position: absolute;
    cursor: pointer;
    inset: 0;
    background: #ccc;
    border-radius: 26px;
    transition: background var(--transition-fast);
}

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

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

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

.switch input:disabled+.switch-slider {
    background: var(--color-ice);
    cursor: not-allowed;
    opacity: 0.9;
}

.modal-close {
    margin-top: var(--space-lg);
    width: 100%;
}

@media (max-width: 900px) {
    .burger-btn {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .nav-backdrop {
        display: block;
        position: fixed;
        inset: 0;
        z-index: 140;
        background: linear-gradient(160deg, rgba(27, 26, 85, 0.55), rgba(255, 31, 143, 0.22));
        backdrop-filter: blur(8px);
        -webkit-backdrop-filter: blur(8px);
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transition: opacity var(--transition-slow), visibility var(--transition-slow);
    }

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

    .nav-menu {
        position: fixed;
        top: 0;
        right: 0;
        width: min(100%, 320px);
        height: 100vh;
        height: 100dvh;
        margin: 0;
        padding: calc(var(--header-h) + var(--space-xl)) var(--space-xl) var(--space-xl);
        background: linear-gradient(180deg, rgba(255, 255, 255, 0.97) 0%, rgba(248, 249, 252, 0.98) 100%);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        box-shadow: -12px 0 40px rgba(27, 26, 85, 0.18);
        border-left: 1px solid rgba(255, 31, 143, 0.12);
        z-index: 150;
        transform: translateX(105%);
        opacity: 1;
        visibility: visible;
        transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
    }

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

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

    .nav-list a {
        display: block;
        padding: var(--space-md);
        border-radius: var(--radius-lg);
        font-size: var(--font-size-base);
        background: rgba(255, 255, 255, 0.6);
        border: 1px solid rgba(27, 26, 85, 0.06);
        transition: background var(--transition-fast), transform var(--transition-fast), border-color var(--transition-fast);
    }

    .nav-list a:hover {
        background: rgba(255, 159, 28, 0.12);
        border-color: rgba(255, 159, 28, 0.35);
        transform: translateX(-4px);
    }
}

@media (min-width: 901px) {
    .burger-btn {
        display: none;
    }
}

@media (max-width: 320px) {
    html {
        font-size: 15px;
    }

    .header-inner {
        width: calc(100% - 0.75rem);
        max-width: 100%;
        margin-inline: auto;
        gap: var(--space-xs);
    }

    .brand {
        font-size: 0.82rem;
        line-height: 1.25;
        max-width: min(58vw, 11rem);
    }

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

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

    .hero-inner {
        width: 100%;
        gap: var(--space-lg);
    }

    .hero-visual-stage {
        min-height: 380px;
    }

    .hero-chip {
        font-size: 0.65rem;
        padding: 4px 10px;
    }

    .hero-chip--a {
        top: 6%;
        right: 0;
    }

    .hero-chip--b {
        bottom: 10%;
        left: 0;
    }

    .hero h1 {
        font-size: 1.5rem;
    }

    .hero-lead {
        font-size: var(--font-size-base);
    }

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

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

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

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

    .section-inner {
        width: 100%;
        max-width: 100%;
    }

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

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

    .stat-num {
        font-size: 1.5rem;
    }

    .marquee-content {
        font-size: 0.65rem;
        letter-spacing: 0.05em;
    }

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

    .rhythm-tab {
        padding: var(--space-sm) var(--space-md);
        gap: var(--space-sm);
    }

    .rhythm-tab-icon .fa-xl {
        font-size: 1.25rem !important;
    }

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

    .rhythm-visual {
        height: 80px;
        gap: 4px;
    }

    .btn {
        padding: var(--space-sm) var(--space-md);
        font-size: var(--font-size-sm);
    }

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

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

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

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

    .legal-hero h1 {
        font-size: 1.45rem;
    }

    .legal-lead {
        font-size: var(--font-size-base);
    }

    .doc-date-badge {
        font-size: var(--font-size-xs);
        padding: var(--space-xs) var(--space-md);
        flex-wrap: wrap;
        justify-content: center;
        text-align: center;
    }

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

    .legal-grid--2 {
        grid-template-columns: 1fr;
    }

    .thank-you-page {
        padding: var(--space-xl) var(--space-sm);
    }

    .thank-actions {
        flex-direction: column;
        width: 100%;
    }

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

    .thank-step {
        padding: var(--space-md);
        font-size: var(--font-size-xs);
    }

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

    .faq-question {
        font-size: var(--font-size-sm);
        padding: var(--space-md) 0;
    }
}

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

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    html {
        scroll-behavior: auto;
    }

    .reveal {
        opacity: 1;
        transform: none;
    }

    .marquee-inner {
        animation: none !important;
    }

    .hero-blob,
    .hero-gradient-shift,
    .hero-grid-mesh,
    .hero-light-ray,
    .hero-orbit,
    .hero-glow-core,
    .hero-chip,
    .hero-heading__line--brand {
        animation: none !important;
    }

    .hero-heading__line,
    .hero-meta--enter,
    .hero-lead--enter,
    .price-row--enter,
    .highlights--enter li,
    .order-card--enter,
    .hero-product-img {
        opacity: 1 !important;
        transform: none !important;
        animation: none !important;
    }

    .rhythm-panel {
        opacity: 1 !important;
        transform: none !important;
    }

    .thank-you-badge {
        animation: none !important;
        transform: none !important;
        opacity: 1 !important;
    }

    .product-overview-ring {
        animation: none !important;
    }
}