:root {
    --color-accent: #FF6EC7;
    --color-accent-soft: #FFB3C6;
    --color-accent-bold: #FF2EA6;
    --color-peach: #FFD1B8;
    --color-lavender: #D8B4FF;
    --color-base: #0f0a12;
    --color-surface: #1a1218;
    --color-elevated: #241a22;
    --color-text: #faf5f8;
    --color-text-muted: #c9b8c4;
    --color-white: #ffffff;
    --font-heading: "Segoe UI", system-ui, -apple-system, sans-serif;
    --font-body: "Segoe UI", system-ui, -apple-system, sans-serif;
    --fs-display: clamp(2.25rem, 5vw, 3.75rem);
    --fs-h2: clamp(1.75rem, 3.5vw, 2.5rem);
    --fs-h3: clamp(1.15rem, 2vw, 1.35rem);
    --fs-body: 1rem;
    --fs-small: 0.875rem;
    --lh-tight: 1.15;
    --lh-body: 1.6;
    --shadow-sm: 0 2px 8px rgba(255, 46, 166, 0.12);
    --shadow-md: 0 8px 24px rgba(255, 46, 166, 0.22);
    --shadow-lg: 0 18px 48px rgba(255, 110, 199, 0.35);
    --shadow-glow: 0 0 40px rgba(255, 46, 166, 0.45), 0 0 80px rgba(216, 180, 255, 0.25);
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 22px;
    --radius-full: 9999px;
    --space-xs: 0.35rem;
    --space-sm: 0.75rem;
    --space-md: 1.25rem;
    --space-lg: 2rem;
    --space-xl: 3rem;
    --space-2xl: 4.5rem;
    --header-h: 4.25rem;
    --transition-fast: 0.18s ease;
    --transition-med: 0.35s 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(--fs-body);
    line-height: var(--lh-body);
    color: var(--color-text);
    background: radial-gradient(120% 80% at 20% 0%, rgba(255, 46, 166, 0.18) 0%, transparent 50%),
        radial-gradient(80% 60% at 80% 10%, rgba(216, 180, 255, 0.14) 0%, transparent 45%),
        linear-gradient(180deg, var(--color-base) 0%, #120d14 40%, var(--color-base) 100%);
    min-height: 100vh;
    overflow-x: hidden;
}

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

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

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

code {
    font-family: ui-monospace, "Cascadia Code", "Segoe UI Mono", monospace;
    font-size: 0.84em;
    padding: 0.12em 0.4em;
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(216, 180, 255, 0.2);
}

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

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    height: var(--header-h);
    display: flex;
    align-items: center;
    background: rgba(26, 18, 24, 0.55);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(255, 179, 198, 0.22);
    transition: background var(--transition-med), box-shadow var(--transition-med);
}

.site-header.is-scrolled {
    background: rgba(15, 10, 18, 0.78);
    box-shadow: var(--shadow-sm);
}

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

.brand {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.05rem;
    letter-spacing: -0.02em;
    color: var(--color-white);
    display: flex;
    align-items: center;
    gap: var(--space-xs);
}

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

.nav-main {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm) var(--space-md);
    justify-content: flex-end;
}

.nav-main a {
    color: var(--color-text-muted);
    font-weight: 600;
    font-size: var(--fs-small);
    padding: var(--space-xs) 0;
}

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

.nav-toggle {
    display: none;
    width: 46px;
    height: 46px;
    padding: 0;
    margin: 0;
    border: none;
    border-radius: var(--radius-md);
    background: linear-gradient(145deg, rgba(255, 46, 166, 0.35) 0%, rgba(216, 180, 255, 0.12) 100%);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12), 0 4px 18px rgba(255, 46, 166, 0.2);
    cursor: pointer;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: transform var(--transition-fast), box-shadow var(--transition-fast), background var(--transition-fast);
}

.nav-toggle:hover {
    box-shadow: 0 0 0 1px rgba(255, 110, 199, 0.5), var(--shadow-md);
}

.nav-toggle.is-active {
    background: linear-gradient(145deg, rgba(255, 46, 166, 0.55) 0%, rgba(216, 180, 255, 0.35) 100%);
}

.burger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    width: 22px;
    height: 18px;
    pointer-events: none;
}

.burger-line {
    display: block;
    height: 2px;
    width: 100%;
    border-radius: 2px;
    background: linear-gradient(90deg, var(--color-white) 0%, var(--color-accent-soft) 100%);
    transition: transform 0.35s var(--transition-med), opacity 0.25s ease;
    transform-origin: center;
}

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

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

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

.integrity-banner {
    padding-block: var(--space-md);
    width: min(1180px, 100% - var(--space-lg) * 2);
    margin-inline: auto;
}

.integrity-inner {
    padding: var(--space-md) var(--space-lg);
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 179, 198, 0.28);
    background: rgba(15, 10, 18, 0.72);
    font-size: var(--fs-small);
    color: var(--color-text-muted);
    line-height: 1.65;
}

.integrity-inner p {
    margin: 0 0 var(--space-sm);
}

.integrity-inner p:last-child {
    margin-bottom: 0;
}

.integrity-inner strong {
    color: var(--color-peach);
}

.price-legal-note {
    margin: var(--space-sm) 0 0;
    font-size: 0.75rem;
    line-height: 1.5;
    color: var(--color-text-muted);
    max-width: 36rem;
}

.hero-microcopy {
    margin: var(--space-md) 0 0;
    font-size: 0.72rem;
    color: var(--color-text-muted);
    max-width: 34rem;
    line-height: 1.45;
}

.section {
    padding-block: var(--space-2xl);
    width: min(1180px, 100% - var(--space-lg) * 2);
    margin-inline: auto;
}

.section-head {
    max-width: 40rem;
    margin-bottom: var(--space-xl);
}

.section-head h2 {
    font-size: var(--fs-h2);
    line-height: var(--lh-tight);
    margin: 0 0 var(--space-sm);
    font-family: var(--font-heading);
}

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

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

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

.reveal-stagger>* {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 0.55s var(--transition-med), transform 0.55s var(--transition-med);
}

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

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

.reveal.is-visible .reveal-stagger>*:nth-child(3) {
    opacity: 1;
    transform: none;
    transition-delay: 0.18s;
}

.reveal.is-visible .reveal-stagger>*:nth-child(4) {
    opacity: 1;
    transform: none;
    transition-delay: 0.24s;
}

.reveal.is-visible .reveal-stagger>*:nth-child(5) {
    opacity: 1;
    transform: none;
    transition-delay: 0.3s;
}

.reveal.is-visible .reveal-stagger>*:nth-child(6) {
    opacity: 1;
    transform: none;
    transition-delay: 0.36s;
}

.reveal.is-visible .reveal-stagger>*:nth-child(7) {
    opacity: 1;
    transform: none;
    transition-delay: 0.42s;
}

.reveal.is-visible .reveal-stagger>*:nth-child(8) {
    opacity: 1;
    transform: none;
    transition-delay: 0.48s;
}

.social-chips {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-xs);
    margin-bottom: var(--space-lg);
}

.social-chip {
    font-family: inherit;
    font-size: var(--fs-small);
    font-weight: 700;
    padding: var(--space-xs) var(--space-md);
    border-radius: var(--radius-full);
    border: 1px solid rgba(255, 110, 199, 0.35);
    background: rgba(15, 10, 18, 0.4);
    color: var(--color-text-muted);
    cursor: pointer;
    transition: color var(--transition-fast), border-color var(--transition-fast), box-shadow var(--transition-fast), transform var(--transition-fast);
}

.social-chip:hover {
    color: var(--color-white);
    border-color: var(--color-accent);
}

.social-chip.is-active {
    color: var(--color-white);
    border-color: var(--color-accent-bold);
    box-shadow: 0 0 20px rgba(255, 46, 166, 0.35);
    transform: translateY(-1px);
}

.preview-card.is-dimmed {
    opacity: 0.28;
    filter: grayscale(0.4);
    transform: scale(0.98);
}

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

.stat-pill {
    display: inline-flex;
    align-items: baseline;
    gap: 0.35rem;
    padding: var(--space-xs) var(--space-sm);
    border-radius: var(--radius-full);
    background: rgba(255, 110, 199, 0.12);
    border: 1px solid rgba(255, 179, 198, 0.25);
    font-size: var(--fs-small);
    color: var(--color-accent-soft);
}

.stat-pill .stat-num {
    font-weight: 800;
    color: var(--color-white);
    font-size: 1rem;
}

.stat-label {
    font-weight: 600;
    color: var(--color-text-muted);
    font-size: 0.75rem;
}

.rating-summary .big .stat-num {
    font-size: inherit;
    font-weight: inherit;
}

@keyframes hero-float {

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

    50% {
        transform: translateY(-14px) rotate(1deg);
    }
}

@keyframes glow-pulse {

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

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

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

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

.hero {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-xl);
    padding-block: var(--space-2xl) var(--space-xl);
    width: min(1180px, 100% - var(--space-lg) * 2);
    margin-inline: auto;
}

.hero>.order-card {
    grid-column: 1 / -1;
}

.hero-stage {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-xl);
    align-items: stretch;
}

@media (min-width: 900px) {
    .hero-stage {
        grid-template-columns: 1.08fr 0.92fr;
        gap: var(--space-2xl);
        align-items: center;
    }
}

.hero-showcase {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: min(420px, 72vw);
    padding: var(--space-xl);
    border-radius: calc(var(--radius-lg) + 6px);
    border: 1px solid rgba(255, 179, 198, 0.35);
    background: linear-gradient(165deg, rgba(36, 26, 34, 0.92) 0%, rgba(15, 10, 18, 0.96) 55%, rgba(36, 26, 34, 0.88) 100%);
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.45), 0 0 0 1px rgba(255, 46, 166, 0.08) inset;
    overflow: hidden;
    isolation: isolate;
    transform: translateY(20px) scale(0.97);
    opacity: 0;
    transition: transform 0.4s var(--transition-med), opacity 0.4s var(--transition-med), box-shadow 0.5s ease;
}

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

.hero-showcase:hover {
    box-shadow: 0 28px 72px rgba(255, 46, 166, 0.18), 0 0 0 1px rgba(255, 179, 198, 0.25) inset;
}

.hero-mesh {
    position: absolute;
    inset: -20%;
    background: conic-gradient(from 210deg at 50% 50%, rgba(255, 46, 166, 0.35), rgba(216, 180, 255, 0.2), rgba(255, 209, 184, 0.15), rgba(255, 46, 166, 0.3));
    opacity: 0.55;
    animation: hero-mesh-spin 28s linear infinite;
    pointer-events: none;
}

.hero-grid-fog {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 20% 30%, rgba(255, 110, 199, 0.12) 0%, transparent 42%),
        radial-gradient(circle at 78% 70%, rgba(216, 180, 255, 0.1) 0%, transparent 38%);
    background-size: 120% 120%;
    animation: hero-fog-drift 12s ease-in-out infinite;
    pointer-events: none;
}

.hero-ring {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(255, 179, 198, 0.35);
    pointer-events: none;
    animation: hero-ring-pulse 4.5s ease-in-out infinite;
}

.hero-ring--a {
    width: min(92%, 380px);
    aspect-ratio: 1;
    border-style: dashed;
    animation: hero-orbit 22s linear infinite;
    opacity: 0.7;
}

.hero-ring--b {
    width: min(76%, 300px);
    aspect-ratio: 1;
    border-color: rgba(216, 180, 255, 0.4);
    animation: hero-orbit-reverse 18s linear infinite;
    opacity: 0.5;
}

.hero-spark {
    position: absolute;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--color-white);
    box-shadow: 0 0 16px 4px rgba(255, 110, 199, 0.8);
    pointer-events: none;
    animation: hero-spark 3.2s ease-in-out infinite;
}

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

.hero-spark--2 {
    bottom: 22%;
    right: 12%;
    animation-delay: 0.9s;
    background: var(--color-peach);
}

.hero-spark--3 {
    top: 38%;
    right: 20%;
    width: 5px;
    height: 5px;
    animation-delay: 1.6s;
    background: var(--color-lavender);
}

@keyframes hero-mesh-spin {
    to {
        transform: rotate(360deg);
    }
}

@keyframes hero-fog-drift {

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

    50% {
        background-position: 30% 20%;
        opacity: 0.85;
    }
}

@keyframes hero-orbit {
    to {
        transform: rotate(360deg);
    }
}

@keyframes hero-orbit-reverse {
    to {
        transform: rotate(-360deg);
    }
}

@keyframes hero-ring-pulse {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(255, 46, 166, 0.22);
    }

    50% {
        box-shadow: 0 0 24px 2px rgba(255, 46, 166, 0.15);
    }
}

@keyframes hero-spark {

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

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

.hero-glow {
    position: absolute;
    inset: 15% 8%;
    background: radial-gradient(ellipse at center, rgba(255, 46, 166, 0.5) 0%, rgba(216, 180, 255, 0.15) 48%, transparent 68%);
    filter: blur(32px);
    z-index: 0;
    pointer-events: none;
    animation: glow-pulse 5s ease-in-out infinite;
}

.hero-float-wrap {
    position: relative;
    z-index: 2;
    margin: 0;
    animation: hero-float 6.5s ease-in-out infinite;
}

.hero-float-wrap img {
    filter: drop-shadow(var(--shadow-glow));
    max-height: min(440px, 58vh);
    width: auto;
    margin-inline: auto;
}

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

.hero-float-tag {
    position: absolute;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: var(--space-xs) var(--space-sm);
    border-radius: var(--radius-full);
    background: rgba(15, 10, 18, 0.65);
    border: 1px solid rgba(255, 110, 199, 0.45);
    color: var(--color-peach);
    backdrop-filter: blur(8px);
    animation: hero-tag-bob 5.5s ease-in-out infinite;
}

.hero-float-tag--delay {
    animation-delay: 1.2s;
}

.hero-float-tag--slow {
    animation-duration: 7s;
    animation-delay: 0.5s;
}

.hero-float-tag:nth-child(1) {
    top: 12%;
    right: 8%;
}

.hero-float-tag:nth-child(2) {
    bottom: 18%;
    left: 6%;
}

.hero-float-tag:nth-child(3) {
    top: 52%;
    right: 4%;
}

@keyframes hero-tag-bob {

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

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

.hero-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-kicker {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    margin: 0 0 var(--space-md);
    font-size: var(--fs-small);
    font-weight: 700;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    opacity: 0;
    transform: translateX(-20px);
    transition: opacity 0.6s var(--transition-med) 0.05s, transform 0.6s var(--transition-med) 0.05s;
}

.reveal.is-visible .hero-kicker {
    opacity: 1;
    transform: translateX(0);
}

.hero-kicker-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-accent-bold), var(--color-lavender));
    box-shadow: 0 0 14px rgba(255, 46, 166, 0.85);
    animation: hero-dot-pulse 2s ease-in-out infinite;
}

@keyframes hero-dot-pulse {

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

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

.hero-copy h1 {
    font-size: var(--fs-display);
    line-height: 1.12;
    margin: 0 0 var(--space-md);
    font-family: var(--font-heading);
    font-weight: 800;
    color: var(--color-white);
}

.hero-title-line {
    display: block;
    opacity: 0;
    transform: translateY(1.1em);
    transition: opacity 0.55s var(--transition-med), transform 0.55s var(--transition-med);
}

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

.reveal.is-visible .hero-title-line:first-child {
    transition-delay: 0.12s;
}

.reveal.is-visible .hero-title-line--gradient {
    transition-delay: 0.28s;
    margin-top: 0.2em;
}

.hero-title-line--gradient {
    background: linear-gradient(110deg, var(--color-white) 0%, var(--color-accent-soft) 35%, var(--color-accent-bold) 55%, var(--color-lavender) 85%, var(--color-white) 100%);
    background-size: 220% auto;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    animation: hero-title-shimmer 7s linear infinite;
}

@keyframes hero-title-shimmer {
    0% {
        background-position: 0% center;
    }

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

.hero-lead {
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.55s var(--transition-med) 0.35s, transform 0.55s var(--transition-med) 0.35s;
}

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

.hero-stars {
    opacity: 0;
    transform: translateY(12px);
    transition: opacity 0.5s var(--transition-med) 0.45s, transform 0.5s var(--transition-med) 0.45s;
}

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

.stars--shine {
    animation: hero-stars-twinkle 2.8s ease-in-out infinite;
}

@keyframes hero-stars-twinkle {

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

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

.hero-badges span {
    animation: none;
}

.reveal.is-visible .hero-badges span:nth-child(1) {
    animation: hero-badge-pop 0.5s var(--transition-med) 0.55s both;
}

.reveal.is-visible .hero-badges span:nth-child(2) {
    animation: hero-badge-pop 0.5s var(--transition-med) 0.65s both;
}

.reveal.is-visible .hero-badges span:nth-child(3) {
    animation: hero-badge-pop 0.5s var(--transition-med) 0.75s both;
}

@keyframes hero-badge-pop {
    from {
        opacity: 0;
        transform: scale(0.85) translateY(6px);
    }

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

.hero-price-bar {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: var(--space-md);
    margin: var(--space-md) 0 var(--space-lg);
    padding: var(--space-md) var(--space-lg);
    border-radius: var(--radius-lg);
    background: rgba(255, 110, 199, 0.08);
    border: 1px solid rgba(255, 179, 198, 0.25);
    backdrop-filter: blur(10px);
    opacity: 0;
    transform: scale(0.96) translateY(12px);
    transition: opacity 0.55s var(--transition-med) 0.5s, transform 0.55s var(--transition-med) 0.5s;
}

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

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

.hero-price-current {
    animation: hero-price-glow 3.5s ease-in-out infinite;
}

@keyframes hero-price-glow {

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

    50% {
        text-shadow: 0 0 24px rgba(255, 110, 199, 0.45);
    }
}

.hero-magnetic {
    flex: 1;
    min-width: 140px;
}

.hero-buy {
    width: 100%;
    animation: hero-cta-pulse 3s ease-in-out infinite;
}

@keyframes hero-cta-pulse {

    0%,
    100% {
        box-shadow: var(--shadow-lg);
    }

    50% {
        box-shadow: var(--shadow-glow);
    }
}

.hero-highlights {
    opacity: 0;
}

.reveal.is-visible .hero-highlights {
    opacity: 1;
}

.hero-highlights li {
    opacity: 0;
    transform: translateX(-12px);
    transition: opacity 0.45s var(--transition-med), transform 0.45s var(--transition-med);
}

.reveal.is-visible .hero-highlights li:nth-child(1) {
    opacity: 1;
    transform: translateX(0);
    transition-delay: 0.62s;
}

.reveal.is-visible .hero-highlights li:nth-child(2) {
    opacity: 1;
    transform: translateX(0);
    transition-delay: 0.74s;
}

.reveal.is-visible .hero-highlights li:nth-child(3) {
    opacity: 1;
    transform: translateX(0);
    transition-delay: 0.86s;
}

@media (max-width: 520px) {
    .hero-price-bar {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-magnetic {
        width: 100%;
        min-width: 0;
    }
}

.lead {
    font-size: 1.1rem;
    color: var(--color-text-muted);
    margin: 0 0 var(--space-md);
}

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

.stars {
    color: var(--color-peach);
    letter-spacing: 2px;
    font-size: 1.1rem;
}

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

.trust-badges span {
    font-size: var(--fs-small);
    padding: var(--space-xs) var(--space-sm);
    border-radius: var(--radius-full);
    background: rgba(255, 110, 199, 0.15);
    border: 1px solid rgba(255, 110, 199, 0.35);
    color: var(--color-accent-soft);
    font-weight: 600;
}

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

.price-current {
    font-size: 2rem;
    font-weight: 800;
    color: var(--color-white);
}

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

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

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

.highlights li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.45em;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--color-accent-bold);
    box-shadow: 0 0 12px var(--color-accent);
}

.order-card {
    background: rgba(36, 26, 34, 0.85);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 179, 198, 0.25);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    box-shadow: var(--shadow-md);
}

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

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

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: var(--space-xs);
    font-size: var(--fs-small);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: var(--space-sm) var(--space-md);
    border-radius: var(--radius-md);
    border: 1px solid rgba(216, 180, 255, 0.35);
    background: rgba(15, 10, 18, 0.65);
    color: var(--color-text);
    font-family: inherit;
    font-size: 1rem;
    transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-accent-bold);
    box-shadow: 0 0 0 3px rgba(255, 46, 166, 0.25);
}

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

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

.form-group.is-invalid input,
.form-group.is-invalid textarea {
    border-color: #ff5c7a;
}

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

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

.checkbox-wrap input {
    margin-top: 0.2rem;
    accent-color: var(--color-accent-bold);
}

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

.btn-primary {
    background: linear-gradient(135deg, var(--color-accent-bold) 0%, var(--color-accent) 100%);
    color: var(--color-white);
    box-shadow: var(--shadow-lg);
}

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

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

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

.btn-block {
    width: 100%;
    margin-top: var(--space-md);
}

.magnetic-wrap {
    display: inline-block;
    width: 100%;
}

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

@media (min-width: 768px) {
    .social-proof {
        grid-template-columns: 1fr 2fr;
        align-items: start;
    }
}

.rating-summary {
    background: var(--color-elevated);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    border: 1px solid rgba(255, 110, 199, 0.2);
}

.rating-summary .big {
    font-size: 2.5rem;
    font-weight: 800;
    margin: 0;
}

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

@media (min-width: 600px) {
    .preview-cards {
        grid-template-columns: repeat(3, 1fr);
    }
}

.preview-card {
    background: rgba(36, 26, 34, 0.7);
    border-radius: var(--radius-md);
    padding: var(--space-md);
    border: 1px solid rgba(216, 180, 255, 0.18);
    transition: transform var(--transition-fast), border-color var(--transition-fast);
}

.preview-card:hover {
    transform: translateY(-4px);
    border-color: var(--color-accent);
}

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

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

@media (min-width: 720px) {
    .bento {
        grid-template-columns: repeat(4, 1fr);
        grid-auto-rows: minmax(120px, auto);
    }

    .bento .card-lg {
        grid-column: span 2;
        grid-row: span 2;
    }

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

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

.bento-card {
    background: linear-gradient(145deg, rgba(255, 110, 199, 0.12) 0%, rgba(36, 26, 34, 0.9) 50%);
    border: 1px solid rgba(255, 179, 198, 0.22);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    transition: transform var(--transition-med), box-shadow var(--transition-med);
    position: relative;
    overflow: hidden;
}

.bento-card:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow-md);
}

.bento-card-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.65rem;
    height: 2.65rem;
    margin-bottom: var(--space-sm);
    border-radius: var(--radius-md);
    font-size: 1.1rem;
    color: var(--color-white);
    background: linear-gradient(135deg, var(--color-accent-bold) 0%, rgba(216, 180, 255, 0.85) 100%);
    box-shadow: 0 4px 16px rgba(255, 46, 166, 0.28);
    transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.bento-card:hover .bento-card-icon {
    transform: scale(1.06);
    box-shadow: 0 6px 20px rgba(255, 46, 166, 0.35);
}

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

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

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

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

@media (min-width: 960px) {
    .ingredient-spotlight .grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.ingredient-card {
    background: var(--color-elevated);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 110, 199, 0.2);
    padding: var(--space-lg);
    min-height: 140px;
    transition: border-color var(--transition-fast), background var(--transition-fast);
    position: relative;
    perspective: 800px;
}

.ingredient-card:hover {
    border-color: var(--color-accent-bold);
    background: rgba(255, 46, 166, 0.08);
}

.ingredient-card .name {
    font-weight: 700;
    margin: 0 0 var(--space-xs);
    font-size: 1.05rem;
}

.ingredient-card .hint {
    margin: 0;
    font-size: var(--fs-small);
    color: var(--color-text-muted);
}

.ingredient-card .benefit {
    position: absolute;
    inset: 0;
    padding: var(--space-lg);
    background: rgba(15, 10, 18, 0.92);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    opacity: 0;
    transition: opacity var(--transition-med);
    font-size: var(--fs-small);
    line-height: var(--lh-body);
}

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

.trust-science {
    display: grid;
    gap: var(--space-lg);
    grid-template-columns: 1fr;
}

@media (min-width: 800px) {
    .trust-science {
        grid-template-columns: repeat(3, 1fr);
    }
}

.trust-item {
    text-align: center;
    padding: var(--space-lg);
    background: rgba(36, 26, 34, 0.65);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(216, 180, 255, 0.2);
    transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

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

.trust-icon-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-inline: auto;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    font-size: 1.45rem;
    color: var(--color-white);
    background: linear-gradient(145deg, var(--color-accent-bold) 0%, var(--color-lavender) 100%);
    box-shadow: 0 8px 24px rgba(255, 46, 166, 0.35);
    animation: pulse 2.4s ease-in-out infinite;
}

.trust-item:nth-child(2) .trust-icon-wrap {
    animation-delay: 0.3s;
}

.trust-item:nth-child(3) .trust-icon-wrap {
    animation-delay: 0.6s;
}

.trust-item h3 {
    margin: var(--space-md) 0 var(--space-xs);
    font-size: 1.05rem;
}

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

@keyframes pulse {

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

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

.rhythm-lab .rhythm-shell {
    position: relative;
    padding: var(--space-xl);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 110, 199, 0.28);
    background: radial-gradient(80% 60% at 10% 20%, rgba(255, 46, 166, 0.22) 0%, transparent 55%),
        radial-gradient(70% 50% at 90% 80%, rgba(216, 180, 255, 0.18) 0%, transparent 50%),
        rgba(15, 10, 18, 0.65);
    overflow: hidden;
    min-height: 280px;
}

.rhythm-orb {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    filter: blur(32px);
    opacity: 0.65;
    animation: orb-drift 14s ease-in-out infinite;
}

.rhythm-orb-a {
    width: 180px;
    height: 180px;
    background: var(--color-accent-bold);
    top: -40px;
    right: 10%;
    animation-delay: 0s;
}

.rhythm-orb-b {
    width: 140px;
    height: 140px;
    background: var(--color-lavender);
    bottom: -20px;
    left: 5%;
    animation-delay: -4s;
}

.rhythm-orb-c {
    width: 100px;
    height: 100px;
    background: var(--color-peach);
    top: 40%;
    left: 40%;
    animation-delay: -7s;
}

@keyframes orb-drift {

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

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

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

.rhythm-tabs {
    position: relative;
    z-index: 2;
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
    margin-bottom: var(--space-lg);
}

.rhythm-tab {
    font-family: inherit;
    font-weight: 700;
    font-size: var(--fs-small);
    padding: var(--space-sm) var(--space-md);
    border-radius: var(--radius-full);
    border: 1px solid rgba(255, 179, 198, 0.35);
    background: rgba(26, 18, 24, 0.55);
    color: var(--color-text-muted);
    cursor: pointer;
    transition: transform var(--transition-fast), border-color var(--transition-fast), color var(--transition-fast), box-shadow var(--transition-fast);
}

.rhythm-tab:hover {
    color: var(--color-white);
    border-color: var(--color-accent);
}

.rhythm-tab.is-active {
    color: var(--color-white);
    border-color: var(--color-accent-bold);
    background: linear-gradient(135deg, rgba(255, 46, 166, 0.45) 0%, rgba(216, 180, 255, 0.15) 100%);
    box-shadow: var(--shadow-glow);
    transform: translateY(-2px);
}

.rhythm-panels {
    position: relative;
    z-index: 2;
}

.rhythm-panel {
    display: none;
    padding: var(--space-lg);
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 179, 198, 0.22);
    background: rgba(15, 10, 18, 0.72);
    box-shadow: var(--shadow-md);
    animation: panel-swap 0.45s var(--transition-med) forwards;
}

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

.rhythm-panel h3 {
    margin: 0 0 var(--space-sm);
    font-size: var(--fs-h3);
}

.rhythm-lead {
    margin: 0 0 var(--space-md);
    color: var(--color-text-muted);
    font-size: var(--fs-small);
}

.rhythm-list {
    margin: 0 0 var(--space-md);
    padding-left: 1.2rem;
    color: var(--color-text-muted);
    font-size: var(--fs-small);
}

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

.rhythm-badge {
    display: inline-block;
    padding: var(--space-xs) var(--space-sm);
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    background: rgba(255, 110, 199, 0.2);
    border: 1px solid rgba(255, 46, 166, 0.45);
    color: var(--color-peach);
}

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

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

.product-overview {
    display: grid;
    gap: var(--space-xl);
    align-items: center;
}

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

.product-overview-visual {
    margin: 0;
    width: 100%;
    max-width: 420px;
    min-height: 360px;
    margin-inline: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 179, 198, 0.25);
    background: radial-gradient(ellipse 80% 70% at 50% 40%, rgba(255, 110, 199, 0.12) 0%, transparent 60%),
        linear-gradient(160deg, rgba(36, 26, 34, 0.9) 0%, rgba(15, 10, 18, 0.95) 100%);
}

.overview-icon-cluster {
    position: relative;
    width: 280px;
    height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.overview-icon {
    position: absolute;
    left: 50%;
    top: 50%;
    color: var(--color-accent-soft);
    text-shadow: 0 0 28px rgba(255, 46, 166, 0.45);
}

.overview-icon--a {
    font-size: 4.5rem;
    margin-left: -5.25rem;
    margin-top: -4.25rem;
    color: var(--color-accent);
    transform: rotate(-8deg);
    animation: overview-float-a 5s ease-in-out infinite;
}

.overview-icon--b {
    font-size: 3.25rem;
    margin-left: 2.5rem;
    margin-top: -5.5rem;
    color: var(--color-peach);
    transform: rotate(12deg);
    animation: overview-float-b 5.5s ease-in-out infinite 0.35s;
}

.overview-icon--c {
    font-size: 3.75rem;
    margin-left: -1rem;
    margin-top: 2.5rem;
    color: var(--color-lavender);
    transform: rotate(5deg);
    animation: overview-float-c 6s ease-in-out infinite 0.7s;
}

@keyframes overview-float-a {

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

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

@keyframes overview-float-b {

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

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

@keyframes overview-float-c {

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

    50% {
        transform: rotate(5deg) translateY(-14px);
    }
}

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

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

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

.spec-card:hover {
    border-color: rgba(255, 110, 199, 0.4);
}

.spec-details {
    flex: 1;
    min-width: 0;
}

.spec-details summary {
    cursor: pointer;
    font-weight: 700;
    font-size: 1rem;
    color: var(--color-white);
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-sm);
}

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

.spec-details summary::after {
    content: "+";
    font-weight: 800;
    color: var(--color-accent);
    transition: transform var(--transition-fast);
}

.spec-details[open] summary::after {
    transform: rotate(45deg);
}

.spec-details p {
    margin: var(--space-sm) 0 0;
    font-size: var(--fs-small);
    color: var(--color-text-muted);
    line-height: 1.65;
}

.spec-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: var(--radius-sm);
    background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-lavender) 100%);
    flex-shrink: 0;
    color: var(--color-white);
    font-size: 1rem;
}

.steps {
    counter-reset: step;
    display: grid;
    gap: var(--space-lg);
}

@media (min-width: 768px) {
    .steps {
        grid-template-columns: repeat(3, 1fr);
    }
}

.step {
    position: relative;
    padding: var(--space-lg);
    background: rgba(36, 26, 34, 0.72);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(216, 180, 255, 0.2);
    transition: border-color var(--transition-fast);
}

.step:hover {
    border-color: var(--color-accent);
}

.step::before {
    counter-increment: step;
    content: counter(step);
    position: absolute;
    top: var(--space-md);
    right: var(--space-md);
    width: 2rem;
    height: 2rem;
    border-radius: var(--radius-full);
    background: var(--color-accent-bold);
    color: var(--color-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: var(--fs-small);
}

.step h3 {
    margin: 0 0 var(--space-sm);
    font-size: 1rem;
    padding-right: 2.5rem;
}

.step p {
    margin: 0;
    font-size: var(--fs-small);
    color: var(--color-text-muted);
}

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

@media (min-width: 600px) {
    .ingredients-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 960px) {
    .ingredients-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.ingredient-mini {
    background: var(--color-elevated);
    border-radius: var(--radius-md);
    padding: var(--space-md);
    border: 1px solid rgba(255, 179, 198, 0.2);
}

.ingredient-mini h4 {
    margin: 0 0 var(--space-xs);
    font-size: 1rem;
}

.ingredient-mini p {
    margin: 0;
    font-size: var(--fs-small);
    color: var(--color-text-muted);
}

.use-steps ol {
    margin: 0;
    padding-left: 1.25rem;
    color: var(--color-text-muted);
}

.use-steps li {
    margin-bottom: var(--space-sm);
}

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

@media (min-width: 720px) {
    .reviews-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.review-card {
    background: rgba(36, 26, 34, 0.75);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    border: 1px solid rgba(255, 110, 199, 0.18);
    transition: transform var(--transition-fast);
}

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

.review-head {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-sm);
}

.review-avatar {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    color: var(--color-accent-bold);
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 110, 199, 0.35);
}

.review-avatar--rose {
    background: linear-gradient(145deg, rgba(255, 179, 198, 0.5) 0%, rgba(255, 46, 166, 0.15) 100%);
    color: var(--color-accent-bold);
}

.review-avatar--lavender {
    background: linear-gradient(145deg, rgba(216, 180, 255, 0.45) 0%, rgba(255, 46, 166, 0.12) 100%);
    color: #5a3470;
}

.review-avatar--peach {
    background: linear-gradient(145deg, rgba(255, 209, 184, 0.55) 0%, rgba(255, 110, 199, 0.12) 100%);
    color: #a63d6b;
}

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

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

.faq-item {
    border: 1px solid rgba(216, 180, 255, 0.22);
    border-radius: var(--radius-md);
    background: var(--color-elevated);
    overflow: hidden;
}

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

.faq-item button:hover {
    background: rgba(255, 110, 199, 0.1);
}

.faq-item .faq-panel {
    display: none;
    padding: 0 var(--space-md) var(--space-md);
    color: var(--color-text-muted);
    font-size: var(--fs-small);
}

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

.final-cta {
    text-align: center;
    padding: var(--space-2xl) var(--space-lg);
    background: linear-gradient(135deg, rgba(255, 46, 166, 0.2) 0%, rgba(216, 180, 255, 0.15) 100%);
    background-size: 200% 200%;
    animation: gradient-shimmer 12s linear infinite;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 179, 198, 0.25);
}

.final-cta h2 {
    margin: 0 0 var(--space-sm);
    font-size: var(--fs-h2);
}

.final-cta p {
    margin: 0 0 var(--space-lg);
    color: var(--color-text-muted);
    max-width: 36rem;
    margin-inline: auto;
}

.disclaimer-block {
    background: rgba(15, 10, 18, 0.85);
    border: 1px solid rgba(255, 110, 199, 0.2);
    border-radius: var(--radius-md);
    padding: var(--space-lg);
    margin-top: var(--space-xl);
}

.disclaimer-block p {
    margin: 0 0 var(--space-sm);
    font-size: var(--fs-small);
    color: var(--color-text-muted);
}

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

.site-footer {
    margin-top: var(--space-2xl);
    padding: var(--space-2xl) var(--space-lg);
    background: var(--color-surface);
    border-top: 1px solid rgba(255, 179, 198, 0.2);
}

.footer-inner {
    width: min(1180px, 100%);
    margin-inline: auto;
    display: grid;
    gap: var(--space-xl);
}

.footer-legal-strip {
    font-size: var(--fs-small);
    color: var(--color-text-muted);
    line-height: var(--lh-body);
    padding: var(--space-md);
    background: rgba(15, 10, 18, 0.6);
    border-radius: var(--radius-md);
    border: 1px solid rgba(216, 180, 255, 0.15);
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm) var(--space-lg);
}

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

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

.footer-meta {
    font-size: var(--fs-small);
    color: var(--color-text-muted);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 200;
    padding: var(--space-md);
    background: rgba(15, 10, 18, 0.88);
    backdrop-filter: blur(14px);
    border-top: 1px solid rgba(255, 110, 199, 0.35);
    transform: translateY(110%);
    transition: transform var(--transition-med);
}

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

.cookie-inner {
    width: min(900px, 100%);
    margin-inline: auto;
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

@media (min-width: 720px) {
    .cookie-inner {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }
}

.cookie-inner p {
    margin: 0;
    font-size: var(--fs-small);
    color: var(--color-text-muted);
}

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

.modal-overlay {
    position: fixed;
    inset: 0;
    z-index: 300;
    background: rgba(5, 3, 8, 0.72);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-md);
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition-med);
}

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

.modal {
    width: min(480px, 100%);
    max-height: 90vh;
    overflow-y: auto;
    background: rgba(26, 18, 24, 0.88);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 179, 198, 0.3);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    box-shadow: var(--shadow-lg);
}

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

.cookie-toggle-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-md);
    padding: var(--space-sm) 0;
    border-bottom: 1px solid rgba(216, 180, 255, 0.15);
    font-size: var(--fs-small);
}

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

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

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

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

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

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

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

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

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

.page-hero {
    padding: var(--space-xl) 0 var(--space-lg);
    width: min(800px, 100% - var(--space-lg) * 2);
    margin-inline: auto;
}

.page-hero h1 {
    font-size: var(--fs-h2);
    margin: 0 0 var(--space-sm);
}

.page-hero p {
    margin: 0;
    color: var(--color-text-muted);
}

.policy {
    width: min(800px, 100% - var(--space-lg) * 2);
    margin-inline: auto;
    padding-bottom: var(--space-2xl);
}

.policy h2 {
    font-size: var(--fs-h3);
    margin-top: var(--space-xl);
}

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

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

.thank-you-main {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: var(--space-2xl) var(--space-lg);
}

.thank-you-main h1 {
    font-size: var(--fs-h2);
    margin: 0 0 var(--space-md);
}

.thank-you-main p {
    margin: 0 0 var(--space-lg);
    color: var(--color-text-muted);
    max-width: 32rem;
    margin-inline: auto;
}

.page-legal {
    background: radial-gradient(100% 80% at 50% -10%, rgba(255, 46, 166, 0.12) 0%, transparent 45%),
        radial-gradient(60% 40% at 100% 20%, rgba(216, 180, 255, 0.08) 0%, transparent 35%),
        linear-gradient(180deg, var(--color-base) 0%, #110a10 100%);
}

.legal-canvas {
    width: min(920px, calc(100% - var(--space-lg) * 2));
    margin-inline: auto;
    padding-bottom: var(--space-2xl);
}

.legal-hero {
    position: relative;
    margin: var(--space-lg) auto var(--space-xl);
    width: min(920px, calc(100% - var(--space-lg) * 2));
    padding: clamp(1.5rem, 4vw, 2.75rem);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 110, 199, 0.3);
    background: linear-gradient(135deg, rgba(255, 46, 166, 0.15) 0%, rgba(36, 26, 34, 0.95) 50%, rgba(216, 180, 255, 0.08) 100%);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.legal-hero::after {
    content: "";
    position: absolute;
    inset: -40% -20%;
    background: repeating-linear-gradient(-12deg,
            transparent,
            transparent 18px,
            rgba(255, 179, 198, 0.04) 18px,
            rgba(255, 179, 198, 0.14) 36px);
    pointer-events: none;
    animation: legal-mesh 22s linear infinite;
}

@keyframes legal-mesh {
    to {
        transform: translateX(-60px);
    }
}

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

.legal-badge {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: var(--space-xs) var(--space-sm);
    border-radius: var(--radius-full);
    background: rgba(255, 46, 166, 0.25);
    border: 1px solid rgba(255, 179, 198, 0.35);
    color: var(--color-peach);
    margin-bottom: var(--space-md);
}

.legal-hero h1 {
    margin: 0 0 var(--space-sm);
    font-size: clamp(1.75rem, 4vw, 2.35rem);
    line-height: var(--lh-tight);
    font-family: var(--font-heading);
}

.legal-hero .legal-deck {
    margin: 0;
    color: var(--color-text-muted);
    font-size: var(--fs-small);
    max-width: 40rem;
}

.legal-hero .legal-updated {
    margin-top: var(--space-md);
    font-size: var(--fs-small);
    color: var(--color-accent-soft);
    font-weight: 600;
}

.legal-hero .legal-updated time {
    color: var(--color-white);
}

.legal-toc {
    position: sticky;
    top: var(--header-h);
    z-index: 90;
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-xs);
    padding: var(--space-sm) 0;
    margin: 0 auto var(--space-lg);
    width: min(920px, calc(100% - var(--space-lg) * 2));
    background: rgba(15, 10, 18, 0.72);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 110, 199, 0.18);
}

.legal-toc a {
    padding: var(--space-xs) var(--space-sm);
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--color-text-muted);
    border: 1px solid transparent;
    transition: border-color var(--transition-fast), color var(--transition-fast), background var(--transition-fast);
}

.legal-toc a:hover {
    color: var(--color-white);
    border-color: rgba(255, 110, 199, 0.35);
}

.legal-chapter {
    margin-bottom: var(--space-xl);
    padding: var(--space-lg);
    border-radius: var(--radius-lg);
    background: rgba(36, 26, 34, 0.55);
    border: 1px solid rgba(216, 180, 255, 0.16);
    border-left: 4px solid var(--color-accent-bold);
    box-shadow: var(--shadow-sm);
    transition: border-color var(--transition-fast), transform var(--transition-fast);
}

.legal-chapter:hover {
    border-left-color: var(--color-lavender);
    transform: translateX(4px);
}

.legal-chapter h2 {
    margin: 0 0 var(--space-md);
    font-size: var(--fs-h3);
    color: var(--color-white);
}

.legal-chapter p,
.legal-chapter li {
    color: var(--color-text-muted);
    font-size: var(--fs-small);
    line-height: 1.65;
}

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

.legal-callout {
    margin: var(--space-lg) 0;
    padding: var(--space-md) var(--space-lg);
    border-radius: var(--radius-md);
    border: 1px dashed rgba(255, 209, 184, 0.45);
    background: rgba(255, 46, 166, 0.06);
}

.legal-callout strong {
    color: var(--color-peach);
}

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

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

.legal-mini-card {
    padding: var(--space-md);
    border-radius: var(--radius-md);
    background: rgba(15, 10, 18, 0.45);
    border: 1px solid rgba(255, 110, 199, 0.15);
}

.legal-mini-card h3 {
    margin: 0 0 var(--space-xs);
    font-size: 1rem;
    color: var(--color-white);
}

.legal-table-wrap {
    overflow-x: auto;
    margin: var(--space-md) 0;
    border-radius: var(--radius-sm);
    border: 1px solid rgba(255, 110, 199, 0.15);
}

.legal-table-wrap table {
    width: 100%;
    border-collapse: collapse;
    font-size: var(--fs-small);
    color: var(--color-text-muted);
}

.legal-table-wrap th,
.legal-table-wrap td {
    padding: var(--space-sm) var(--space-md);
    text-align: left;
    border-bottom: 1px solid rgba(216, 180, 255, 0.12);
}

.legal-table-wrap th {
    background: rgba(255, 46, 166, 0.12);
    color: var(--color-white);
    font-weight: 700;
}

.ty-layout {
    width: min(820px, calc(100% - var(--space-lg) * 2));
    margin-inline: auto;
    padding: var(--space-xl) 0 var(--space-2xl);
}

.ty-hero {
    text-align: center;
    padding: var(--space-xl);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 110, 199, 0.28);
    background: radial-gradient(ellipse at 30% 0%, rgba(255, 46, 166, 0.2) 0%, transparent 55%),
        rgba(36, 26, 34, 0.75);
    margin-bottom: var(--space-xl);
    box-shadow: var(--shadow-md);
}

.ty-hero h1 {
    margin: 0 0 var(--space-md);
    font-size: var(--fs-h2);
    background: linear-gradient(120deg, var(--color-white), var(--color-accent-soft));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.ty-steps {
    display: grid;
    gap: var(--space-md);
    counter-reset: ty;
}

@media (min-width: 600px) {
    .ty-steps {
        grid-template-columns: repeat(3, 1fr);
    }
}

.ty-step {
    position: relative;
    padding: var(--space-lg);
    border-radius: var(--radius-lg);
    background: rgba(15, 10, 18, 0.55);
    border: 1px solid rgba(216, 180, 255, 0.2);
    transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.ty-step:hover {
    border-color: var(--color-accent);
    box-shadow: 0 12px 36px rgba(255, 46, 166, 0.12);
}

.ty-step::before {
    counter-increment: ty;
    content: counter(ty);
    position: absolute;
    top: var(--space-md);
    right: var(--space-md);
    width: 2rem;
    height: 2rem;
    border-radius: var(--radius-full);
    background: linear-gradient(135deg, var(--color-accent-bold), var(--color-lavender));
    color: var(--color-white);
    font-weight: 800;
    font-size: var(--fs-small);
    display: flex;
    align-items: center;
    justify-content: center;
}

.ty-step h2 {
    margin: 0 0 var(--space-sm);
    font-size: 1rem;
    padding-right: 2.5rem;
}

.ty-step p {
    margin: 0;
    font-size: var(--fs-small);
    color: var(--color-text-muted);
}

.ty-actions {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
    justify-content: center;
    margin-top: var(--space-xl);
}

.ty-updated {
    text-align: center;
    font-size: var(--fs-small);
    color: var(--color-text-muted);
    margin-top: var(--space-lg);
}

.ty-updated time {
    color: var(--color-accent-soft);
    font-weight: 600;
}

@media (max-width: 320px) {
    :root {
        --space-lg: 1rem;
        --space-xl: 1.75rem;
        --space-2xl: 2.35rem;
        --fs-display: 1.55rem;
        --fs-h2: 1.35rem;
        --header-h: 3.85rem;
    }

    .section {
        width: calc(100% - 12px);
        padding-inline: 0;
    }

    .hero {
        width: calc(100% - 12px);
        padding-block: var(--space-xl) var(--space-lg);
    }

    .header-inner {
        width: calc(100% - 10px);
        gap: var(--space-xs);
    }

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

    .social-chip,
    .rhythm-tab {
        flex: 1 1 auto;
        justify-content: center;
        text-align: center;
        min-height: 44px;
    }

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

    .cookie-actions .btn {
        width: 100%;
        min-height: 48px;
    }

    .price-current {
        font-size: 1.45rem;
    }

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

    .stat-pill {
        width: 100%;
        justify-content: center;
    }

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

    .legal-toc {
        width: calc(100% - 12px);
    }

    .legal-canvas,
    .legal-hero {
        width: calc(100% - 12px);
    }

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

    .btn {
        min-height: 48px;
        font-size: 0.95rem;
    }

    .faq-item button {
        font-size: 0.95rem;
        min-height: 48px;
    }

    .legal-chapter:hover {
        transform: none;
    }
}

@media (max-width: 359px) and (min-width: 321px) {
    .header-inner {
        width: calc(100% - 16px);
    }

    .section,
    .hero {
        width: calc(100% - 16px);
    }
}

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

    .nav-main {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        z-index: 101;
        background: rgba(15, 10, 18, 0.95);
        backdrop-filter: blur(16px);
        flex-direction: column;
        padding: var(--space-md);
        border-bottom: 1px solid rgba(255, 110, 199, 0.2);
        display: none;
    }

    .nav-main.is-open {
        display: flex;
    }
}

@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;
    }

    .reveal.is-visible .reveal-stagger>* {
        opacity: 1;
        transform: none;
        transition-delay: 0s !important;
    }

    .legal-hero::after {
        animation: none;
    }

    .final-cta {
        animation: none;
    }

    .hero-showcase {
        opacity: 1;
        transform: none;
    }

    .hero-mesh,
    .hero-grid-fog,
    .hero-ring,
    .hero-spark,
    .hero-float-wrap,
    .hero-float-tag,
    .hero-kicker-dot,
    .hero-title-line--gradient,
    .stars--shine,
    .hero-price-current,
    .hero-buy {
        animation: none !important;
    }

    .hero-badges span {
        animation: none !important;
    }

    .hero-title-line,
    .hero-kicker,
    .hero-lead,
    .hero-stars,
    .hero-price-bar,
    .hero-highlights,
    .hero-highlights li {
        opacity: 1 !important;
        transform: none !important;
        transition-delay: 0s !important;
    }

    .overview-icon--a,
    .overview-icon--b,
    .overview-icon--c {
        animation: none !important;
    }
}