:root {
    --color-peach: #FFBFA6;
    --color-coral: #FF6F91;
    --color-sky: #6EC6FF;
    --color-mint: #C8FFD4;
    --color-lavender: #D8B4FF;
    --color-base: #0f1118;
    --color-base-soft: #161a24;
    --color-surface: rgba(255, 255, 255, 0.08);
    --color-surface-strong: rgba(255, 255, 255, 0.14);
    --color-text: #f4f6fb;
    --color-text-muted: #b8c0d4;
    --color-border: rgba(255, 255, 255, 0.12);
    --font-sans: "Segoe UI", system-ui, -apple-system, sans-serif;
    --font-display: "Segoe UI", system-ui, -apple-system, sans-serif;
    --fs-xs: clamp(0.75rem, 0.7rem + 0.2vw, 0.875rem);
    --fs-sm: clamp(0.875rem, 0.8rem + 0.25vw, 1rem);
    --fs-md: clamp(1rem, 0.95rem + 0.3vw, 1.125rem);
    --fs-lg: clamp(1.125rem, 1rem + 0.5vw, 1.35rem);
    --fs-xl: clamp(1.35rem, 1.1rem + 1vw, 1.75rem);
    --fs-2xl: clamp(1.75rem, 1.35rem + 1.6vw, 2.5rem);
    --fs-3xl: clamp(2.25rem, 1.5rem + 2.5vw, 3.5rem);
    --fw-normal: 400;
    --fw-medium: 600;
    --fw-bold: 700;
    --lh-tight: 1.15;
    --lh-body: 1.6;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.12);
    --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.18);
    --shadow-lg: 0 20px 50px rgba(0, 0, 0, 0.28);
    --shadow-glow-coral: 0 0 0 1px rgba(255, 111, 145, 0.35), 0 12px 40px rgba(255, 111, 145, 0.35);
    --shadow-glow-sky: 0 0 0 1px rgba(110, 198, 255, 0.4), 0 12px 40px rgba(110, 198, 255, 0.35);
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 22px;
    --radius-xl: 28px;
    --radius-full: 999px;
    --space-1: 0.25rem;
    --space-2: 0.5rem;
    --space-3: 0.75rem;
    --space-4: 1rem;
    --space-5: 1.25rem;
    --space-6: 1.5rem;
    --space-8: 2rem;
    --space-10: 2.5rem;
    --space-12: 3rem;
    --space-16: 4rem;
    --space-20: 5rem;
    --max-width: 1120px;
    --header-h: 72px;
    --transition-fast: 0.18s ease;
    --transition-base: 0.28s ease;
    --transition-slow: 0.5s 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-sans);
    font-size: var(--fs-md);
    line-height: var(--lh-body);
    color: var(--color-text);
    background: radial-gradient(1200px 600px at 10% -10%, rgba(255, 191, 166, 0.18), transparent 55%),
        radial-gradient(900px 500px at 100% 0%, rgba(110, 198, 255, 0.15), transparent 50%),
        linear-gradient(165deg, #0b0d12 0%, #121624 45%, #0f1118 100%);
    min-height: 100vh;
    overflow-x: hidden;
}

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

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

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

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

.skip-link {
    position: absolute;
    left: -9999px;
    top: var(--space-2);
    z-index: 10000;
    padding: var(--space-3) var(--space-4);
    background: var(--color-coral);
    color: #fff;
    border-radius: var(--radius-sm);
}

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

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    height: var(--header-h);
    backdrop-filter: blur(16px) saturate(160%);
    background: rgba(15, 17, 24, 0.65);
    border-bottom: 1px solid var(--color-border);
    box-shadow: var(--shadow-sm);
}

.site-header__inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--space-6);
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-4);
    position: relative;
    z-index: 1002;
}

.burger {
    display: none;
    flex-shrink: 0;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    width: 44px;
    height: 44px;
    padding: 0;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: background var(--transition-fast), border-color var(--transition-fast);
}

.burger:hover {
    background: rgba(110, 198, 255, 0.12);
    border-color: rgba(110, 198, 255, 0.35);
}

.burger__bar {
    display: block;
    width: 22px;
    height: 2px;
    margin: 0 auto;
    background: var(--color-text);
    border-radius: 2px;
    transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.25s ease;
}

.site-header.is-nav-open .burger__bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.site-header.is-nav-open .burger__bar:nth-child(2) {
    opacity: 0;
}

.site-header.is-nav-open .burger__bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

.nav-backdrop {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(5, 8, 14, 0.65);
    backdrop-filter: blur(4px);
    z-index: 999;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.site-header.is-nav-open .nav-backdrop {
    display: block;
    opacity: 1;
    pointer-events: auto;
}

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

    .primary-nav {
        position: fixed;
        top: var(--header-h);
        right: 0;
        width: min(100%, 20rem);
        height: calc(100dvh - var(--header-h));
        margin: 0;
        padding: var(--space-6);
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        gap: var(--space-1);
        background: rgba(14, 16, 24, 0.97);
        backdrop-filter: blur(20px) saturate(150%);
        border-left: 1px solid var(--color-border);
        box-shadow: -12px 0 40px rgba(0, 0, 0, 0.35);
        transform: translateX(105%);
        transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
        z-index: 1001;
        overflow-y: auto;
    }

    .primary-nav a {
        padding: var(--space-3) var(--space-4);
        border-radius: var(--radius-md);
        font-size: var(--fs-md);
    }

    .primary-nav a:hover {
        background: rgba(255, 111, 145, 0.1);
    }

    .site-header.is-nav-open .primary-nav {
        transform: translateX(0);
    }

    body.is-locked {
        overflow: hidden;
    }
}

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

    .primary-nav {
        display: flex;
        flex-wrap: wrap;
        gap: var(--space-4) var(--space-6);
        justify-content: flex-end;
    }
}

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

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

.brand span {
    display: block;
    font-size: var(--fs-xs);
    font-weight: var(--fw-normal);
    color: var(--color-text-muted);
}

.nav {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-4) var(--space-6);
    justify-content: flex-end;
}

.nav a {
    color: var(--color-text-muted);
    font-weight: var(--fw-medium);
    font-size: var(--fs-sm);
}

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

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

.btn--primary {
    background: linear-gradient(120deg, var(--color-coral), #ff8ba8);
    color: #0f1118;
    box-shadow: var(--shadow-glow-coral);
}

.btn--primary:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 0 0 1px rgba(255, 111, 145, 0.5), 0 16px 48px rgba(255, 111, 145, 0.45);
}

.btn--secondary {
    background: transparent;
    color: var(--color-text);
    border: 2px solid var(--color-sky);
}

.btn--secondary:hover {
    background: rgba(110, 198, 255, 0.12);
    transform: translateY(-2px);
}

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

.btn--ghost:hover {
    background: rgba(255, 255, 255, 0.1);
}

.magnetic-wrap {
    display: inline-block;
    position: relative;
}

main {
    overflow-x: hidden;
}

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

.section--tight {
    padding-top: var(--space-12);
}

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

.section__title {
    font-size: var(--fs-2xl);
    font-weight: var(--fw-bold);
    line-height: var(--lh-tight);
    margin: 0 0 var(--space-4);
    letter-spacing: -0.02em;
}

.section__lead {
    margin: 0 0 var(--space-10);
    color: var(--color-text-muted);
    max-width: 62ch;
    font-size: var(--fs-md);
}

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

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

.hero {
    padding-top: var(--space-12);
    padding-bottom: var(--space-20);
    position: relative;
    overflow: hidden;
    isolation: isolate;
}

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

.hero__mesh {
    position: absolute;
    inset: -30%;
    background: conic-gradient(from 180deg at 50% 50%,
            rgba(255, 111, 145, 0.12),
            rgba(110, 198, 255, 0.1),
            rgba(216, 180, 255, 0.1),
            rgba(200, 255, 212, 0.08),
            rgba(255, 111, 145, 0.12));
    animation: hero-mesh-spin 28s linear infinite;
}

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

.hero__grain {
    position: absolute;
    inset: 0;
    opacity: 0.04;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    animation: hero-grain-shift 0.4s steps(2) infinite;
}

@keyframes hero-grain-shift {
    0% {
        transform: translate(0, 0);
    }

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

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

.hero__gridlines {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 48px 48px;
    mask-image: radial-gradient(ellipse 80% 70% at 50% 40%, black, transparent);
    animation: hero-grid-pan 20s linear infinite;
}

@keyframes hero-grid-pan {
    0% {
        background-position: 0 0, 0 0;
    }

    100% {
        background-position: 48px 48px, 48px 48px;
    }
}

.hero__orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(56px);
    opacity: 0.42;
    animation: orb-drift 16s ease-in-out infinite;
}

.hero__orb--1 {
    width: min(380px, 85vw);
    height: min(380px, 85vw);
    background: radial-gradient(circle, var(--color-coral), transparent 68%);
    top: -14%;
    left: -10%;
}

.hero__orb--2 {
    width: min(320px, 75vw);
    height: min(320px, 75vw);
    background: radial-gradient(circle, var(--color-sky), transparent 68%);
    bottom: 0%;
    right: -8%;
    animation-delay: -5s;
}

.hero__orb--3 {
    width: min(240px, 60vw);
    height: min(240px, 60vw);
    background: radial-gradient(circle, var(--color-lavender), transparent 68%);
    top: 38%;
    left: 42%;
    animation-delay: -10s;
    opacity: 0.28;
}

@keyframes orb-drift {

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

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

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

.hero__spark {
    position: absolute;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    box-shadow: 0 0 12px 2px rgba(110, 198, 255, 0.4);
    animation: hero-spark-float 7s ease-in-out infinite;
}

.hero__spark--1 {
    background: var(--color-coral);
    top: 18%;
    left: 22%;
    animation-delay: 0s;
}

.hero__spark--2 {
    background: var(--color-sky);
    top: 55%;
    left: 12%;
    animation-delay: -1.4s;
}

.hero__spark--3 {
    background: var(--color-mint);
    top: 72%;
    right: 28%;
    animation-delay: -2.8s;
}

.hero__spark--4 {
    background: var(--color-lavender);
    top: 30%;
    right: 18%;
    animation-delay: -4.2s;
}

.hero__spark--5 {
    background: var(--color-peach);
    bottom: 22%;
    left: 38%;
    animation-delay: -5.6s;
}

@keyframes hero-spark-float {

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

    50% {
        transform: translate(12px, -18px) scale(1.2);
        opacity: 1;
    }
}

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

.hero__layout {
    display: grid;
    gap: var(--space-10);
    align-items: center;
}

@media (min-width: 900px) {
    .hero__layout {
        grid-template-columns: 1fr 1fr;
        gap: var(--space-12);
        align-items: center;
    }
}

@media (max-width: 899px) {
    .hero__col--stage {
        order: -1;
    }
}

.hero__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: var(--space-3);
    margin: 0 0 var(--space-5);
    padding: var(--space-2) var(--space-4);
    font-size: var(--fs-xs);
    font-weight: var(--fw-medium);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--color-text-muted);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-full);
    background: rgba(255, 255, 255, 0.04);
    animation: hero-eyebrow-pulse 3s ease-in-out infinite;
}

.hero__eyebrow-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--color-mint);
    box-shadow: 0 0 12px var(--color-mint);
    animation: hero-dot-blink 2s ease-in-out infinite;
}

@keyframes hero-eyebrow-pulse {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(110, 198, 255, 0);
    }

    50% {
        box-shadow: 0 0 20px rgba(110, 198, 255, 0.12);
    }
}

@keyframes hero-dot-blink {

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

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

.hero__title {
    display: flex;
    flex-wrap: wrap;
    gap: 0.28em 0.45em;
    margin: 0 0 var(--space-5);
    font-size: var(--fs-3xl);
    font-weight: var(--fw-bold);
    line-height: 1.08;
    letter-spacing: -0.03em;
}

.hero__word {
    display: inline-block;
    opacity: 0;
    transform: translateY(22px);
    animation: hero-word-in 0.75s cubic-bezier(0.22, 1, 0.36, 1) forwards;
    color: var(--color-text);
}

.hero__word:nth-child(1) {
    animation-delay: 0.06s;
}

.hero__word:nth-child(2) {
    animation-delay: 0.12s;
}

.hero__word:nth-child(3) {
    animation-delay: 0.18s;
}

.hero__word:nth-child(4) {
    animation-delay: 0.24s;
}

.hero__word:nth-child(5) {
    animation-delay: 0.3s;
}

.hero__word:nth-child(6) {
    animation-delay: 0.36s;
}

.hero__word--accent {
    background: linear-gradient(120deg, var(--color-peach), var(--color-coral), var(--color-sky));
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    animation: hero-word-in 0.75s cubic-bezier(0.22, 1, 0.36, 1) forwards, hero-shimmer-text 4s ease-in-out infinite;
    animation-delay: 0.3s, 0.55s;
}

@keyframes hero-word-in {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes hero-shimmer-text {

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

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

.hero__lede {
    margin: 0 0 var(--space-5);
    color: var(--color-text-muted);
    font-size: var(--fs-lg);
    line-height: 1.65;
    max-width: 52ch;
    animation: hero-fade-up 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.45s both;
}

@keyframes hero-fade-up {
    from {
        opacity: 0;
        transform: translateY(14px);
    }

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

.hero__chips {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-2);
    margin: 0 0 var(--space-6);
    padding: 0;
    list-style: none;
}

.hero__chip {
    padding: var(--space-2) var(--space-3);
    font-size: var(--fs-xs);
    font-weight: var(--fw-medium);
    color: var(--color-text-muted);
    border: 1px solid rgba(110, 198, 255, 0.25);
    border-radius: var(--radius-full);
    background: rgba(110, 198, 255, 0.06);
    animation: hero-chip-in 0.55s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.hero__chip:nth-child(1) {
    animation-delay: 0.5s;
}

.hero__chip:nth-child(2) {
    animation-delay: 0.58s;
}

.hero__chip:nth-child(3) {
    animation-delay: 0.66s;
}

.hero__chip:nth-child(4) {
    animation-delay: 0.74s;
}

@keyframes hero-chip-in {
    from {
        opacity: 0;
        transform: translateY(10px) scale(0.96);
    }

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

.hero__price {
    align-items: center;
}

.hero__price-tag {
    margin-left: auto;
    padding: var(--space-1) var(--space-3);
    font-size: var(--fs-xs);
    font-weight: var(--fw-bold);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #0f1118;
    background: linear-gradient(120deg, var(--color-mint), var(--color-sky));
    border-radius: var(--radius-full);
    animation: hero-tag-wobble 4s ease-in-out infinite;
}

@keyframes hero-tag-wobble {

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

    50% {
        transform: rotate(1deg);
    }
}

.order-card--hero {
    animation: hero-card-rise 0.85s cubic-bezier(0.22, 1, 0.36, 1) 0.55s both;
    border-color: rgba(110, 198, 255, 0.2);
    box-shadow: var(--shadow-md), 0 0 40px rgba(255, 111, 145, 0.08);
}

@keyframes hero-card-rise {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

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

.hero__stage {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: var(--space-6) 0;
}

.hero__orbit {
    position: absolute;
    width: min(100%, 420px);
    height: min(100%, 420px);
    aspect-ratio: 1;
    border: 1px dashed rgba(110, 198, 255, 0.28);
    border-radius: 50%;
    animation: hero-orbit-spin 32s linear infinite;
    pointer-events: none;
}

.hero__orbit--inner {
    width: min(92%, 380px);
    height: min(92%, 380px);
    border-style: solid;
    border-color: rgba(255, 111, 145, 0.15);
    animation-direction: reverse;
    animation-duration: 22s;
}

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

.hero__blob {
    position: absolute;
    width: min(90%, 360px);
    aspect-ratio: 1;
    border-radius: 42% 58% 62% 38% / 48% 42% 58% 52%;
    background: radial-gradient(ellipse at 30% 30%, rgba(255, 111, 145, 0.22), transparent 55%),
        radial-gradient(ellipse at 70% 70%, rgba(110, 198, 255, 0.18), transparent 50%);
    filter: blur(2px);
    animation: hero-blob-morph 10s ease-in-out infinite;
    z-index: 0;
}

@keyframes hero-blob-morph {

    0%,
    100% {
        border-radius: 42% 58% 62% 38% / 48% 42% 58% 52%;
        transform: scale(1) rotate(0deg);
    }

    50% {
        border-radius: 58% 42% 38% 62% / 52% 58% 42% 48%;
        transform: scale(1.04) rotate(4deg);
    }
}

.hero__tags {
    position: absolute;
    inset: 0;
    margin: 0;
    padding: 0;
    list-style: none;
    pointer-events: none;
    z-index: 2;
}

.hero__tag {
    position: absolute;
    max-width: 11rem;
    font-size: var(--fs-xs);
    font-weight: var(--fw-medium);
    color: var(--color-text);
    animation: hero-tag-float 5s ease-in-out infinite;
}

.hero__tag span {
    display: block;
    padding: var(--space-2) var(--space-3);
    border-radius: var(--radius-md);
    border: 1px solid var(--color-border);
    background: rgba(15, 17, 24, 0.75);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
}

.hero__tag--a {
    top: 6%;
    right: 0;
    animation-delay: 0s;
}

.hero__tag--b {
    bottom: 28%;
    left: -4%;
    animation-delay: -1.6s;
}

.hero__tag--c {
    top: 38%;
    left: -2%;
    animation-delay: -3.2s;
}

@keyframes hero-tag-float {

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

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

.hero__glass {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
    padding: 3px;
    border-radius: calc(var(--radius-xl) + 2px);
    background: linear-gradient(135deg, rgba(255, 111, 145, 0.45), rgba(110, 198, 255, 0.35), rgba(216, 180, 255, 0.4));
    background-size: 200% 200%;
    animation: hero-border-flow 6s ease infinite;
    transform-style: preserve-3d;
}

@keyframes hero-border-flow {

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

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

.hero__glass-edge {
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: inherit;
    background: inherit;
    filter: blur(12px);
    opacity: 0.35;
    z-index: -1;
    animation: hero-border-flow 6s ease infinite reverse;
}

.hero__figure {
    position: relative;
    margin: 0;
    border-radius: var(--radius-xl);
    overflow: hidden;
    background: rgba(15, 17, 24, 0.5);
    box-shadow: inset 0 0 60px rgba(110, 198, 255, 0.06);
}

.hero__figure img {
    width: 100%;
    height: auto;
    display: block;
    animation: hero-img-breathe 6s ease-in-out infinite;
}

@keyframes hero-img-breathe {

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

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

.hero__shine {
    position: absolute;
    inset: -30% -50%;
    background: linear-gradient(105deg,
            transparent 40%,
            rgba(255, 255, 255, 0.12) 48%,
            rgba(255, 255, 255, 0.2) 50%,
            rgba(255, 255, 255, 0.12) 52%,
            transparent 60%);
    animation: hero-shine-sweep 5s ease-in-out infinite;
    pointer-events: none;
    mix-blend-mode: overlay;
}

@keyframes hero-shine-sweep {
    0% {
        transform: translateX(-40%) rotate(12deg);
        opacity: 0;
    }

    15% {
        opacity: 1;
    }

    45% {
        transform: translateX(40%) rotate(12deg);
        opacity: 1;
    }

    60%,
    100% {
        opacity: 0;
    }
}

.hero__meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: var(--space-4);
    margin-top: var(--space-6);
    position: relative;
    z-index: 3;
    animation: hero-meta-in 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.7s both;
}

@keyframes hero-meta-in {
    from {
        opacity: 0;
        transform: translateY(12px);
    }

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

.rating--hero {
    animation: rating-glow 3s ease-in-out infinite;
}

@keyframes rating-glow {

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

    50% {
        box-shadow: 0 0 24px rgba(255, 191, 166, 0.12);
    }
}

.trust-pill--hero {
    animation: rating-glow 3s ease-in-out infinite 1.5s;
}

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

    .hero__mesh,
    .hero__grain,
    .hero__gridlines,
    .hero__orb,
    .hero__spark,
    .hero__orbit,
    .hero__orbit--inner,
    .hero__blob,
    .hero__tag,
    .hero__glass,
    .hero__glass-edge,
    .hero__figure img,
    .hero__shine,
    .hero__eyebrow,
    .hero__eyebrow-dot,
    .hero__price-tag,
    .rating--hero,
    .trust-pill--hero {
        animation: none !important;
    }

    .hero__word,
    .hero__word--accent,
    .hero__lede,
    .hero__chip,
    .order-card--hero,
    .hero__meta {
        animation: none !important;
        opacity: 1 !important;
        transform: none !important;
    }

    .hero__word--accent {
        color: var(--color-peach);
        background: none;
        -webkit-background-clip: unset;
        background-clip: unset;
    }
}

.rating {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    padding: var(--space-2) var(--space-4);
    background: var(--color-surface);
    border-radius: var(--radius-full);
    border: 1px solid var(--color-border);
    font-size: var(--fs-sm);
}

.rating--disclosed {
    display: block;
    max-width: 42ch;
    margin: 0 auto;
    padding: var(--space-3) var(--space-4);
    border-radius: var(--radius-md);
    font-size: var(--fs-xs);
    line-height: 1.5;
    color: var(--color-text-muted);
    text-align: center;
}

.rating__stars {
    color: var(--color-peach);
    letter-spacing: 0.08em;
}

.trust-pill {
    display: inline-flex;
    align-items: center;
    gap: var(--space-3);
    padding: var(--space-2) var(--space-4);
    background: rgba(200, 255, 212, 0.12);
    border: 1px solid rgba(200, 255, 212, 0.35);
    border-radius: var(--radius-full);
    font-size: var(--fs-sm);
}

.trust-pill img {
  flex-shrink: 0;
}

.trust-pill i {
  flex-shrink: 0;
  font-size: 1.25rem;
  color: var(--color-mint);
}

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

.price {
    font-size: var(--fs-2xl);
    font-weight: var(--fw-bold);
    color: var(--color-mint);
}

.price--old {
    font-size: var(--fs-lg);
    color: var(--color-text-muted);
    text-decoration: line-through;
    font-weight: var(--fw-normal);
}

.order-card {
    padding: var(--space-8);
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid var(--color-border);
    backdrop-filter: blur(12px);
    box-shadow: var(--shadow-md);
}

.form-grid {
    display: grid;
    gap: var(--space-5);
}

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

.form-field input,
.form-field textarea {
    width: 100%;
    padding: var(--space-3) var(--space-4);
    border-radius: var(--radius-md);
    border: 1px solid var(--color-border);
    background: rgba(10, 12, 18, 0.6);
    color: var(--color-text);
    font-family: inherit;
    font-size: var(--fs-sm);
    transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.form-field input:focus,
.form-field textarea:focus {
    border-color: var(--color-sky);
    outline: none;
    box-shadow: 0 0 0 3px rgba(110, 198, 255, 0.2);
}

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

.form-field--error input,
.form-field--error textarea {
    border-color: #ff6b6b;
}

.field-error {
    font-size: var(--fs-xs);
    color: #ffb4b4;
    margin-top: var(--space-2);
    min-height: 1.1em;
}

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

.checkbox-row input {
    margin-top: 0.2rem;
    width: 1.1rem;
    height: 1.1rem;
    accent-color: var(--color-coral);
}

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

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

@media (min-width: 900px) {
    .bento {
        grid-template-columns: repeat(4, 1fr);
        grid-template-rows: 200px 200px;
        gap: var(--space-5);
    }

    .bento__card--large {
        grid-column: span 2;
        grid-row: span 2;
    }

    .bento__card--wide {
        grid-column: span 2;
    }
}

.bento__card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--color-border);
    background: var(--color-base-soft);
    min-height: 160px;
    transition: transform var(--transition-base), box-shadow var(--transition-base);
    transform-style: preserve-3d;
}

.bento__card:hover {
    transform: translateY(-4px) rotateX(2deg);
    box-shadow: var(--shadow-glow-coral);
}

.bento__icon-wrap {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: clamp(3rem, 14vw, 7rem);
  color: rgba(15, 17, 24, 0.88);
  text-shadow: 0 4px 24px rgba(0, 0, 0, 0.15);
}

.bento__icon-wrap--energy {
  background: linear-gradient(145deg, #ffbfa6 0%, #ff6f91 100%);
}

.bento__icon-wrap--muscle {
  background: linear-gradient(145deg, #6ec6ff 0%, #4a9fd4 100%);
  color: #0f1118;
}

.bento__icon-wrap--seasonal {
  background: linear-gradient(145deg, #c8ffd4 0%, #7dd89a 100%);
  color: #0f1118;
}

.bento__icon-wrap--vitamins {
  background: linear-gradient(145deg, #d8b4ff 0%, #b388f5 100%);
  color: #0f1118;
}

.bento__card-body {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: var(--space-6);
    background: linear-gradient(to top, rgba(15, 17, 24, 0.92), transparent 60%);
}

.bento__card-body h3 {
    margin: 0 0 var(--space-2);
    font-size: var(--fs-xl);
}

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

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

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

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

.ingredient-card {
    position: relative;
    border-radius: var(--radius-lg);
    border: 1px solid var(--color-border);
    background: rgba(255, 255, 255, 0.04);
    overflow: hidden;
    transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.ingredient-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-glow-sky);
}

.ingredient-card__front,
.ingredient-card__back {
    padding: var(--space-6);
    transition: opacity var(--transition-base), transform var(--transition-base);
}

.ingredient-card__back {
    position: absolute;
    inset: 0;
    opacity: 0;
    transform: translateY(12px);
    background: linear-gradient(145deg, rgba(110, 198, 255, 0.15), rgba(255, 111, 145, 0.12));
    display: flex;
    align-items: center;
    font-size: var(--fs-sm);
    color: var(--color-text);
}

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

.ingredient-card:hover .ingredient-card__back {
    opacity: 1;
    transform: translateY(0);
}

.ingredient-card__icon {
  width: 120px;
  height: 120px;
  margin: 0 auto var(--space-4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.75rem;
  border: 2px solid var(--color-border);
}

.ingredient-card__icon--coq {
  background: linear-gradient(160deg, rgba(255, 191, 166, 0.35), rgba(255, 111, 145, 0.2));
  color: var(--color-coral);
}

.ingredient-card__icon--mg {
  background: linear-gradient(160deg, rgba(110, 198, 255, 0.3), rgba(110, 198, 255, 0.1));
  color: var(--color-sky);
}

.ingredient-card__icon--b {
  background: linear-gradient(160deg, rgba(216, 180, 255, 0.35), rgba(255, 111, 145, 0.15));
  color: #d8b4ff;
}

.ingredient-card__icon--omega {
  background: linear-gradient(160deg, rgba(200, 255, 212, 0.4), rgba(110, 198, 255, 0.15));
  color: var(--color-mint);
}

.ingredient-card h3 {
    margin: 0 0 var(--space-2);
    font-size: var(--fs-lg);
    text-align: center;
}

.ingredient-card p {
    margin: 0;
    font-size: var(--fs-xs);
    color: var(--color-text-muted);
    text-align: center;
}

.trust-row {
    display: grid;
    gap: var(--space-6);
}

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

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

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

.trust-item__icon {
  margin: 0 auto var(--space-4);
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 1.85rem;
  animation: floaty 4s ease-in-out infinite;
}

.trust-item__icon--lab {
  background: rgba(110, 198, 255, 0.15);
  color: var(--color-sky);
}

.trust-item__icon--rules {
  background: rgba(255, 191, 166, 0.18);
  color: var(--color-peach);
  animation-delay: 0.4s;
}

.trust-item__icon--natural {
  background: rgba(200, 255, 212, 0.12);
  color: var(--color-mint);
  animation-delay: 0.8s;
}

@keyframes floaty {

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

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

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

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

.rhythm-section {
    position: relative;
}

.rhythm-lab {
    display: grid;
    gap: var(--space-8);
    padding: var(--space-8);
    border-radius: var(--radius-xl);
    border: 1px solid var(--color-border);
    background: linear-gradient(145deg, rgba(255, 111, 145, 0.08), rgba(110, 198, 255, 0.06));
    box-shadow: var(--shadow-md);
}

@media (min-width: 900px) {
    .rhythm-lab {
        grid-template-columns: minmax(0, 220px) 1fr;
        grid-template-rows: auto auto;
        align-items: start;
    }

    .rhythm-lab__visual {
        grid-row: span 2;
    }

    .rhythm-lab__controls {
        grid-column: 2;
    }

    .rhythm-panels {
        grid-column: 2;
    }
}

.rhythm-lab__visual {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 200px;
    position: relative;
}

.rhythm-lab__orbit {
    position: relative;
    width: 160px;
    height: 160px;
    border-radius: 50%;
    border: 2px dashed rgba(110, 198, 255, 0.35);
    animation: spin-slow 24s linear infinite;
}

.rhythm-lab__dot {
    position: absolute;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    margin: -9px 0 0 -9px;
    transform-origin: center center;
}

.rhythm-lab__dot--a {
    background: var(--color-coral);
    transform: rotate(0deg) translateY(-72px);
    box-shadow: 0 0 20px rgba(255, 111, 145, 0.6);
}

.rhythm-lab__dot--b {
    background: var(--color-sky);
    transform: rotate(120deg) translateY(-72px);
    box-shadow: 0 0 20px rgba(110, 198, 255, 0.55);
}

.rhythm-lab__dot--c {
    background: var(--color-mint);
    transform: rotate(240deg) translateY(-72px);
    box-shadow: 0 0 18px rgba(200, 255, 212, 0.45);
}

.rhythm-lab__pulse-ring {
    position: absolute;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 1px solid rgba(255, 191, 166, 0.4);
    animation: pulse-ring 3.5s ease-out infinite;
}

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

@keyframes pulse-ring {
    0% {
        transform: scale(0.85);
        opacity: 0.5;
    }

    70% {
        opacity: 0;
        transform: scale(1.35);
    }

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

.rhythm-lab__controls {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-3);
}

.rhythm-tab {
    flex: 1 1 auto;
    min-width: 140px;
    padding: var(--space-3) var(--space-4);
    border-radius: var(--radius-full);
    border: 1px solid var(--color-border);
    background: rgba(15, 17, 24, 0.5);
    color: var(--color-text-muted);
    font-family: inherit;
    font-size: var(--fs-sm);
    font-weight: var(--fw-medium);
    cursor: pointer;
    transition: background var(--transition-fast), color var(--transition-fast), transform var(--transition-fast), box-shadow var(--transition-fast);
}

.rhythm-tab:hover {
    color: var(--color-text);
    background: rgba(255, 255, 255, 0.06);
    transform: translateY(-2px);
}

.rhythm-tab.is-active {
    color: #0f1118;
    background: linear-gradient(120deg, var(--color-coral), #ff8ba8);
    border-color: transparent;
    box-shadow: var(--shadow-glow-coral);
}

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

.rhythm-panel {
    padding: var(--space-6);
    border-radius: var(--radius-lg);
    border: 1px solid var(--color-border);
    background: rgba(10, 12, 18, 0.55);
    backdrop-filter: blur(8px);
}

.rhythm-panel[hidden] {
    display: none !important;
}

.rhythm-panel:not([hidden]) {
    animation: panel-pop 0.45s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

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

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

.rhythm-panel h3 {
    margin: 0 0 var(--space-3);
    font-size: var(--fs-lg);
    color: var(--color-peach);
}

.rhythm-panel p {
    margin: 0 0 var(--space-4);
    font-size: var(--fs-sm);
    color: var(--color-text-muted);
}

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

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

.stats-strip {
    background: radial-gradient(800px 400px at 50% 0%, rgba(216, 180, 255, 0.08), transparent 55%);
}

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

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

.stat-card {
    padding: var(--space-6);
    border-radius: var(--radius-lg);
    border: 1px solid var(--color-border);
    background: rgba(255, 255, 255, 0.04);
    transition: transform var(--transition-base), box-shadow var(--transition-base), border-color var(--transition-fast);
}

.stat-card:hover {
    transform: translateY(-6px);
    border-color: rgba(110, 198, 255, 0.35);
    box-shadow: var(--shadow-glow-sky);
}

.interactive-card:active {
    transform: scale(0.98);
}

.stat-card__label {
    display: block;
    font-size: var(--fs-xs);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--color-text-muted);
    margin-bottom: var(--space-2);
}

.stat-card__value {
    display: block;
    font-size: var(--fs-2xl);
    font-weight: var(--fw-bold);
    background: linear-gradient(90deg, var(--color-mint), var(--color-sky));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: var(--space-3);
}

.stat-card__hint {
    margin: 0;
    font-size: var(--fs-xs);
    color: var(--color-text-muted);
    line-height: 1.5;
}

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

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

.spec-item {
    padding: var(--space-6);
    border-radius: var(--radius-md);
    border: 1px solid var(--color-border);
    background: rgba(255, 255, 255, 0.03);
}

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

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

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

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

.benefit-card {
    padding: var(--space-6);
    border-radius: var(--radius-lg);
    border: 1px solid var(--color-border);
    background: linear-gradient(160deg, rgba(255, 191, 166, 0.08), rgba(110, 198, 255, 0.06));
    transition: transform var(--transition-base);
}

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

.benefit-card h3 {
    margin: 0 0 var(--space-3);
    font-size: var(--fs-lg);
}

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

.prose {
    color: var(--color-text-muted);
    font-size: var(--fs-md);
}

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

.prose h2 {
    font-size: var(--fs-xl);
    color: var(--color-text);
    margin: var(--space-8) 0 var(--space-4);
}

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

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

.effects-list article {
    padding: var(--space-6);
    border-left: 3px solid var(--color-coral);
    background: rgba(255, 255, 255, 0.03);
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
}

.effects-list h3 {
    margin: 0 0 var(--space-2);
    font-size: var(--fs-md);
}

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

.cta-band {
    text-align: center;
    padding: var(--space-12) var(--space-6);
    border-radius: var(--radius-xl);
    background: linear-gradient(120deg, rgba(255, 111, 145, 0.2), rgba(110, 198, 255, 0.15));
    border: 1px solid var(--color-border);
}

.cta-band h2 {
    margin: 0 0 var(--space-4);
    font-size: var(--fs-2xl);
}

.cta-band p {
    margin: 0 0 var(--space-8);
    color: var(--color-text-muted);
}

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

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

.step {
    padding: var(--space-6);
    border-radius: var(--radius-lg);
    border: 1px solid var(--color-border);
    position: relative;
    padding-top: var(--space-10);
}

.step::before {
    counter-increment: step;
    content: counter(step);
    position: absolute;
    top: var(--space-4);
    left: var(--space-6);
    width: 32px;
    height: 32px;
    border-radius: var(--radius-full);
    background: var(--color-lavender);
    color: #0f1118;
    font-weight: var(--fw-bold);
    font-size: var(--fs-sm);
    display: flex;
    align-items: center;
    justify-content: center;
}

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

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

.table-wrap {
    overflow-x: auto;
}

.ingredient-table {
    width: 100%;
    border-collapse: collapse;
    font-size: var(--fs-sm);
}

.ingredient-table th,
.ingredient-table td {
    padding: var(--space-4);
    text-align: left;
    border-bottom: 1px solid var(--color-border);
}

.ingredient-table th {
    color: var(--color-peach);
    font-weight: var(--fw-bold);
}

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

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

.review-card {
    padding: var(--space-6);
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--color-border);
}

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

.review-card footer {
    font-size: var(--fs-xs);
    color: var(--color-text-muted);
}

.faq details {
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    padding: var(--space-4) var(--space-5);
    margin-bottom: var(--space-3);
    background: rgba(255, 255, 255, 0.03);
}

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

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

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

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

.disclaimer-block {
    padding: var(--space-8);
    border-radius: var(--radius-lg);
    border: 1px dashed rgba(255, 191, 166, 0.4);
    background: rgba(15, 17, 24, 0.6);
    font-size: var(--fs-sm);
    color: var(--color-text-muted);
}

.disclaimer-block strong {
    color: var(--color-text);
}

.site-footer {
    margin-top: var(--space-20);
    padding: var(--space-12) var(--space-6) var(--space-8);
    border-top: 1px solid var(--color-border);
    background: rgba(10, 12, 18, 0.85);
}

.site-footer__grid {
    max-width: var(--max-width);
    margin: 0 auto;
    display: grid;
    gap: var(--space-8);
}

@media (min-width: 800px) {
    .site-footer__grid {
        grid-template-columns: 1.2fr 1fr;
    }
}

.footer-legal {
    font-size: var(--fs-xs);
    color: var(--color-text-muted);
    line-height: 1.65;
    padding: var(--space-6);
    border-radius: var(--radius-md);
    border: 1px solid var(--color-border);
    background: rgba(255, 255, 255, 0.03);
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-4) var(--space-6);
    margin-bottom: var(--space-6);
}

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

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

.cookie-banner {
    position: fixed;
    left: var(--space-4);
    right: var(--space-4);
    bottom: var(--space-4);
    z-index: 2000;
    max-width: 520px;
    margin: 0 auto;
    padding: var(--space-6);
    border-radius: var(--radius-lg);
    border: 1px solid var(--color-border);
    background: rgba(20, 22, 32, 0.85);
    backdrop-filter: blur(16px) saturate(150%);
    box-shadow: var(--shadow-lg);
    transform: translateY(120%);
    opacity: 0;
    transition: transform var(--transition-slow), opacity var(--transition-slow);
}

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

.cookie-banner p {
    margin: 0 0 var(--space-4);
    font-size: var(--fs-sm);
    color: var(--color-text-muted);
}

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

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

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

.modal {
    width: min(480px, 100%);
    max-height: 90vh;
    overflow: auto;
    padding: var(--space-8);
    border-radius: var(--radius-xl);
    border: 1px solid var(--color-border);
    background: rgba(22, 24, 34, 0.92);
    backdrop-filter: blur(20px);
    box-shadow: var(--shadow-lg);
}

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

.modal .toggle-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-4);
    padding: var(--space-3) 0;
    border-bottom: 1px solid var(--color-border);
    font-size: var(--fs-sm);
}

.modal .toggle-row input:disabled {
    opacity: 0.5;
}

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

.policy-page {
    padding: 0 0 var(--space-20);
    overflow-x: hidden;
}

.legal-hero {
    position: relative;
    padding: var(--space-16) var(--space-6) var(--space-12);
    margin-bottom: var(--space-10);
    background: linear-gradient(135deg, rgba(255, 111, 145, 0.15) 0%, rgba(110, 198, 255, 0.1) 45%, rgba(216, 180, 255, 0.12) 100%);
    border-bottom: 1px solid var(--color-border);
}

.legal-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(600px 280px at 20% 30%, rgba(255, 191, 166, 0.2), transparent 55%),
        radial-gradient(500px 240px at 80% 70%, rgba(200, 255, 212, 0.12), transparent 50%);
    pointer-events: none;
}

.legal-hero__inner {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
}

.legal-hero__label {
    display: inline-block;
    padding: var(--space-2) var(--space-4);
    margin-bottom: var(--space-4);
    font-size: var(--fs-xs);
    font-weight: var(--fw-bold);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--color-mint);
    border: 1px solid rgba(200, 255, 212, 0.35);
    border-radius: var(--radius-full);
    background: rgba(15, 17, 24, 0.4);
}

.legal-hero h1 {
    margin: 0 0 var(--space-4);
    font-size: var(--fs-3xl);
    line-height: var(--lh-tight);
    background: linear-gradient(120deg, var(--color-text), var(--color-peach));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.legal-updated {
    margin: 0;
    font-size: var(--fs-sm);
    color: var(--color-text-muted);
}

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

.legal-body {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 var(--space-6);
}

.legal-intro {
    font-size: var(--fs-md);
    line-height: 1.65;
    color: var(--color-text-muted);
    margin: 0 0 var(--space-10);
    padding: var(--space-6);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--color-coral);
    background: rgba(255, 255, 255, 0.04);
}

.legal-crosslink {
    margin-top: var(--space-8);
    margin-bottom: 0;
}

.legal-grid {
    display: grid;
    gap: var(--space-5);
    margin-bottom: var(--space-10);
}

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

.legal-card {
    padding: var(--space-6);
    border-radius: var(--radius-lg);
    border: 1px solid var(--color-border);
    background: rgba(22, 26, 36, 0.6);
    transition: transform var(--transition-base), box-shadow var(--transition-base);
}

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

.legal-card h2 {
    margin: 0 0 var(--space-3);
    font-size: var(--fs-lg);
    color: var(--color-peach);
}

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

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

.legal-section {
    margin-bottom: var(--space-12);
}

.legal-section h2 {
    font-size: var(--fs-xl);
    margin: 0 0 var(--space-4);
    padding-bottom: var(--space-3);
    border-bottom: 1px solid var(--color-border);
    color: var(--color-text);
}

.legal-section p,
.legal-section li {
    font-size: var(--fs-sm);
    color: var(--color-text-muted);
    line-height: 1.7;
}

.legal-section ul {
    padding-left: var(--space-6);
}

.legal-timeline {
    margin: var(--space-8) 0;
    padding-left: var(--space-6);
    border-left: 2px solid rgba(110, 198, 255, 0.35);
}

.legal-timeline__item {
    position: relative;
    padding-bottom: var(--space-8);
    padding-left: var(--space-4);
}

.legal-timeline__item::before {
    content: "";
    position: absolute;
    left: calc(-1 * var(--space-6) - 5px);
    top: 0.35rem;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--color-coral);
    box-shadow: 0 0 0 4px rgba(255, 111, 145, 0.25);
}

.legal-timeline__item h3 {
    margin: 0 0 var(--space-2);
    font-size: var(--fs-md);
    color: var(--color-sky);
}

.policy-page .contact-box {
    margin-top: var(--space-10);
    padding: var(--space-8);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(200, 255, 212, 0.25);
    background: linear-gradient(160deg, rgba(200, 255, 212, 0.08), rgba(110, 198, 255, 0.06));
    font-size: var(--fs-sm);
    color: var(--color-text-muted);
}

.policy-page .contact-box strong {
    color: var(--color-text);
}

.thankyou-page {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.thankyou-hero {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-16) var(--space-6);
    position: relative;
    overflow: hidden;
}

.thankyou-hero::before {
    content: "";
    position: absolute;
    inset: -20%;
    background: radial-gradient(circle at 30% 40%, rgba(255, 111, 145, 0.2), transparent 45%),
        radial-gradient(circle at 70% 60%, rgba(110, 198, 255, 0.18), transparent 45%);
    animation: thankyou-mesh 12s ease-in-out infinite;
}

@keyframes thankyou-mesh {

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

    50% {
        transform: scale(1.08) rotate(6deg);
    }
}

.thankyou-hero__inner {
    position: relative;
    z-index: 1;
    max-width: 560px;
    text-align: center;
}

.thankyou-badge {
    display: inline-flex;
    width: 88px;
    height: 88px;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-6);
    border-radius: 50%;
    background: linear-gradient(145deg, var(--color-coral), var(--color-sky));
    box-shadow: var(--shadow-glow-coral);
    animation: thankyou-pop 0.8s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.thankyou-badge span {
    font-size: 2.5rem;
    line-height: 1;
}

@keyframes thankyou-pop {
    from {
        transform: scale(0.5);
        opacity: 0;
    }

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

.thankyou-hero h1 {
    font-size: var(--fs-3xl);
    margin: 0 0 var(--space-4);
    line-height: var(--lh-tight);
}

.thankyou-hero__lead {
    font-size: var(--fs-lg);
    color: var(--color-text-muted);
    margin: 0 0 var(--space-6);
    line-height: 1.6;
}

.thankyou-hero__meta {
    font-size: var(--fs-sm);
    max-width: 52ch;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: var(--space-6);
    color: var(--color-text-muted);
    line-height: 1.6;
}

.thankyou-hero__grid {
    display: grid;
    gap: var(--space-4);
    text-align: left;
    margin-bottom: var(--space-8);
}

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

.thankyou-mini {
    padding: var(--space-5);
    border-radius: var(--radius-md);
    border: 1px solid var(--color-border);
    background: rgba(255, 255, 255, 0.04);
    font-size: var(--fs-sm);
    color: var(--color-text-muted);
}

.thankyou-mini strong {
    display: block;
    color: var(--color-peach);
    margin-bottom: var(--space-2);
    font-size: var(--fs-xs);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.thankyou-confetti {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.thankyou-confetti span {
    position: absolute;
    width: 8px;
    height: 12px;
    border-radius: 2px;
    opacity: 0.6;
    animation: confetti-fall 5s linear infinite;
}

.thankyou-confetti span:nth-child(odd) {
    background: var(--color-coral);
    left: 10%;
    animation-delay: 0s;
}

.thankyou-confetti span:nth-child(3n) {
    background: var(--color-sky);
    left: 50%;
    animation-delay: 1.2s;
}

.thankyou-confetti span:nth-child(3n + 1) {
    background: var(--color-mint);
    left: 80%;
    animation-delay: 2.4s;
}

@keyframes confetti-fall {
    0% {
        transform: translateY(-20%) rotate(0deg);
        opacity: 0;
    }

    10% {
        opacity: 0.7;
    }

    100% {
        transform: translateY(120vh) rotate(720deg);
        opacity: 0;
    }
}

@media (max-width: 399px) {
    .site-header {
        --header-h: 64px;
    }

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

    .brand {
        font-size: clamp(0.95rem, 4vw, 1.05rem);
        max-width: min(100%, 11rem);
    }

    .brand span {
        font-size: 0.65rem;
        line-height: 1.2;
    }

    .burger {
        width: 40px;
        height: 40px;
    }

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

    .hero__title {
        font-size: var(--fs-2xl);
    }

    .hero__tags {
        display: none;
    }

    .hero__price {
        flex-direction: column;
        align-items: flex-start;
        gap: var(--space-3);
    }

    .hero__price-tag {
        margin-left: 0;
    }

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

    .rhythm-lab {
        padding: var(--space-5);
    }

    .rhythm-tab {
        min-width: 0;
        font-size: var(--fs-xs);
        padding: var(--space-2) var(--space-3);
    }

    .stat-card__value {
        font-size: var(--fs-xl);
    }

    .cta-band {
        padding-left: var(--space-4);
        padding-right: var(--space-4);
    }

    .cookie-banner {
        left: var(--space-2);
        right: var(--space-2);
        bottom: var(--space-2);
        padding: var(--space-4);
    }

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

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

    .footer-links {
        flex-direction: column;
        gap: var(--space-3);
    }

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

    .legal-body {
        padding-left: var(--space-3);
        padding-right: var(--space-3);
    }

    .legal-hero h1 {
        font-size: var(--fs-2xl);
    }

    .faq details {
        padding: var(--space-3);
    }

    .ingredient-table th,
    .ingredient-table td {
        padding: var(--space-2) var(--space-3);
        font-size: var(--fs-xs);
    }
}