:root {
    --color-molten-peach: #ff8c5a;
    --color-electric-rose: #ff2d7a;
    --color-arctic-glow: #3af0ff;
    --color-neon-limeade: #d6ff1f;
    --color-deep-galaxy: #19104a;
    --color-white: #ffffff;
    --color-mist: #f4f6ff;
    --color-text: #1a1530;
    --color-text-muted: #5c5678;
    --font-heading: "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.75rem;
    --font-size-5xl: 3.5rem;
    --line-tight: 1.15;
    --line-normal: 1.55;
    --shadow-sm: 0 2px 8px rgba(25, 16, 74, 0.08);
    --shadow-md: 0 8px 24px rgba(25, 16, 74, 0.12);
    --shadow-lg: 0 20px 50px rgba(25, 16, 74, 0.18);
    --shadow-glow-peach: 0 0 40px rgba(255, 140, 90, 0.45);
    --shadow-glow-rose: 0 0 36px rgba(255, 45, 122, 0.4);
    --shadow-glow-lime: 0 0 28px rgba(214, 255, 31, 0.35);
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 22px;
    --radius-xl: 28px;
    --radius-full: 9999px;
    --space-1: 0.25rem;
    --space-2: 0.5rem;
    --space-3: 0.75rem;
    --space-4: 1rem;
    --space-5: 1.25rem;
    --space-6: 1.5rem;
    --space-8: 2rem;
    --space-10: 2.5rem;
    --space-12: 3rem;
    --space-16: 4rem;
    --space-20: 5rem;
    --header-h: 72px;
    --transition-fast: 0.15s ease;
    --transition-base: 0.28s ease;
    --transition-slow: 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

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

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

body {
    margin: 0;
    font-family: var(--font-body);
    font-size: var(--font-size-base);
    line-height: var(--line-normal);
    color: var(--color-text);
    background: linear-gradient(165deg, var(--color-mist) 0%, var(--color-white) 40%, #eef8ff 100%);
    overflow-x: hidden;
}

body.body-menu-open {
    overflow: hidden;
}

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

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

a:hover {
    color: var(--color-electric-rose);
}

.skip-link {
    position: absolute;
    left: -9999px;
    z-index: 10000;
    padding: var(--space-3) var(--space-4);
    background: var(--color-deep-galaxy);
    color: var(--color-white);
    border-radius: var(--radius-sm);
}

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

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

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    height: var(--header-h);
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.65);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(25, 16, 74, 0.08);
    box-shadow: var(--shadow-sm);
    transition: background var(--transition-base), box-shadow var(--transition-base);
}

.site-header.is-scrolled {
    background: rgba(255, 255, 255, 0.85);
    box-shadow: var(--shadow-md);
}

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

.brand {
    font-weight: 800;
    font-size: var(--font-size-lg);
    letter-spacing: -0.02em;
    color: var(--color-deep-galaxy);
}

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

.nav-toggle {
    display: none;
    position: relative;
    z-index: 10002;
    padding: var(--space-2);
    background: rgba(255, 255, 255, 0.5);
    border: 1px solid rgba(25, 16, 74, 0.1);
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: background var(--transition-base), box-shadow var(--transition-base);
}

.nav-toggle:hover {
    background: rgba(255, 255, 255, 0.85);
    box-shadow: var(--shadow-sm);
}

.nav-toggle--burger {
    width: 48px;
    height: 48px;
    align-items: center;
    justify-content: center;
}

.burger-box {
    width: 24px;
    height: 18px;
    position: relative;
    display: block;
}

.burger-line {
    position: absolute;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--color-deep-galaxy);
    border-radius: 2px;
    transition: transform 0.35s cubic-bezier(0.68, -0.55, 0.27, 1.55), opacity 0.25s ease, top 0.35s ease;
}

.burger-line:nth-child(1) {
    top: 0;
}

.burger-line:nth-child(2) {
    top: 7px;
}

.burger-line:nth-child(3) {
    top: 14px;
}

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

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

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

.nav-backdrop {
    position: fixed;
    inset: 0;
    z-index: 10000;
    background: rgba(25, 16, 74, 0.45);
    backdrop-filter: blur(4px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

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

.site-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-2) var(--space-6);
    align-items: center;
}

.site-nav a {
    font-weight: 600;
    font-size: var(--font-size-sm);
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-2);
    padding: var(--space-3) var(--space-6);
    font-family: inherit;
    font-weight: 700;
    font-size: var(--font-size-sm);
    border: none;
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: transform var(--transition-base), box-shadow var(--transition-base), background var(--transition-base);
}

.btn-primary {
    background: linear-gradient(135deg, var(--color-molten-peach), var(--color-electric-rose));
    color: var(--color-white);
    box-shadow: var(--shadow-glow-peach);
}

.btn-primary:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: var(--shadow-glow-rose);
}

.btn-secondary {
    background: var(--color-deep-galaxy);
    color: var(--color-white);
}

.btn-secondary:hover {
    background: #2a1f6a;
    transform: translateY(-2px);
}

.btn-ghost {
    background: rgba(255, 255, 255, 0.2);
    color: var(--color-white);
    border: 1px solid rgba(255, 255, 255, 0.35);
}

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

.btn-outline:hover {
    background: var(--color-deep-galaxy);
    color: var(--color-white);
}

.magnetic {
    position: relative;
}

.hero {
    position: relative;
    padding: var(--space-16) var(--space-4) var(--space-12);
    overflow: hidden;
}

.hero--showcase {
    isolation: isolate;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 85% 65% at 75% 15%, rgba(255, 140, 90, 0.42), transparent 58%),
        radial-gradient(ellipse 70% 55% at 8% 85%, rgba(58, 240, 255, 0.32), transparent 52%),
        linear-gradient(155deg, #0f0838 0%, var(--color-deep-galaxy) 38%, #2a1a72 72%, var(--color-deep-galaxy) 100%);
    z-index: 0;
}

.hero-aurora {
    position: absolute;
    inset: -20%;
    z-index: 0;
    background: conic-gradient(from 180deg at 50% 50%,
            rgba(255, 45, 122, 0.22),
            rgba(255, 140, 90, 0.18),
            rgba(214, 255, 31, 0.12),
            rgba(58, 240, 255, 0.2),
            rgba(255, 45, 122, 0.22));
    opacity: 0.65;
    animation: heroAuroraSpin 28s linear infinite;
    filter: blur(60px);
    pointer-events: none;
}

.hero-mesh {
    position: absolute;
    inset: 0;
    z-index: 0;
    opacity: 0.14;
    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 22s linear infinite;
    pointer-events: none;
}

.hero-scan {
    position: absolute;
    inset: 0;
    z-index: 0;
    background: linear-gradient(105deg,
            transparent 0%,
            transparent 42%,
            rgba(58, 240, 255, 0.07) 50%,
            transparent 58%,
            transparent 100%);
    background-size: 200% 100%;
    animation: heroScanSweep 7s ease-in-out infinite;
    pointer-events: none;
}

.hero--motion .hero-bg {
    animation: heroGradientShift 16s ease-in-out infinite alternate;
}

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

.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(52px);
    opacity: 0.58;
    animation: blobFloat 14s ease-in-out infinite;
}

.blob-a {
    width: min(340px, 58vw);
    height: min(340px, 58vw);
    background: radial-gradient(circle, rgba(255, 45, 122, 0.5), transparent 72%);
    top: 2%;
    right: 6%;
    animation-delay: 0s;
}

.blob-b {
    width: min(300px, 52vw);
    height: min(300px, 52vw);
    background: radial-gradient(circle, rgba(58, 240, 255, 0.45), transparent 72%);
    bottom: 8%;
    left: 0%;
    animation-delay: -5s;
}

.blob-c {
    width: min(220px, 42vw);
    height: min(220px, 42vw);
    background: radial-gradient(circle, rgba(214, 255, 31, 0.38), transparent 72%);
    top: 38%;
    left: 32%;
    animation-delay: -8s;
}

.blob-d {
    width: min(180px, 35vw);
    height: min(180px, 35vw);
    background: radial-gradient(circle, rgba(255, 140, 90, 0.45), transparent 70%);
    bottom: 28%;
    right: 22%;
    animation: blobFloatD 13s ease-in-out infinite;
    animation-delay: -3s;
}

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

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

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

@keyframes heroScanSweep {

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

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

@keyframes heroGradientShift {
    0% {
        filter: hue-rotate(0deg) saturate(1);
    }

    100% {
        filter: hue-rotate(14deg) saturate(1.08);
    }
}

@keyframes blobFloat {

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

    50% {
        transform: translate(14px, -22px) scale(1.06);
    }
}

@keyframes blobFloatD {

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

    33% {
        transform: translate(-10px, 10px) scale(1.04);
    }

    66% {
        transform: translate(12px, -14px) scale(1.02);
    }
}

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

.hero-copy {
    color: var(--color-white);
}

.hero-copy>.hero-kicker,
.hero-copy>h1,
.hero-copy>.hero-lead,
.hero-copy>.hero-chips,
.hero-copy>.hero-meta,
.hero-copy>.hero-price-block,
.hero-copy>.hero-highlights,
.hero-copy>.order-card {
    opacity: 0;
    animation: heroEntrance 0.85s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.hero-copy>.hero-kicker {
    animation-delay: 0.05s;
}

.hero-copy>h1 {
    animation-delay: 0.12s;
}

.hero-copy>.hero-lead {
    animation-delay: 0.2s;
}

.hero-copy>.hero-chips {
    animation-delay: 0.28s;
}

.hero-copy>.hero-meta {
    animation-delay: 0.36s;
}

.hero-copy>.hero-price-block {
    animation-delay: 0.44s;
}

.hero-copy>.hero-highlights {
    animation-delay: 0.52s;
}

.hero-copy>.order-card {
    animation-delay: 0.62s;
}

@keyframes heroEntrance {
    from {
        opacity: 0;
        transform: translateY(28px);
    }

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

.hero-kicker {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    margin-bottom: var(--space-3);
}

.hero-kicker-pulse {
    width: 10px;
    height: 10px;
    border-radius: var(--radius-full);
    background: var(--color-neon-limeade);
    box-shadow: 0 0 0 0 rgba(214, 255, 31, 0.55);
    animation: heroDotPulse 2s ease-out infinite;
}

@keyframes heroDotPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(214, 255, 31, 0.55);
    }

    70% {
        box-shadow: 0 0 0 14px rgba(214, 255, 31, 0);
    }

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

.hero-eyebrow {
    font-size: var(--font-size-sm);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--color-neon-limeade);
    margin: 0;
    padding-bottom: 2px;
    border-bottom: 2px solid rgba(214, 255, 31, 0.35);
    animation: heroUnderlineGlow 3s ease-in-out infinite;
}

@keyframes heroUnderlineGlow {

    0%,
    100% {
        border-color: rgba(214, 255, 31, 0.35);
    }

    50% {
        border-color: rgba(58, 240, 255, 0.55);
    }
}

.hero h1 {
    font-size: clamp(var(--font-size-3xl), 5vw, var(--font-size-5xl));
    line-height: var(--line-tight);
    margin: 0 0 var(--space-4);
    font-weight: 800;
}

.hero-title-accent {
    display: inline;
    background: linear-gradient(120deg, var(--color-arctic-glow), var(--color-neon-limeade), var(--color-molten-peach));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    animation: heroShimmerText 5s ease-in-out infinite;
    background-size: 200% auto;
}

@keyframes heroShimmerText {

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

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

.hero-lead {
    font-size: var(--font-size-lg);
    opacity: 0.94;
    max-width: 36ch;
    margin-bottom: var(--space-5);
}

.hero-chips {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-2);
    margin-bottom: var(--space-6);
}

.hero-chip {
    font-size: var(--font-size-xs);
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    padding: var(--space-2) var(--space-3);
    border-radius: var(--radius-full);
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.18);
    animation: heroChipLift 4s ease-in-out infinite;
}

.hero-chip:nth-child(2) {
    animation-delay: -1.3s;
}

.hero-chip:nth-child(3) {
    animation-delay: -2.6s;
}

@keyframes heroChipLift {

    0%,
    100% {
        transform: translateY(0);
        box-shadow: 0 0 0 rgba(255, 140, 90, 0);
    }

    50% {
        transform: translateY(-3px);
        box-shadow: 0 8px 24px rgba(255, 45, 122, 0.15);
    }
}

.hero-stars {
    animation: heroStarsTwinkle 2.4s ease-in-out infinite;
}

@keyframes heroStarsTwinkle {

    0%,
    100% {
        filter: brightness(1);
        letter-spacing: 2px;
    }

    50% {
        filter: brightness(1.25);
        letter-spacing: 3px;
    }
}

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

.hero-price-block {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: var(--space-4);
    margin-bottom: var(--space-4);
}

.hero-price-block .price-row {
    margin-bottom: 0;
}

.hero-save-tag {
    font-size: var(--font-size-xs);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: var(--space-2) var(--space-3);
    border-radius: var(--radius-full);
    background: linear-gradient(90deg, rgba(255, 45, 122, 0.35), rgba(255, 140, 90, 0.35));
    border: 1px solid rgba(255, 255, 255, 0.2);
    animation: heroSavePulse 2.5s ease-in-out infinite;
}

@keyframes heroSavePulse {

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

    50% {
        transform: scale(1.04);
    }
}

.stars {
    color: var(--color-neon-limeade);
    font-size: var(--font-size-lg);
    letter-spacing: 0;
}

.stars i {
    margin: 0 2px;
    font-size: 1.05em;
}

.hero .stars i {
    color: var(--color-neon-limeade);
}

.rating-summary .stars i,
.review-card .stars i {
    color: var(--color-molten-peach);
}

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

.badge-pill {
    font-size: var(--font-size-xs);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    padding: var(--space-1) var(--space-3);
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-full);
    backdrop-filter: blur(8px);
}

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

.price-current {
    font-size: var(--font-size-4xl);
    font-weight: 800;
    color: var(--color-arctic-glow);
}

.price-old {
    font-size: var(--font-size-xl);
    text-decoration: line-through;
    opacity: 0.55;
}

.hero-highlights {
    display: grid;
    gap: var(--space-3);
    margin-bottom: var(--space-8);
}

.hero-highlights li {
    display: flex;
    align-items: flex-start;
    gap: var(--space-3);
    font-size: var(--font-size-sm);
    list-style: none;
}

.hero-highlights ul {
    margin: 0;
    padding: 0;
}

.hl-icon {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    border-radius: var(--radius-sm);
    background: var(--color-neon-limeade);
    color: var(--color-deep-galaxy);
    display: flex;
    align-items: center;
    justify-content: center;
}

.hl-icon i {
    font-size: 0.8rem;
    color: var(--color-deep-galaxy);
}

.hero-visual {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: var(--space-4);
}

.hero-product-stage {
    position: relative;
    width: min(420px, 88vw);
    aspect-ratio: 3 / 4;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: heroStageFloat 6s ease-in-out infinite;
}

@keyframes heroStageFloat {

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

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

.hero-orbit {
    position: absolute;
    border-radius: 50%;
    border: 1px solid transparent;
    pointer-events: none;
}

.hero-orbit--a {
    inset: -4%;
    border-color: rgba(255, 140, 90, 0.45);
    animation: heroOrbitSpin 22s linear infinite;
}

.hero-orbit--b {
    inset: 6%;
    border-color: rgba(58, 240, 255, 0.35);
    animation: heroOrbitSpin 16s linear infinite reverse;
}

.hero-orbit--c {
    inset: 16%;
    border-color: rgba(255, 45, 122, 0.3);
    border-style: dashed;
    animation: heroOrbitSpin 28s linear infinite;
}

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

.hero-glow {
    position: absolute;
    width: 88%;
    height: 88%;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, rgba(255, 140, 90, 0.55) 0%, rgba(255, 45, 122, 0.22) 38%, transparent 68%);
    filter: blur(36px);
    z-index: 0;
    animation: heroGlowPulse 4.5s ease-in-out infinite;
}

@keyframes heroGlowPulse {

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

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

.hero-shine {
    position: absolute;
    inset: 10% 8%;
    z-index: 2;
    border-radius: var(--radius-xl);
    background: linear-gradient(125deg,
            transparent 35%,
            rgba(255, 255, 255, 0.14) 48%,
            transparent 62%);
    background-size: 220% 100%;
    animation: heroShineSweep 5s ease-in-out infinite;
    pointer-events: none;
    mix-blend-mode: overlay;
}

@keyframes heroShineSweep {

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

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

.hero-frame {
    position: absolute;
    inset: 4%;
    z-index: 0;
    border-radius: var(--radius-xl);
    padding: 2px;
    background: linear-gradient(135deg, rgba(255, 140, 90, 0.7), rgba(255, 45, 122, 0.5), rgba(58, 240, 255, 0.55), rgba(214, 255, 31, 0.45));
    background-size: 300% 300%;
    animation: heroFrameHue 8s ease infinite;
    -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.85;
    pointer-events: none;
}

@keyframes heroFrameHue {

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

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

.hero-icon-cluster {
    position: relative;
    z-index: 3;
    width: min(300px, 78vw);
    height: min(380px, 58vh);
    margin-inline: auto;
    filter: drop-shadow(0 28px 56px rgba(0, 0, 0, 0.42));
    animation: heroFigureBob 5.5s ease-in-out infinite;
}

.hero-fa {
    position: absolute;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1;
}

.hero-fa--main {
    left: 50%;
    top: 50%;
    translate: -50% -50%;
    font-size: clamp(6.5rem, 20vw, 9.5rem);
    background: linear-gradient(145deg, var(--color-white), var(--color-arctic-glow));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: none;
    filter: drop-shadow(0 12px 32px rgba(255, 45, 122, 0.35));
}

.hero-fa--leaf {
    top: 8%;
    right: 4%;
    font-size: clamp(2.25rem, 7vw, 3.25rem);
    color: var(--color-neon-limeade);
    animation: heroIconOrbit 5s ease-in-out infinite;
}

.hero-fa--spark {
    bottom: 18%;
    left: 2%;
    font-size: clamp(1.85rem, 5.5vw, 2.65rem);
    color: var(--color-arctic-glow);
    animation: heroIconOrbit 4s ease-in-out infinite reverse;
}

.hero-fa--drop {
    top: 26%;
    left: 6%;
    font-size: clamp(1.65rem, 5vw, 2.35rem);
    color: var(--color-molten-peach);
    animation: heroIconOrbit 4.6s ease-in-out infinite;
}

.hero-fa--seed {
    bottom: 10%;
    right: 8%;
    font-size: clamp(2rem, 6vw, 2.85rem);
    color: var(--color-electric-rose);
    animation: heroIconOrbit 5.2s ease-in-out infinite;
}

@keyframes heroFigureBob {

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

    50% {
        transform: translateY(-8px) scale(1.02);
    }
}

@keyframes heroIconOrbit {

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

    50% {
        transform: translate(8px, -12px) rotate(8deg);
    }
}

.hero-visual-caption {
    margin: 0;
    font-size: var(--font-size-xs);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.45);
    animation: heroCaptionFade 3s ease-in-out infinite;
}

@keyframes heroCaptionFade {

    0%,
    100% {
        opacity: 0.45;
    }

    50% {
        opacity: 0.85;
    }
}

.hero-scroll-hint {
    position: absolute;
    bottom: var(--space-6);
    left: 50%;
    translate: -50% 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-2);
    z-index: 2;
    color: rgba(255, 255, 255, 0.5);
    font-size: var(--font-size-xs);
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.hero-scroll-line {
    width: 1px;
    height: 36px;
    background: linear-gradient(180deg, rgba(58, 240, 255, 0.8), transparent);
    animation: heroScrollLine 2.2s ease-in-out infinite;
}

@keyframes heroScrollLine {

    0%,
    100% {
        transform: scaleY(0.4);
        opacity: 0.4;
    }

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

.hero-scroll-text {
    animation: heroScrollText 2.2s ease-in-out infinite;
}

@keyframes heroScrollText {

    0%,
    100% {
        opacity: 0.45;
    }

    50% {
        opacity: 1;
    }
}

.order-card {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: var(--radius-xl);
    padding: var(--space-6);
    backdrop-filter: blur(12px);
    margin-top: var(--space-6);
}

.order-card h2 {
    margin: 0 0 var(--space-4);
    font-size: var(--font-size-xl);
    color: var(--color-white);
}

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

.form-group label {
    display: block;
    font-size: var(--font-size-sm);
    font-weight: 600;
    margin-bottom: var(--space-2);
    color: rgba(255, 255, 255, 0.9);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: var(--space-3) var(--space-4);
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 255, 255, 0.25);
    background: rgba(25, 16, 74, 0.35);
    color: var(--color-white);
    font-family: inherit;
    font-size: var(--font-size-base);
    transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.45);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-arctic-glow);
    box-shadow: 0 0 0 3px rgba(58, 240, 255, 0.25);
}

.form-group.is-invalid input,
.form-group.is-invalid textarea {
    border-color: var(--color-electric-rose);
}

.field-error {
    display: none;
    font-size: var(--font-size-xs);
    color: #ffb4d4;
    margin-top: var(--space-2);
}

.form-group.is-invalid .field-error {
    display: block;
}

.checkbox-row {
    display: flex;
    align-items: flex-start;
    gap: var(--space-3);
    font-size: var(--font-size-sm);
    color: rgba(255, 255, 255, 0.9);
}

.checkbox-row input {
    margin-top: 4px;
    width: 18px;
    height: 18px;
    accent-color: var(--color-neon-limeade);
}

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

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

.section-head {
    text-align: center;
    max-width: 640px;
    margin: 0 auto var(--space-10);
}

.section-head h2 {
    font-size: clamp(var(--font-size-2xl), 3.5vw, var(--font-size-4xl));
    margin: 0 0 var(--space-3);
    color: var(--color-deep-galaxy);
    line-height: var(--line-tight);
}

.section-head p {
    margin: 0;
    color: var(--color-text-muted);
    font-size: var(--font-size-lg);
}

.surface-light {
    background: var(--color-white);
}

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

.bento-4 .card:nth-child(1) {
    grid-column: span 2;
    grid-row: span 2;
    min-height: 220px;
}

.bento-4 .card:nth-child(2) {
    grid-column: span 2;
}

.bento-4 .card:nth-child(3) {
    grid-column: span 1;
}

.bento-4 .card:nth-child(4) {
    grid-column: span 1;
}

.card {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    padding: var(--space-6);
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(25, 16, 74, 0.06);
    transition: transform var(--transition-base), box-shadow var(--transition-base);
}

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

.card h3 {
    margin: 0 0 var(--space-3);
    font-size: var(--font-size-xl);
    color: var(--color-deep-galaxy);
}

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

.card-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-4);
    background: linear-gradient(135deg, rgba(255, 140, 90, 0.2), rgba(58, 240, 255, 0.2));
}

.card-icon i {
    font-size: 1.35rem;
    color: var(--color-deep-galaxy);
}

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

.ingredient-card {
    position: relative;
    border-radius: var(--radius-lg);
    padding: var(--space-6);
    background: linear-gradient(145deg, var(--color-deep-galaxy), #2a1f68);
    color: var(--color-white);
    min-height: 180px;
    overflow: hidden;
    cursor: default;
    transition: transform var(--transition-base);
}

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

.ingredient-icon {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-md);
    margin-bottom: var(--space-3);
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.12);
    color: var(--color-neon-limeade);
    font-size: 1.25rem;
}

.ingredient-card h3 {
    margin: 0 0 var(--space-2);
    font-size: var(--font-size-lg);
    color: var(--color-neon-limeade);
}

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

.ingredient-card .ingredient-back {
    position: absolute;
    inset: 0;
    padding: var(--space-6);
    background: rgba(25, 16, 74, 0.92);
    opacity: 0;
    transition: opacity var(--transition-base);
    font-size: var(--font-size-sm);
    line-height: var(--line-normal);
}

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

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

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

.trust-item {
    text-align: center;
    padding: var(--space-8) var(--space-4);
    background: var(--color-white);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(25, 16, 74, 0.06);
    transition: transform var(--transition-base);
}

.trust-item:hover {
    transform: translateY(-6px);
}

.trust-icon-wrap {
    width: 88px;
    height: 88px;
    margin: 0 auto var(--space-4);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-xl);
    font-size: 2.25rem;
    background: linear-gradient(145deg, rgba(58, 240, 255, 0.18), rgba(255, 140, 90, 0.2));
    color: var(--color-deep-galaxy);
    box-shadow: inset 0 0 0 1px rgba(25, 16, 74, 0.06);
}

.trust-icon-wrap i {
    color: var(--color-electric-rose);
}

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

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

.icon-anim {
    animation: iconPulse 3s ease-in-out infinite;
}

@keyframes iconPulse {

    0%,
    100% {
        transform: scale(1);
        filter: drop-shadow(0 0 0 rgba(58, 240, 255, 0));
    }

    50% {
        transform: scale(1.05);
        filter: drop-shadow(0 0 12px rgba(58, 240, 255, 0.5));
    }
}

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

.rhythm-studio-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(25, 16, 74, 0.04) 0%, rgba(255, 140, 90, 0.08) 50%, rgba(58, 240, 255, 0.06) 100%);
    z-index: 0;
}

.rhythm-studio .section-inner {
    position: relative;
    z-index: 1;
}

.rhythm-panel {
    max-width: 920px;
    margin-inline: auto;
}

.rhythm-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-2);
    justify-content: center;
    margin-bottom: var(--space-8);
}

.rhythm-tab {
    font-family: inherit;
    font-weight: 700;
    font-size: var(--font-size-sm);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    padding: var(--space-3) var(--space-6);
    border-radius: var(--radius-full);
    border: 2px solid rgba(25, 16, 74, 0.15);
    background: var(--color-white);
    color: var(--color-deep-galaxy);
    cursor: pointer;
    transition: transform var(--transition-base), box-shadow var(--transition-base), border-color var(--transition-base), background var(--transition-base);
}

.rhythm-tab:hover {
    transform: translateY(-2px);
    border-color: var(--color-molten-peach);
    box-shadow: var(--shadow-md);
}

.rhythm-tab.is-active {
    background: linear-gradient(135deg, var(--color-molten-peach), var(--color-electric-rose));
    color: var(--color-white);
    border-color: transparent;
    box-shadow: var(--shadow-glow-peach);
}

.rhythm-stage {
    display: grid;
    grid-template-columns: minmax(200px, 280px) 1fr;
    gap: var(--space-8);
    align-items: center;
}

.rhythm-orbit-wrap {
    position: relative;
    width: min(260px, 70vw);
    height: min(260px, 70vw);
    margin-inline: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.rhythm-ring {
    position: absolute;
    border-radius: 50%;
    border: 2px solid transparent;
}

.rhythm-ring--outer {
    width: 100%;
    height: 100%;
    border-color: rgba(255, 140, 90, 0.45);
    animation: ringSpin 18s linear infinite;
}

.rhythm-ring--mid {
    width: 72%;
    height: 72%;
    border-color: rgba(255, 45, 122, 0.5);
    animation: ringSpin 12s linear infinite reverse;
}

.rhythm-ring--inner {
    width: 44%;
    height: 44%;
    border-color: rgba(58, 240, 255, 0.6);
    animation: ringSpin 8s linear infinite;
}

.rhythm-pulse {
    position: absolute;
    width: 24%;
    height: 24%;
    border-radius: 50%;
    background: radial-gradient(circle, var(--color-neon-limeade), rgba(214, 255, 31, 0.2));
    animation: corePulse 2.4s ease-in-out infinite;
}

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

@keyframes corePulse {

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

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

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

.rhythm-panel-block {
    display: none;
    animation: panelIn 0.45s ease forwards;
}

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

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

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

.rhythm-panel-title {
    margin: 0 0 var(--space-3);
    font-size: var(--font-size-xl);
    color: var(--color-deep-galaxy);
}

.rhythm-stat {
    font-size: var(--font-size-lg);
    font-weight: 700;
    color: var(--color-electric-rose);
    margin: 0 0 var(--space-4);
}

.stat-num {
    font-size: var(--font-size-3xl);
    font-variant-numeric: tabular-nums;
}

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

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

.rhythm-studio[data-rhythm-mode="sustain"] .rhythm-ring--outer {
    border-color: rgba(58, 240, 255, 0.55);
}

.rhythm-studio[data-rhythm-mode="recover"] .rhythm-ring--outer {
    border-color: rgba(214, 255, 31, 0.5);
}

.stagger-section .bento-4 .card {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.55s ease, transform 0.55s ease;
}

.stagger-section.is-visible .bento-4 .card:nth-child(1) {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.05s;
}

.stagger-section.is-visible .bento-4 .card:nth-child(2) {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.15s;
}

.stagger-section.is-visible .bento-4 .card:nth-child(3) {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.25s;
}

.stagger-section.is-visible .bento-4 .card:nth-child(4) {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.35s;
}

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

.rating-summary {
    background: var(--color-white);
    padding: var(--space-8);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

.rating-big {
    font-size: var(--font-size-5xl);
    font-weight: 800;
    color: var(--color-molten-peach);
    line-height: 1;
}

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

.review-mini {
    background: var(--color-mist);
    padding: var(--space-4);
    border-radius: var(--radius-md);
    border-left: 4px solid var(--color-electric-rose);
}

.review-mini cite {
    display: block;
    margin-top: var(--space-2);
    font-size: var(--font-size-xs);
    font-style: normal;
    color: var(--color-text-muted);
}

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

.bento-benefits .card:nth-child(1) {
    grid-column: span 3;
    grid-row: span 2;
}

.bento-benefits .card:nth-child(2) {
    grid-column: span 3;
}

.bento-benefits .card:nth-child(3) {
    grid-column: span 2;
}

.bento-benefits .card:nth-child(4) {
    grid-column: span 2;
}

.bento-benefits .card:nth-child(5) {
    grid-column: span 2;
}

.bento-benefits .card:nth-child(6) {
    grid-column: span 3;
}

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

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

.spec-card {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    padding: var(--space-5);
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(25, 16, 74, 0.06);
}

.spec-card dt {
    font-weight: 700;
    font-size: var(--font-size-sm);
    color: var(--color-deep-galaxy);
    margin-bottom: var(--space-2);
}

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

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

.step {
    text-align: center;
    padding: var(--space-4);
}

.step-icon {
    width: 52px;
    height: 52px;
    margin: 0 auto var(--space-4);
    border-radius: var(--radius-full);
    background: linear-gradient(135deg, var(--color-molten-peach), var(--color-arctic-glow));
    color: var(--color-deep-galaxy);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
}

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

.ingredient-grid-icon {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-md);
    margin-bottom: var(--space-3);
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(255, 140, 90, 0.15), rgba(58, 240, 255, 0.15));
    color: var(--color-electric-rose);
    font-size: 1.1rem;
}

.split-story .product-overview-visual {
    min-height: 280px;
    border-radius: var(--radius-xl);
    background: linear-gradient(155deg, var(--color-deep-galaxy) 0%, #2d1a6e 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
}

.product-overview-icons {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: var(--space-6);
    padding: var(--space-8);
}

.product-overview-icons i {
    font-size: clamp(2.5rem, 8vw, 3.75rem);
    color: rgba(255, 255, 255, 0.9);
    animation: overviewIconPulse 3.5s ease-in-out infinite;
}

.product-overview-icons i:nth-child(2) {
    animation-delay: -0.8s;
    color: var(--color-neon-limeade);
}

.product-overview-icons i:nth-child(3) {
    animation-delay: -1.6s;
    color: var(--color-arctic-glow);
}

.product-overview-icons i:nth-child(4) {
    animation-delay: -2.4s;
    color: var(--color-molten-peach);
}

@keyframes overviewIconPulse {

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

    50% {
        transform: translateY(-6px) scale(1.08);
        opacity: 1;
    }
}

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

.use-steps li {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: var(--space-4);
    align-items: center;
    padding: var(--space-4);
    background: var(--color-white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}

.use-steps li::before {
    counter-increment: usestep;
    content: counter(usestep);
    width: 40px;
    height: 40px;
    border-radius: var(--radius-full);
    background: var(--color-neon-limeade);
    color: var(--color-deep-galaxy);
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.review-card {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    padding: var(--space-6);
    box-shadow: var(--shadow-md);
}

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

.faq-item {
    border-bottom: 1px solid rgba(25, 16, 74, 0.1);
}

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

.faq-icon {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-full);
    background: rgba(25, 16, 74, 0.06);
    color: var(--color-electric-rose);
    font-size: var(--font-size-sm);
    transition: transform var(--transition-base);
}

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

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

.faq-item.is-open .faq-panel {
    display: block;
}

.cta-final {
    text-align: center;
    padding: var(--space-16) var(--space-4);
    background: linear-gradient(135deg, var(--color-deep-galaxy), #3d2a8a);
    color: var(--color-white);
    border-radius: var(--radius-xl);
    margin: var(--space-8) auto;
    max-width: 1200px;
    box-shadow: var(--shadow-glow-rose);
}

.cta-final h2 {
    margin: 0 0 var(--space-4);
    font-size: clamp(var(--font-size-2xl), 3vw, var(--font-size-4xl));
}

.cta-final p {
    margin: 0 auto var(--space-6);
    max-width: 520px;
    opacity: 0.92;
}

.disclaimer-block {
    background: rgba(25, 16, 74, 0.06);
    border-radius: var(--radius-md);
    padding: var(--space-6);
    font-size: var(--font-size-sm);
    color: var(--color-text-muted);
    margin-top: var(--space-8);
}

.disclaimer-tga {
    margin-top: var(--space-4);
    padding-top: var(--space-4);
    border-top: 1px solid rgba(25, 16, 74, 0.08);
}

.hero-rating-note {
    margin: var(--space-2) 0 0;
    font-size: var(--font-size-xs);
    opacity: 0.75;
    max-width: 28ch;
}

.hero-price-note {
    width: 100%;
    margin: var(--space-3) 0 0;
    font-size: var(--font-size-xs);
    opacity: 0.8;
    line-height: 1.45;
}

.compliance-panel {
    max-width: 800px;
    margin-inline: auto;
    padding: var(--space-8);
    background: var(--color-white);
    border-radius: var(--radius-xl);
    border: 1px solid rgba(25, 16, 74, 0.08);
    box-shadow: var(--shadow-md);
}

.compliance-panel h2 {
    margin: 0 0 var(--space-4);
    font-size: var(--font-size-xl);
    color: var(--color-deep-galaxy);
}

.compliance-panel p {
    margin: 0 0 var(--space-4);
    color: var(--color-text-muted);
    font-size: var(--font-size-sm);
    line-height: 1.65;
}

.compliance-panel p:last-child {
    margin-bottom: 0;
}

.site-footer {
    background: var(--color-deep-galaxy);
    color: rgba(255, 255, 255, 0.85);
    padding: var(--space-12) var(--space-4) var(--space-8);
}

.footer-grid {
    width: min(1200px, 100%);
    margin-inline: auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: var(--space-10);
}

.footer-brand {
    font-weight: 800;
    font-size: var(--font-size-lg);
    color: var(--color-white);
    margin-bottom: var(--space-3);
}

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

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

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

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    font-size: var(--font-size-sm);
}

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

.footer-legal {
    grid-column: 1 / -1;
    padding-top: var(--space-8);
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    font-size: var(--font-size-xs);
    line-height: 1.6;
}

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

.footer-copy {
    margin-top: var(--space-4);
    font-size: var(--font-size-xs);
    opacity: 0.75;
}

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

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

.tilt-card {
    transform-style: preserve-3d;
    transition: transform 0.12s linear;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 2000;
    padding: var(--space-4);
    background: rgba(25, 16, 74, 0.92);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    color: var(--color-white);
    display: none;
    box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.25);
}

.cookie-banner.is-visible {
    display: block;
}

.cookie-banner .btn-outline {
    color: var(--color-white);
    border-color: rgba(255, 255, 255, 0.85);
}

.cookie-banner .btn-outline:hover {
    background: rgba(255, 255, 255, 0.12);
    color: var(--color-white);
}

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

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

.modal-overlay {
    position: fixed;
    inset: 0;
    z-index: 3000;
    background: rgba(25, 16, 74, 0.55);
    backdrop-filter: blur(6px);
    display: none;
    align-items: center;
    justify-content: center;
    padding: var(--space-4);
}

.modal-overlay.is-open {
    display: flex;
}

.cookie-modal {
    width: min(520px, 100%);
    max-height: 90vh;
    overflow-y: auto;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: var(--radius-xl);
    padding: var(--space-8);
    box-shadow: var(--shadow-lg);
}

.cookie-modal h2 {
    margin: 0 0 var(--space-4);
    color: var(--color-deep-galaxy);
}

.switch-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-3) 0;
    border-bottom: 1px solid rgba(25, 16, 74, 0.1);
    font-size: var(--font-size-sm);
}

.switch-row input[type="checkbox"] {
    width: 44px;
    height: 24px;
    accent-color: var(--color-electric-rose);
}

.switch-row input:disabled {
    opacity: 0.6;
}

.policy-page main {
    padding: var(--space-12) var(--space-4) var(--space-16);
    max-width: 800px;
    margin-inline: auto;
}

.legal-page main {
    max-width: none;
    padding: var(--space-8) 0 var(--space-16);
    margin-inline: 0;
}

.legal-page main.thank-you-creative {
    padding-left: var(--space-4);
    padding-right: var(--space-4);
}

.policy-page h1 {
    font-size: var(--font-size-3xl);
    color: var(--color-deep-galaxy);
}

.policy-page h2 {
    font-size: var(--font-size-xl);
    margin-top: var(--space-8);
    color: var(--color-deep-galaxy);
}

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

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

.legal-page {
    background: linear-gradient(180deg, var(--color-mist) 0%, var(--color-white) 35%, #eef8ff 100%);
}

.legal-shell {
    max-width: 880px;
    margin-inline: auto;
    padding: 0 var(--space-4) var(--space-16);
}

.legal-hero {
    position: relative;
    padding: var(--space-12) var(--space-6);
    margin-bottom: var(--space-10);
    border-radius: var(--radius-xl);
    background: linear-gradient(135deg, var(--color-deep-galaxy) 0%, #3d2a8a 50%, #19104a 100%);
    color: var(--color-white);
    overflow: hidden;
    box-shadow: var(--shadow-lg), var(--shadow-glow-rose);
}

.legal-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 80% 20%, rgba(255, 140, 90, 0.35), transparent 45%),
        radial-gradient(circle at 10% 90%, rgba(58, 240, 255, 0.25), transparent 40%);
    pointer-events: none;
}

.legal-hero-inner {
    position: relative;
    z-index: 1;
}

.legal-hero h1 {
    margin: 0 0 var(--space-4);
    font-size: clamp(var(--font-size-2xl), 4vw, var(--font-size-4xl));
    color: var(--color-white);
}

.legal-eyebrow {
    display: inline-block;
    font-size: var(--font-size-xs);
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--color-neon-limeade);
    margin-bottom: var(--space-3);
}

.legal-date-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    padding: var(--space-2) var(--space-4);
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: var(--radius-full);
    font-size: var(--font-size-sm);
    backdrop-filter: blur(8px);
}

.legal-date-badge time {
    font-weight: 700;
    color: var(--color-arctic-glow);
}

.legal-toc {
    display: grid;
    gap: var(--space-3);
    padding: var(--space-6);
    margin-bottom: var(--space-10);
    background: var(--color-white);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(25, 16, 74, 0.08);
    box-shadow: var(--shadow-sm);
}

.legal-toc h2 {
    margin: 0 0 var(--space-3);
    font-size: var(--font-size-base);
    color: var(--color-deep-galaxy);
}

.legal-toc ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: var(--space-2);
}

.legal-toc a {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    padding: var(--space-2) 0;
    font-size: var(--font-size-sm);
    font-weight: 600;
    border-bottom: 1px dashed rgba(25, 16, 74, 0.12);
    transition: color var(--transition-fast), padding-left var(--transition-fast);
}

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

.legal-toc a::before {
    content: "→";
    color: var(--color-molten-peach);
    font-size: var(--font-size-xs);
}

.legal-card {
    padding: var(--space-6);
    margin-bottom: var(--space-6);
    background: var(--color-white);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(25, 16, 74, 0.06);
    box-shadow: var(--shadow-sm);
    transition: box-shadow var(--transition-base), transform var(--transition-base);
}

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

.legal-card h2 {
    margin-top: 0;
    padding-bottom: var(--space-3);
    border-bottom: 2px solid rgba(255, 140, 90, 0.35);
}

.legal-card h3 {
    font-size: var(--font-size-lg);
    color: var(--color-deep-galaxy);
    margin-top: var(--space-6);
}

.legal-highlight {
    padding: var(--space-4);
    margin: var(--space-4) 0;
    border-left: 4px solid var(--color-electric-rose);
    background: rgba(255, 45, 122, 0.06);
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
    font-size: var(--font-size-sm);
}

.legal-grid-2 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: var(--space-4);
    margin: var(--space-4) 0;
}

.legal-stat {
    padding: var(--space-4);
    text-align: center;
    border-radius: var(--radius-md);
    background: linear-gradient(145deg, rgba(58, 240, 255, 0.12), rgba(255, 140, 90, 0.1));
    border: 1px solid rgba(25, 16, 74, 0.06);
}

.legal-stat strong {
    display: block;
    font-size: var(--font-size-2xl);
    color: var(--color-deep-galaxy);
}

.thank-you-creative {
    position: relative;
    min-height: calc(100vh - var(--header-h));
    padding: var(--space-12) var(--space-4) var(--space-16);
    overflow: hidden;
}

.thank-you-creative::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 90% 60% at 50% 0%, rgba(255, 140, 90, 0.2), transparent 55%),
        radial-gradient(ellipse 70% 50% at 100% 100%, rgba(58, 240, 255, 0.18), transparent 50%);
    pointer-events: none;
}

.thank-you-creative-inner {
    position: relative;
    z-index: 1;
    max-width: 720px;
    margin-inline: auto;
    text-align: center;
}

.thank-you-icon-ring {
    width: 120px;
    height: 120px;
    margin: 0 auto var(--space-8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--color-molten-peach), var(--color-electric-rose));
    box-shadow: var(--shadow-glow-peach);
    animation: thankPulse 2.8s ease-in-out infinite;
}

.thank-you-icon-ring i {
    font-size: 3rem;
    line-height: 1;
    color: var(--color-white);
}

@keyframes thankPulse {

    0%,
    100% {
        transform: scale(1);
        box-shadow: var(--shadow-glow-peach);
    }

    50% {
        transform: scale(1.04);
        box-shadow: var(--shadow-glow-rose);
    }
}

.thank-you-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--space-4);
    margin-top: var(--space-10);
    text-align: left;
}

.thank-you-step {
    padding: var(--space-5);
    background: var(--color-white);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(25, 16, 74, 0.08);
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition-base);
}

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

.thank-you-step-num {
    font-size: var(--font-size-xs);
    font-weight: 800;
    color: var(--color-electric-rose);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: var(--space-2);
}

.thank-you-page {
    min-height: calc(100vh - var(--header-h));
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: var(--space-16) var(--space-4);
}

.thank-you-page h1 {
    font-size: var(--font-size-4xl);
    color: var(--color-deep-galaxy);
}

.thank-you-page p {
    max-width: 480px;
    margin-inline: auto;
    color: var(--color-text-muted);
}

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

    .hero-scroll-hint {
        display: none;
    }

    .hero-visual {
        order: -1;
    }

    .bento-4 {
        grid-template-columns: 1fr 1fr;
    }

    .bento-4 .card:nth-child(1) {
        grid-column: span 2;
        grid-row: span 1;
        min-height: auto;
    }

    .bento-4 .card:nth-child(2) {
        grid-column: span 2;
    }

    .trust-science {
        grid-template-columns: 1fr;
    }

    .social-proof {
        grid-template-columns: 1fr;
    }

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

    .bento-benefits .card:nth-child(1),
    .bento-benefits .card:nth-child(2),
    .bento-benefits .card:nth-child(3),
    .bento-benefits .card:nth-child(4),
    .bento-benefits .card:nth-child(5),
    .bento-benefits .card:nth-child(6) {
        grid-column: span 2;
    }

    .split-story {
        grid-template-columns: 1fr;
    }

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

    .rhythm-stage {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .rhythm-bullets {
        text-align: left;
        display: inline-block;
    }

    .nav-toggle {
        display: inline-flex;
    }

    .site-nav--drawer {
        position: fixed;
        top: 0;
        right: 0;
        height: 100vh;
        height: 100dvh;
        width: min(320px, 88vw);
        max-width: 100%;
        margin: 0;
        padding: calc(var(--header-h) + var(--space-6)) var(--space-6) var(--space-8);
        background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(244, 246, 255, 0.98) 100%);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        border-left: 1px solid rgba(25, 16, 74, 0.1);
        box-shadow: -12px 0 40px rgba(25, 16, 74, 0.15);
        transform: translateX(105%);
        opacity: 0.98;
        pointer-events: none;
        transition: transform 0.42s cubic-bezier(0.22, 1, 0.36, 1);
        z-index: 10001;
        overflow-y: auto;
    }

    .site-nav--drawer.is-open {
        transform: translateX(0);
        pointer-events: auto;
    }

    .site-nav--drawer ul {
        flex-direction: column;
        align-items: stretch;
        gap: var(--space-1);
    }

    .site-nav--drawer a {
        display: block;
        padding: var(--space-3) var(--space-4);
        border-radius: var(--radius-md);
        transition: background var(--transition-fast), transform var(--transition-fast);
    }

    .site-nav--drawer a:hover {
        background: rgba(255, 140, 90, 0.12);
        transform: translateX(4px);
    }

    .site-nav--drawer li {
        opacity: 0;
        transform: translateX(16px);
        animation: none;
    }

    .site-nav--drawer.is-open li {
        animation: navItemIn 0.4s ease forwards;
    }

    .site-nav--drawer.is-open li:nth-child(1) {
        animation-delay: 0.05s;
    }

    .site-nav--drawer.is-open li:nth-child(2) {
        animation-delay: 0.1s;
    }

    .site-nav--drawer.is-open li:nth-child(3) {
        animation-delay: 0.15s;
    }

    .site-nav--drawer.is-open li:nth-child(4) {
        animation-delay: 0.2s;
    }

    .site-nav--drawer.is-open li:nth-child(5) {
        animation-delay: 0.25s;
    }

    .site-nav--drawer.is-open li:nth-child(6) {
        animation-delay: 0.3s;
    }

    .site-nav--drawer.is-open li:nth-child(7) {
        animation-delay: 0.35s;
    }

    .site-nav--drawer.is-open li:nth-child(8) {
        animation-delay: 0.4s;
    }
}

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

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

    .bento-4 .card:nth-child(1),
    .bento-4 .card:nth-child(2),
    .bento-4 .card:nth-child(3),
    .bento-4 .card:nth-child(4) {
        grid-column: span 1;
    }

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

    .bento-benefits .card:nth-child(n) {
        grid-column: span 1;
    }

    .price-current {
        font-size: var(--font-size-3xl);
    }
}

@media (max-width: 320px) {
    :root {
        --font-size-base: 0.9375rem;
        --space-4: 0.875rem;
        --space-6: 1.25rem;
        --space-8: 1.5rem;
        --space-10: 2rem;
        --space-12: 2.25rem;
        --space-16: 2.75rem;
        --header-h: 64px;
    }

    .header-inner {
        width: calc(100% - var(--space-3));
        gap: var(--space-2);
    }

    .brand {
        font-size: var(--font-size-sm);
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

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

    .hero {
        padding: var(--space-10) var(--space-3) var(--space-8);
    }

    .hero h1 {
        font-size: clamp(1.35rem, 6vw, 1.85rem);
        word-break: break-word;
    }

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

    .price-current {
        font-size: var(--font-size-2xl);
    }

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

    .btn {
        width: 100%;
        max-width: 100%;
        min-height: 44px;
        padding: var(--space-3) var(--space-4);
    }

    .rhythm-tab {
        flex: 1 1 calc(50% - var(--space-2));
        min-width: 0;
        font-size: var(--font-size-xs);
        padding: var(--space-2) var(--space-3);
    }

    .rhythm-orbit-wrap {
        width: min(200px, 85vw);
        height: min(200px, 85vw);
    }

    .stat-num {
        font-size: var(--font-size-2xl);
    }

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

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

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

    .site-footer {
        padding: var(--space-8) var(--space-3);
    }

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

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

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

    .thank-you-steps {
        grid-template-columns: 1fr;
    }

    .faq-item button {
        font-size: var(--font-size-sm);
        padding: var(--space-3) 0;
    }

    .cta-final {
        padding: var(--space-10) var(--space-3);
        margin: var(--space-4) auto;
    }
}

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

    .hero--motion .hero-bg,
    .hero-aurora,
    .hero-mesh,
    .hero-scan,
    .blob,
    .blob-d,
    .hero-kicker-pulse,
    .hero-eyebrow,
    .hero-title-accent,
    .hero-chip,
    .hero-stars,
    .hero-save-tag,
    .hero-copy>*,
    .hero-product-stage,
    .hero-orbit,
    .hero-glow,
    .hero-shine,
    .hero-frame,
    .hero-icon-cluster,
    .hero-fa,
    .product-overview-icons i,
    .hero-visual-caption,
    .hero-scroll-line,
    .hero-scroll-text,
    .rhythm-ring,
    .rhythm-pulse,
    .icon-anim,
    .thank-you-icon-ring {
        animation: none !important;
    }

    .hero-copy>* {
        opacity: 1 !important;
        transform: none !important;
    }

    .reveal {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }

    .stagger-section .bento-4 .card {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }

    .rhythm-panel-block {
        animation: none !important;
    }
}