:root {
    --color-peach: #ffd4c4;
    --color-lavender: #dcccf7;
    --color-cream: #fff9f2;
    --color-sage: #c8e3d4;
    --color-mocha: #bfa38f;
    --color-text: #2d2520;
    --color-text-muted: #5c534c;
    --color-white: #ffffff;
    --color-dark: #1a1614;
    --font-sans: "Segoe UI", system-ui, -apple-system, sans-serif;
    --font-display: "Segoe UI", system-ui, sans-serif;
    --fs-xs: clamp(0.75rem, 0.7rem + 0.2vw, 0.8125rem);
    --fs-sm: clamp(0.875rem, 0.82rem + 0.25vw, 0.9375rem);
    --fs-base: clamp(1rem, 0.95rem + 0.3vw, 1.0625rem);
    --fs-md: clamp(1.125rem, 1rem + 0.5vw, 1.25rem);
    --fs-lg: clamp(1.35rem, 1.1rem + 0.9vw, 1.65rem);
    --fs-xl: clamp(1.75rem, 1.35rem + 1.4vw, 2.25rem);
    --fs-hero: clamp(2.25rem, 1.5rem + 2.5vw, 3.5rem);
    --shadow-sm: 0 2px 8px rgba(45, 37, 32, 0.08);
    --shadow-md: 0 8px 24px rgba(45, 37, 32, 0.1);
    --shadow-lg: 0 16px 48px rgba(45, 37, 32, 0.14);
    --shadow-glow-peach: 0 12px 40px rgba(255, 212, 196, 0.55);
    --shadow-glow-lavender: 0 12px 40px rgba(220, 204, 247, 0.45);
    --shadow-glow-sage: 0 12px 40px rgba(200, 227, 212, 0.5);
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 22px;
    --radius-full: 9999px;
    --space-xs: 0.5rem;
    --space-sm: 0.75rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;
    --space-3xl: 4rem;
    --transition-fast: 0.18s ease;
    --transition-base: 0.28s ease;
    --header-h: 4.25rem;
}

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

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

body {
    margin: 0;
    font-family: var(--font-sans);
    font-size: var(--fs-base);
    line-height: 1.6;
    color: var(--color-text);
    background: var(--color-cream);
    padding-top: var(--header-h);
    overflow-x: hidden;
}

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

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

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

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

.skip-link {
    position: absolute;
    left: -9999px;
    top: var(--space-sm);
    z-index: 10000;
    padding: var(--space-sm) var(--space-md);
    background: var(--color-dark);
    color: var(--color-cream);
    border-radius: var(--radius-sm);
}

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

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

.container {
    width: min(1120px, 100% - 2 * var(--space-lg));
    margin-inline: auto;
}

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1002;
    min-height: var(--header-h);
    display: flex;
    align-items: center;
    background: rgba(255, 249, 242, 0.72);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(191, 163, 143, 0.2);
    box-shadow: var(--shadow-sm);
    transition: background var(--transition-base), box-shadow var(--transition-base);
}

.site-header.is-scrolled {
    background: rgba(255, 249, 242, 0.88);
    box-shadow: var(--shadow-md);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-md);
    width: 100%;
    padding: 20px 60px;
    position: relative;
}

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

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

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

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

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

.nav-toggle.burger {
    display: none;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    padding: 0;
    background: rgba(255, 255, 255, 0.65);
    border: 2px solid rgba(191, 163, 143, 0.45);
    border-radius: var(--radius-md);
    cursor: pointer;
    z-index: 1002;
    transition: background var(--transition-fast), border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.nav-toggle.burger:hover {
    background: rgba(255, 212, 196, 0.45);
    border-color: var(--color-mocha);
    box-shadow: var(--shadow-sm);
}

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

.burger-line {
    display: block;
    height: 2px;
    width: 100%;
    background: var(--color-dark);
    border-radius: 2px;
    transition: transform 0.35s ease, opacity 0.25s ease, top 0.35s ease;
    transform-origin: center;
}

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

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

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

.nav-backdrop {
    position: fixed;
    inset: 0;
    top: var(--header-h);
    background: rgba(26, 22, 20, 0.42);
    backdrop-filter: blur(4px);
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition-base);
    z-index: 1000;
}

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

body.nav-open {
    overflow: hidden;
}

@media (min-width: 769px) {
    .nav-primary {
        position: static;
        display: flex;
        align-items: center;
        justify-content: flex-end;
        flex: 1;
        opacity: 1;
        pointer-events: auto;
        transform: none;
        background: transparent;
        border: none;
        padding: 0;
        max-height: none;
        box-shadow: none;
    }

    .nav-list {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: flex-end;
    }

    .nav-backdrop {
        display: none;
    }
}

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

    .nav-primary {
        position: fixed;
        top: var(--header-h);
        right: 0;
        width: min(100%, 320px);
        height: calc(100dvh - var(--header-h));
        max-height: calc(100vh - var(--header-h));
        margin: 0;
        padding: var(--space-xl) var(--space-lg);
        background: linear-gradient(165deg, rgba(255, 249, 242, 0.98) 0%, rgba(220, 204, 247, 0.35) 100%);
        backdrop-filter: blur(16px);
        border-left: 1px solid rgba(191, 163, 143, 0.35);
        box-shadow: -12px 0 40px rgba(45, 37, 32, 0.12);
        transform: translateX(105%);
        opacity: 1;
        pointer-events: none;
        transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
        z-index: 1001;
        overflow-y: auto;
    }

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

    .nav-list {
        flex-direction: column;
        gap: var(--space-md);
    }

    .nav-list a {
        font-size: var(--fs-md);
        padding: var(--space-sm) 0;
        border-bottom: 1px solid rgba(191, 163, 143, 0.2);
    }
}

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

.btn-primary {
    background: linear-gradient(135deg, var(--color-peach), #ffb89a);
    color: var(--color-dark);
    box-shadow: var(--shadow-glow-peach);
}

.btn-primary:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 16px 44px rgba(255, 180, 154, 0.55);
}

.btn-secondary {
    background: var(--color-sage);
    color: var(--color-dark);
    box-shadow: var(--shadow-glow-sage);
}

.btn-secondary:hover {
    transform: translateY(-2px);
}

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

.btn-ghost:hover {
    background: rgba(255, 212, 196, 0.35);
}

.btn-magnetic {
    position: relative;
}

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

.hero-glow {
    position: absolute;
    inset: -20% -10% auto -10%;
    height: 70%;
    background: radial-gradient(ellipse at 50% 30%, rgba(255, 212, 196, 0.65) 0%, rgba(220, 204, 247, 0.35) 45%, transparent 70%);
    pointer-events: none;
    z-index: 0;
    animation: heroGlowPulse 9s ease-in-out infinite;
}

@keyframes heroGlowPulse {

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

    50% {
        opacity: 0.88;
        transform: scale(1.04) translateY(-8px);
    }
}

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

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

.hero-orb:nth-child(1) {
    width: min(280px, 60vw);
    height: min(280px, 60vw);
    background: radial-gradient(circle, rgba(255, 212, 196, 0.9), transparent 70%);
    top: 8%;
    left: 5%;
    animation-delay: 0s;
}

.hero-orb:nth-child(2) {
    width: min(220px, 50vw);
    height: min(220px, 50vw);
    background: radial-gradient(circle, rgba(220, 204, 247, 0.85), transparent 70%);
    top: 30%;
    right: 10%;
    animation-delay: -4s;
    animation-duration: 18s;
}

.hero-orb:nth-child(3) {
    width: min(180px, 45vw);
    height: min(180px, 45vw);
    background: radial-gradient(circle, rgba(200, 227, 212, 0.75), transparent 70%);
    bottom: 15%;
    left: 35%;
    animation-delay: -7s;
    animation-duration: 16s;
}

@keyframes orbFloat {

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

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

    66% {
        transform: translate(-14px, 16px) scale(0.96);
    }
}

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

.hero-spark {
    position: absolute;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.95) 0%, rgba(255, 212, 196, 0.4) 45%, transparent 70%);
    box-shadow: 0 0 12px rgba(255, 212, 196, 0.6);
    animation: heroSparkDrift 12s ease-in-out infinite;
    opacity: 0.85;
}

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

.hero-spark:nth-child(2) {
    top: 42%;
    left: 28%;
    width: 4px;
    height: 4px;
    animation-delay: -2s;
    animation-duration: 14s;
}

.hero-spark:nth-child(3) {
    top: 22%;
    right: 22%;
    animation-delay: -4s;
    animation-duration: 13s;
}

.hero-spark:nth-child(4) {
    bottom: 38%;
    left: 18%;
    width: 5px;
    height: 5px;
    animation-delay: -1s;
    animation-duration: 12s;
}

.hero-spark:nth-child(5) {
    bottom: 22%;
    right: 30%;
    animation-delay: -6s;
    animation-duration: 15s;
}

.hero-spark:nth-child(6) {
    top: 58%;
    right: 8%;
    width: 3px;
    height: 3px;
    animation-delay: -3s;
    animation-duration: 10s;
}

@keyframes heroSparkDrift {

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

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

    50% {
        transform: translate(-8px, 10px) scale(0.85);
        opacity: 0.65;
    }

    75% {
        transform: translate(16px, 14px) scale(1.1);
        opacity: 0.9;
    }
}

@media (prefers-reduced-motion: reduce) {
    .hero-orb {
        animation: none;
        opacity: 0.35;
    }

    .hero-glow {
        animation: none;
    }

    .hero-spark {
        animation: none;
        opacity: 0.35;
    }

    .hero .stars {
        animation: none;
        filter: none;
        transform: none;
    }

    .hero .rating-row .badge {
        animation: none;
        transform: none;
        box-shadow: none;
    }

    .hero h1 {
        animation: none;
        text-shadow: none;
        will-change: auto;
    }

    .hero .price-current {
        animation: none;
        transform: none;
    }

    .hero-visual img {
        animation: none;
    }

    .hero .highlight-item {
        animation: none;
    }

    .hero .order-card {
        animation: none;
    }
}

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

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

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

.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
}

.hero-visual img {
    filter: drop-shadow(var(--shadow-glow-lavender));
    transition: transform var(--transition-base);
    animation: heroProductFloat 6s ease-in-out infinite;
}

.hero-visual:hover img {
    animation-play-state: paused;
    transform: scale(1.02);
}

@keyframes heroProductFloat {

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

    33% {
        transform: translateY(-10px) rotate(0.6deg);
    }

    66% {
        transform: translateY(4px) rotate(-0.4deg);
    }
}

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

.stars {
    color: #e8a838;
    font-size: var(--fs-lg);
    letter-spacing: 0.05em;
}

.hero .stars {
    display: inline-block;
    animation: heroStarsTwinkle 2.8s ease-in-out infinite;
    filter: drop-shadow(0 0 6px rgba(232, 168, 56, 0.35));
}

@keyframes heroStarsTwinkle {

    0%,
    100% {
        transform: scale(1);
        filter: drop-shadow(0 0 4px rgba(232, 168, 56, 0.25));
    }

    50% {
        transform: scale(1.06);
        filter: drop-shadow(0 0 12px rgba(232, 168, 56, 0.55));
    }
}

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

.badge {
    font-size: var(--fs-xs);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    padding: 0.35rem 0.65rem;
    border-radius: var(--radius-full);
    background: rgba(200, 227, 212, 0.6);
    color: var(--color-text);
}

.hero .rating-row .badge {
    animation: heroBadgeLift 3.2s ease-in-out infinite;
}

.hero .rating-row .badge:nth-child(2) {
    animation-delay: 0s;
}

.hero .rating-row .badge:nth-child(3) {
    animation-delay: 0.6s;
}

@keyframes heroBadgeLift {

    0%,
    100% {
        transform: translateY(0);
        box-shadow: 0 0 0 rgba(200, 227, 212, 0);
    }

    50% {
        transform: translateY(-3px);
        box-shadow: 0 6px 14px rgba(200, 227, 212, 0.45);
    }
}

.hero h1 {
    font-family: var(--font-display);
    font-size: var(--fs-hero);
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin: 0 0 var(--space-md);
    color: var(--color-dark);
    position: relative;
    animation: heroTitleShimmer 7s ease-in-out infinite;
    will-change: text-shadow;
}

@keyframes heroTitleShimmer {

    0%,
    100% {
        text-shadow: 0 2px 0 rgba(255, 212, 196, 0.15), 0 0 0 rgba(220, 204, 247, 0);
    }

    40% {
        text-shadow: 0 2px 0 rgba(255, 212, 196, 0.2), 0 0 32px rgba(220, 204, 247, 0.35), 0 0 48px rgba(200, 227, 212, 0.2);
    }

    60% {
        text-shadow: 0 2px 0 rgba(255, 212, 196, 0.18), 0 0 24px rgba(255, 212, 196, 0.3);
    }
}

.hero-lead {
    font-size: var(--fs-md);
    color: var(--color-text-muted);
    margin-bottom: var(--space-lg);
    max-width: 42ch;
}

.hero-compliance {
    font-size: var(--fs-xs);
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--color-text-muted);
    margin: 0 0 var(--space-sm);
    padding: 0.35rem 0.65rem;
    display: inline-block;
    border-radius: var(--radius-sm);
    background: rgba(200, 227, 212, 0.35);
    border: 1px solid rgba(191, 163, 143, 0.35);
}

.price-disclosure {
    font-size: var(--fs-xs);
    color: var(--color-text-muted);
    margin: calc(-1 * var(--space-md)) 0 var(--space-lg);
    max-width: 36ch;
    line-height: 1.5;
}

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

.hero .price-current {
    font-size: var(--fs-xl);
    font-weight: 800;
    color: var(--color-dark);
    display: inline-block;
    animation: heroPricePulse 2.6s ease-in-out infinite;
}

@keyframes heroPricePulse {

    0%,
    100% {
        transform: scale(1);
        color: var(--color-dark);
    }

    50% {
        transform: scale(1.04);
        color: #1f1a17;
    }
}

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

.highlights {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-sm);
    margin-bottom: var(--space-xl);
}

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

.highlight-item {
    padding: var(--space-sm) var(--space-md);
    background: rgba(255, 255, 255, 0.7);
    border-radius: var(--radius-md);
    border: 1px solid rgba(191, 163, 143, 0.25);
    font-size: var(--fs-sm);
    font-weight: 600;
    transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.highlight-item:hover {
    border-color: var(--color-sage);
    box-shadow: var(--shadow-sm);
}

.hero .highlight-item {
    animation: heroHighlightEdge 4.5s ease-in-out infinite;
}

.hero .highlight-item:nth-child(1) {
    animation-delay: 0s;
}

.hero .highlight-item:nth-child(2) {
    animation-delay: 0.45s;
}

.hero .highlight-item:nth-child(3) {
    animation-delay: 0.9s;
}

@keyframes heroHighlightEdge {

    0%,
    100% {
        border-color: rgba(191, 163, 143, 0.25);
        box-shadow: 0 0 0 rgba(200, 227, 212, 0);
    }

    50% {
        border-color: rgba(200, 227, 212, 0.65);
        box-shadow: 0 4px 16px rgba(200, 227, 212, 0.22);
    }
}

.order-card {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    border: 1px solid rgba(191, 163, 143, 0.3);
    box-shadow: var(--shadow-lg);
}

.hero .order-card {
    animation: heroCardAmbient 8s ease-in-out infinite;
}

@keyframes heroCardAmbient {

    0%,
    100% {
        box-shadow: var(--shadow-lg);
        border-color: rgba(191, 163, 143, 0.3);
    }

    50% {
        box-shadow: var(--shadow-lg), 0 0 52px rgba(220, 204, 247, 0.35), 0 0 80px rgba(255, 212, 196, 0.15);
        border-color: rgba(200, 227, 212, 0.45);
    }
}

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

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

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.65rem 0.85rem;
    font-family: inherit;
    font-size: var(--fs-sm);
    border: 2px solid rgba(191, 163, 143, 0.4);
    border-radius: var(--radius-sm);
    background: var(--color-white);
    transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--color-sage);
    box-shadow: 0 0 0 3px rgba(200, 227, 212, 0.45);
}

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

.checkbox-row {
    display: flex;
    align-items: flex-start;
    gap: var(--space-sm);
    font-size: var(--fs-xs);
    line-height: 1.5;
}

.checkbox-row input {
    margin-top: 0.2rem;
    width: auto;
    flex-shrink: 0;
}

.error-msg {
    font-size: var(--fs-xs);
    color: #b42318;
    margin-top: var(--space-xs);
    min-height: 1.2em;
}

.form-legal-note {
    margin-top: var(--space-lg);
    font-size: var(--fs-xs);
    line-height: 1.55;
    color: var(--color-text-muted);
}

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

.section-alt {
    background: linear-gradient(180deg, rgba(220, 204, 247, 0.25) 0%, transparent 100%);
}

.section-header {
    text-align: center;
    max-width: 42rem;
    margin: 0 auto var(--space-2xl);
}

.section-header h2 {
    font-family: var(--font-display);
    font-size: var(--fs-xl);
    font-weight: 800;
    margin: 0 0 var(--space-sm);
    letter-spacing: -0.02em;
}

.section-header p {
    margin: 0;
    color: var(--color-text-muted);
    font-size: var(--fs-md);
}

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

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

@media (prefers-reduced-motion: reduce) {
    .reveal {
        opacity: 1;
        transform: none;
        transition: none;
    }
}

.social-proof {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: var(--space-lg);
    align-items: start;
}

.proof-stat {
    text-align: center;
    padding: var(--space-lg);
    background: var(--color-white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    transition: transform var(--transition-base), box-shadow var(--transition-base);
}

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

.proof-stat strong {
    display: block;
    font-size: var(--fs-xl);
    color: var(--color-dark);
}

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

.review-mini {
    padding: var(--space-md);
    background: var(--color-white);
    border-radius: var(--radius-md);
    border-left: 4px solid var(--color-peach);
    font-size: var(--fs-sm);
    box-shadow: var(--shadow-sm);
    transition: box-shadow var(--transition-fast);
}

.review-mini:hover {
    box-shadow: var(--shadow-md);
}

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

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

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

.bento-card {
    padding: var(--space-lg);
    border-radius: var(--radius-lg);
    background: var(--color-white);
    border: 1px solid rgba(191, 163, 143, 0.2);
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition-base), box-shadow var(--transition-base), border-color var(--transition-fast);
}

.bento-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    border-color: rgba(200, 227, 212, 0.8);
}

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

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

@media (max-width: 520px) {
    .bento-card.span-2 {
        grid-column: span 1;
    }

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

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

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

.bento-energy {
    background: linear-gradient(145deg, rgba(255, 212, 196, 0.5), var(--color-white));
}

.bento-muscle {
    background: linear-gradient(145deg, rgba(200, 227, 212, 0.45), var(--color-white));
}

.bento-immunity {
    background: linear-gradient(145deg, rgba(220, 204, 247, 0.45), var(--color-white));
}

.bento-vitamins {
    background: linear-gradient(145deg, rgba(191, 163, 143, 0.2), var(--color-white));
}

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

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

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

.benefit-card {
    padding: var(--space-lg);
    border-radius: var(--radius-lg);
    background: var(--color-white);
    border: 1px solid rgba(191, 163, 143, 0.2);
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.benefit-card:hover {
    transform: translateY(-4px) rotate(-0.5deg);
    box-shadow: var(--shadow-glow-sage);
}

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

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

@media (max-width: 1024px) {
    .benefit-card.wide {
        grid-column: span 1;
    }

    .benefit-card.tall-card {
        grid-row: span 1;
    }
}

.benefit-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-md);
    background: var(--color-lavender);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-sm);
    font-size: var(--fs-lg);
}

.spotlight-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--space-md);
}

.spotlight-card {
    position: relative;
    padding: var(--space-lg);
    border-radius: var(--radius-lg);
    background: var(--color-white);
    border: 1px solid rgba(191, 163, 143, 0.25);
    min-height: 140px;
    overflow: hidden;
    cursor: default;
    transition: box-shadow var(--transition-base), transform var(--transition-fast);
}

.spotlight-card:hover {
    box-shadow: var(--shadow-glow-peach);
    transform: translateY(-2px);
}

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

.spotlight-front {
    transition: opacity var(--transition-base), transform var(--transition-base);
}

.spotlight-benefit {
    position: absolute;
    inset: 0;
    padding: var(--space-lg);
    background: linear-gradient(160deg, rgba(200, 227, 212, 0.95), rgba(255, 212, 196, 0.92));
    font-size: var(--fs-sm);
    opacity: 0;
    transform: translateY(12px);
    transition: opacity var(--transition-base), transform var(--transition-base);
    display: flex;
    align-items: center;
}

.spotlight-card:hover .spotlight-front {
    opacity: 0;
    transform: translateY(-8px);
}

.spotlight-card:hover .spotlight-benefit {
    opacity: 1;
    transform: translateY(0);
}

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

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

.trust-item {
    text-align: center;
    padding: var(--space-xl);
    background: var(--color-white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    transition: transform var(--transition-base);
}

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

.trust-item svg {
    width: 72px;
    height: 72px;
    margin: 0 auto var(--space-md);
}

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

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

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

@keyframes iconPulse {

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

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

.carousel-wrap {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-lg);
    padding: var(--space-lg) 0;
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease;
}

.carousel-slide {
    flex: 0 0 100%;
    display: flex;
    justify-content: center;
    padding: var(--space-md);
}

.carousel-slide figure {
    margin: 0;
    padding: var(--space-lg);
    background: var(--color-white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-glow-lavender);
    transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.carousel-slide figure:hover {
    transform: perspective(800px) rotateY(-4deg) rotateX(4deg);
    box-shadow: var(--shadow-glow-peach);
}

.carousel-slide figcaption {
    margin-top: var(--space-md);
    text-align: center;
    font-size: var(--fs-sm);
    font-weight: 600;
    color: var(--color-text-muted);
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: var(--space-sm);
    margin-top: var(--space-md);
}

.carousel-dots button {
    width: 10px;
    height: 10px;
    border-radius: var(--radius-full);
    border: none;
    background: rgba(191, 163, 143, 0.45);
    cursor: pointer;
    transition: transform var(--transition-fast), background var(--transition-fast);
}

.carousel-dots button[aria-selected="true"] {
    background: var(--color-mocha);
    transform: scale(1.2);
}

.carousel-nav {
    display: flex;
    justify-content: center;
    gap: var(--space-md);
    margin-top: var(--space-sm);
}

.product-story {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2xl);
    align-items: center;
}

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

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

.spec-card {
    padding: var(--space-lg);
    background: var(--color-white);
    border-radius: var(--radius-md);
    border: 1px solid rgba(191, 163, 143, 0.2);
    display: flex;
    gap: var(--space-md);
    align-items: flex-start;
    transition: box-shadow var(--transition-fast);
}

.spec-card:hover {
    box-shadow: var(--shadow-md);
}

.spec-card .spec-icon {
    flex-shrink: 0;
    font-size: var(--fs-xl);
}

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

.step-card {
    text-align: center;
    padding: var(--space-lg);
    background: var(--color-white);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(191, 163, 143, 0.2);
    position: relative;
    transition: transform var(--transition-base);
}

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

.step-num {
    width: 40px;
    height: 40px;
    margin: 0 auto var(--space-md);
    border-radius: var(--radius-full);
    background: var(--color-peach);
    color: var(--color-dark);
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.ingredient-card {
    padding: var(--space-md);
    background: var(--color-white);
    border-radius: var(--radius-md);
    border: 1px solid rgba(191, 163, 143, 0.2);
    transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.ingredient-card:hover {
    border-color: var(--color-sage);
    box-shadow: var(--shadow-sm);
}

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

.instructions-list li {
    counter-increment: step;
    padding: var(--space-lg);
    padding-left: calc(var(--space-xl) + 2rem);
    background: var(--color-white);
    border-radius: var(--radius-md);
    border: 1px solid rgba(191, 163, 143, 0.2);
    position: relative;
}

.instructions-list li::before {
    content: counter(step);
    position: absolute;
    left: var(--space-lg);
    top: 50%;
    transform: translateY(-50%);
    width: 2rem;
    height: 2rem;
    border-radius: var(--radius-full);
    background: var(--color-lavender);
    color: var(--color-dark);
    font-weight: 800;
    font-size: var(--fs-sm);
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.review-card {
    padding: var(--space-lg);
    background: var(--color-white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: box-shadow var(--transition-base);
}

.review-card:hover {
    box-shadow: var(--shadow-md);
}

.review-card .stars {
    font-size: var(--fs-base);
    margin-bottom: var(--space-sm);
}

.accordion {
    max-width: 720px;
    margin: 0 auto;
}

.accordion-item {
    border-bottom: 1px solid rgba(191, 163, 143, 0.35);
}

.accordion-trigger {
    width: 100%;
    text-align: left;
    padding: var(--space-md) 0;
    font-family: inherit;
    font-size: var(--fs-md);
    font-weight: 700;
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: var(--space-md);
    color: var(--color-text);
    transition: color var(--transition-fast);
}

.accordion-trigger:hover {
    color: var(--color-mocha);
}

.accordion-trigger::after {
    content: "+";
    font-size: var(--fs-xl);
    font-weight: 300;
    transition: transform var(--transition-base);
}

.accordion-item.is-open .accordion-trigger::after {
    transform: rotate(45deg);
}

.accordion-panel {
    display: none;
    padding-bottom: var(--space-md);
    font-size: var(--fs-sm);
    color: var(--color-text-muted);
}

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

.cta-final {
    text-align: center;
    padding: var(--space-3xl) var(--space-lg);
    background: linear-gradient(135deg, rgba(255, 212, 196, 0.45), rgba(220, 204, 247, 0.4));
    border-radius: var(--radius-lg);
    margin: 0 var(--space-lg);
    max-width: calc(1120px + 2 * var(--space-lg));
    margin-inline: auto;
}

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

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

.disclaimer-block {
    padding: var(--space-xl);
    background: rgba(255, 255, 255, 0.75);
    border-radius: var(--radius-md);
    border: 1px dashed rgba(191, 163, 143, 0.5);
    font-size: var(--fs-xs);
    color: var(--color-text-muted);
    line-height: 1.65;
    max-width: 900px;
    margin: var(--space-2xl) auto 0;
}

.site-footer {
    background: var(--color-dark);
    color: rgba(255, 249, 242, 0.88);
    padding: var(--space-2xl) 0 var(--space-lg);
    margin-top: var(--space-3xl);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--space-xl);
    margin-bottom: var(--space-xl);
}

.footer-grid h3 {
    font-size: var(--fs-sm);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin: 0 0 var(--space-md);
    color: var(--color-peach);
}

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

.footer-grid a {
    color: rgba(255, 249, 242, 0.85);
    font-size: var(--fs-sm);
    display: block;
    padding: 0.25rem 0;
}

.footer-grid a:hover {
    color: var(--color-white);
}

.footer-legal-box {
    font-size: var(--fs-xs);
    line-height: 1.65;
    color: rgba(255, 249, 242, 0.75);
    padding: var(--space-lg);
    background: rgba(0, 0, 0, 0.25);
    border-radius: var(--radius-md);
    margin-bottom: var(--space-lg);
}

.footer-bottom {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-md);
    justify-content: space-between;
    align-items: center;
    font-size: var(--fs-xs);
    border-top: 1px solid rgba(255, 249, 242, 0.15);
    padding-top: var(--space-lg);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 2000;
    padding: var(--space-md);
    background: rgba(26, 22, 20, 0.92);
    backdrop-filter: blur(12px);
    color: var(--color-cream);
    transform: translateY(100%);
    transition: transform var(--transition-base);
    box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.2);
}

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

.cookie-inner {
    width: min(1120px, 100%);
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-md);
}

.cookie-inner p {
    margin: 0;
    flex: 1 1 280px;
    font-size: var(--fs-sm);
}

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

.modal-overlay {
    position: fixed;
    inset: 0;
    z-index: 3000;
    background: rgba(26, 22, 20, 0.55);
    backdrop-filter: blur(6px);
    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 {
    width: min(480px, 100%);
    max-height: 90vh;
    overflow-y: auto;
    background: rgba(255, 249, 242, 0.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(191, 163, 143, 0.35);
    padding: var(--space-xl);
    box-shadow: var(--shadow-lg);
}

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

.cookie-toggle-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-md) 0;
    border-bottom: 1px solid rgba(191, 163, 143, 0.25);
    font-size: var(--fs-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: rgba(191, 163, 143, 0.5);
    border-radius: var(--radius-full);
    transition: background var(--transition-fast);
}

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

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

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

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

.policy-page .doc-shell {
    padding-bottom: var(--space-3xl);
}

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

.reveal-stagger>.reveal:nth-child(1) {
    transition-delay: 0.05s;
}

.reveal-stagger>.reveal:nth-child(2) {
    transition-delay: 0.12s;
}

.reveal-stagger>.reveal:nth-child(3) {
    transition-delay: 0.19s;
}

.reveal-stagger>.reveal:nth-child(4) {
    transition-delay: 0.26s;
}

.reveal-stagger>.reveal:nth-child(5) {
    transition-delay: 0.33s;
}

.reveal-stagger>.reveal:nth-child(6) {
    transition-delay: 0.4s;
}

@media (prefers-reduced-motion: reduce) {
    .reveal-stagger>.reveal {
        transition-delay: 0s !important;
    }
}

.section-pulse {
    animation: sectionPulse 8s ease-in-out infinite;
}

@keyframes sectionPulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.92;
    }
}

.rhythm-section {
    position: relative;
}

.rhythm-panel {
    max-width: 52rem;
    margin: 0 auto;
    padding: var(--space-xl);
    background: rgba(255, 255, 255, 0.78);
    backdrop-filter: blur(12px);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(191, 163, 143, 0.28);
    box-shadow: var(--shadow-lg);
}

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

.rhythm-tab {
    flex: 1 1 calc(50% - var(--space-sm));
    min-width: 7rem;
    padding: 0.75rem 1rem;
    font-family: inherit;
    font-size: var(--fs-sm);
    font-weight: 700;
    border: 2px solid rgba(191, 163, 143, 0.35);
    border-radius: var(--radius-md);
    background: var(--color-cream);
    color: var(--color-text-muted);
    cursor: pointer;
    transition: background var(--transition-fast), color var(--transition-fast), border-color var(--transition-fast), transform var(--transition-fast), box-shadow var(--transition-fast);
}

.rhythm-tab:hover {
    border-color: var(--color-sage);
    transform: translateY(-2px);
}

.rhythm-tab[aria-selected="true"] {
    background: linear-gradient(135deg, var(--color-peach), rgba(255, 212, 196, 0.65));
    color: var(--color-dark);
    border-color: transparent;
    box-shadow: var(--shadow-glow-peach);
}

.rhythm-panels {
    position: relative;
    min-height: 10rem;
}

.rhythm-panel-block {
    display: none;
    padding: var(--space-md);
    border-radius: var(--radius-md);
    background: linear-gradient(120deg, rgba(200, 227, 212, 0.35), rgba(220, 204, 247, 0.25));
    border: 1px solid rgba(191, 163, 143, 0.2);
    animation: rhythmIn 0.45s ease forwards;
}

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

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

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

.rhythm-hint {
    margin-top: var(--space-md);
    font-size: var(--fs-xs);
    color: var(--color-text-muted);
    font-style: italic;
}

@keyframes rhythmIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

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

@media (prefers-reduced-motion: reduce) {
    .rhythm-panel-block {
        animation: none;
    }
}

.interactive-strip {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: var(--space-md);
    margin-top: var(--space-xl);
}

.interactive-pill {
    text-align: center;
    padding: var(--space-md);
    border-radius: var(--radius-md);
    background: var(--color-white);
    border: 2px solid rgba(191, 163, 143, 0.25);
    cursor: default;
    transition: transform var(--transition-base), box-shadow var(--transition-base), border-color var(--transition-fast);
}

.interactive-pill:hover {
    transform: scale(1.04);
    border-color: var(--color-peach);
    box-shadow: var(--shadow-md);
}

.interactive-pill strong {
    display: block;
    font-size: var(--fs-lg);
    color: var(--color-dark);
}

.interactive-pill span {
    font-size: var(--fs-xs);
    color: var(--color-text-muted);
}

.doc-page {
    background: var(--color-cream);
}

.doc-shell {
    padding: var(--space-2xl) 0 var(--space-3xl);
}

.doc-hero {
    position: relative;
    padding: var(--space-2xl) var(--space-lg);
    margin-bottom: var(--space-2xl);
    border-radius: var(--radius-lg);
    background: linear-gradient(135deg, rgba(255, 212, 196, 0.45), rgba(220, 204, 247, 0.4), rgba(200, 227, 212, 0.35));
    border: 1px solid rgba(191, 163, 143, 0.25);
    overflow: hidden;
}

.doc-hero::after {
    content: "";
    position: absolute;
    top: -40%;
    right: -20%;
    width: 50%;
    height: 140%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.5), transparent 65%);
    pointer-events: none;
}

.doc-hero-inner {
    position: relative;
    z-index: 1;
    max-width: 42rem;
}

.doc-hero h1 {
    margin: 0 0 var(--space-md);
    font-size: var(--fs-xl);
    font-weight: 900;
    letter-spacing: -0.03em;
    color: var(--color-dark);
}

.doc-hero .doc-lead {
    margin: 0;
    font-size: var(--fs-md);
    color: var(--color-text-muted);
}

.doc-meta {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-md);
    margin-top: var(--space-lg);
    font-size: var(--fs-sm);
    color: var(--color-text);
}

.doc-meta time {
    font-weight: 700;
    padding: 0.35rem 0.75rem;
    background: rgba(255, 255, 255, 0.75);
    border-radius: var(--radius-full);
    border: 1px solid rgba(191, 163, 143, 0.3);
}

.doc-grid {
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: var(--space-2xl);
    align-items: start;
}

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

.doc-toc {
    position: sticky;
    top: calc(var(--header-h) + var(--space-md));
    padding: var(--space-lg);
    background: var(--color-white);
    border-radius: var(--radius-md);
    border: 1px solid rgba(191, 163, 143, 0.25);
    box-shadow: var(--shadow-sm);
}

.doc-toc h2 {
    margin: 0 0 var(--space-md);
    font-size: var(--fs-sm);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--color-mocha);
}

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

.doc-toc a {
    display: block;
    padding: 0.4rem 0;
    font-size: var(--fs-xs);
    font-weight: 600;
    color: var(--color-text-muted);
    border-left: 3px solid transparent;
    padding-left: var(--space-sm);
    transition: color var(--transition-fast), border-color var(--transition-fast);
}

.doc-toc a:hover {
    color: var(--color-dark);
    border-left-color: var(--color-peach);
}

.doc-content {
    padding: var(--space-lg);
    background: rgba(255, 255, 255, 0.85);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(191, 163, 143, 0.2);
    box-shadow: var(--shadow-md);
}

.doc-content h2 {
    font-size: var(--fs-md);
    margin: var(--space-xl) 0 var(--space-sm);
    padding-top: var(--space-md);
    border-top: 1px dashed rgba(191, 163, 143, 0.35);
    scroll-margin-top: calc(var(--header-h) + var(--space-md));
}

.doc-content h2:first-of-type {
    margin-top: 0;
    padding-top: 0;
    border-top: none;
}

.doc-content p,
.doc-content ul {
    font-size: var(--fs-sm);
    color: var(--color-text-muted);
    line-height: 1.7;
}

.doc-content ul {
    padding-left: 1.25rem;
}

.doc-callout {
    margin: var(--space-lg) 0;
    padding: var(--space-md) var(--space-lg);
    border-radius: var(--radius-md);
    background: linear-gradient(90deg, rgba(200, 227, 212, 0.45), transparent);
    border-left: 4px solid var(--color-sage);
    font-size: var(--fs-sm);
    color: var(--color-text);
}

.thank-page {
    min-height: 70vh;
}

.thank-layout {
    display: grid;
    gap: var(--space-2xl);
    align-items: center;
    padding: var(--space-2xl) 0 var(--space-3xl);
}

.thank-card {
    max-width: 36rem;
    margin: 0 auto;
    text-align: center;
    padding: var(--space-2xl) var(--space-xl);
    border-radius: var(--radius-lg);
    background: linear-gradient(160deg, rgba(255, 255, 255, 0.95), rgba(220, 204, 247, 0.35));
    border: 1px solid rgba(191, 163, 143, 0.3);
    box-shadow: var(--shadow-lg), 0 0 60px rgba(255, 212, 196, 0.35);
    animation: thankPop 0.7s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

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

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

@media (prefers-reduced-motion: reduce) {
    .thank-card {
        animation: none;
    }
}

.thank-icon {
    width: 88px;
    height: 88px;
    margin: 0 auto var(--space-lg);
    color: var(--color-sage);
    filter: drop-shadow(0 8px 20px rgba(200, 227, 212, 0.8));
}

.thank-card h1 {
    margin: 0 0 var(--space-md);
    font-size: var(--fs-xl);
    font-weight: 900;
}

.thank-steps {
    text-align: left;
    max-width: 28rem;
    margin: var(--space-xl) auto 0;
    padding: 0;
    list-style: none;
    counter-reset: thank;
}

.thank-steps li {
    counter-increment: thank;
    position: relative;
    padding: var(--space-md) 0 var(--space-md) 2.75rem;
    font-size: var(--fs-sm);
    color: var(--color-text-muted);
    border-bottom: 1px solid rgba(191, 163, 143, 0.2);
}

.thank-steps li::before {
    content: counter(thank);
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 2rem;
    height: 2rem;
    border-radius: var(--radius-full);
    background: var(--color-peach);
    color: var(--color-dark);
    font-weight: 800;
    font-size: var(--fs-sm);
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.thank-followup {
    max-width: 40rem;
    margin: 0 auto;
}

.thank-followup h2:first-of-type {
    border: none;
    margin-top: 0;
    padding-top: 0;
}

.policy-page main.doc-shell {
    padding-top: var(--space-xl);
}

@media (max-width: 320px) {
    :root {
        --fs-hero: clamp(1.65rem, 12vw, 2.1rem);
        --fs-xl: clamp(1.35rem, 7vw, 1.65rem);
        --space-lg: 1.125rem;
        --space-xl: 1.5rem;
        --space-2xl: 2rem;
        --space-3xl: 2.5rem;
    }

    .container {
        width: 100%;
        max-width: 100%;
        padding-left: 0.75rem;
        padding-right: 0.75rem;
        margin-inline: 0;
    }

    .site-header .container {
        padding-left: 0.75rem;
        padding-right: 0.75rem;
    }

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

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

    .btn {
        width: 100%;
        max-width: 100%;
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .thank-actions .btn {
        width: auto;
        min-width: min(100%, 16rem);
    }

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

    .interactive-strip {
        grid-template-columns: 1fr;
    }

    .price-row {
        flex-wrap: wrap;
    }

    .doc-hero {
        padding: var(--space-lg) var(--space-md);
    }

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

    .cookie-inner {
        flex-direction: column;
        align-items: stretch;
    }

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

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

    .footer-grid {
        gap: var(--space-lg);
    }

    .cta-final {
        margin-left: 0.5rem;
        margin-right: 0.5rem;
    }
}