:root {
    --color-peach: #ffe5d9;
    --color-blush: #ffd1dc;
    --color-sky: #d9f0ff;
    --color-mint: #dfffe0;
    --color-lavender: #e6d9ff;
    --color-text: #2a2a3a;
    --color-text-muted: #5c5c6e;
    --color-surface: #ffffff;
    --color-dark: #1a1a24;
    --color-accent: #4a7cff;
    --font-family-base: "Segoe UI", system-ui, -apple-system, sans-serif;
    --font-size-xs: 0.75rem;
    --font-size-sm: 0.875rem;
    --font-size-md: 1rem;
    --font-size-lg: 1.125rem;
    --font-size-xl: 1.5rem;
    --font-size-2xl: 2rem;
    --font-size-3xl: 2.75rem;
    --font-size-4xl: 3.5rem;
    --font-weight-normal: 400;
    --font-weight-medium: 500;
    --font-weight-bold: 700;
    --line-height-tight: 1.15;
    --line-height-normal: 1.5;
    --line-height-relaxed: 1.65;
    --shadow-sm: 0 2px 8px rgba(26, 26, 36, 0.06);
    --shadow-md: 0 8px 24px rgba(26, 26, 36, 0.1);
    --shadow-lg: 0 16px 48px rgba(26, 26, 36, 0.14);
    --shadow-glow-blush: 0 12px 40px rgba(255, 209, 220, 0.55);
    --shadow-glow-sky: 0 12px 40px rgba(217, 240, 255, 0.65);
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 22px;
    --radius-full: 9999px;
    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;
    --space-3xl: 4rem;
    --space-section: clamp(3rem, 8vw, 5.5rem);
    --transition-fast: 0.18s ease;
    --transition-base: 0.28s ease;
    --transition-slow: 0.45s cubic-bezier(0.22, 1, 0.36, 1);
    --glass-bg: rgba(255, 255, 255, 0.72);
    --glass-border: rgba(255, 255, 255, 0.55);
    --header-height: 72px;
}

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

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

body {
    margin: 0;
    font-family: var(--font-family-base);
    font-size: var(--font-size-md);
    line-height: var(--line-height-normal);
    color: var(--color-text);
    background: linear-gradient(165deg, var(--color-peach) 0%, var(--color-surface) 38%, var(--color-sky) 100%);
    min-height: 100vh;
    overflow-x: hidden;
}

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

a {
    color: var(--color-accent);
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
    transition: color var(--transition-fast), opacity var(--transition-fast);
}

a:hover {
    color: #345ecc;
}

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

.skip-link {
    position: absolute;
    left: -9999px;
    top: 0;
    z-index: 10000;
    padding: var(--space-sm) var(--space-md);
    background: var(--color-surface);
    color: var(--color-text);
}

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

.site-header {
    position: sticky;
    top: 0;
    z-index: 900;
    height: var(--header-height);
    display: flex;
    align-items: center;
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    background: var(--glass-bg);
    border-bottom: 1px solid var(--glass-border);
    box-shadow: var(--shadow-sm);
}

.compliance-bar {
    background: linear-gradient(180deg, rgba(230, 217, 255, 0.35) 0%, rgba(255, 229, 217, 0.45) 100%);
    border-bottom: 1px solid rgba(42, 42, 58, 0.08);
    padding: var(--space-sm) var(--space-md);
    font-size: var(--font-size-xs);
    color: var(--color-text-muted);
    line-height: var(--line-height-relaxed);
    text-align: center;
}

.compliance-bar__inner {
    width: min(960px, 100% - 1rem);
    margin: 0 auto;
}

.compliance-bar a {
    color: var(--color-accent);
    font-weight: var(--font-weight-medium);
}

.compliance-bar strong {
    color: var(--color-text);
}

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

.brand {
    font-weight: var(--font-weight-bold);
    font-size: var(--font-size-lg);
    color: var(--color-text);
    text-decoration: none;
}

.brand:hover {
    color: var(--color-text);
    opacity: 0.85;
}

.main-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-md);
}

.main-nav a {
    color: var(--color-text);
    font-weight: var(--font-weight-medium);
    text-decoration: none;
    padding: var(--space-xs) var(--space-sm);
    border-radius: var(--radius-sm);
    transition: background var(--transition-fast), transform var(--transition-fast);
}

.main-nav a:hover {
    background: rgba(255, 209, 220, 0.35);
}

.nav-toggle {
    display: none;
    position: relative;
    z-index: 1002;
    width: 48px;
    height: 48px;
    padding: 0;
    border: none;
    border-radius: var(--radius-md);
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.95), rgba(217, 240, 255, 0.55));
    box-shadow: var(--shadow-sm);
    cursor: pointer;
    transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.nav-toggle:hover {
    transform: scale(1.04);
    box-shadow: var(--shadow-md);
}

.nav-toggle__box {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.nav-toggle__line {
    display: block;
    width: 22px;
    height: 2px;
    border-radius: 2px;
    background: var(--color-text);
    transition: transform 0.35s cubic-bezier(0.68, -0.55, 0.27, 1.55), opacity 0.25s ease, width 0.25s ease;
    transform-origin: center;
}

.nav-toggle.is-active .nav-toggle__line--top {
    transform: translateY(8px) rotate(45deg);
    width: 24px;
}

.nav-toggle.is-active .nav-toggle__line--mid {
    opacity: 0;
    transform: scaleX(0);
}

.nav-toggle.is-active .nav-toggle__line--bot {
    transform: translateY(-8px) rotate(-45deg);
    width: 24px;
}

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

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

.hero {
    padding: var(--space-3xl) 0 var(--space-section);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: "";
    position: absolute;
    inset: -20% -10% auto;
    height: 70%;
    background: radial-gradient(ellipse at 50% 0%, rgba(255, 209, 220, 0.9) 0%, transparent 65%);
    pointer-events: none;
    z-index: 0;
    animation: heroBloom 14s ease-in-out infinite alternate;
}

.hero::after {
    content: "";
    position: absolute;
    width: min(140vw, 1800px);
    height: min(140vw, 1800px);
    left: 50%;
    top: 45%;
    background: conic-gradient(from 0deg at 50% 50%,
            rgba(255, 209, 220, 0.22),
            rgba(217, 240, 255, 0.28),
            rgba(230, 217, 255, 0.24),
            rgba(223, 255, 224, 0.18),
            rgba(255, 209, 220, 0.22));
    opacity: 0.55;
    animation: heroMeshSpin 32s linear infinite;
    pointer-events: none;
    z-index: 0;
}

@keyframes heroBloom {
    0% {
        opacity: 0.85;
        transform: scale(1);
    }

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

@keyframes heroMeshSpin {
    from {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

.hero-shimmer {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    overflow: hidden;
    z-index: 2;
    pointer-events: none;
}

.hero-shimmer::after {
    content: "";
    position: absolute;
    top: 0;
    left: -40%;
    width: 55%;
    height: 100%;
    background: linear-gradient(90deg,
            transparent,
            rgba(255, 255, 255, 0.95),
            rgba(255, 209, 220, 0.85),
            transparent);
    filter: blur(1px);
    animation: heroShimmerSweep 3.8s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

@keyframes heroShimmerSweep {
    0% {
        transform: translateX(-20%);
        opacity: 0;
    }

    15% {
        opacity: 1;
    }

    85% {
        opacity: 1;
    }

    100% {
        transform: translateX(320%);
        opacity: 0;
    }
}

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

.hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(0.5px);
    opacity: 0.55;
    animation: floatOrb 8s ease-in-out infinite;
}

.hero-orb--1 {
    width: min(180px, 40vw);
    height: min(180px, 40vw);
    background: radial-gradient(circle at 30% 30%, var(--color-blush), transparent 70%);
    top: 8%;
    right: 5%;
    animation-delay: 0s;
}

.hero-orb--2 {
    width: min(120px, 28vw);
    height: min(120px, 28vw);
    background: radial-gradient(circle at 50% 50%, var(--color-sky), transparent 65%);
    bottom: 20%;
    left: 0;
    animation-delay: -2s;
    animation-duration: 10s;
}

.hero-orb--3 {
    width: min(90px, 22vw);
    height: min(90px, 22vw);
    background: radial-gradient(circle at 70% 40%, var(--color-mint), transparent 60%);
    top: 40%;
    left: 35%;
    animation-delay: -4s;
    animation-duration: 9s;
}

@keyframes floatOrb {

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

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

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

.hero-spark {
    position: absolute;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: radial-gradient(circle, #fff 0%, rgba(255, 209, 220, 0.9) 45%, transparent 70%);
    box-shadow: 0 0 12px rgba(255, 209, 220, 0.55);
    animation: heroSpark 1.8s ease-in-out infinite;
    z-index: 0;
}

.hero-spark--a {
    top: 22%;
    left: 12%;
    animation-delay: 0s;
}

.hero-spark--b {
    top: 55%;
    right: 18%;
    animation-delay: 0.5s;
    animation-duration: 2.2s;
}

.hero-spark--c {
    bottom: 28%;
    left: 42%;
    animation-delay: 1s;
    animation-duration: 2s;
}

@keyframes heroSpark {

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

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

.stats-strip {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-md);
    margin-top: var(--space-2xl);
    padding: var(--space-lg);
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.55);
    border: 1px solid rgba(255, 255, 255, 0.8);
    box-shadow: var(--shadow-sm);
}

.stat-item {
    text-align: center;
    padding: var(--space-sm);
    transition: transform var(--transition-base);
}

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

.stat-number {
    font-size: clamp(var(--font-size-xl), 4vw, var(--font-size-3xl));
    font-weight: var(--font-weight-bold);
    background: linear-gradient(135deg, #4a7cff, #7c4dff);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    line-height: 1.1;
}

.stat-number--static {
    background: linear-gradient(135deg, #4a7cff, #7c4dff);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.stat-label {
    font-size: var(--font-size-xs);
    color: var(--color-text-muted);
    margin-top: var(--space-xs);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

@media (max-width: 520px) {
    .stats-strip {
        grid-template-columns: 1fr;
        gap: var(--space-sm);
    }
}

.hero-grid {
    width: min(1120px, 100% - 2rem);
    margin-inline: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2xl);
    align-items: center;
    position: relative;
    z-index: 1;
    animation: heroGridReveal 0.9s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

@keyframes heroGridReveal {
    from {
        opacity: 0;
        transform: translateY(16px);
    }

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

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

.hero-copy>* {
    animation: heroFadeUp 0.75s cubic-bezier(0.22, 1, 0.36, 1) backwards;
}

.hero-copy h1 {
    font-size: clamp(var(--font-size-2xl), 6vw, var(--font-size-4xl));
    line-height: var(--line-height-tight);
    margin: 0 0 var(--space-md);
    letter-spacing: -0.02em;
    animation-delay: 0.06s;
    background: linear-gradient(120deg, var(--color-text) 0%, var(--color-text) 45%, #4a5a8a 55%, var(--color-text) 100%);
    background-size: 220% auto;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    animation-name: heroFadeUp, heroTitleShimmer;
    animation-duration: 0.75s, 7s;
    animation-timing-function: cubic-bezier(0.22, 1, 0.36, 1), ease-in-out;
    animation-delay: 0.06s, 2s;
    animation-fill-mode: backwards, none;
    animation-iteration-count: 1, infinite;
}

@keyframes heroFadeUp {
    from {
        opacity: 0;
        transform: translateY(22px);
    }

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

@keyframes heroTitleShimmer {

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

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

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

.hero-copy .stats-strip {
    animation-delay: 0.22s;
}

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

.hero-copy .price-row {
    animation-delay: 0.38s;
}

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

.hero-lead {
    font-size: var(--font-size-lg);
    color: var(--color-text-muted);
    margin: 0 0 var(--space-lg);
    max-width: 36ch;
}

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

.rating {
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
    font-weight: var(--font-weight-medium);
}

.stars {
    color: #e6a800;
    letter-spacing: 2px;
    display: inline-block;
    animation: starGlow 2.4s ease-in-out infinite;
    text-shadow: 0 0 12px rgba(230, 168, 0, 0.35);
}

@keyframes starGlow {

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

    50% {
        filter: brightness(1.15);
        transform: scale(1.03);
    }
}

.hero-meta img {
    animation: badgePulse 3s ease-in-out infinite;
}

@keyframes badgePulse {

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

    50% {
        transform: translateY(-3px);
        opacity: 0.92;
    }
}

.hero-disclosure {
    margin: 0;
    font-size: var(--font-size-sm);
    color: var(--color-text-muted);
    max-width: 42ch;
    line-height: var(--line-height-relaxed);
}

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

.price-current {
    font-size: var(--font-size-3xl);
    font-weight: var(--font-weight-bold);
    color: var(--color-text);
    display: inline-block;
}

.price-note {
    flex: 1 1 100%;
    font-size: var(--font-size-xs);
    color: var(--color-text-muted);
    max-width: 36ch;
    line-height: var(--line-height-normal);
}

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

.hero-visual {
    position: relative;
    animation: heroFadeUp 0.85s cubic-bezier(0.22, 1, 0.36, 1) 0.2s backwards;
}

.hero-visual::before {
    content: "";
    position: absolute;
    inset: -8px;
    border-radius: calc(var(--radius-lg) + 8px);
    background: linear-gradient(135deg, var(--color-blush), var(--color-sky), var(--color-lavender), var(--color-mint));
    opacity: 0.55;
    z-index: -1;
    animation: heroRingPulse 5s ease-in-out infinite;
}

@keyframes heroRingPulse {

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

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

.hero-visual figure {
    margin: 0;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg), var(--shadow-glow-blush);
    transition: transform var(--transition-slow), box-shadow var(--transition-base);
    animation: heroProductFloat 6.5s ease-in-out infinite;
}

@keyframes heroProductFloat {

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

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

.hero-visual figure:hover {
    animation: none;
    transform: perspective(900px) rotateY(-4deg) rotateX(2deg) translateY(-4px);
    box-shadow: var(--shadow-lg), 0 24px 60px rgba(255, 209, 220, 0.45);
}

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

    .hero::before,
    .hero::after,
    .hero-shimmer::after,
    .hero-orb,
    .hero-spark,
    .hero-grid,
    .hero-copy>*,
    .hero-copy h1,
    .stars,
    .hero-meta img,
    .price-current,
    .hero-visual,
    .hero-visual::before,
    .hero-visual figure {
        animation: none !important;
    }

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

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

    .hero-copy h1 {
        color: var(--color-text);
        background: none;
        -webkit-background-clip: unset;
        background-clip: unset;
    }
}

.trust-badge-wrap {
    position: absolute;
    bottom: var(--space-md);
    right: var(--space-md);
    filter: drop-shadow(var(--shadow-sm));
}

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

.section--tint {
    background: linear-gradient(180deg, rgba(223, 255, 224, 0.35) 0%, transparent 100%);
}

.section--lavender {
    background: linear-gradient(180deg, rgba(230, 217, 255, 0.4) 0%, rgba(255, 229, 217, 0.3) 100%);
}

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

.section-head {
    max-width: 640px;
    margin-bottom: var(--space-2xl);
}

.section-head h2 {
    font-size: clamp(var(--font-size-xl), 3vw, var(--font-size-3xl));
    margin: 0 0 var(--space-sm);
    line-height: var(--line-height-tight);
}

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

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

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

.bento {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: minmax(140px, auto) minmax(140px, auto) auto;
    gap: var(--space-md);
}

@media (max-width: 900px) {
    .bento {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: none;
    }
}

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

.bento-card {
    background: var(--color-surface);
    border-radius: var(--radius-md);
    padding: var(--space-lg);
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(230, 217, 255, 0.6);
    transition: transform var(--transition-base), box-shadow var(--transition-base);
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
    min-height: 140px;
}

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

.bento-card--large {
    grid-column: 1 / span 2;
    grid-row: 1 / span 2;
    min-height: 280px;
}

.bento-card--stack-top {
    grid-column: 3;
    grid-row: 1;
}

.bento-card--stack-bottom {
    grid-column: 3;
    grid-row: 2;
}

.bento-card--full {
    grid-column: 1 / span 3;
    grid-row: 3;
    min-height: 140px;
}

@media (max-width: 900px) {
    .bento-card--large {
        grid-column: 1 / span 2;
        grid-row: auto;
        min-height: 200px;
    }

    .bento-card--stack-top,
    .bento-card--stack-bottom {
        grid-column: auto;
        grid-row: auto;
    }

    .bento-card--full {
        grid-column: 1 / span 2;
        grid-row: auto;
    }
}

@media (max-width: 520px) {

    .bento-card--large,
    .bento-card--full {
        grid-column: 1;
        min-height: 160px;
    }
}

.bento-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 72px;
    height: 72px;
    margin-bottom: var(--space-sm);
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.92);
    box-shadow: var(--shadow-sm);
}

.bento-icon i {
    font-size: 2.25rem;
    line-height: 1;
}

.bento-icon--energy i {
    color: #e6a800;
}

.bento-icon--muscle i {
    color: #5c6bc0;
}

.bento-icon--wellness i {
    color: #2e7d32;
}

.bento-icon--vitamins i {
    color: #7b1fa2;
}

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

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

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

.ingredient-card {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    background: var(--color-surface);
    box-shadow: var(--shadow-md);
    min-height: 200px;
    border: 1px solid rgba(217, 240, 255, 0.8);
}

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

.ingredient-card__icon {
    display: block;
    font-size: 1.85rem;
    margin-bottom: var(--space-sm);
    color: var(--color-accent);
    line-height: 1;
}

.ingredient-card__front h3 {
    margin: 0 0 var(--space-sm);
}

.ingredient-card__back {
    position: absolute;
    inset: 0;
    background: linear-gradient(145deg, var(--color-mint), var(--color-sky));
    opacity: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

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

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

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

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

@media (max-width: 768px) {
    .trust-science {
        grid-template-columns: 1fr;
    }
}

.trust-item {
    text-align: center;
    padding: var(--space-xl);
    background: var(--color-surface);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(255, 255, 255, 0.8);
    transition: transform var(--transition-base);
}

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

.trust-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    margin: 0 auto var(--space-md);
    border-radius: 50%;
    background: linear-gradient(145deg, var(--color-sky), var(--color-blush));
    box-shadow: var(--shadow-sm);
}

.trust-icon i {
    font-size: 2rem;
    color: var(--color-text);
    line-height: 1;
}

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

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

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

@keyframes iconPulse {

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

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

.rhythm-lab {
    position: relative;
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    background: linear-gradient(145deg, rgba(230, 217, 255, 0.45) 0%, rgba(255, 229, 217, 0.6) 50%, rgba(217, 240, 255, 0.5) 100%);
    border: 1px solid rgba(255, 255, 255, 0.75);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}

.rhythm-lab::before {
    content: "";
    position: absolute;
    inset: -40% 50% 20% -20%;
    background: radial-gradient(circle, rgba(255, 209, 220, 0.5) 0%, transparent 65%);
    animation: rhythmGlow 12s ease-in-out infinite alternate;
    pointer-events: none;
}

@keyframes rhythmGlow {
    0% {
        opacity: 0.6;
        transform: translate(0, 0) scale(1);
    }

    100% {
        opacity: 1;
        transform: translate(8%, 4%) scale(1.08);
    }
}

.rhythm-lab__inner {
    position: relative;
    z-index: 1;
}

.rhythm-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
    margin-bottom: var(--space-xl);
}

.rhythm-tab {
    flex: 1 1 140px;
    min-height: 48px;
    padding: var(--space-sm) var(--space-md);
    border: 2px solid rgba(42, 42, 58, 0.12);
    border-radius: var(--radius-full);
    background: rgba(255, 255, 255, 0.65);
    font: inherit;
    font-weight: var(--font-weight-medium);
    cursor: pointer;
    transition: transform var(--transition-fast), box-shadow var(--transition-fast), border-color var(--transition-fast), background var(--transition-fast);
}

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

.rhythm-tab.is-active {
    background: linear-gradient(135deg, var(--color-blush), var(--color-sky));
    border-color: transparent;
    box-shadow: var(--shadow-md);
}

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

.rhythm-panel {
    display: none;
    gap: var(--space-lg);
    align-items: stretch;
    animation: panelIn 0.45s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.rhythm-panel.is-active {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
}

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

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

.rhythm-panel__viz {
    border-radius: var(--radius-md);
    min-height: 180px;
    position: relative;
    overflow: hidden;
    background: var(--color-surface);
    box-shadow: inset 0 0 0 1px rgba(230, 217, 255, 0.8);
}

.rhythm-icons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(var(--space-lg), 4vw, var(--space-2xl));
    flex-wrap: wrap;
    width: 100%;
    min-height: 180px;
    padding: var(--space-lg);
    box-sizing: border-box;
}

.rhythm-icons i {
    font-size: clamp(2.25rem, 5vw, 3.25rem);
    line-height: 1;
    opacity: 0.92;
}

.rhythm-icons--steady i:nth-child(1) {
    color: #e6a800;
}

.rhythm-icons--steady i:nth-child(2) {
    color: #6d4c41;
}

.rhythm-icons--steady i:nth-child(3) {
    color: #5c6bc0;
}

.rhythm-icons--surge i:nth-child(1) {
    color: #4a7cff;
}

.rhythm-icons--surge i:nth-child(2) {
    color: #e6a800;
}

.rhythm-icons--surge i:nth-child(3) {
    color: #2e7d32;
}

.rhythm-icons--soft i:nth-child(1) {
    color: #78909c;
}

.rhythm-icons--soft i:nth-child(2) {
    color: #8d6e63;
}

.rhythm-icons--soft i:nth-child(3) {
    color: #4fc3f7;
}

.rhythm-icons--travel i:nth-child(1) {
    color: #5c6bc0;
}

.rhythm-icons--travel i:nth-child(2) {
    color: #0288d1;
}

.rhythm-icons--travel i:nth-child(3) {
    color: #2e7d32;
}

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

.rhythm-panel__text p {
    margin: 0;
    color: var(--color-text-muted);
    font-size: var(--font-size-sm);
    line-height: var(--line-height-relaxed);
}

@media (max-width: 640px) {
    .rhythm-panel.is-active {
        grid-template-columns: 1fr;
    }

    .rhythm-panel__viz {
        min-height: 140px;
    }
}

.order-card {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    box-shadow: var(--shadow-lg);
}

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

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

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: var(--space-sm) var(--space-md);
    border-radius: var(--radius-sm);
    border: 1px solid rgba(42, 42, 58, 0.15);
    font: inherit;
    background: var(--color-surface);
    transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-accent);
    box-shadow: 0 0 0 3px rgba(74, 124, 255, 0.2);
}

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

.form-error {
    color: #b00020;
    font-size: var(--font-size-xs);
    margin-top: var(--space-xs);
    min-height: 1.1em;
}

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

.checkbox-row input {
    margin-top: 4px;
    width: auto;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    padding: var(--space-md) var(--space-xl);
    font: inherit;
    font-weight: var(--font-weight-bold);
    border: none;
    border-radius: var(--radius-md);
    cursor: pointer;
    text-decoration: none;
    transition: transform var(--transition-fast), box-shadow var(--transition-fast), background var(--transition-fast);
}

.btn--primary {
    background: linear-gradient(135deg, #4a7cff 0%, #7c4dff 100%);
    color: #fff;
    box-shadow: 0 8px 24px rgba(74, 124, 255, 0.45);
}

.btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(74, 124, 255, 0.55);
}

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

.btn--secondary:hover {
    background: var(--color-blush);
}

.btn--magnetic {
    position: relative;
}

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

.spec-item,
.benefit-item {
    background: var(--color-surface);
    padding: var(--space-lg);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(230, 217, 255, 0.5);
}

.spec-item h3,
.benefit-item h3 {
    margin: 0 0 var(--space-sm);
    font-size: var(--font-size-lg);
}

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

.prose {
    max-width: 72ch;
}

.prose p {
    color: var(--color-text-muted);
    line-height: var(--line-height-relaxed);
}

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

.effects-list article {
    background: var(--color-surface);
    padding: var(--space-lg);
    border-radius: var(--radius-md);
    border-left: 4px solid var(--color-blush);
    box-shadow: var(--shadow-sm);
}

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

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

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

.steps li {
    counter-increment: step;
    position: relative;
    padding-left: 3rem;
    background: var(--color-surface);
    border-radius: var(--radius-md);
    padding: var(--space-lg) var(--space-lg) var(--space-lg) 3.5rem;
    box-shadow: var(--shadow-sm);
}

.steps li::before {
    content: counter(step);
    position: absolute;
    left: var(--space-md);
    top: 50%;
    transform: translateY(-50%);
    width: 2rem;
    height: 2rem;
    border-radius: var(--radius-full);
    background: var(--color-sky);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: var(--font-weight-bold);
    font-size: var(--font-size-sm);
}

.ingredients-table-wrap {
    overflow-x: auto;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
}

table.ingredients {
    width: 100%;
    border-collapse: collapse;
    background: var(--color-surface);
    font-size: var(--font-size-sm);
}

table.ingredients th,
table.ingredients td {
    padding: var(--space-md);
    text-align: left;
    border-bottom: 1px solid rgba(42, 42, 58, 0.08);
}

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

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

.review-card {
    background: var(--color-surface);
    padding: var(--space-lg);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(217, 240, 255, 0.6);
}

.review-card header {
    margin-bottom: var(--space-sm);
    font-weight: var(--font-weight-medium);
}

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

.faq details {
    background: var(--color-surface);
    border-radius: var(--radius-md);
    margin-bottom: var(--space-sm);
    padding: var(--space-md) var(--space-lg);
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(230, 217, 255, 0.5);
    transition: border-color var(--transition-base), box-shadow var(--transition-base), transform var(--transition-fast);
}

.faq details[open] {
    border-color: rgba(74, 124, 255, 0.35);
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

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

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

.cta-panel {
    text-align: center;
    padding: var(--space-2xl);
    border-radius: var(--radius-lg);
    background: linear-gradient(135deg, var(--color-lavender), var(--color-blush));
    box-shadow: var(--shadow-lg);
}

.cta-panel h2 {
    margin: 0 0 var(--space-md);
}

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

.disclaimer-block {
    background: rgba(26, 26, 36, 0.04);
    border: 1px solid rgba(42, 42, 58, 0.12);
    border-radius: var(--radius-md);
    padding: var(--space-lg);
    font-size: var(--font-size-sm);
    color: var(--color-text-muted);
    margin-top: var(--space-xl);
}

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

.disclaimer-block p {
    margin: 0 0 var(--space-md);
}

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

.legal-strip {
    font-size: var(--font-size-xs);
    color: var(--color-text-muted);
    line-height: var(--line-height-relaxed);
    padding: var(--space-lg);
    background: var(--color-dark);
    color: #e8e8f0;
    border-radius: var(--radius-md);
    margin-top: var(--space-xl);
}

.legal-strip a {
    color: #b8c8ff;
}

.site-footer {
    background: linear-gradient(180deg, #2a2438 0%, #1a1a24 100%);
    color: #e8e8f0;
    padding: var(--space-2xl) 0 var(--space-xl);
    margin-top: var(--space-section);
}

.footer-inner {
    width: min(1120px, 100% - 2rem);
    margin-inline: auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: var(--space-xl);
    margin-bottom: var(--space-xl);
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
}

.site-footer h2 {
    font-size: var(--font-size-lg);
    margin: 0 0 var(--space-md);
}

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

.site-footer nav li {
    margin-bottom: var(--space-sm);
}

.site-footer a {
    color: #d0d0e0;
    text-decoration: none;
}

.site-footer a:hover {
    color: #fff;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    padding-top: var(--space-lg);
    font-size: var(--font-size-sm);
    color: #b8b8c8;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 2000;
    padding: var(--space-md);
    transform: translateY(100%);
    transition: transform var(--transition-slow);
}

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

.cookie-inner {
    max-width: 1120px;
    margin: 0 auto;
    background: var(--glass-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    box-shadow: var(--shadow-lg);
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-md);
    align-items: center;
    justify-content: space-between;
}

.cookie-text {
    flex: 1 1 280px;
    margin: 0;
    font-size: var(--font-size-sm);
    color: var(--color-text);
}

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

.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(26, 26, 36, 0.45);
    z-index: 3000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-md);
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition-base);
}

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

.modal {
    background: var(--glass-bg);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    max-width: 480px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    padding: var(--space-xl);
    box-shadow: var(--shadow-lg);
    transform: scale(0.96);
    transition: transform var(--transition-base);
}

.modal-overlay.is-open .modal {
    transform: scale(1);
}

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

.switch-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-md);
    padding: var(--space-sm) 0;
    border-bottom: 1px solid rgba(42, 42, 58, 0.08);
    font-size: var(--font-size-sm);
}

.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: #ccc;
    border-radius: var(--radius-full);
    transition: var(--transition-fast);
}

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

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

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

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

.modal-close {
    margin-top: var(--space-lg);
    width: 100%;
}

.tilt-card {
    transform-style: preserve-3d;
    transition: transform 0.15s ease-out;
}

.policy-page main {
    padding: var(--space-2xl) 0 var(--space-section);
}

.legal-doc {
    width: min(920px, 100% - 2rem);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 220px minmax(0, 1fr);
    gap: var(--space-xl);
    align-items: start;
}

@media (max-width: 900px) {
    .legal-doc {
        grid-template-columns: 1fr;
    }
}

.legal-doc__toc {
    position: sticky;
    top: calc(var(--header-height) + var(--space-md));
    padding: var(--space-lg);
    border-radius: var(--radius-lg);
    background: linear-gradient(160deg, rgba(255, 229, 217, 0.85), rgba(230, 217, 255, 0.65));
    border: 1px solid rgba(255, 255, 255, 0.9);
    box-shadow: var(--shadow-md);
}

.legal-doc__toc h2 {
    font-size: var(--font-size-sm);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin: 0 0 var(--space-md);
    color: var(--color-text-muted);
}

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

.legal-doc__toc li {
    margin-bottom: var(--space-sm);
}

.legal-doc__toc a {
    font-size: var(--font-size-sm);
    color: var(--color-text);
    text-decoration: none;
    display: block;
    padding: var(--space-xs) 0;
    border-bottom: 1px solid transparent;
    transition: border-color var(--transition-fast), transform var(--transition-fast);
}

.legal-doc__toc a:hover {
    border-bottom-color: var(--color-blush);
    transform: translateX(4px);
}

.legal-doc__article {
    background: var(--color-surface);
    padding: var(--space-2xl);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(230, 217, 255, 0.5);
    position: relative;
    overflow: hidden;
}

.legal-doc__article::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--color-blush), var(--color-sky), var(--color-lavender));
}

.legal-doc__hero {
    margin-bottom: var(--space-xl);
    padding-bottom: var(--space-lg);
    border-bottom: 1px solid rgba(42, 42, 58, 0.08);
}

.legal-doc__badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-xs) var(--space-md);
    border-radius: var(--radius-full);
    background: linear-gradient(135deg, var(--color-mint), var(--color-sky));
    font-size: var(--font-size-xs);
    font-weight: var(--font-weight-medium);
    margin-bottom: var(--space-md);
}

.legal-doc__badge time {
    font-variant-numeric: tabular-nums;
}

.legal-doc__article h1 {
    margin: 0 0 var(--space-md);
    font-size: clamp(var(--font-size-xl), 3vw, var(--font-size-3xl));
    line-height: var(--line-height-tight);
}

.legal-doc__article h2 {
    font-size: var(--font-size-xl);
    margin-top: var(--space-xl);
    margin-bottom: var(--space-md);
    padding-top: var(--space-md);
    border-top: 1px dashed rgba(42, 42, 58, 0.1);
}

.legal-doc__article h2:first-of-type {
    border-top: none;
    padding-top: 0;
}

.legal-doc__article p,
.legal-doc__article li {
    color: var(--color-text-muted);
    line-height: var(--line-height-relaxed);
}

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

.legal-doc__callout {
    margin: var(--space-lg) 0;
    padding: var(--space-lg);
    border-radius: var(--radius-md);
    background: linear-gradient(135deg, rgba(255, 209, 220, 0.25), rgba(217, 240, 255, 0.35));
    border-left: 4px solid var(--color-accent);
}

.legal-doc__grid {
    display: grid;
    gap: var(--space-md);
    margin: var(--space-lg) 0;
}

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

.legal-card {
    padding: var(--space-md);
    border-radius: var(--radius-md);
    background: rgba(255, 229, 217, 0.35);
    border: 1px solid rgba(230, 217, 255, 0.6);
    transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

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

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

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

.page-thank main {
    padding: 0;
    min-height: auto;
}

.thank-layout {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-2xl) var(--space-md);
    overflow: hidden;
}

.thank-layout__bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(165deg, var(--color-peach) 0%, var(--color-sky) 45%, var(--color-lavender) 100%);
    z-index: 0;
}

.thank-layout__bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 20% 30%, rgba(255, 209, 220, 0.7) 0%, transparent 45%), radial-gradient(circle at 80% 70%, rgba(223, 255, 224, 0.5) 0%, transparent 40%);
    animation: thankPulse 15s ease-in-out infinite alternate;
}

@keyframes thankPulse {
    0% {
        opacity: 0.85;
    }

    100% {
        opacity: 1;
    }
}

.thank-card {
    position: relative;
    z-index: 1;
    width: min(640px, 100%);
    padding: var(--space-2xl);
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.95);
    box-shadow: var(--shadow-lg), 0 0 80px rgba(255, 209, 220, 0.35);
    text-align: left;
    animation: thankCardIn 0.7s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

@keyframes thankCardIn {
    from {
        opacity: 0;
        transform: translateY(24px) scale(0.98);
    }

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

.thank-card__kicker {
    font-size: var(--font-size-sm);
    font-weight: var(--font-weight-bold);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--color-accent);
    margin: 0 0 var(--space-sm);
}

.thank-card h1 {
    margin: 0 0 var(--space-md);
    font-size: clamp(var(--font-size-2xl), 4vw, var(--font-size-3xl));
    line-height: var(--line-height-tight);
}

.thank-card__date {
    font-size: var(--font-size-sm);
    color: var(--color-text-muted);
    margin-bottom: var(--space-lg);
}

.thank-card__body p {
    color: var(--color-text-muted);
    line-height: var(--line-height-relaxed);
    margin: 0 0 var(--space-md);
}

.thank-card__actions {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-md);
    margin-top: var(--space-xl);
}

.policy-page h1 {
    margin-top: 0;
    font-size: var(--font-size-2xl);
}

.page-thank.policy-page main {
    padding-top: var(--space-md);
    padding-bottom: 0;
}

@media (max-width: 1024px) {
    .nav-backdrop {
        display: block;
    }

    .main-nav {
        position: fixed;
        top: 0;
        right: 0;
        width: min(320px, 92vw);
        height: 100vh;
        height: 100dvh;
        z-index: 1001;
        margin: 0;
        padding: calc(var(--header-height) + var(--space-xl)) var(--space-xl) var(--space-xl);
        background: linear-gradient(180deg, rgba(255, 255, 255, 0.97) 0%, rgba(217, 240, 255, 0.5) 100%);
        backdrop-filter: blur(18px);
        -webkit-backdrop-filter: blur(18px);
        border-left: 1px solid var(--glass-border);
        box-shadow: -12px 0 48px rgba(26, 26, 36, 0.12);
        transform: translateX(105%);
        opacity: 1;
        pointer-events: none;
        transition: transform 0.42s cubic-bezier(0.22, 1, 0.36, 1);
    }

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

    .main-nav ul {
        flex-direction: column;
        gap: var(--space-sm);
    }

    .main-nav a {
        display: block;
        padding: var(--space-md);
        border-radius: var(--radius-md);
        font-size: var(--font-size-lg);
    }

    .main-nav a:hover {
        background: rgba(255, 209, 220, 0.45);
        transform: translateX(6px);
    }

    .nav-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
    }
}

body.nav-open {
    overflow: hidden;
}

body.nav-open .nav-backdrop.is-visible {
    display: block;
}

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

    .main-nav {
        position: static;
        width: auto;
        height: auto;
        padding: 0;
        background: transparent;
        backdrop-filter: none;
        border: none;
        box-shadow: none;
        transform: none;
        pointer-events: auto;
    }

    .main-nav ul {
        flex-direction: row;
    }

    .main-nav a {
        display: inline;
        padding: var(--space-xs) var(--space-sm);
        font-size: inherit;
    }

    .nav-toggle {
        display: none;
    }
}

@media (max-width: 320px) {
    :root {
        --header-height: 64px;
        --space-section: clamp(2rem, 6vw, 3rem);
        --font-size-4xl: 2.25rem;
        --font-size-3xl: 1.85rem;
    }

    html {
        font-size: 93.75%;
    }

    .header-inner {
        width: 100%;
        padding-inline: 0.75rem;
        gap: var(--space-sm);
    }

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

    .hero {
        padding-top: var(--space-xl);
        padding-bottom: var(--space-xl);
    }

    .hero-grid {
        width: 100%;
        padding-inline: 0.75rem;
        gap: var(--space-lg);
    }

    .hero-copy h1 {
        font-size: 1.35rem;
        letter-spacing: -0.01em;
    }

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

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

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

    .section-inner {
        width: 100%;
        padding-inline: 0.75rem;
    }

    .section-head {
        margin-bottom: var(--space-lg);
    }

    .bento {
        gap: var(--space-sm);
    }

    .bento-card {
        padding: var(--space-md);
        min-height: 0;
    }

    .bento-card--large {
        min-height: 220px;
    }

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

    .trust-science {
        gap: var(--space-md);
    }

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

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

    .rhythm-tabs {
        flex-direction: column;
    }

    .rhythm-tab {
        flex: 1 1 auto;
        width: 100%;
    }

    .spec-grid,
    .benefits-grid,
    .reviews-grid {
        grid-template-columns: 1fr;
    }

    .cta-panel {
        padding: var(--space-lg);
    }

    .cookie-inner {
        flex-direction: column;
        align-items: stretch;
        padding: var(--space-md);
    }

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

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

    .footer-inner {
        width: 100%;
        padding-inline: 0.75rem;
    }

    .legal-doc {
        width: 100%;
        padding-inline: 0.75rem;
    }

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

    .legal-doc__toc {
        position: static;
        padding: var(--space-md);
    }

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

    .thank-layout {
        padding: var(--space-md) 0.75rem;
        min-height: auto;
    }

    table.ingredients {
        font-size: 0.7rem;
    }

    table.ingredients th,
    table.ingredients td {
        padding: var(--space-xs);
    }

    .modal {
        padding: var(--space-md);
        max-height: 85vh;
    }

    .main-nav {
        width: min(100vw, 100%);
    }
}