:root {
    --color-fuchsia: #FF3CAC;
    --color-rose: #FF8CC6;
    --color-orchid: #C04CFF;
    --color-plum: #5A1E76;
    --color-lavender: #E6CCFF;
    --color-surface: rgba(255, 255, 255, 0.06);
    --color-border: rgba(255, 255, 255, 0.12);
    --color-border-strong: rgba(255, 255, 255, 0.2);
    --color-text: #f8f4fc;
    --color-text-muted: rgba(248, 244, 252, 0.72);
    --color-error: #ff6b8a;
    --font-display: "Plus Jakarta Sans", system-ui, sans-serif;
    --font-body: "Plus Jakarta Sans", system-ui, sans-serif;
    --font-mono: "IBM Plex Mono", ui-monospace, monospace;
    --shadow-soft: 0 24px 64px rgba(90, 30, 118, 0.35);
    --shadow-glow: 0 0 48px rgba(255, 60, 172, 0.25);
    --radius-xl: 24px;
    --radius-lg: 18px;
    --radius-md: 14px;
    --radius-sm: 10px;
    --space-section-desk: clamp(120px, 12vw, 160px);
    --space-section-mob: clamp(64px, 14vw, 80px);
    --space-card: clamp(24px, 2.5vw, 32px);
    --header-h: 72px;
    --header-bar-h: 72px;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    margin: 0;
    font-family: var(--font-body);
    font-weight: 450;
    font-size: 1rem;
    line-height: 1.65;
    color: var(--color-text);
    background: radial-gradient(ellipse 120% 80% at 50% -10%, var(--color-orchid) 0%, transparent 55%),
        radial-gradient(ellipse 90% 60% at 100% 40%, rgba(255, 60, 172, 0.2) 0%, transparent 50%),
        linear-gradient(165deg, var(--color-plum) 0%, #2d0f3d 45%, #1a0a24 100%);
    min-height: 100vh;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: var(--color-rose);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--color-fuchsia);
}

.sr-only {
    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;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    background: rgba(45, 15, 61, 0.55);
    border-bottom: 1px solid var(--color-border);
}

.site-header__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    min-height: var(--header-h);
}

.site-brand {
    font-family: var(--font-display);
    font-weight: 800;
    letter-spacing: -0.02em;
    font-size: 1.05rem;
    color: var(--color-text);
}

.site-brand span {
    color: var(--color-fuchsia);
}

.site-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem 1.25rem;
    align-items: center;
}

.site-nav a {
    color: var(--color-text-muted);
    font-weight: 500;
    font-size: 0.92rem;
    position: relative;
    padding: 0.35rem 0;
}

.site-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, var(--color-fuchsia), var(--color-orchid));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.site-nav a:hover {
    color: var(--color-text);
}

.site-nav a:hover::after {
    transform: scaleX(1);
}

.burger {
    display: none;
    width: 48px;
    height: 48px;
    padding: 0;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    background: var(--color-surface);
    cursor: pointer;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.burger:hover {
    border-color: var(--color-border-strong);
    box-shadow: 0 0 0 3px rgba(255, 60, 172, 0.15);
}

.burger__box {
    position: relative;
    width: 22px;
    height: 16px;
    display: block;
    margin: 0 auto;
}

.burger__line {
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    border-radius: 2px;
    background: linear-gradient(90deg, var(--color-fuchsia), var(--color-lavender));
    transition: transform 0.4s cubic-bezier(0.65, 0, 0.35, 1), opacity 0.25s ease, top 0.4s cubic-bezier(0.65, 0, 0.35, 1);
}

.burger__line:nth-child(1) {
    top: 0;
}

.burger__line:nth-child(2) {
    top: 7px;
}

.burger__line:nth-child(3) {
    top: 14px;
}

.site-header.is-open .burger__line:nth-child(1) {
    top: 7px;
    transform: rotate(45deg);
}

.site-header.is-open .burger__line:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.site-header.is-open .burger__line:nth-child(3) {
    top: 7px;
    transform: rotate(-45deg);
}

.nav-backdrop {
    display: none;
    position: fixed;
    inset: 0;
    top: var(--header-bar-h, 72px);
    background: rgba(10, 4, 18, 0.55);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s ease;
    z-index: 90;
}

.nav-backdrop.is-visible {
    opacity: 1;
    pointer-events: auto;
}

@media (min-width: 768px) {
    .site-header__inner .burger {
        display: none;
    }
}

main {
    display: block;
}

.section {
    padding: var(--space-section-mob) 1.5rem;
}

@media (min-width: 768px) {
    .section {
        padding: var(--space-section-desk) 2rem;
    }
}

.section__inner {
    max-width: 1200px;
    margin: 0 auto;
}

.section__eyebrow {
    font-family: var(--font-mono);
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--color-rose);
    margin: 0 0 0.75rem;
}

.section__title {
    font-family: var(--font-display);
    font-weight: 800;
    letter-spacing: -0.018em;
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    line-height: 1.15;
    margin: 0 0 1rem;
    color: var(--color-text);
}

.section__lead {
    margin: 0 0 2.5rem;
    max-width: 52ch;
    color: var(--color-text-muted);
    font-size: 1.05rem;
}

.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.55s ease, transform 0.55s ease;
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.hero {
    position: relative;
    overflow: hidden;
    padding-top: calc(var(--space-section-mob) * 0.75);
    padding-bottom: var(--space-section-mob);
    isolation: isolate;
}

.hero__scene {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.hero__aurora {
    position: absolute;
    inset: -20% -10%;
    animation: heroHueDrift 18s ease-in-out infinite alternate;
}

@keyframes heroHueDrift {
    from {
        filter: hue-rotate(-6deg) saturate(1.05);
        transform: scale(1);
    }

    to {
        filter: hue-rotate(10deg) saturate(1.12);
        transform: scale(1.03);
    }
}

.hero__blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(52px);
    opacity: 0.42;
    animation: blobFloat 16s ease-in-out infinite;
}

.hero__blob--1 {
    width: min(340px, 85vw);
    height: min(340px, 85vw);
    background: radial-gradient(circle, rgba(255, 60, 172, 0.58), transparent 68%);
    top: -18%;
    right: -12%;
}

.hero__blob--2 {
    width: min(300px, 75vw);
    height: min(300px, 75vw);
    background: radial-gradient(circle, rgba(192, 76, 255, 0.48), transparent 70%);
    bottom: 0%;
    left: -22%;
    animation-delay: -5s;
}

.hero__blob--3 {
    width: min(200px, 50vw);
    height: min(200px, 50vw);
    background: radial-gradient(circle, rgba(255, 140, 198, 0.35), transparent 65%);
    top: 40%;
    left: 35%;
    animation-delay: -9s;
    animation-duration: 12s;
}

.hero__grid-lines {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
    background-size: 40px 40px;
    mask-image: radial-gradient(ellipse 75% 65% at 48% 42%, black 20%, transparent 75%);
    opacity: 0.55;
    animation: heroGridDrift 22s linear infinite;
}

@keyframes heroGridDrift {
    to {
        background-position: 40px 40px, 40px 40px;
    }
}

.hero__rings {
    position: absolute;
    left: 50%;
    top: 46%;
    width: min(420px, 92vw);
    height: min(420px, 92vw);
    transform: translate(-50%, -50%);
    z-index: 1;
}

.hero__ring {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 1px solid rgba(255, 140, 198, 0.14);
    animation: heroRingSpin 32s linear infinite;
}

.hero__ring--a {
    inset: 6%;
    animation-duration: 28s;
    animation-direction: reverse;
    border-color: rgba(255, 60, 172, 0.2);
}

.hero__ring--b {
    inset: 14%;
    animation-duration: 40s;
    border-style: dashed;
    border-color: rgba(192, 76, 255, 0.18);
}

.hero__ring--c {
    inset: 22%;
    animation-duration: 22s;
    animation-direction: reverse;
    border-color: rgba(230, 204, 255, 0.12);
}

@keyframes heroRingSpin {
    to {
        transform: rotate(360deg);
    }
}

.hero__beam {
    position: absolute;
    top: -20%;
    left: 50%;
    width: 2px;
    height: 70%;
    margin-left: -1px;
    background: linear-gradient(180deg, transparent, rgba(255, 60, 172, 0.45), transparent);
    filter: blur(1px);
    opacity: 0.35;
    animation: heroBeamSway 10s ease-in-out infinite;
    transform-origin: top center;
}

@keyframes heroBeamSway {

    0%,
    100% {
        transform: rotate(-4deg) scaleY(1);
        opacity: 0.28;
    }

    50% {
        transform: rotate(4deg) scaleY(1.05);
        opacity: 0.42;
    }
}

.hero__particles {
    position: absolute;
    inset: 0;
    z-index: 2;
}

.hero__particles span {
    position: absolute;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--color-lavender);
    opacity: 0;
    box-shadow: 0 0 12px rgba(255, 60, 172, 0.5);
    animation: heroDust 5s ease-in-out infinite;
}

.hero__particles span:nth-child(1) {
    left: 12%;
    top: 22%;
    animation-delay: 0s;
}

.hero__particles span:nth-child(2) {
    left: 78%;
    top: 18%;
    animation-delay: 0.8s;
}

.hero__particles span:nth-child(3) {
    left: 44%;
    top: 12%;
    animation-delay: 1.6s;
}

.hero__particles span:nth-child(4) {
    left: 88%;
    top: 55%;
    animation-delay: 2.2s;
}

.hero__particles span:nth-child(5) {
    left: 18%;
    top: 68%;
    animation-delay: 3s;
}

.hero__particles span:nth-child(6) {
    left: 62%;
    top: 72%;
    animation-delay: 3.8s;
}

@keyframes heroDust {

    0%,
    100% {
        opacity: 0;
        transform: translate(0, 0) scale(0.4);
    }

    20% {
        opacity: 0.85;
    }

    50% {
        opacity: 0.5;
        transform: translate(8px, -24px) scale(1);
    }

    80% {
        opacity: 0.2;
        transform: translate(-4px, -40px) scale(0.6);
    }
}

@keyframes blobFloat {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    35% {
        transform: translate(-16px, 22px) scale(1.05);
    }

    68% {
        transform: translate(12px, -12px) scale(0.97);
    }
}

.hero__inner {
    position: relative;
    z-index: 1;
}

@media (min-width: 768px) {
    .hero {
        padding-top: calc(var(--space-section-desk) * 0.65);
        padding-bottom: var(--space-section-desk);
    }
}

.hero__grid {
    display: grid;
    gap: var(--space-card);
    align-items: center;
}

@media (min-width: 960px) {
    .hero__grid {
        grid-template-columns: 1fr 1fr;
        gap: clamp(2rem, 4vw, 3.5rem);
    }
}

.hero__visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 300px;
}

.hero__glow {
    position: absolute;
    width: min(100%, 440px);
    aspect-ratio: 1;
    background: radial-gradient(circle, rgba(255, 60, 172, 0.5) 0%, rgba(192, 76, 255, 0.18) 42%, transparent 68%);
    filter: blur(36px);
    z-index: 0;
    animation: pulseGlow 4.5s ease-in-out infinite;
}

@keyframes pulseGlow {

    0%,
    100% {
        opacity: 0.8;
        transform: scale(1);
    }

    50% {
        opacity: 1;
        transform: scale(1.08);
    }
}

.hero__dock {
    position: relative;
    z-index: 2;
    padding: 1.35rem 1.35rem 2rem;
    border-radius: calc(var(--radius-xl) + 8px);
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: linear-gradient(155deg, rgba(230, 204, 255, 0.09) 0%, rgba(26, 10, 36, 0.55) 48%, rgba(10, 4, 20, 0.72) 100%);
    box-shadow: 0 32px 80px rgba(0, 0, 0, 0.38), inset 0 1px 0 rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    max-width: 360px;
    margin: 0 auto;
    animation: heroDockBreath 7s ease-in-out infinite;
}

@keyframes heroDockBreath {

    0%,
    100% {
        box-shadow: 0 32px 80px rgba(0, 0, 0, 0.38), 0 0 0 0 rgba(255, 60, 172, 0);
    }

    50% {
        box-shadow: 0 36px 88px rgba(0, 0, 0, 0.42), 0 0 40px rgba(255, 60, 172, 0.12);
    }
}

.hero__dock-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-mono);
    font-size: 0.67rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--color-rose);
    margin-bottom: 1rem;
}

.hero__dock-pulse {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--color-fuchsia);
    box-shadow: 0 0 0 0 rgba(255, 60, 172, 0.5);
    animation: heroPulseDot 2.4s ease-out infinite;
}

@keyframes heroPulseDot {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 60, 172, 0.55);
    }

    70% {
        box-shadow: 0 0 0 14px rgba(255, 60, 172, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(255, 60, 172, 0);
    }
}

.hero__product-wrap {
    position: relative;
    z-index: 1;
    animation: floatProduct 5.5s ease-in-out infinite;
}

@keyframes floatProduct {

    0%,
    100% {
        transform: translateY(0) rotate(-0.5deg);
    }

    50% {
        transform: translateY(-14px) rotate(0.5deg);
    }
}

.hero__product-wrap img {
    width: 100%;
    max-width: 260px;
    margin: 0 auto;
    filter: drop-shadow(0 24px 48px rgba(0, 0, 0, 0.45));
}

.hero__sidecards {
    position: absolute;
    right: -8px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
    z-index: 3;
}

@media (max-width: 599px) {
    .hero__sidecards {
        position: static;
        transform: none;
        flex-direction: row;
        justify-content: center;
        margin-top: 1rem;
        right: auto;
    }
}

.hero__scard {
    display: flex;
    flex-direction: column;
    padding: 0.55rem 0.75rem;
    min-width: 4.5rem;
    border-radius: var(--radius-md);
    border: 1px solid var(--color-border);
    background: rgba(26, 10, 36, 0.85);
    animation: heroScardBob 4s ease-in-out infinite;
}

.hero__scard--2 {
    animation-delay: -2s;
}

@keyframes heroScardBob {

    0%,
    100% {
        transform: translateX(0);
    }

    50% {
        transform: translateX(-6px);
    }
}

.hero__scard-num {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1.15rem;
    color: var(--color-fuchsia);
    line-height: 1;
}

.hero__scard-label {
    font-family: var(--font-mono);
    font-size: 0.6rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-text-muted);
    margin-top: 0.25rem;
}

.hero__content {
    display: flex;
    flex-direction: column;
    gap: 1.15rem;
}

.hero__compliance {
    margin: 0;
    padding: 0.75rem 1rem;
    font-size: 0.8rem;
    line-height: 1.55;
    color: var(--color-text-muted);
    border-radius: var(--radius-md);
    border: 1px solid var(--color-border);
    background: rgba(0, 0, 0, 0.22);
}

.hero__compliance strong {
    color: var(--color-lavender);
    font-weight: 600;
}

.hero__compliance a {
    color: var(--color-rose);
}

.hero__price-note {
    margin: 0;
    font-size: 0.78rem;
    color: var(--color-text-muted);
    max-width: 42ch;
}

.hero__kicker {
    font-family: var(--font-mono);
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: var(--color-text-muted);
    margin: 0;
}

.hero__kicker-shine {
    background: linear-gradient(90deg, var(--color-rose), var(--color-fuchsia), var(--color-orchid), var(--color-rose));
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    animation: heroShine 4s linear infinite;
}

@keyframes heroShine {
    to {
        background-position: 200% center;
    }
}

@media (max-width: 959px) {
    .hero__grid {
        display: flex;
        flex-direction: column;
    }

    .hero__visual {
        order: 1;
    }

    .hero__content {
        display: contents;
    }

    .hero__kicker {
        order: 2;
    }

    .hero__compliance {
        order: 3;
    }

    .hero__trust-row {
        order: 4;
    }

    .hero__headline-block {
        order: 5;
    }

    .hero__subtitle {
        order: 6;
    }

    .hero__price-block {
        order: 7;
    }

    .hero__price-note {
        order: 8;
    }

    .hero__highlights {
        order: 9;
    }

    .hero__form-aside {
        order: 10;
    }
}

@media (min-width: 960px) {
    .hero__visual {
        order: 2;
    }

    .hero__content {
        order: 1;
    }
}

.hero[data-hero-ready="true"] [data-hero-anim] {
    animation: heroEnter 0.75s cubic-bezier(0.22, 1, 0.36, 1) backwards;
}

.hero[data-hero-ready="true"] .hero__visual[data-hero-anim] {
    animation-name: heroEnterVisual;
    animation-duration: 0.9s;
    animation-delay: 0s;
}

.hero[data-hero-ready="true"] .hero__kicker {
    animation-delay: 0.04s;
}

.hero[data-hero-ready="true"] .hero__compliance {
    animation-delay: 0.08s;
}

.hero[data-hero-ready="true"] .hero__trust-row {
    animation-delay: 0.12s;
}

.hero[data-hero-ready="true"] .hero__headline-block {
    animation-delay: 0.18s;
}

.hero[data-hero-ready="true"] .hero__subtitle {
    animation-delay: 0.24s;
}

.hero[data-hero-ready="true"] .hero__price-block {
    animation-delay: 0.3s;
}

.hero[data-hero-ready="true"] .hero__price-note {
    animation-delay: 0.34s;
}

.hero[data-hero-ready="true"] .hero__hl:nth-child(1) {
    animation-delay: 0.38s;
}

.hero[data-hero-ready="true"] .hero__hl:nth-child(2) {
    animation-delay: 0.44s;
}

.hero[data-hero-ready="true"] .hero__hl:nth-child(3) {
    animation-delay: 0.5s;
}

.hero[data-hero-ready="true"] .hero__form-aside {
    animation-delay: 0.56s;
}

@keyframes heroEnter {
    from {
        opacity: 0;
        transform: translateY(28px) scale(0.98);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes heroEnterVisual {
    from {
        opacity: 0;
        transform: translateY(36px) scale(0.94);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.hero__trust-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1rem 1.5rem;
}

.stars {
    display: flex;
    gap: 0.2rem;
    color: var(--color-fuchsia);
}

.stars svg {
    width: 18px;
    height: 18px;
    stroke-width: 1.2;
}

.trust-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.trust-badge {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    padding: 0.35rem 0.65rem;
    border-radius: 999px;
    border: 1px solid var(--color-border);
    background: var(--color-surface);
    color: var(--color-text-muted);
}

.trust-badge--pop {
    animation: heroBadgePop 4s ease-in-out infinite;
}

.trust-badge--pop:nth-child(2) {
    animation-delay: -2s;
}

@keyframes heroBadgePop {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-3px);
    }
}

.hero__stars svg {
    animation: heroStarPop 2.8s ease-in-out infinite;
}

.hero__stars svg:nth-child(1) {
    animation-delay: 0s;
}

.hero__stars svg:nth-child(2) {
    animation-delay: 0.15s;
}

.hero__stars svg:nth-child(3) {
    animation-delay: 0.3s;
}

.hero__stars svg:nth-child(4) {
    animation-delay: 0.45s;
}

.hero__stars svg:nth-child(5) {
    animation-delay: 0.6s;
}

@keyframes heroStarPop {

    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }

    40% {
        transform: scale(1.12);
    }

    55% {
        transform: scale(0.94);
        opacity: 0.85;
    }
}

.hero__headline-block h1 {
    font-family: var(--font-display);
    font-weight: 800;
    letter-spacing: -0.02em;
    font-size: clamp(2rem, 5vw, 3rem);
    line-height: 1.12;
    margin: 0;
    color: var(--color-text);
}

.hero__title-line {
    display: inline;
}

.hero__title-accent {
    display: inline;
    background: linear-gradient(105deg, var(--color-fuchsia), var(--color-orchid), var(--color-rose));
    background-size: 160% auto;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    animation: heroAccentShift 6s ease-in-out infinite alternate;
}

@keyframes heroAccentShift {
    from {
        background-position: 0% center;
        filter: brightness(1);
    }

    to {
        background-position: 100% center;
        filter: brightness(1.12);
    }
}

.hero__subtitle {
    margin: 0;
    color: var(--color-text-muted);
    font-size: 1.08rem;
    max-width: 40ch;
}

.hero__price-block {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.75rem 1rem;
}

.hero__price-tag {
    font-family: var(--font-mono);
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    padding: 0.4rem 0.75rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 60, 172, 0.4);
    color: var(--color-rose);
    animation: heroTagGlow 3.5s ease-in-out infinite;
}

@keyframes heroTagGlow {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(255, 60, 172, 0);
        border-color: rgba(255, 60, 172, 0.35);
    }

    50% {
        box-shadow: 0 0 20px rgba(255, 60, 172, 0.22);
        border-color: rgba(255, 140, 198, 0.55);
    }
}

.hero__price-glow .price-current {
    animation: heroPriceShine 4.5s ease-in-out infinite;
}

@keyframes heroPriceShine {

    0%,
    100% {
        text-shadow: none;
    }

    50% {
        text-shadow: 0 0 28px rgba(255, 60, 172, 0.4);
    }
}

.price-current {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 2rem;
    color: var(--color-fuchsia);
    letter-spacing: -0.02em;
}

.hero__highlights {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}

.hero__highlights li {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    font-size: 0.95rem;
    color: var(--color-text-muted);
}

.hero__highlights svg {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    stroke-width: 1.2;
    color: var(--color-orchid);
    margin-top: 0.15rem;
}

.hero__form-aside {
    margin-top: 0.5rem;
}

.card-form {
    background: linear-gradient(145deg, rgba(230, 204, 255, 0.08) 0%, var(--color-surface) 100%);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-xl);
    padding: var(--space-card);
    box-shadow: var(--shadow-soft);
}

.hero .card-form {
    transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.45s ease, box-shadow 0.45s ease;
}

.hero .card-form:hover {
    transform: translateY(-6px);
    border-color: rgba(255, 140, 198, 0.32);
    box-shadow: 0 32px 80px rgba(90, 30, 118, 0.42), 0 0 0 1px rgba(255, 60, 172, 0.12);
}

.card-form h2 {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.25rem;
    letter-spacing: -0.015em;
    margin: 0 0 1.25rem;
}

.float-field {
    position: relative;
    margin-bottom: 1.35rem;
}

.float-field input,
.float-field textarea {
    width: 100%;
    padding: 1.35rem 1rem 0.55rem;
    font-family: inherit;
    font-size: 1rem;
    color: var(--color-text);
    background: rgba(26, 10, 36, 0.5);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    outline: none;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.float-field textarea {
    min-height: 100px;
    resize: vertical;
}

.float-field label {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 0.95rem;
    color: var(--color-text-muted);
    pointer-events: none;
    transition: transform 0.25s ease, font-size 0.25s ease, color 0.25s ease, top 0.25s ease;
}

.float-field textarea+label {
    top: 1.35rem;
    transform: translateY(0);
}

.float-field input:focus,
.float-field textarea:focus {
    border-color: var(--color-fuchsia);
    box-shadow: 0 0 0 3px rgba(255, 60, 172, 0.2), var(--shadow-glow);
}

.float-field input:focus+label,
.float-field input:not(:placeholder-shown)+label,
.float-field textarea:focus+label,
.float-field textarea:not(:placeholder-shown)+label {
    top: 0.5rem;
    transform: translateY(0);
    font-size: 0.72rem;
    font-family: var(--font-mono);
    color: var(--color-rose);
}

.float-field--textarea label {
    top: 1rem;
}

.field-error {
    display: block;
    margin-top: 0.4rem;
    font-size: 0.82rem;
    color: var(--color-error);
    min-height: 1.2em;
}

.checkbox-row {
    display: flex;
    align-items: flex-start;
    gap: 0.65rem;
    margin: 1rem 0 1.25rem;
    font-size: 0.88rem;
    color: var(--color-text-muted);
    line-height: 1.5;
}

.checkbox-row input {
    margin-top: 0.25rem;
    accent-color: var(--color-fuchsia);
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.checkbox-row a {
    color: var(--color-rose);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1rem;
    padding: 0.95rem 1.75rem;
    border-radius: var(--radius-lg);
    border: none;
    cursor: pointer;
    transition: transform 0.3s ease, filter 0.3s ease, box-shadow 0.3s ease;
}

.btn--primary {
    background: linear-gradient(135deg, var(--color-fuchsia), var(--color-orchid));
    color: #fff;
    box-shadow: 0 8px 32px rgba(255, 60, 172, 0.35);
}

.btn--primary:hover {
    transform: scale(1.03);
    filter: brightness(1.08);
}

.btn--ghost {
    background: var(--color-surface);
    color: var(--color-text);
    border: 1px solid var(--color-border);
}

.btn--ghost:hover {
    transform: scale(1.03);
    border-color: var(--color-border-strong);
}

.btn--block {
    width: 100%;
}

.rhythm-studio {
    position: relative;
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
    background: rgba(0, 0, 0, 0.18);
    overflow: hidden;
}

.rhythm-studio__mesh {
    position: absolute;
    inset: -40% -20%;
    background: conic-gradient(from 120deg at 50% 50%, rgba(255, 60, 172, 0.12), rgba(192, 76, 255, 0.08), rgba(230, 204, 255, 0.06), rgba(255, 60, 172, 0.1));
    animation: meshSpin 28s linear infinite;
    opacity: 0.65;
    pointer-events: none;
}

@keyframes meshSpin {
    to {
        transform: rotate(360deg);
    }
}

.rhythm-studio .section__inner {
    position: relative;
    z-index: 1;
}

.rhythm-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.rhythm-tabs__btn {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 0.88rem;
    padding: 0.65rem 1.1rem;
    border-radius: 999px;
    border: 1px solid var(--color-border);
    background: rgba(26, 10, 36, 0.45);
    color: var(--color-text-muted);
    cursor: pointer;
    transition: color 0.3s ease, border-color 0.3s ease, transform 0.25s ease, box-shadow 0.3s ease;
}

.rhythm-tabs__btn:hover {
    color: var(--color-text);
    border-color: var(--color-border-strong);
    transform: translateY(-2px);
}

.rhythm-tabs__btn.is-active {
    color: #fff;
    border-color: transparent;
    background: linear-gradient(135deg, var(--color-fuchsia), var(--color-orchid));
    box-shadow: 0 8px 28px rgba(255, 60, 172, 0.28);
}

.rhythm-panels {
    position: relative;
    min-height: 220px;
}

.rhythm-panel {
    padding: var(--space-card);
    border-radius: var(--radius-xl);
    border: 1px solid var(--color-border);
    background: linear-gradient(160deg, rgba(230, 204, 255, 0.07), rgba(26, 10, 36, 0.75));
    opacity: 0;
    transform: translateY(16px) scale(0.98);
    pointer-events: none;
    transition: opacity 0.45s ease, transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.rhythm-panel.is-active {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
}

.rhythm-panel__frame {
    float: right;
    width: min(200px, 42%);
    margin: 0 0 1rem 1rem;
    padding: 1rem;
    border-radius: var(--radius-lg);
    border: 1px solid var(--color-border);
    background: rgba(0, 0, 0, 0.2);
    shape-outside: inset(0);
}

.rhythm-panel__svg {
    width: 100%;
    height: auto;
    color: var(--color-rose);
}

.rhythm-panel h3 {
    font-family: var(--font-display);
    font-weight: 700;
    margin: 0 0 0.5rem;
    letter-spacing: -0.015em;
}

.rhythm-panel p {
    margin: 0 0 1rem;
    color: var(--color-text-muted);
    font-size: 0.95rem;
}

.rhythm-panel__chips {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.rhythm-chip {
    display: inline-block;
    font-family: var(--font-mono);
    font-size: 0.68rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 0.4rem 0.65rem;
    border-radius: 999px;
    border: 1px solid var(--color-border);
    color: var(--color-lavender);
}

.live-metrics {
    padding-top: clamp(48px, 8vw, 72px);
    padding-bottom: clamp(48px, 8vw, 72px);
}

.live-metrics__grid {
    display: grid;
    gap: 1rem;
    grid-template-columns: 1fr;
}

@media (min-width: 640px) {
    .live-metrics__grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.live-metric {
    padding: 1.35rem 1.5rem;
    border-radius: var(--radius-xl);
    border: 1px solid var(--color-border);
    background: var(--color-surface);
    transition: transform 0.35s ease, border-color 0.35s ease;
}

.live-metric:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 140, 198, 0.35);
}

.live-metric--wide {
    grid-column: 1 / -1;
}

@media (min-width: 640px) {
    .live-metric--wide {
        grid-column: span 3;
        text-align: center;
    }
}

.live-metric__value {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: clamp(2rem, 6vw, 2.75rem);
    letter-spacing: -0.03em;
    color: var(--color-fuchsia);
    margin: 0;
    line-height: 1;
}

.live-metric__value--soft {
    font-size: 1.35rem;
    color: var(--color-lavender);
}

.live-metric__suffix {
    font-size: 0.55em;
    color: var(--color-rose);
    margin-left: 0.1em;
}

.live-metric__label {
    margin: 0.65rem 0 0;
    font-size: 0.88rem;
    color: var(--color-text-muted);
}

.pledge-strip {
    border-top: 1px solid var(--color-border);
    background: rgba(0, 0, 0, 0.12);
}

.pledge-strip__inner {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
    margin-bottom: 1.25rem;
}

.pledge-pill {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 0.85rem;
    padding: 0.6rem 1.2rem;
    border-radius: var(--radius-lg);
    border: 1px solid var(--color-border);
    background: transparent;
    color: var(--color-text-muted);
    cursor: pointer;
    transition: border-color 0.3s ease, color 0.3s ease, background 0.3s ease, transform 0.25s ease;
}

.pledge-pill:hover {
    color: var(--color-text);
    border-color: var(--color-border-strong);
}

.pledge-pill.is-active {
    color: #fff;
    background: linear-gradient(120deg, rgba(255, 60, 172, 0.35), rgba(192, 76, 255, 0.35));
    border-color: rgba(255, 140, 198, 0.45);
    transform: scale(1.05);
}

.pledge-views {
    max-width: 560px;
    margin: 0 auto;
    text-align: center;
    min-height: 4.5em;
}

.pledge-view {
    margin: 0;
    color: var(--color-text-muted);
    font-size: 1rem;
    line-height: 1.65;
}

.pledge-view[hidden] {
    display: none !important;
}

.pledge-view:not([hidden]) {
    display: block;
    animation: pledgeFade 0.45s ease forwards;
}

@keyframes pledgeFade {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.bento {
    display: grid;
    gap: var(--space-card);
    grid-template-columns: 1fr;
}

@media (min-width: 768px) {
    .bento {
        grid-template-columns: repeat(6, 1fr);
        grid-auto-rows: minmax(120px, auto);
    }

    .bento__item--span-4 {
        grid-column: span 4;
    }

    .bento__item--span-2 {
        grid-column: span 2;
    }

    .bento__item--span-3 {
        grid-column: span 3;
    }

    .bento__item--span-6 {
        grid-column: span 6;
    }

    .bento__item--tall {
        grid-row: span 2;
    }
}

.bento__item {
    padding: var(--space-card);
    border-radius: var(--radius-xl);
    border: 1px solid var(--color-border);
    background: var(--color-surface);
    transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
    position: relative;
    overflow: hidden;
}

.bento__item::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 20%, rgba(255, 60, 172, 0.08), transparent 50%);
    pointer-events: none;
}

.bento__item:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 140, 198, 0.35);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

@keyframes staggerIn {
    from {
        opacity: 0;
        transform: translateY(28px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.section.reveal.is-visible .bento--stagger .bento__item {
    animation: staggerIn 0.58s cubic-bezier(0.22, 1, 0.36, 1) backwards;
}

.section.reveal.is-visible .bento--stagger .bento__item:nth-child(1) {
    animation-delay: 0.06s;
}

.section.reveal.is-visible .bento--stagger .bento__item:nth-child(2) {
    animation-delay: 0.12s;
}

.section.reveal.is-visible .bento--stagger .bento__item:nth-child(3) {
    animation-delay: 0.18s;
}

.section.reveal.is-visible .bento--stagger .bento__item:nth-child(4) {
    animation-delay: 0.24s;
}

.section.reveal.is-visible .bento--stagger .bento__item:nth-child(5) {
    animation-delay: 0.3s;
}

.section.reveal.is-visible .bento--stagger .bento__item:nth-child(6) {
    animation-delay: 0.36s;
}

.bento__icon {
    width: 40px;
    height: 40px;
    margin-bottom: 1rem;
    color: var(--color-fuchsia);
}

.bento__icon svg {
    width: 100%;
    height: 100%;
    stroke-width: 1.2;
}

.bento__item h3 {
    font-family: var(--font-display);
    font-weight: 700;
    letter-spacing: -0.015em;
    font-size: 1.15rem;
    margin: 0 0 0.5rem;
    position: relative;
}

.bento__item .spec-card__label {
    font-family: var(--font-mono);
    font-weight: 500;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--color-rose);
    margin: 0 0 0.5rem;
}

.bento__item .spec-card__value {
    margin: 0;
    font-size: 0.95rem;
    color: var(--color-text);
    position: relative;
}

.bento__item p {
    margin: 0;
    color: var(--color-text-muted);
    font-size: 0.95rem;
    position: relative;
}

.split-story {
    display: grid;
    gap: var(--space-card);
    align-items: center;
}

@media (min-width: 900px) {
    .split-story {
        grid-template-columns: 1fr 1fr;
    }
}

.split-story figure {
    margin: 0;
    border-radius: var(--radius-xl);
    border: 1px solid var(--color-border);
    overflow: hidden;
    background: var(--color-surface);
}

.split-story figcaption {
    padding: 1rem 1.25rem;
    font-size: 0.88rem;
    color: var(--color-text-muted);
    border-top: 1px solid var(--color-border);
}

.text-blocks h3 {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.2rem;
    margin: 1.5rem 0 0.5rem;
}

.text-blocks h3:first-child {
    margin-top: 0;
}

.text-blocks p {
    margin: 0;
    color: var(--color-text-muted);
}

.spec-grid {
    display: grid;
    gap: var(--space-card);
}

@media (min-width: 640px) {
    .spec-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 960px) {
    .spec-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.spec-card {
    padding: var(--space-card);
    border-radius: var(--radius-xl);
    border: 1px solid var(--color-border);
    background: var(--color-surface);
    transition: transform 0.35s ease, border-color 0.35s ease;
}

.spec-card:hover {
    transform: translateY(-4px);
    border-color: var(--color-border-strong);
}

.spec-card__icon {
    width: 36px;
    height: 36px;
    color: var(--color-orchid);
    margin-bottom: 1rem;
}

.spec-card__icon svg {
    stroke-width: 1.2;
    width: 100%;
    height: 100%;
}

.spec-card dt {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--color-rose);
    margin: 0 0 0.35rem;
}

.spec-card dd {
    margin: 0;
    font-size: 0.95rem;
    color: var(--color-text);
}

.steps {
    display: grid;
    gap: var(--space-card);
}

@media (min-width: 768px) {
    .steps {
        grid-template-columns: repeat(3, 1fr);
    }
}

.step-card {
    padding: var(--space-card);
    border-radius: var(--radius-xl);
    border: 1px solid var(--color-border);
    background: linear-gradient(180deg, rgba(230, 204, 255, 0.06), transparent);
    text-align: center;
    transition: transform 0.35s ease, border-color 0.35s ease;
}

.step-card:hover {
    transform: translateY(-4px);
    border-color: rgba(192, 76, 255, 0.35);
}

.step-card__num {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 2rem;
    color: var(--color-fuchsia);
    letter-spacing: -0.02em;
    line-height: 1;
    margin-bottom: 0.75rem;
}

.step-card__icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 1rem;
    color: var(--color-lavender);
}

.step-card__icon svg {
    stroke-width: 1.2;
    width: 100%;
    height: 100%;
}

.step-card h3 {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.05rem;
    margin: 0 0 0.5rem;
}

.step-card p {
    margin: 0;
    font-size: 0.92rem;
    color: var(--color-text-muted);
}

.ingredient-grid {
    display: grid;
    gap: var(--space-card);
    grid-template-columns: 1fr;
}

@media (min-width: 600px) {
    .ingredient-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 960px) {
    .ingredient-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.ingredient-card {
    padding: var(--space-card);
    border-radius: var(--radius-xl);
    border: 1px solid var(--color-border);
    background: var(--color-surface);
    transition: transform 0.35s ease;
}

.ingredient-card:hover {
    transform: translateY(-4px);
}

.ingredient-card h3 {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1rem;
    margin: 0 0 0.5rem;
}

.ingredient-card p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--color-text-muted);
}

.use-steps {
    counter-reset: use;
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 1.25rem;
    max-width: 640px;
}

.use-steps li {
    display: grid;
    grid-template-columns: auto auto 1fr;
    gap: 0.85rem 1rem;
    align-items: start;
    padding: 1.25rem;
    border-radius: var(--radius-xl);
    border: 1px solid var(--color-border);
    background: var(--color-surface);
}

.use-steps li::before {
    counter-increment: use;
    content: counter(use);
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1.25rem;
    color: var(--color-fuchsia);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-md);
    border: 1px solid var(--color-border);
}

.use-step__icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-lavender);
    border-radius: var(--radius-md);
    border: 1px solid var(--color-border);
}

.use-step__icon svg {
    width: 22px;
    height: 22px;
}

.reviews-full {
    display: grid;
    gap: var(--space-card);
}

@media (min-width: 768px) {
    .reviews-full {
        grid-template-columns: repeat(2, 1fr);
    }
}

.review-card {
    padding: var(--space-card);
    border-radius: var(--radius-xl);
    border: 1px solid var(--color-border);
    background: linear-gradient(145deg, rgba(255, 60, 172, 0.06), transparent);
    transition: transform 0.35s ease, border-color 0.35s ease;
}

.review-card:hover {
    transform: translateY(-4px);
    border-color: var(--color-border-strong);
}

.review-card .stars {
    margin-bottom: 0.75rem;
}

.review-card p {
    margin: 0;
    color: var(--color-text-muted);
    font-size: 0.95rem;
}

.review-card footer {
    margin-top: 1rem;
    font-family: var(--font-mono);
    font-size: 0.78rem;
    color: var(--color-lavender);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.faq-item {
    border-radius: var(--radius-xl);
    border: 1px solid var(--color-border);
    background: var(--color-surface);
    overflow: hidden;
    transition: border-color 0.3s ease;
}

.faq-item:hover,
.faq-item.is-open {
    border-color: var(--color-border-strong);
}

.faq-item button {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.15rem 1.25rem;
    background: transparent;
    border: none;
    color: var(--color-text);
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 1rem;
    text-align: left;
    cursor: pointer;
    letter-spacing: -0.01em;
}

.faq-item button svg {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    stroke-width: 1.2;
    transition: transform 0.35s ease;
}

.faq-item.is-open button svg {
    transform: rotate(180deg);
}

.faq-item__panel {
    padding: 0 1.25rem 1.15rem;
    color: var(--color-text-muted);
    font-size: 0.95rem;
    display: none;
}

.faq-item.is-open .faq-item__panel {
    display: block;
}

.final-cta {
    text-align: center;
    padding: var(--space-section-mob) 1.5rem;
    background: radial-gradient(ellipse 80% 60% at 50% 100%, rgba(255, 60, 172, 0.15), transparent),
        rgba(0, 0, 0, 0.2);
    border-top: 1px solid var(--color-border);
}

@media (min-width: 768px) {
    .final-cta {
        padding: var(--space-section-desk) 2rem;
    }
}

.final-cta__inner {
    max-width: 720px;
    margin: 0 auto;
}

.final-cta h2 {
    font-family: var(--font-display);
    font-weight: 800;
    letter-spacing: -0.02em;
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    margin: 0 0 1rem;
}

.final-cta p {
    margin: 0 0 1.5rem;
    color: var(--color-text-muted);
}

.disclaimer-box {
    max-width: 900px;
    margin: 0 auto;
    padding: var(--space-card);
    border-radius: var(--radius-xl);
    border: 1px solid var(--color-border);
    background: rgba(0, 0, 0, 0.2);
}

.disclaimer-box h2 {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.1rem;
    margin: 0 0 0.75rem;
}

.disclaimer-box p {
    margin: 0;
    font-size: 0.88rem;
    color: var(--color-text-muted);
    line-height: 1.6;
}

.site-footer {
    border-top: 1px solid var(--color-border);
    background: rgba(0, 0, 0, 0.25);
    padding: 2.5rem 1.5rem;
}

.site-footer__inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    gap: 2rem;
}

@media (min-width: 768px) {
    .site-footer__inner {
        grid-template-columns: 1fr 1fr;
        align-items: start;
    }
}

.site-footer nav {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}

.site-footer a {
    color: var(--color-text-muted);
    font-size: 0.92rem;
    position: relative;
    width: fit-content;
}

.site-footer a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 100%;
    height: 1px;
    background: var(--color-fuchsia);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.site-footer a:hover::after {
    transform: scaleX(1);
}

.site-footer a:hover {
    color: var(--color-text);
}

.site-footer__copy {
    margin: 0;
    font-size: 0.85rem;
    color: var(--color-text-muted);
    line-height: 1.6;
}

.site-footer__ads {
    grid-column: 1 / -1;
    margin: 0;
    padding-top: 1.25rem;
    border-top: 1px solid var(--color-border);
    font-size: 0.76rem;
    color: var(--color-text-muted);
    line-height: 1.55;
    max-width: 72ch;
}

.trust-badges--hero {
    flex-wrap: wrap;
    gap: 0.5rem;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 200;
    padding: 1rem;
    transform: translateY(100%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.45s ease, opacity 0.45s ease;
}

.cookie-banner.is-visible {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
}

.cookie-banner__box {
    max-width: 960px;
    margin: 0 auto;
    padding: 1.25rem 1.5rem;
    border-radius: var(--radius-xl);
    border: 1px solid var(--color-border);
    background: rgba(26, 10, 36, 0.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: var(--shadow-soft);
}

.cookie-banner p {
    margin: 0 0 1rem;
    font-size: 0.9rem;
    color: var(--color-text-muted);
}

.cookie-banner__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.cookie-settings-panel {
    display: none;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--color-border);
}

.cookie-settings-panel.is-open {
    display: block;
}

.cookie-setting-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--color-border);
    font-size: 0.9rem;
}

.cookie-setting-row:last-child {
    border-bottom: none;
}

.cookie-setting-row span {
    color: var(--color-text-muted);
}

.cookie-setting-row strong {
    color: var(--color-text);
    display: block;
    margin-bottom: 0.25rem;
}

.switch {
    position: relative;
    width: 44px;
    height: 26px;
    flex-shrink: 0;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.switch__ui {
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 999px;
    border: 1px solid var(--color-border);
    transition: background 0.3s ease;
    cursor: pointer;
}

.switch__ui::after {
    content: "";
    position: absolute;
    width: 20px;
    height: 20px;
    left: 3px;
    top: 2px;
    background: var(--color-text);
    border-radius: 50%;
    transition: transform 0.3s ease;
}

.switch input:checked+.switch__ui {
    background: linear-gradient(90deg, var(--color-fuchsia), var(--color-orchid));
}

.switch input:checked+.switch__ui::after {
    transform: translateX(16px);
}

.switch input:disabled+.switch__ui {
    opacity: 0.6;
    cursor: not-allowed;
}

.legal-page {
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
}

.legal-aurora {
    position: fixed;
    inset: -20% -30%;
    background: conic-gradient(from 200deg, rgba(255, 60, 172, 0.14), rgba(90, 30, 118, 0.35), rgba(192, 76, 255, 0.12));
    animation: meshSpin 40s linear infinite;
    pointer-events: none;
    z-index: 0;
    opacity: 0.7;
}

.legal-shell {
    position: relative;
    z-index: 1;
    max-width: 1120px;
    margin: 0 auto;
    padding: 2.5rem 1.25rem 4rem;
    display: grid;
    gap: 2rem;
}

@media (min-width: 960px) {
    .legal-shell {
        grid-template-columns: 240px 1fr;
        padding: 3rem 2rem 5rem;
        align-items: start;
    }
}

.legal-hero {
    grid-column: 1 / -1;
    padding: var(--space-card);
    border-radius: var(--radius-xl);
    border: 1px solid var(--color-border);
    background: linear-gradient(135deg, rgba(230, 204, 255, 0.1), rgba(26, 10, 36, 0.85));
    box-shadow: var(--shadow-soft);
}

.legal-hero h1 {
    font-family: var(--font-display);
    font-weight: 800;
    letter-spacing: -0.025em;
    font-size: clamp(1.85rem, 4vw, 2.65rem);
    margin: 0 0 0.75rem;
    line-height: 1.12;
}

.legal-hero__lead {
    margin: 0;
    color: var(--color-text-muted);
    font-size: 1.02rem;
    max-width: 60ch;
}

.legal-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    align-items: center;
    margin-top: 1.25rem;
    padding-top: 1.25rem;
    border-top: 1px solid var(--color-border);
    font-family: var(--font-mono);
    font-size: 0.78rem;
    color: var(--color-rose);
}

.legal-meta time {
    color: var(--color-lavender);
}

.legal-toc {
    position: sticky;
    top: calc(var(--header-bar-h) + 1rem);
    padding: 1.25rem;
    border-radius: var(--radius-xl);
    border: 1px solid var(--color-border);
    background: rgba(26, 10, 36, 0.72);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    max-height: calc(100vh - var(--header-bar-h) - 2rem);
    overflow: auto;
}

.legal-toc__label {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.85rem;
    margin: 0 0 0.75rem;
    color: var(--color-text);
}

.legal-toc ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.legal-toc a {
    display: block;
    padding: 0.45rem 0;
    font-size: 0.82rem;
    color: var(--color-text-muted);
    border-bottom: 1px solid transparent;
    transition: color 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

.legal-toc a:hover {
    color: var(--color-fuchsia);
    transform: translateX(4px);
}

.legal-body {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.legal-block {
    margin-bottom: 2rem;
    padding: 1.5rem 1.35rem;
    border-radius: var(--radius-xl);
    border: 1px solid var(--color-border);
    background: rgba(255, 255, 255, 0.04);
    transition: border-color 0.35s ease, box-shadow 0.35s ease;
    scroll-margin-top: calc(var(--header-bar-h) + 12px);
}

.legal-block:hover {
    border-color: rgba(255, 140, 198, 0.25);
    box-shadow: 0 20px 48px rgba(0, 0, 0, 0.2);
}

.legal-block h2 {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.22rem;
    margin: 0 0 0.85rem;
    letter-spacing: -0.015em;
    color: var(--color-text);
}

.legal-block h3 {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 600;
    margin: 1.25rem 0 0.5rem;
    color: var(--color-lavender);
}

.legal-block p,
.legal-block li {
    color: var(--color-text-muted);
    font-size: 0.94rem;
    margin: 0 0 0.85rem;
    line-height: 1.68;
}

.legal-block ul,
.legal-block ol {
    padding-left: 1.2rem;
    margin: 0 0 0.85rem;
}

.legal-block li {
    margin-bottom: 0.4rem;
}

.legal-callout {
    margin: 1rem 0;
    padding: 1rem 1.15rem;
    border-radius: var(--radius-lg);
    border-left: 3px solid var(--color-fuchsia);
    background: rgba(255, 60, 172, 0.08);
    font-size: 0.9rem;
    color: var(--color-text-muted);
}

.legal-accordion {
    margin-top: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.legal-accordion__item {
    border-radius: var(--radius-md);
    border: 1px solid var(--color-border);
    overflow: hidden;
    background: rgba(0, 0, 0, 0.15);
}

.legal-accordion__btn {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.75rem;
    padding: 0.9rem 1rem;
    background: transparent;
    border: none;
    color: var(--color-text);
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 0.92rem;
    text-align: left;
    cursor: pointer;
    transition: background 0.3s ease;
}

.legal-accordion__btn:hover {
    background: rgba(255, 255, 255, 0.04);
}

.legal-accordion__btn svg {
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    stroke-width: 1.2;
    transition: transform 0.35s ease;
}

.legal-accordion__item.is-open .legal-accordion__btn svg {
    transform: rotate(180deg);
}

.legal-accordion__panel {
    display: none;
    padding: 0 1rem 1rem;
    font-size: 0.88rem;
    color: var(--color-text-muted);
    line-height: 1.65;
}

.legal-accordion__item.is-open .legal-accordion__panel {
    display: block;
}

.policy-page {
    padding: 3rem 1.5rem 4rem;
    max-width: 800px;
    margin: 0 auto;
}

.policy-page h1 {
    font-family: var(--font-display);
    font-weight: 800;
    letter-spacing: -0.02em;
    font-size: 2rem;
    margin: 0 0 1rem;
}

.policy-page h2 {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.25rem;
    margin: 2rem 0 0.75rem;
}

.policy-page p,
.policy-page li {
    color: var(--color-text-muted);
    font-size: 0.95rem;
    margin: 0 0 1rem;
}

.policy-page ul {
    padding-left: 1.25rem;
}

.policy-meta {
    font-family: var(--font-mono);
    font-size: 0.8rem;
    color: var(--color-rose);
    margin-bottom: 2rem;
}

.thankyou-page {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
}

.thankyou-aurora {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 80% 70% at 30% 20%, rgba(255, 60, 172, 0.2), transparent 50%),
        radial-gradient(ellipse 60% 50% at 80% 80%, rgba(192, 76, 255, 0.18), transparent 45%);
    pointer-events: none;
}

.thankyou-grid {
    position: relative;
    z-index: 1;
    max-width: 920px;
    margin: 0 auto;
    padding: 3rem 1.25rem 4rem;
    display: grid;
    gap: 2rem;
}

@media (min-width: 768px) {
    .thankyou-grid {
        grid-template-columns: 1fr 1fr;
        align-items: center;
        padding: 4rem 2rem 5rem;
    }
}

.thankyou-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 220px;
}

.thankyou-badge {
    width: min(240px, 70vw);
    aspect-ratio: 1;
    border-radius: 50%;
    border: 1px solid var(--color-border);
    background: linear-gradient(145deg, rgba(230, 204, 255, 0.12), rgba(26, 10, 36, 0.8));
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-soft);
    animation: thankyouPulse 5s ease-in-out infinite;
}

@keyframes thankyouPulse {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(255, 60, 172, 0.25);
        transform: scale(1);
    }

    50% {
        box-shadow: 0 0 0 22px rgba(255, 60, 172, 0);
        transform: scale(1.02);
    }
}

.thankyou-check {
    width: 72px;
    height: 72px;
    color: var(--color-fuchsia);
}

.thankyou-check path {
    stroke-dasharray: 48;
    stroke-dashoffset: 48;
    animation: drawCheck 1.1s ease 0.3s forwards;
}

@keyframes drawCheck {
    to {
        stroke-dashoffset: 0;
    }
}

.thankyou-copy h1 {
    font-family: var(--font-display);
    font-weight: 800;
    letter-spacing: -0.02em;
    font-size: clamp(1.85rem, 4vw, 2.35rem);
    margin: 0 0 1rem;
    line-height: 1.14;
}

.thankyou-copy p {
    color: var(--color-text-muted);
    margin: 0 0 1rem;
    font-size: 1rem;
    line-height: 1.7;
}

.thankyou-meta {
    display: inline-flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    align-items: center;
    margin-bottom: 1.5rem;
    padding: 0.65rem 1rem;
    border-radius: var(--radius-lg);
    border: 1px solid var(--color-border);
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: var(--color-rose);
}

.thankyou-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.thankyou-footnote {
    text-align: left;
    padding: 1.5rem 0 0;
    margin: 0;
    font-size: 0.88rem;
    color: var(--color-text-muted);
    line-height: 1.65;
}

.thankyou-hero {
    text-align: center;
    padding: 5rem 1.5rem;
    max-width: 560px;
    margin: 0 auto;
}

.thankyou-hero h1 {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: clamp(1.75rem, 4vw, 2.25rem);
    letter-spacing: -0.02em;
    margin: 0 0 1rem;
}

.thankyou-hero p {
    color: var(--color-text-muted);
    margin: 0 0 2rem;
}

@media (max-width: 767px) {
    .burger {
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    .site-header {
        position: sticky;
        top: 0;
        z-index: 100;
    }

    .site-header__inner {
        position: relative;
        z-index: 102;
        min-height: var(--header-bar-h);
    }

    .site-nav {
        position: fixed;
        top: var(--header-bar-h);
        left: 0;
        width: 100%;
        height: calc(100vh - var(--header-bar-h));
        max-height: calc(100dvh - var(--header-bar-h));
        margin: 0;
        padding: 1.25rem 1.25rem 2rem;
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        gap: 0.15rem;
        background: rgba(14, 6, 22, 0.94);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        border-top: 1px solid var(--color-border);
        z-index: 101;
        overflow-y: auto;
        transform: translateX(100%);
        visibility: hidden;
        transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1), visibility 0.45s;
    }

    .site-header.is-open .site-nav {
        transform: translateX(0);
        visibility: visible;
    }

    .site-nav a {
        padding: 0.85rem 0.75rem;
        font-size: 1.05rem;
        border-radius: var(--radius-md);
        transition: background 0.25s ease, color 0.25s ease;
    }

    .site-nav a:hover,
    .site-nav a:focus-visible {
        background: rgba(255, 60, 172, 0.12);
        color: var(--color-text);
    }

    .nav-backdrop {
        display: block;
    }

    html.nav-open {
        overflow: hidden;
    }

    .legal-shell {
        display: block;
    }

    .legal-toc {
        position: relative;
        top: 0;
        max-height: none;
        margin-bottom: 1rem;
    }
}

@media (max-width: 320px) {
    :root {
        --header-bar-h: 64px;
        --radius-xl: 20px;
        --radius-lg: 16px;
        --radius-md: 12px;
    }

    body {
        font-size: 0.94rem;
    }

    .site-header__inner {
        padding: 0.5rem 0.65rem;
        gap: 0.5rem;
    }

    .site-brand {
        font-size: 0.78rem;
        line-height: 1.25;
        max-width: 52vw;
        word-break: break-word;
    }

    .burger {
        width: 44px;
        height: 44px;
    }

    .section {
        padding-left: 0.75rem;
        padding-right: 0.75rem;
    }

    .section__title {
        font-size: 1.45rem;
        hyphens: auto;
    }

    .section__lead {
        font-size: 0.94rem;
    }

    .hero__product-wrap img {
        max-width: 220px;
    }

    .rhythm-tabs__btn {
        font-size: 0.8rem;
        padding: 0.55rem 0.85rem;
    }

    .rhythm-panel__frame {
        float: none;
        width: 100%;
        margin: 0 0 1rem;
    }

    .live-metric__value {
        font-size: 1.75rem;
    }

    .trust-badges {
        flex-direction: column;
        align-items: flex-start;
    }

    .btn {
        min-height: 48px;
        padding-left: 1.25rem;
        padding-right: 1.25rem;
    }

    .cookie-banner__box {
        padding: 1rem;
    }

    .legal-shell {
        padding: 1.25rem 0.65rem 3rem;
    }

    .legal-block {
        padding: 1.15rem 1rem;
    }

    .thankyou-grid {
        padding: 2rem 0.75rem 3rem;
    }
}

@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .hero__blob,
    .hero__aurora,
    .hero__grid-lines,
    .hero__ring,
    .hero__beam,
    .hero__particles span,
    .hero__dock,
    .hero__product-wrap,
    .hero__scard,
    .hero__dock-pulse,
    .hero__kicker-shine,
    .hero__title-accent,
    .hero__price-glow .price-current,
    .hero__price-tag,
    .trust-badge--pop,
    .hero__stars svg,
    .rhythm-studio__mesh,
    .legal-aurora {
        animation: none !important;
    }
}