:root {
    --color-cream: #FFFAF0;
    --color-yellow: #FFD166;
    --color-grapefruit: #EF476F;
    --color-mint: #06D6A0;
    --color-blueberry: #118AB2;
    --color-text: #1a2f3a;
    --color-text-muted: rgba(26, 47, 58, 0.72);
    --color-border: rgba(255, 255, 255, 0.45);
    --color-glass: rgba(255, 250, 240, 0.72);
    --font-display: "Outfit", system-ui, sans-serif;
    --font-body: "DM Sans", system-ui, sans-serif;
    --font-mono: "IBM Plex Mono", ui-monospace, monospace;
    --fs-display-xl: clamp(2.25rem, 4vw + 1rem, 3.25rem);
    --fs-display-lg: clamp(1.75rem, 2vw + 1rem, 2.25rem);
    --fs-body: 1rem;
    --fs-small: 0.875rem;
    --fs-micro: 0.75rem;
    --lh-tight: 1.15;
    --lh-body: 1.6;
    --track-tight: -0.02em;
    --shadow-soft: 0 8px 32px rgba(17, 138, 178, 0.08);
    --shadow-card: 0 4px 24px rgba(17, 138, 178, 0.06);
    --shadow-glow-mint: 0 0 0 1px rgba(6, 214, 160, 0.25), 0 0 24px rgba(6, 214, 160, 0.15);
    --radius-xl: 24px;
    --radius-btn: 18px;
    --radius-input: 14px;
    --space-section-y-desktop: clamp(7.5rem, 12vw, 10rem);
    --space-section-y-mobile: clamp(4rem, 10vw, 5rem);
    --space-card: clamp(1.5rem, 2vw, 2rem);
    --space-grid: clamp(1.5rem, 2vw, 2rem);
    --max-width: 1180px;
    --header-h: 4.25rem;
    --transition-fast: 0.3s ease;
    --transition-med: 0.45s ease;
}

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

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

body {
    margin: 0;
    font-family: var(--font-body);
    font-size: var(--fs-body);
    font-weight: 400;
    line-height: var(--lh-body);
    color: var(--color-text);
    background: var(--color-cream);
    overflow-x: hidden;
}

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

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

a:not(.btn):not(.nav__link):not(.footer__link):not(.cookie-banner__link) {
    background-image: linear-gradient(currentColor, currentColor);
    background-position: 0 100%;
    background-repeat: no-repeat;
    background-size: 0% 1px;
    transition: background-size var(--transition-fast), color var(--transition-fast);
}

a:not(.btn):not(.nav__link):not(.footer__link):not(.cookie-banner__link):hover {
    background-size: 100% 1px;
}

.skip-link {
    position: absolute;
    left: -9999px;
    z-index: 10000;
    padding: 0.75rem 1rem;
    background: var(--color-blueberry);
    color: var(--color-cream);
    border-radius: var(--radius-input);
}

.skip-link:focus {
    left: 1rem;
    top: 1rem;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    height: var(--header-h);
    display: flex;
    align-items: center;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    background: rgba(255, 250, 240, 0.72);
    border-bottom: 1px solid rgba(17, 138, 178, 0.12);
}

.site-header__inner {
    width: min(100% - 2rem, var(--max-width));
    margin-inline: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.brand {
    font-family: var(--font-display);
    font-weight: 800;
    letter-spacing: var(--track-tight);
    font-size: 1.05rem;
    color: var(--color-text);
}

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

.nav {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-end;
    gap: 0.35rem 1.25rem;
}

.nav__link {
    font-size: var(--fs-small);
    font-weight: 500;
    color: var(--color-text-muted);
    padding: 0.35rem 0;
    position: relative;
}

.nav__link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 1px;
    background: var(--color-mint);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition-fast);
}

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

.nav__link:hover::after {
    transform: scaleX(1);
}

.burger {
    display: none;
    width: 46px;
    height: 46px;
    padding: 0;
    border: 1px solid rgba(17, 138, 178, 0.28);
    border-radius: 14px;
    background: linear-gradient(145deg, rgba(255, 250, 240, 0.95), rgba(255, 209, 102, 0.12));
    cursor: pointer;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 6px;
    z-index: 1002;
    transition: box-shadow var(--transition-fast), border-color var(--transition-fast), transform var(--transition-fast);
}

.burger:hover {
    border-color: var(--color-mint);
    box-shadow: var(--shadow-glow-mint);
}

.burger__line {
    display: block;
    width: 22px;
    height: 2px;
    border-radius: 1px;
    background: var(--color-blueberry);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.25s ease;
}

body.nav-open .burger__line:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

body.nav-open .burger__line:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

body.nav-open .burger__line:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

.nav-backdrop {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 999;
    background: rgba(26, 47, 58, 0.45);
    backdrop-filter: blur(4px);
    opacity: 0;
    transition: opacity 0.35s ease;
    pointer-events: none;
}

body.nav-open .nav-backdrop {
    opacity: 1;
    pointer-events: auto;
}

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

    .nav-backdrop {
        display: block;
    }

    body.nav-open {
        overflow: hidden;
    }

    .site-header {
        z-index: 1001;
    }

    .site-header__inner {
        position: relative;
        z-index: 1003;
    }

    .nav {
        position: fixed;
        top: 0;
        right: 0;
        width: min(88vw, 20rem);
        height: 100vh;
        height: 100dvh;
        margin: 0;
        padding: calc(var(--header-h) + 1.25rem) 1.25rem 2rem;
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        gap: 0.15rem;
        background: linear-gradient(180deg, rgba(255, 250, 240, 0.98) 0%, rgba(255, 250, 240, 0.92) 40%, rgba(6, 214, 160, 0.08) 100%);
        backdrop-filter: blur(20px);
        border-left: 1px solid rgba(17, 138, 178, 0.15);
        box-shadow: -12px 0 40px rgba(17, 138, 178, 0.12);
        transform: translateX(100%);
        transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 1001;
        display: flex;
        visibility: hidden;
    }

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

    .nav__link {
        padding: 0.85rem 0.75rem;
        border-radius: 12px;
        font-size: 1rem;
        transition: background var(--transition-fast), color var(--transition-fast);
    }

    .nav__link:hover {
        background: rgba(17, 138, 178, 0.08);
    }

    .nav__link::after {
        display: none;
    }
}

.section {
    padding-block: var(--space-section-y-mobile);
}

@media (min-width: 768px) {
    .section {
        padding-block: var(--space-section-y-desktop);
    }
}

.section__inner {
    width: min(100% - 2rem, var(--max-width));
    margin-inline: auto;
}

.section__eyebrow {
    font-family: var(--font-mono);
    font-size: var(--fs-micro);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--color-blueberry);
    margin: 0 0 0.75rem;
}

.section__title {
    font-family: var(--font-display);
    font-weight: 800;
    letter-spacing: var(--track-tight);
    font-size: var(--fs-display-lg);
    line-height: var(--lh-tight);
    margin: 0 0 1rem;
    color: var(--color-text);
}

.section__lead {
    max-width: 42rem;
    color: var(--color-text-muted);
    margin: 0 0 2rem;
}

.section__lead--center {
    margin-left: auto;
    margin-right: auto;
}

.product-note {
    margin-top: 1rem;
    color: var(--color-text-muted);
    font-size: var(--fs-small);
}

.cta-final .btn--primary {
    max-width: 16rem;
    margin-inline: auto;
}

.hero {
    position: relative;
    padding-block: var(--space-section-y-mobile);
    overflow: hidden;
    isolation: isolate;
}

@media (min-width: 768px) {
    .hero {
        padding-block: calc(var(--space-section-y-desktop) * 0.85);
    }
}

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

.hero__aurora {
    position: absolute;
    inset: -35% -20%;
    background: linear-gradient(125deg,
            rgba(255, 209, 102, 0.45) 0%,
            rgba(239, 71, 111, 0.12) 25%,
            rgba(6, 214, 160, 0.28) 50%,
            rgba(17, 138, 178, 0.2) 75%,
            rgba(255, 209, 102, 0.35) 100%);
    background-size: 400% 400%;
    animation: hero-aurora-shift 22s ease-in-out infinite;
    opacity: 0.75;
}

@keyframes hero-aurora-shift {

    0%,
    100% {
        background-position: 0% 40%;
        transform: scale(1) rotate(0deg);
    }

    50% {
        background-position: 100% 60%;
        transform: scale(1.06) rotate(2deg);
    }
}

.hero__grain {
    position: absolute;
    inset: 0;
    opacity: 0.35;
    background-image: radial-gradient(rgba(26, 47, 58, 0.12) 1px, transparent 1px);
    background-size: 14px 14px;
    animation: hero-grain-shift 18s linear infinite;
}

@keyframes hero-grain-shift {
    to {
        background-position: 14px 14px;
    }
}

.hero__blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(44px);
    opacity: 0.5;
    animation: blob-drift 20s ease-in-out infinite;
}

.hero__blob--a {
    width: min(65vw, 340px);
    height: min(65vw, 340px);
    top: -12%;
    left: -8%;
    background: radial-gradient(circle, rgba(255, 209, 102, 0.6), transparent 68%);
}

.hero__blob--b {
    width: min(55vw, 300px);
    height: min(55vw, 300px);
    bottom: 0;
    right: -10%;
    background: radial-gradient(circle, rgba(6, 214, 160, 0.45), transparent 68%);
    animation-delay: -7s;
}

.hero__blob--c {
    width: min(42vw, 240px);
    height: min(42vw, 240px);
    top: 38%;
    left: 42%;
    background: radial-gradient(circle, rgba(239, 71, 111, 0.2), transparent 72%);
    animation-delay: -14s;
}

@keyframes blob-drift {

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

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

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

.hero__beam {
    position: absolute;
    width: 140%;
    height: 3px;
    top: 22%;
    left: -20%;
    background: linear-gradient(90deg, transparent, rgba(255, 250, 240, 0.5), transparent);
    transform: rotate(-8deg);
    animation: hero-beam-sweep 10s ease-in-out infinite;
    opacity: 0.4;
}

.hero__beam--2 {
    top: 58%;
    left: -15%;
    transform: rotate(5deg);
    animation-delay: -5s;
    animation-duration: 14s;
}

@keyframes hero-beam-sweep {

    0%,
    100% {
        opacity: 0.15;
        transform: rotate(-8deg) translateX(-3%);
    }

    50% {
        opacity: 0.45;
        transform: rotate(-8deg) translateX(3%);
    }
}

.hero__beam--2 {
    animation-name: hero-beam-sweep-2;
}

@keyframes hero-beam-sweep-2 {

    0%,
    100% {
        opacity: 0.1;
        transform: rotate(5deg) translateX(2%);
    }

    50% {
        opacity: 0.35;
        transform: rotate(5deg) translateX(-4%);
    }
}

.hero__watermark {
    position: absolute;
    left: 50%;
    top: 42%;
    transform: translate(-50%, -50%);
    font-family: var(--font-display);
    font-weight: 800;
    font-size: clamp(4.5rem, 22vw, 14rem);
    letter-spacing: -0.04em;
    line-height: 0.85;
    color: rgba(17, 138, 178, 0.06);
    white-space: nowrap;
    animation: hero-watermark-float 28s ease-in-out infinite;
}

@keyframes hero-watermark-float {

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

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

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 85% 55% at 50% 15%, rgba(255, 250, 240, 0.9) 0%, transparent 50%),
        radial-gradient(ellipse 70% 45% at 85% 70%, rgba(255, 209, 102, 0.08) 0%, transparent 45%),
        linear-gradient(180deg, var(--color-cream) 0%, rgba(255, 250, 240, 0.97) 55%, var(--color-cream) 100%);
    z-index: 0;
}

.hero__inner {
    position: relative;
    z-index: 1;
    width: min(100% - 2rem, var(--max-width));
    margin-inline: auto;
    display: grid;
    gap: var(--space-grid);
    align-items: center;
}

@media (min-width: 992px) {
    .hero__inner {
        grid-template-columns: 1fr 1fr;
        gap: clamp(2rem, 4vw, 3.5rem);
    }
}

.hero__visual {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero__product-stage {
    position: relative;
    width: 100%;
    max-width: 420px;
    min-height: min(52vh, 440px);
    margin-inline: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
}

.hero__orbit {
    position: absolute;
    width: min(100%, 400px);
    aspect-ratio: 1;
    left: 50%;
    top: 50%;
    translate: -50% -50%;
    pointer-events: none;
}

.hero__orbit-ring {
    position: absolute;
    left: 50%;
    top: 50%;
    border-radius: 50%;
    border: 1px solid rgba(17, 138, 178, 0.22);
    transform-origin: center center;
}

.hero__orbit .hero__orbit-ring:nth-child(1) {
    width: 100%;
    height: 100%;
    border-color: rgba(17, 138, 178, 0.18);
    transform: translate(-50%, -50%) rotate(0deg);
    animation: hero-orbit-1 48s linear infinite;
}

.hero__orbit .hero__orbit-ring:nth-child(2) {
    width: 82%;
    height: 82%;
    border-style: dashed;
    border-color: rgba(6, 214, 160, 0.35);
    transform: translate(-50%, -50%) rotate(0deg);
    animation: hero-orbit-2 64s linear infinite reverse;
}

.hero__orbit .hero__orbit-ring:nth-child(3) {
    width: 64%;
    height: 64%;
    border-color: rgba(255, 209, 102, 0.4);
    transform: translate(-50%, -50%) rotate(0deg);
    animation: hero-orbit-3 36s linear infinite;
}

@keyframes hero-orbit-1 {
    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

@keyframes hero-orbit-2 {
    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

@keyframes hero-orbit-3 {
    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

.hero__glow {
    position: absolute;
    width: min(100%, 360px);
    aspect-ratio: 1;
    border-radius: 50%;
    left: 50%;
    top: 50%;
    translate: -50% -50%;
    background: radial-gradient(circle, rgba(255, 209, 102, 0.5) 0%, rgba(239, 71, 111, 0.12) 42%, transparent 68%);
    filter: blur(12px);
    z-index: 0;
    animation: hero-glow 7s ease-in-out infinite alternate;
}

@keyframes hero-glow {
    from {
        opacity: 0.75;
        transform: scale(0.96);
    }

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

.hero__product-wrap {
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 24px 40px rgba(17, 138, 178, 0.18));
    animation: hero-float 6s ease-in-out infinite;
}

@keyframes hero-float {

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

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

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

.hero__sparkle {
    position: absolute;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--color-cream);
    box-shadow: 0 0 10px rgba(255, 250, 240, 0.95), 0 0 18px rgba(6, 214, 160, 0.45);
    animation: hero-twinkle 2.8s ease-in-out infinite;
}

.hero__sparkle:nth-child(1) {
    top: 18%;
    left: 12%;
    animation-delay: 0s;
}

.hero__sparkle:nth-child(2) {
    top: 28%;
    right: 8%;
    animation-delay: 0.4s;
}

.hero__sparkle:nth-child(3) {
    bottom: 32%;
    left: 6%;
    animation-delay: 0.8s;
}

.hero__sparkle:nth-child(4) {
    bottom: 22%;
    right: 14%;
    animation-delay: 1.2s;
}

.hero__sparkle:nth-child(5) {
    top: 48%;
    left: 4%;
    animation-delay: 1.6s;
}

.hero__sparkle:nth-child(6) {
    top: 52%;
    right: 6%;
    animation-delay: 0.2s;
}

.hero__sparkle:nth-child(7) {
    top: 8%;
    left: 44%;
    animation-delay: 2s;
}

.hero__sparkle:nth-child(8) {
    bottom: 12%;
    left: 48%;
    animation-delay: 2.4s;
}

@keyframes hero-twinkle {

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

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

.hero__chips {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1.25rem;
}

.hero__chip {
    font-family: var(--font-mono);
    font-size: var(--fs-micro);
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 0.45rem 0.85rem;
    border-radius: 999px;
    border: 1px solid rgba(17, 138, 178, 0.2);
    background: rgba(255, 255, 255, 0.45);
    color: var(--color-blueberry);
    animation: hero-chip-in 0.65s cubic-bezier(0.34, 1.3, 0.64, 1) both;
    transition: transform var(--transition-fast), border-color var(--transition-fast), box-shadow var(--transition-fast);
}

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

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

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

.hero__chip:hover {
    transform: translateY(-3px) scale(1.03);
    border-color: rgba(6, 214, 160, 0.45);
    box-shadow: 0 6px 20px rgba(17, 138, 178, 0.12);
}

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

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

.hero__trust-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 0.75rem 1.25rem;
    margin-top: 1.35rem;
}

.hero__trust-visual {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.35rem;
}

.hero__trust-note {
    font-size: var(--fs-micro);
    line-height: 1.35;
    color: var(--color-text-muted);
    margin: 0;
    max-width: 17rem;
    text-align: center;
}

.hero__price-note {
    font-size: var(--fs-micro);
    line-height: 1.45;
    color: var(--color-text-muted);
    margin: 0.75rem 0 0;
    max-width: 36rem;
}

.ingredient-intro {
    font-size: var(--fs-small);
    color: var(--color-text-muted);
    max-width: 42rem;
    margin: 0 0 1.25rem;
    line-height: 1.5;
}

.review-disclosure {
    font-size: var(--fs-small);
    color: var(--color-text-muted);
    max-width: 42rem;
    margin: 0 0 1.25rem;
    line-height: 1.5;
}

.form__fineprint {
    font-size: var(--fs-micro);
    line-height: 1.45;
    color: var(--color-text-muted);
    margin: 0 0 1rem;
    max-width: 42rem;
}

.stars {
    display: inline-flex;
    gap: 0.15rem;
    color: var(--color-yellow);
}

.stars i {
    font-size: 16px;
    line-height: 1;
}

.stars .stars__empty {
    color: rgba(26, 47, 58, 0.22);
}

.hero__stars i {
    font-size: 18px;
    animation: hero-star-pop 2.5s ease-in-out infinite;
}

.hero__stars i:nth-child(1) {
    animation-delay: 0s;
}

.hero__stars i:nth-child(2) {
    animation-delay: 0.1s;
}

.hero__stars i:nth-child(3) {
    animation-delay: 0.2s;
}

.hero__stars i:nth-child(4) {
    animation-delay: 0.3s;
}

.hero__stars i:nth-child(5) {
    animation-delay: 0.4s;
}

.hero__verified {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-family: var(--font-mono);
    font-size: var(--fs-micro);
    font-weight: 600;
    letter-spacing: 0.04em;
    color: var(--color-blueberry);
    padding: 0.35rem 0.75rem;
    border-radius: 999px;
    border: 1px solid rgba(6, 214, 160, 0.35);
    background: rgba(255, 255, 255, 0.55);
}

.hero__verified i {
    font-size: 1rem;
    color: var(--color-mint);
}

@keyframes hero-star-pop {

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

    50% {
        transform: translateY(-2px) scale(1.08);
    }
}

.hero__content {
    width: 100%;
}

.hero__kicker {
    font-family: var(--font-mono);
    font-size: var(--fs-micro);
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--color-blueberry);
    margin: 0 0 0.65rem;
    padding: 0.35rem 0.75rem;
    display: inline-block;
    border-radius: 999px;
    border: 1px solid rgba(17, 138, 178, 0.22);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.65), rgba(6, 214, 160, 0.08));
    animation: hero-enter-up 0.75s cubic-bezier(0.4, 0, 0.2, 1) both;
}

.hero__headline {
    font-family: var(--font-display);
    font-weight: 800;
    letter-spacing: var(--track-tight);
    font-size: var(--fs-display-xl);
    line-height: var(--lh-tight);
    margin: 0 0 1rem;
    color: var(--color-text);
    animation: hero-enter-up 0.8s 0.06s cubic-bezier(0.4, 0, 0.2, 1) both;
}

.hero__desc {
    color: var(--color-text-muted);
    margin: 0 0 1.5rem;
    max-width: 36rem;
    animation: hero-enter-up 0.8s 0.12s cubic-bezier(0.4, 0, 0.2, 1) both;
}

.hero__price-block {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.65rem 1rem;
    margin-bottom: 1.25rem;
    animation: hero-enter-up 0.85s 0.18s cubic-bezier(0.4, 0, 0.2, 1) both;
}

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

.hero__price {
    animation: hero-price-pulse 3s ease-in-out infinite;
}

@keyframes hero-price-pulse {

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

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

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

.hero__save {
    font-family: var(--font-mono);
    font-size: var(--fs-micro);
    font-weight: 600;
    color: var(--color-grapefruit);
    padding: 0.25rem 0.55rem;
    border-radius: 8px;
    background: rgba(239, 71, 111, 0.1);
    border: 1px solid rgba(239, 71, 111, 0.2);
    animation: hero-save-blink 4s ease-in-out infinite;
}

@keyframes hero-save-blink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.72;
    }
}

.hero__highlights {
    list-style: none;
    margin: 0 0 2rem;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.hero__highlights li {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    font-size: var(--fs-small);
    color: var(--color-text);
    animation: hero-enter-up 0.75s cubic-bezier(0.4, 0, 0.2, 1) both;
}

.hero__highlights li:nth-child(1) {
    animation-delay: 0.24s;
}

.hero__highlights li:nth-child(2) {
    animation-delay: 0.32s;
}

.hero__highlights li:nth-child(3) {
    animation-delay: 0.4s;
}

.hero__highlights li::before {
    content: "";
    width: 8px;
    height: 8px;
    margin-top: 0.38rem;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-mint), var(--color-blueberry));
    flex-shrink: 0;
    animation: hero-dot-pulse 2s ease-in-out infinite;
}

@keyframes hero-dot-pulse {

    0%,
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(6, 214, 160, 0.35);
    }

    50% {
        transform: scale(1.1);
        box-shadow: 0 0 0 4px rgba(6, 214, 160, 0);
    }
}

.hero__form-block {
    background: rgba(255, 255, 255, 0.58);
    border: 1px solid rgba(17, 138, 178, 0.14);
    border-radius: var(--radius-xl);
    padding: var(--space-card);
    box-shadow: 0 8px 40px rgba(17, 138, 178, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(8px);
    animation: hero-enter-up 0.9s 0.28s cubic-bezier(0.4, 0, 0.2, 1) both;
    transition: box-shadow 0.4s ease, border-color 0.4s ease;
}

.hero__form-block:hover {
    box-shadow: 0 12px 48px rgba(17, 138, 178, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.9);
    border-color: rgba(6, 214, 160, 0.25);
}

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

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

.form__title {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.125rem;
    margin: 0 0 1.25rem;
    letter-spacing: var(--track-tight);
}

.floating-field {
    position: relative;
    margin-bottom: 1.25rem;
}

.floating-field input,
.floating-field textarea {
    width: 100%;
    padding: 1.15rem 0.9rem 0.45rem;
    font-family: var(--font-body);
    font-size: var(--fs-body);
    border: 1px solid rgba(17, 138, 178, 0.22);
    border-radius: var(--radius-input);
    background: var(--color-cream);
    color: var(--color-text);
    transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.floating-field textarea {
    min-height: 6rem;
    resize: vertical;
}

.floating-field label {
    position: absolute;
    left: 0.9rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: var(--fs-body);
    color: var(--color-text-muted);
    pointer-events: none;
    transition: transform var(--transition-fast), font-size var(--transition-fast), color var(--transition-fast);
}

.floating-field textarea+label {
    top: 1.25rem;
    transform: translateY(0);
}

.floating-field input:focus,
.floating-field textarea:focus {
    outline: none;
    border-color: var(--color-mint);
    box-shadow: var(--shadow-glow-mint);
}

.floating-field input:focus+label,
.floating-field input:not(:placeholder-shown)+label,
.floating-field textarea:focus+label,
.floating-field textarea:not(:placeholder-shown)+label {
    top: 0.45rem;
    transform: translateY(0);
    font-size: var(--fs-micro);
    color: var(--color-blueberry);
}

.floating-field--error input,
.floating-field--error textarea {
    border-color: var(--color-grapefruit);
}

.field-error {
    font-size: var(--fs-micro);
    color: var(--color-grapefruit);
    margin: 0.35rem 0 0;
    min-height: 1.1rem;
}

.checkbox-field {
    display: flex;
    align-items: flex-start;
    gap: 0.65rem;
    margin-bottom: 1.25rem;
}

.checkbox-field input {
    width: 1.1rem;
    height: 1.1rem;
    margin-top: 0.2rem;
    accent-color: var(--color-mint);
    flex-shrink: 0;
}

.checkbox-field label {
    font-size: var(--fs-small);
    color: var(--color-text-muted);
}

.checkbox-field--gdpr .field-error {
    margin-top: 0.35rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: var(--fs-body);
    padding: 0.85rem 1.5rem;
    border-radius: var(--radius-btn);
    border: none;
    cursor: pointer;
    transition: transform var(--transition-fast), filter var(--transition-fast), box-shadow var(--transition-fast);
}

.btn:active {
    transform: scale(0.98);
}

.btn--primary {
    background: linear-gradient(135deg, var(--color-mint) 0%, var(--color-blueberry) 100%);
    color: var(--color-cream);
    width: 100%;
}

.btn--primary:hover {
    transform: scale(1.03);
    filter: brightness(1.05);
    box-shadow: 0 8px 28px rgba(17, 138, 178, 0.35);
}

.btn--secondary {
    background: transparent;
    color: var(--color-blueberry);
    border: 1px solid rgba(17, 138, 178, 0.35);
}

.btn--secondary:hover {
    transform: scale(1.03);
    border-color: var(--color-mint);
    box-shadow: var(--shadow-glow-mint);
}

.btn--ghost {
    background: rgba(255, 255, 255, 0.5);
    color: var(--color-text);
    border: 1px solid rgba(17, 138, 178, 0.15);
}

.btn--ghost:hover {
    transform: scale(1.03);
    border-color: var(--color-blueberry);
}

.rhythm-compass {
    background: radial-gradient(ellipse 90% 70% at 50% 0%, rgba(255, 209, 102, 0.14) 0%, transparent 55%),
        linear-gradient(180deg, rgba(17, 138, 178, 0.05) 0%, transparent 100%);
    position: relative;
    overflow: hidden;
}

.rhythm-compass__wrap {
    display: grid;
    gap: 1.75rem;
}

@media (min-width: 900px) {
    .rhythm-compass__wrap {
        grid-template-columns: minmax(0, 14rem) 1fr;
        align-items: start;
    }
}

.rhythm-compass__tabs {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.rhythm-tab {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: var(--fs-small);
    letter-spacing: var(--track-tight);
    text-align: left;
    padding: 0.9rem 1rem;
    border-radius: 16px;
    border: 1px solid rgba(17, 138, 178, 0.18);
    background: rgba(255, 255, 255, 0.45);
    color: var(--color-text-muted);
    cursor: pointer;
    transition: transform var(--transition-fast), border-color var(--transition-fast), box-shadow var(--transition-fast), background var(--transition-fast), color var(--transition-fast);
}

.rhythm-tab:hover {
    border-color: rgba(6, 214, 160, 0.45);
    transform: translateX(4px);
}

.rhythm-tab.is-active {
    color: var(--color-text);
    border-color: rgba(17, 138, 178, 0.35);
    background: linear-gradient(135deg, rgba(255, 250, 240, 0.95), rgba(6, 214, 160, 0.12));
    box-shadow: 0 8px 28px rgba(17, 138, 178, 0.1);
}

.rhythm-compass__stage {
    position: relative;
    min-height: 22rem;
}

.rhythm-panel {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    padding: var(--space-card);
    border-radius: var(--radius-xl);
    border: 1px solid rgba(17, 138, 178, 0.12);
    background: rgba(255, 255, 255, 0.55);
    box-shadow: var(--shadow-card);
    opacity: 0;
    transform: translateY(12px) scale(0.98);
    pointer-events: none;
    transition: opacity 0.45s ease, transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.rhythm-panel h3 {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1.35rem;
    letter-spacing: var(--track-tight);
    margin: 0 0 0.65rem;
    position: relative;
    z-index: 1;
}

.rhythm-panel p {
    margin: 0 0 1rem;
    color: var(--color-text-muted);
    font-size: var(--fs-small);
    position: relative;
    z-index: 1;
    max-width: 36rem;
}

.rhythm-compass__list {
    margin: 0;
    padding-left: 1.15rem;
    color: var(--color-text);
    font-size: var(--fs-small);
    position: relative;
    z-index: 1;
}

.rhythm-compass__list li {
    margin-bottom: 0.4rem;
}

.rhythm-compass__orb {
    position: absolute;
    width: 140px;
    height: 140px;
    border-radius: 50%;
    top: -20px;
    right: -10px;
    filter: blur(0.5px);
    animation: orb-pulse 5s ease-in-out infinite;
}

.rhythm-compass__orb--dawn {
    background: radial-gradient(circle at 30% 30%, rgba(255, 209, 102, 0.9), rgba(239, 71, 111, 0.25) 60%, transparent 70%);
    opacity: 0.85;
}

.rhythm-compass__orb--noon {
    background: radial-gradient(circle at 40% 40%, rgba(6, 214, 160, 0.75), rgba(17, 138, 178, 0.3) 65%, transparent 72%);
    opacity: 0.8;
}

.rhythm-compass__orb--dusk {
    background: radial-gradient(circle at 50% 60%, rgba(17, 138, 178, 0.55), rgba(239, 71, 111, 0.2) 70%, transparent 75%);
    opacity: 0.75;
}

@keyframes orb-pulse {

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

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

.rhythm-compass__ring {
    position: absolute;
    width: 100px;
    height: 100px;
    bottom: 1rem;
    right: 1.25rem;
    border-radius: 50%;
    border: 1px solid rgba(17, 138, 178, 0.15);
    display: grid;
    place-items: center;
    z-index: 0;
}

.rhythm-compass__ring-fill {
    display: block;
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: conic-gradient(from 0deg, var(--color-mint) 0%, var(--color-mint) 72%, rgba(17, 138, 178, 0.12) 72%);
    animation: ring-spin 8s linear infinite;
    mask: radial-gradient(farthest-side, transparent calc(100% - 6px), #000 calc(100% - 6px + 1px));
    -webkit-mask: radial-gradient(farthest-side, transparent calc(100% - 6px), #000 calc(100% - 6px + 1px));
}

.rhythm-compass__ring--mid .rhythm-compass__ring-fill {
    background: conic-gradient(from 120deg, var(--color-blueberry) 0%, var(--color-blueberry) 55%, rgba(255, 209, 102, 0.35) 55%);
    animation-duration: 11s;
}

.rhythm-compass__ring--eve .rhythm-compass__ring-fill {
    background: conic-gradient(from 240deg, var(--color-grapefruit) 0%, var(--color-grapefruit) 48%, rgba(17, 138, 178, 0.2) 48%);
    animation-duration: 14s;
}

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

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

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

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

    .bento__item--tall {
        grid-row: span 2;
    }
}

.bento__item {
    background: rgba(255, 255, 255, 0.55);
    border: 1px solid rgba(255, 255, 255, 0.55);
    border-radius: var(--radius-xl);
    padding: var(--space-card);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
    transition: transform var(--transition-fast), border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.bento__item:hover {
    transform: translateY(-4px);
    border-color: rgba(17, 138, 178, 0.25);
    box-shadow: var(--shadow-soft), inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.js-reveal .bento__item {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 0.55s ease, transform 0.55s ease;
}

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

.js-reveal.is-visible .bento__item:nth-child(1) {
    transition-delay: 0.05s;
}

.js-reveal.is-visible .bento__item:nth-child(2) {
    transition-delay: 0.1s;
}

.js-reveal.is-visible .bento__item:nth-child(3) {
    transition-delay: 0.15s;
}

.js-reveal.is-visible .bento__item:nth-child(4) {
    transition-delay: 0.2s;
}

.js-reveal.is-visible .bento__item:nth-child(5) {
    transition-delay: 0.25s;
}

.js-reveal.is-visible .bento__item:nth-child(6) {
    transition-delay: 0.3s;
}

.bento__icon {
    width: 48px;
    height: 48px;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.9), rgba(6, 214, 160, 0.08));
    border: 1px solid rgba(17, 138, 178, 0.12);
}

.bento__icon i {
    font-size: 1.35rem;
    color: var(--color-blueberry);
}

.bento__item h3 {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.05rem;
    letter-spacing: var(--track-tight);
    margin: 0 0 0.5rem;
}

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

.split {
    display: grid;
    gap: 2.5rem;
    align-items: center;
}

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

.split__figure {
    border-radius: var(--radius-xl);
    overflow: hidden;
    border: 1px solid rgba(17, 138, 178, 0.12);
    box-shadow: var(--shadow-card);
}

.split__figure--icons {
    background: linear-gradient(160deg, rgba(255, 250, 240, 0.95) 0%, rgba(6, 214, 160, 0.1) 45%, rgba(17, 138, 178, 0.08) 100%);
    min-height: 280px;
    display: flex;
    flex-direction: column;
}

.product-icon-stack {
    position: relative;
    flex: 1;
    min-height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
}

.product-icon-stack__leaf {
    font-size: clamp(4.5rem, 18vw, 7rem);
    color: var(--color-mint);
    opacity: 0.85;
    filter: drop-shadow(0 8px 24px rgba(6, 214, 160, 0.35));
}

.product-icon-stack__cap {
    position: absolute;
    font-size: clamp(2.5rem, 10vw, 3.75rem);
    color: var(--color-blueberry);
    opacity: 0.9;
    right: 12%;
    bottom: 18%;
    filter: drop-shadow(0 6px 16px rgba(17, 138, 178, 0.25));
}

.split__figure figcaption {
    font-size: var(--fs-small);
    color: var(--color-text-muted);
    padding: 1rem 1rem 1.25rem;
}

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

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

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

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

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

    .spec-card--span-2 {
        grid-column: span 2;
    }

    .spec-card--span-3 {
        grid-column: span 3;
    }
}

@media (max-width: 767px) {

    .spec-grid--bento .spec-card--span-2,
    .spec-grid--bento .spec-card--span-3 {
        grid-column: 1 / -1;
    }
}

.spec-card {
    background: rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(17, 138, 178, 0.1);
    border-radius: var(--radius-xl);
    padding: var(--space-card);
    transition: transform var(--transition-fast), border-color var(--transition-fast);
}

.spec-card:hover {
    transform: translateY(-4px);
    border-color: rgba(6, 214, 160, 0.3);
}

.spec-card__label {
    font-family: var(--font-mono);
    font-size: var(--fs-micro);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--color-blueberry);
    margin: 0 0 0.35rem;
}

.spec-card__value {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.125rem;
    margin: 0;
}

.spec-card__note {
    font-size: var(--fs-small);
    color: var(--color-text-muted);
    margin: 0.5rem 0 0;
}

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

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

.step-card {
    text-align: center;
    padding: var(--space-card);
    background: rgba(255, 255, 255, 0.5);
    border: 1px solid rgba(17, 138, 178, 0.1);
    border-radius: var(--radius-xl);
    transition: transform var(--transition-fast), border-color var(--transition-fast);
}

.step-card:hover {
    transform: translateY(-4px);
    border-color: rgba(17, 138, 178, 0.22);
}

.step-card__num {
    font-family: var(--font-mono);
    font-size: var(--fs-micro);
    color: var(--color-mint);
    margin: 0 0 0.5rem;
}

.step-card__icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.65);
    border: 1px solid rgba(17, 138, 178, 0.12);
}

.step-card__icon i {
    font-size: 1.5rem;
    color: var(--color-blueberry);
}

.step-card h3 {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1rem;
    margin: 0 0 0.5rem;
    letter-spacing: var(--track-tight);
}

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

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

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

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

.ingredient-card {
    background: rgba(255, 255, 255, 0.55);
    border: 1px solid rgba(17, 138, 178, 0.1);
    border-radius: var(--radius-xl);
    padding: var(--space-card);
    transition: transform var(--transition-fast), border-color var(--transition-fast);
}

.ingredient-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 209, 102, 0.45);
}

.ingredient-card h3 {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.05rem;
    margin: 0 0 0.5rem;
}

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

.instructions {
    max-width: 40rem;
    margin-inline: auto;
}

.instruction-steps {
    list-style: none;
    margin: 0;
    padding: 0;
    counter-reset: step;
}

.instruction-steps li {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 1rem;
    align-items: start;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(17, 138, 178, 0.1);
}

.instruction-steps li:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.instruction-steps li::before {
    counter-increment: step;
    content: counter(step);
    font-family: var(--font-display);
    font-weight: 800;
    width: 2.25rem;
    height: 2.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--color-yellow), rgba(239, 71, 111, 0.35));
    border-radius: 50%;
    font-size: var(--fs-small);
    color: var(--color-text);
}

.instruction-steps__icon {
    width: 36px;
    height: 36px;
    margin-bottom: 0.35rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: rgba(17, 138, 178, 0.08);
}

.instruction-steps__icon i {
    font-size: 1.1rem;
    color: var(--color-blueberry);
}

.instruction-steps strong {
    display: block;
    font-family: var(--font-display);
    font-weight: 700;
    margin-bottom: 0.25rem;
}

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

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

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

.review-card {
    background: rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(17, 138, 178, 0.1);
    border-radius: var(--radius-xl);
    padding: var(--space-card);
    transition: transform var(--transition-fast), border-color var(--transition-fast);
}

.review-card:hover {
    transform: translateY(-4px);
    border-color: rgba(17, 138, 178, 0.22);
}

.review-card__header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.review-card__avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--color-mint), var(--color-blueberry));
    color: var(--color-cream);
}

.review-card__avatar i {
    font-size: 1.65rem;
}

.review-card__avatar--alt {
    background: linear-gradient(135deg, var(--color-yellow), var(--color-grapefruit));
}

.review-card__avatar--alt2 {
    background: linear-gradient(135deg, var(--color-blueberry), var(--color-mint));
}

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

.review-card__name {
    font-weight: 600;
    font-size: var(--fs-small);
    margin: 0;
}

.review-card__meta {
    font-family: var(--font-mono);
    font-size: var(--fs-micro);
    color: var(--color-text-muted);
    margin: 0;
}

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

.faq-list {
    max-width: 44rem;
    margin-inline: auto;
}

.faq-item {
    border: 1px solid rgba(17, 138, 178, 0.12);
    border-radius: var(--radius-xl);
    margin-bottom: 0.75rem;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.45);
    transition: border-color var(--transition-fast);
}

.faq-item:hover {
    border-color: rgba(17, 138, 178, 0.22);
}

.faq-item__trigger {
    width: 100%;
    text-align: left;
    padding: 1.1rem 1.25rem;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1rem;
    background: transparent;
    border: none;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    color: var(--color-text);
    transition: background var(--transition-fast);
}

.faq-item__trigger:hover {
    background: rgba(6, 214, 160, 0.06);
}

.faq-item__icon {
    width: 1.25rem;
    height: 1.25rem;
    flex-shrink: 0;
    font-size: 1.25rem;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-blueberry);
    transition: transform var(--transition-fast);
}

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

.faq-item__panel {
    display: none;
    padding: 0 1.25rem 1.1rem;
}

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

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

.cta-final {
    position: relative;
    overflow: hidden;
    text-align: center;
    background: radial-gradient(ellipse 80% 80% at 50% 0%, rgba(17, 138, 178, 0.12) 0%, transparent 55%),
        linear-gradient(180deg, rgba(6, 214, 160, 0.08) 0%, transparent 100%);
    border-radius: var(--radius-xl);
    padding: clamp(3rem, 8vw, 5rem) var(--space-card);
    border: 1px solid rgba(17, 138, 178, 0.12);
}

.cta-final::before {
    content: "";
    position: absolute;
    inset: -40%;
    background: radial-gradient(circle at 30% 40%, rgba(6, 214, 160, 0.12) 0%, transparent 45%),
        radial-gradient(circle at 70% 60%, rgba(255, 209, 102, 0.1) 0%, transparent 40%);
    animation: cta-shimmer 12s ease-in-out infinite;
    pointer-events: none;
}

.cta-final .section__title,
.cta-final .section__lead,
.cta-final .btn {
    position: relative;
    z-index: 1;
}

.cta-final .section__title {
    margin-bottom: 0.75rem;
}

.disclaimer {
    background: rgba(26, 47, 58, 0.04);
    border-top: 1px solid rgba(17, 138, 178, 0.1);
}

.disclaimer__inner {
    width: min(100% - 2rem, var(--max-width));
    margin-inline: auto;
    padding-block: var(--space-section-y-mobile);
}

.disclaimer p {
    font-size: var(--fs-small);
    color: var(--color-text-muted);
    margin: 0 0 0.75rem;
    max-width: 52rem;
}

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

.disclaimer__fda {
    font-weight: 500;
    color: var(--color-text);
}

.disclaimer__fineprint {
    font-size: var(--fs-micro);
    line-height: 1.45;
}

.site-footer {
    background: var(--color-text);
    color: rgba(255, 250, 240, 0.85);
    padding: 3rem 0 2rem;
}

.site-footer a {
    color: rgba(255, 250, 240, 0.9);
}

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

.footer__address {
    font-size: var(--fs-small);
    color: rgba(255, 250, 240, 0.75);
    margin: 0;
}

.site-footer__inner {
    width: min(100% - 2rem, var(--max-width));
    margin-inline: auto;
}

.site-footer__grid {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
    margin-bottom: 2rem;
}

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

.footer__title {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: var(--fs-small);
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin: 0 0 1rem;
    color: var(--color-cream);
}

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

.footer__list li {
    margin-bottom: 0.5rem;
}

.footer__link {
    font-size: var(--fs-small);
    position: relative;
}

.footer__link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -1px;
    width: 100%;
    height: 1px;
    background: currentColor;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition-fast);
}

.footer__link:hover::after {
    transform: scaleX(1);
}

.footer__contact-line {
    text-align: center;
    margin: 0 0 1rem;
    font-size: var(--fs-small);
    color: rgba(255, 250, 240, 0.88);
}

.footer__contact-line a {
    font-weight: 600;
}

.site-footer__bottom {
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 250, 240, 0.15);
    font-size: var(--fs-micro);
    color: rgba(255, 250, 240, 0.65);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 2000;
    padding: 1rem;
    display: none;
}

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

.cookie-banner__inner {
    max-width: var(--max-width);
    margin-inline: auto;
    background: rgba(26, 47, 58, 0.96);
    backdrop-filter: blur(16px);
    color: var(--color-cream);
    border-radius: var(--radius-xl);
    padding: 1.25rem 1.5rem;
    border: 1px solid rgba(255, 250, 240, 0.12);
    box-shadow: var(--shadow-soft);
}

.cookie-banner__text {
    font-size: var(--fs-small);
    margin: 0 0 1rem;
    line-height: 1.55;
}

.cookie-banner__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem 0.75rem;
}

.cookie-banner .btn--primary {
    width: auto;
}

.cookie-banner .btn--secondary {
    border-color: rgba(255, 250, 240, 0.35);
    color: var(--color-cream);
}

.cookie-banner .btn--secondary:hover {
    border-color: var(--color-mint);
    color: var(--color-cream);
}

.cookie-banner .btn--ghost {
    background: transparent;
    color: var(--color-cream);
    border-color: rgba(255, 250, 240, 0.2);
}

.cookie-modal {
    position: fixed;
    inset: 0;
    z-index: 2100;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    background: rgba(26, 47, 58, 0.55);
    backdrop-filter: blur(4px);
}

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

.cookie-modal__dialog {
    background: var(--color-cream);
    border-radius: var(--radius-xl);
    max-width: 420px;
    width: 100%;
    max-height: 90vh;
    overflow: auto;
    padding: 1.5rem;
    border: 1px solid rgba(17, 138, 178, 0.15);
    box-shadow: var(--shadow-soft);
}

.cookie-modal__dialog h2 {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1.25rem;
    margin: 0 0 1rem;
    letter-spacing: var(--track-tight);
}

.cookie-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(17, 138, 178, 0.1);
}

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

.cookie-row p {
    margin: 0;
    font-size: var(--fs-small);
}

.cookie-row small {
    display: block;
    font-size: var(--fs-micro);
    color: var(--color-text-muted);
    margin-top: 0.25rem;
}

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

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

.switch__slider {
    position: absolute;
    cursor: pointer;
    inset: 0;
    background: rgba(17, 138, 178, 0.25);
    border-radius: 26px;
    transition: background var(--transition-fast);
}

.switch__slider::before {
    content: "";
    position: absolute;
    height: 20px;
    width: 20px;
    left: 3px;
    bottom: 3px;
    background: var(--color-cream);
    border-radius: 50%;
    transition: transform var(--transition-fast);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

.switch input:checked+.switch__slider {
    background: var(--color-mint);
}

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

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

.cookie-modal__footer {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1.25rem;
}

.policy-page {
    padding-top: 2rem;
}

.policy-page h1 {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: var(--fs-display-lg);
    letter-spacing: var(--track-tight);
    margin: 0 0 1.5rem;
}

.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 {
    font-size: var(--fs-small);
    color: var(--color-text-muted);
}

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

.policy-page .policy-meta {
    font-family: var(--font-mono);
    font-size: var(--fs-micro);
    color: var(--color-blueberry);
    margin-bottom: 2rem;
}

.js-reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.55s ease, transform 0.55s ease;
}

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

@keyframes cta-shimmer {

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

    50% {
        transform: translate(2%, -2%) rotate(6deg);
    }
}

.faq-item {
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.faq-item:hover {
    transform: translateX(4px);
    box-shadow: 0 4px 20px rgba(17, 138, 178, 0.08);
}

.legal-shell {
    padding-top: 1.5rem;
    padding-bottom: 3rem;
}

.legal-hero {
    position: relative;
    padding: clamp(2rem, 5vw, 3.5rem);
    margin-bottom: 2.5rem;
    border-radius: var(--radius-xl);
    background: linear-gradient(135deg, rgba(17, 138, 178, 0.1) 0%, rgba(255, 209, 102, 0.12) 50%, rgba(6, 214, 160, 0.08) 100%);
    border: 1px solid rgba(17, 138, 178, 0.15);
    overflow: hidden;
}

.legal-hero::after {
    content: "";
    position: absolute;
    top: -50%;
    right: -20%;
    width: 60%;
    height: 200%;
    background: linear-gradient(105deg, transparent 40%, rgba(255, 250, 240, 0.35) 50%, transparent 60%);
    transform: rotate(12deg);
    pointer-events: none;
}

.legal-hero h1 {
    position: relative;
    z-index: 1;
    margin: 0 0 0.75rem;
    font-family: var(--font-display);
    font-weight: 800;
    font-size: clamp(1.75rem, 4vw, 2.35rem);
    letter-spacing: var(--track-tight);
}

.legal-hero__meta {
    position: relative;
    z-index: 1;
    font-family: var(--font-mono);
    font-size: var(--fs-micro);
    color: var(--color-blueberry);
    margin: 0;
}

.legal-hero__meta time {
    font-weight: 600;
}

.legal-layout {
    display: grid;
    gap: 2rem;
}

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

.legal-toc {
    position: sticky;
    top: calc(var(--header-h) + 1rem);
    padding: 1.25rem;
    border-radius: 18px;
    border: 1px solid rgba(17, 138, 178, 0.12);
    background: rgba(255, 255, 255, 0.55);
    box-shadow: var(--shadow-card);
}

.legal-toc strong {
    display: block;
    font-family: var(--font-display);
    font-size: var(--fs-small);
    margin-bottom: 0.75rem;
}

.legal-toc ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.legal-toc a {
    display: block;
    padding: 0.4rem 0;
    font-size: var(--fs-micro);
    color: var(--color-text-muted);
    border-left: 2px solid transparent;
    padding-left: 0.65rem;
    margin-left: -0.65rem;
    transition: border-color var(--transition-fast), color var(--transition-fast);
    background-image: none;
}

.legal-toc a:hover {
    color: var(--color-blueberry);
    border-left-color: var(--color-mint);
}

.legal-article {
    padding: 0 0 2rem;
}

.legal-block {
    margin-bottom: 2.25rem;
    padding: 1.5rem 1.25rem;
    border-radius: 18px;
    border: 1px solid rgba(17, 138, 178, 0.08);
    background: rgba(255, 255, 255, 0.4);
    transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.legal-block:hover {
    border-color: rgba(17, 138, 178, 0.18);
    box-shadow: var(--shadow-card);
}

.legal-block[id] {
    scroll-margin-top: calc(var(--header-h) + 1rem);
}

.legal-block h2 {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.2rem;
    margin: 0 0 0.75rem;
    letter-spacing: var(--track-tight);
}

.legal-block p,
.legal-block li {
    font-size: var(--fs-small);
    color: var(--color-text-muted);
    margin: 0 0 0.65rem;
}

.legal-block ul {
    padding-left: 1.2rem;
    margin: 0.5rem 0 0;
}

.legal-callout {
    margin-top: 1rem;
    padding: 1rem 1.1rem;
    border-radius: 14px;
    border: 1px dashed rgba(17, 138, 178, 0.35);
    background: rgba(6, 214, 160, 0.06);
    font-size: var(--fs-small);
    color: var(--color-text);
}

.legal-table-wrap {
    overflow-x: auto;
    margin: 1rem 0;
    border-radius: 12px;
    border: 1px solid rgba(17, 138, 178, 0.1);
}

.legal-table-wrap table {
    width: 100%;
    border-collapse: collapse;
    font-size: var(--fs-micro);
    min-width: 280px;
}

.legal-table-wrap th,
.legal-table-wrap td {
    padding: 0.65rem 0.75rem;
    text-align: left;
    border-bottom: 1px solid rgba(17, 138, 178, 0.08);
}

.legal-table-wrap th {
    font-family: var(--font-mono);
    font-weight: 500;
    color: var(--color-blueberry);
    background: rgba(17, 138, 178, 0.06);
}

.page-thank-you {
    min-height: 100vh;
    background: radial-gradient(ellipse 80% 50% at 50% -10%, rgba(255, 209, 102, 0.35) 0%, transparent 50%),
        linear-gradient(180deg, var(--color-cream) 0%, rgba(255, 250, 240, 0.98) 100%);
}

.thank-you-wrap {
    width: min(100% - 2rem, 40rem);
    margin-inline: auto;
    padding: clamp(2rem, 6vw, 4rem) 0;
}

.thank-you-hero {
    text-align: center;
    padding: 2.5rem 1.5rem 2rem;
    border-radius: var(--radius-xl);
    border: 1px solid rgba(17, 138, 178, 0.12);
    background: rgba(255, 255, 255, 0.55);
    box-shadow: var(--shadow-soft);
    position: relative;
    overflow: hidden;
}

.thank-you-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 0%, rgba(6, 214, 160, 0.15), transparent 55%);
    pointer-events: none;
}

.thank-you-hero__icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 1.25rem;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-mint), var(--color-blueberry));
    display: grid;
    place-items: center;
    z-index: 1;
    position: relative;
    animation: thank-pop 0.7s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

@keyframes thank-pop {
    from {
        transform: scale(0.6);
        opacity: 0;
    }

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

.thank-you-hero__icon svg {
    width: 36px;
    height: 36px;
    color: var(--color-cream);
}

.thank-you-hero h1 {
    position: relative;
    z-index: 1;
    font-family: var(--font-display);
    font-weight: 800;
    font-size: clamp(1.65rem, 4vw, 2.1rem);
    letter-spacing: var(--track-tight);
    margin: 0 0 1rem;
}

.thank-you-hero p {
    position: relative;
    z-index: 1;
    color: var(--color-text-muted);
    margin: 0 0 0.5rem;
    font-size: var(--fs-small);
}

.thank-you-hero__date {
    font-family: var(--font-mono);
    font-size: var(--fs-micro);
    color: var(--color-blueberry);
    margin: 0 0 1.5rem;
}

.thank-you-hero__date time {
    font-weight: 600;
}

.thank-you-steps {
    display: grid;
    gap: 2rem;
    margin-top: 2rem;
}

@media (min-width: 640px) {
    .thank-you-steps {
        grid-template-columns: 1fr 1fr;
    }
}

.thank-you-card {
    padding: 1.35rem 1.25rem;
    border-radius: 18px;
    border: 1px solid rgba(17, 138, 178, 0.1);
    background: rgba(255, 255, 255, 0.5);
    transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

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

.thank-you-card h2 {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.05rem;
    margin: 0 0 0.5rem;
}

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

.thank-you-actions {
    margin-top: 2rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
}

@media (max-width: 900px) {
    .legal-toc {
        position: static;
    }
}

@media (max-width: 480px) {
    .rhythm-compass__tabs {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .rhythm-tab {
        flex: 1 1 auto;
        min-width: calc(50% - 0.25rem);
        text-align: center;
    }
}

@media (max-width: 380px) {
    :root {
        --fs-display-xl: clamp(1.85rem, 8vw, 2.5rem);
        --space-section-y-mobile: 3.25rem;
    }

    .site-header__inner {
        width: min(100% - 1rem, var(--max-width));
    }

    .section__inner {
        width: min(100% - 1rem, var(--max-width));
    }

    .hero__inner {
        width: min(100% - 1rem, var(--max-width));
    }

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

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

    .nav {
        width: min(92vw, 18rem);
    }
}

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

    .nav {
        width: 100%;
        max-width: 100%;
        border-left: none;
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .site-header__inner {
        width: min(100% - 0.75rem, var(--max-width));
        gap: 0.5rem;
    }

    .brand {
        font-size: 0.92rem;
        line-height: 1.2;
        max-width: 12rem;
    }

    .section__inner {
        width: min(100% - 0.75rem, var(--max-width));
    }

    .hero__inner {
        width: min(100% - 0.75rem, var(--max-width));
    }

    .hero__form-block {
        padding: 1.1rem;
    }

    .floating-field input,
    .floating-field textarea {
        padding: 1rem 0.75rem 0.4rem;
        font-size: 16px;
    }

    .btn {
        padding: 0.8rem 1.25rem;
        width: 100%;
    }

    .hero__trust-row {
        flex-direction: column;
        align-items: center;
    }

    .rhythm-compass__stage {
        min-height: 26rem;
    }

    .rhythm-compass__ring {
        width: 72px;
        height: 72px;
        bottom: 0.5rem;
    }

    .rhythm-compass__ring-fill {
        width: 52px;
        height: 52px;
    }

    .cookie-banner__inner {
        padding: 1rem;
    }

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

    .cookie-banner .btn--primary,
    .cookie-banner .btn--secondary,
    .cookie-banner .btn--ghost {
        width: 100%;
    }

    .legal-table-wrap {
        font-size: 0.7rem;
    }
}

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

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

    .hero__product-wrap {
        animation: none;
    }

    .hero__glow {
        animation: none;
    }

    .hero__blob {
        animation: none;
    }

    .hero__aurora,
    .hero__grain,
    .hero__beam,
    .hero__watermark {
        animation: none;
    }

    .hero__orbit .hero__orbit-ring {
        animation: none !important;
    }

    .hero__sparkle,
    .hero__stars i,
    .hero__chip {
        animation: none !important;
    }

    .hero__price,
    .hero__save,
    .hero__highlights li::before {
        animation: none !important;
    }

    .rhythm-compass__ring-fill {
        animation: none;
    }

    .rhythm-compass__orb {
        animation: none;
    }

    .cta-final::before {
        animation: none;
    }
}