:root {
    --color-emerald: #2ECC71;
    --color-mint: #A8E6CF;
    --color-olive: #8DA469;
    --color-lime: #DFFF4A;
    --color-teal: #1ABC9C;
    --color-bg: #f4fbf7;
    --color-surface: #ffffff;
    --color-text: #1a2e24;
    --color-text-muted: #4a6354;
    --color-hero-dark: #0d1f17;
    --font-heading: "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
    --font-body: "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
    --font-size-xs: 0.8125rem;
    --font-size-sm: 0.9375rem;
    --font-size-base: 1rem;
    --font-size-md: 1.125rem;
    --font-size-lg: 1.375rem;
    --font-size-xl: 1.75rem;
    --font-size-2xl: clamp(2rem, 5vw, 3.25rem);
    --font-size-hero: clamp(2.5rem, 6vw, 4rem);
    --line-tight: 1.15;
    --line-normal: 1.55;
    --shadow-sm: 0 4px 14px rgba(26, 188, 156, 0.12);
    --shadow-md: 0 12px 40px rgba(46, 204, 113, 0.18);
    --shadow-lg: 0 24px 60px rgba(13, 31, 23, 0.35);
    --shadow-glow: 0 0 0 1px rgba(223, 255, 74, 0.35), 0 16px 50px rgba(46, 204, 113, 0.45);
    --shadow-glow-card: 0 20px 50px rgba(46, 204, 113, 0.35), 0 0 40px rgba(223, 255, 74, 0.15);
    --radius-sm: 0.5rem;
    --radius-md: 1rem;
    --radius-lg: 1.5rem;
    --radius-xl: 2rem;
    --radius-full: 9999px;
    --space-xs: 0.375rem;
    --space-sm: 0.75rem;
    --space-md: 1.25rem;
    --space-lg: 2rem;
    --space-xl: 3rem;
    --space-2xl: 4.5rem;
    --space-section: clamp(3rem, 8vw, 6rem);
    --transition-fast: 0.18s ease;
    --transition-smooth: 0.35s cubic-bezier(0.22, 1, 0.36, 1);
    --header-h: 4.25rem;
    --glass-bg: rgba(255, 255, 255, 0.72);
    --glass-border: rgba(46, 204, 113, 0.2);
}

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

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

body {
    margin: 0;
    font-family: var(--font-body);
    font-size: var(--font-size-base);
    line-height: var(--line-normal);
    color: var(--color-text);
    background: var(--color-bg);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

body.nav-open {
    overflow: hidden;
}

.ads-compliance-strip {
    background: linear-gradient(90deg, rgba(168, 230, 207, 0.35), rgba(255, 255, 255, 0.65));
    border-bottom: 1px solid rgba(46, 204, 113, 0.22);
    padding: var(--space-md) var(--space-lg);
    font-size: var(--font-size-xs);
    color: var(--color-text);
}

.ads-compliance-strip p {
    margin: 0 auto;
    max-width: 1200px;
    line-height: var(--line-normal);
}

.ads-compliance-strip a {
    font-weight: 700;
}

.price-footnote {
    font-size: var(--font-size-xs);
    color: rgba(245, 255, 248, 0.82);
    max-width: 40rem;
    margin: var(--space-sm) 0 var(--space-md);
    line-height: var(--line-normal);
}

@media (max-width: 900px) {
    .price-footnote {
        margin-left: auto;
        margin-right: auto;
        text-align: left;
    }
}

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

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

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

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

.skip-link {
    position: absolute;
    left: -9999px;
    top: var(--space-sm);
    background: var(--color-emerald);
    color: var(--color-hero-dark);
    padding: var(--space-sm) var(--space-md);
    border-radius: var(--radius-sm);
    font-weight: 700;
    z-index: 1000;
}

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

.site-header {
    position: sticky;
    top: 0;
    z-index: 240;
    background: var(--glass-bg);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--glass-border);
    transition: box-shadow var(--transition-smooth);
}

.site-header.is-scrolled {
    box-shadow: var(--shadow-sm);
}

.header-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: var(--space-sm) var(--space-lg);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-md);
    min-height: var(--header-h);
}

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

.brand:hover {
    color: var(--color-emerald);
    text-decoration: none;
}

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

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

.main-nav a:hover {
    background: rgba(168, 230, 207, 0.45);
    color: var(--color-hero-dark);
    text-decoration: none;
}

.burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 6px;
    width: 2.85rem;
    height: 2.85rem;
    padding: 0;
    border: none;
    border-radius: var(--radius-md);
    background: linear-gradient(145deg, rgba(168, 230, 207, 0.5), rgba(46, 204, 113, 0.25));
    cursor: pointer;
    position: relative;
    z-index: 260;
    transition: box-shadow var(--transition-fast), transform var(--transition-fast);
}

.burger:hover {
    box-shadow: var(--shadow-sm);
}

.burger-line {
    display: block;
    width: 1.35rem;
    height: 2px;
    border-radius: 2px;
    background: var(--color-hero-dark);
    transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.25s ease;
}

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

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

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

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

    .main-nav {
        position: fixed;
        inset: 0;
        z-index: 250;
        background: linear-gradient(165deg,
                rgba(13, 31, 23, 0.97) 0%,
                rgba(26, 77, 58, 0.96) 45%,
                rgba(13, 31, 23, 0.98) 100%);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        display: flex;
        align-items: center;
        justify-content: center;
        padding: var(--space-xl);
        transform: translateX(100%);
        opacity: 0;
        visibility: hidden;
        transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.35s ease, visibility 0.35s;
    }

    .main-nav.is-open {
        transform: translateX(0);
        opacity: 1;
        visibility: visible;
        height: 100vh;
    }

    .main-nav ul {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: var(--space-md);
        padding: var(--space-2xl) var(--space-lg);
    }

    .main-nav a {
        font-size: var(--font-size-lg);
        color: #e8fff2;
        padding: var(--space-sm) var(--space-lg);
        border-radius: var(--radius-full);
    }

    .main-nav a:hover {
        background: rgba(46, 204, 113, 0.35);
        color: var(--color-lime);
    }
}

.hero {
    position: relative;
    color: #f5fff8;
    padding: clamp(2.5rem, 6vw, 4.5rem) var(--space-lg) clamp(3rem, 8vw, 5.5rem);
    overflow: hidden;
    min-height: min(92vh, 900px);
    display: flex;
    align-items: center;
}

.hero-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.hero-mesh {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 120% 85% at 50% -25%, rgba(46, 204, 113, 0.5) 0%, transparent 58%),
        radial-gradient(ellipse 70% 55% at 110% 45%, rgba(26, 188, 156, 0.28) 0%, transparent 50%),
        radial-gradient(ellipse 50% 40% at -5% 85%, rgba(141, 164, 105, 0.18) 0%, transparent 45%),
        linear-gradient(168deg, #050f0c 0%, #0d281f 38%, #154d3a 72%, #071210 100%);
}

.hero-aurora {
    position: absolute;
    inset: -45% -25%;
    background: conic-gradient(from 200deg at 45% 40%, transparent, rgba(223, 255, 74, 0.12), transparent 22%, rgba(46, 204, 113, 0.1), transparent 48%, rgba(168, 230, 207, 0.08), transparent 75%);
    animation: heroAuroraSpin 32s linear infinite;
    opacity: 0.9;
}

@keyframes heroAuroraSpin {
    to {
        transform: rotate(360deg);
    }
}

.hero-scanlines {
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(180deg, transparent, transparent 3px, rgba(0, 0, 0, 0.04) 3px, rgba(0, 0, 0, 0.04) 5px);
    mix-blend-mode: overlay;
    opacity: 0.45;
    animation: heroScanPulse 8s ease-in-out infinite;
}

@keyframes heroScanPulse {

    0%,
    100% {
        opacity: 0.38;
    }

    50% {
        opacity: 0.55;
    }
}

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

.hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(48px);
    opacity: 0.55;
}

.hero-orb--one {
    width: min(58vw, 440px);
    height: min(58vw, 440px);
    background: radial-gradient(circle, rgba(223, 255, 74, 0.55) 0%, transparent 68%);
    top: 2%;
    right: 4%;
    animation: heroOrbA 16s ease-in-out infinite;
}

.hero-orb--two {
    width: min(42vw, 320px);
    height: min(42vw, 320px);
    background: radial-gradient(circle, rgba(26, 188, 156, 0.5) 0%, transparent 70%);
    bottom: 8%;
    left: -2%;
    animation: heroOrbB 20s ease-in-out infinite;
}

.hero-orb--three {
    width: min(28vw, 220px);
    height: min(28vw, 220px);
    background: radial-gradient(circle, rgba(46, 204, 113, 0.45) 0%, transparent 72%);
    top: 40%;
    left: 35%;
    animation: heroOrbC 12s ease-in-out infinite;
}

@keyframes heroOrbA {

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

    33% {
        transform: translate(-16px, 22px) scale(1.06);
    }

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

@keyframes heroOrbB {

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

    50% {
        transform: translate(20px, -18px) scale(1.08);
    }
}

@keyframes heroOrbC {

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

    50% {
        transform: translate(-14px, 14px) scale(1.1);
    }
}

.hero-inner {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

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

.hero-copy-col {
    padding-top: var(--space-sm);
}

.hero-kicker {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-xs) var(--space-md);
    border-radius: var(--radius-full);
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(168, 230, 207, 0.32);
    margin-bottom: var(--space-md);
    font-size: var(--font-size-xs);
    font-weight: 800;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    color: rgba(245, 255, 248, 0.95);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.15);
}

.hero-kicker-pulse {
    width: 0.5rem;
    height: 0.5rem;
    border-radius: var(--radius-full);
    background: var(--color-lime);
    flex-shrink: 0;
    animation: heroKickerRipple 2.2s ease-out infinite;
}

@keyframes heroKickerRipple {
    0% {
        box-shadow: 0 0 0 0 rgba(223, 255, 74, 0.55);
    }

    70% {
        box-shadow: 0 0 0 14px rgba(223, 255, 74, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(223, 255, 74, 0);
    }
}

.hero-copy h1 {
    font-family: var(--font-heading);
    font-size: var(--font-size-hero);
    line-height: var(--line-tight);
    margin: 0 0 var(--space-md);
    letter-spacing: -0.03em;
}

.hero-title-highlight {
    background: linear-gradient(100deg, var(--color-lime) 0%, #ffffff 35%, var(--color-mint) 55%, var(--color-teal) 80%, var(--color-lime));
    background-size: 220% auto;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    animation: heroTitleShine 6s linear infinite;
}

@keyframes heroTitleShine {
    to {
        background-position: 220% center;
    }
}

.hero-lead {
    font-size: var(--font-size-md);
    opacity: 0.93;
    max-width: 38ch;
    margin: 0 0 var(--space-lg);
}

.hero-visual-col {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

.hero-visual-stage {
    position: relative;
    min-height: min(52vw, 380px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-lg) var(--space-sm);
}

.hero-ring {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.hero-ring--slow {
    width: min(88%, 430px);
    aspect-ratio: 1;
    border: 2px solid rgba(46, 204, 113, 0.18);
    border-top-color: rgba(223, 255, 74, 0.55);
    animation: heroRingSpin 24s linear infinite;
}

.hero-ring--fast {
    width: min(74%, 360px);
    aspect-ratio: 1;
    border: 2px dashed rgba(168, 230, 207, 0.22);
    border-bottom-color: rgba(26, 188, 156, 0.55);
    animation: heroRingSpin 16s linear infinite reverse;
}

@keyframes heroRingSpin {
    to {
        transform: rotate(360deg);
    }
}

.hero-pulse-ring {
    position: absolute;
    width: min(82%, 400px);
    aspect-ratio: 1;
    border-radius: 50%;
    border: 1px solid rgba(223, 255, 74, 0.28);
    animation: heroPulseExpand 3.8s ease-out infinite;
}

@keyframes heroPulseExpand {
    0% {
        transform: scale(0.88);
        opacity: 0.65;
    }

    65% {
        transform: scale(1.06);
        opacity: 0;
    }

    100% {
        opacity: 0;
    }
}

.hero-chip {
    position: absolute;
    z-index: 4;
    font-size: var(--font-size-xs);
    font-weight: 800;
    padding: 0.4rem 0.75rem;
    border-radius: var(--radius-full);
    background: rgba(7, 18, 16, 0.72);
    border: 1px solid rgba(46, 204, 113, 0.4);
    color: #e8fff2;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.25);
}

.hero-chip--a {
    top: 10%;
    left: 4%;
    animation: heroChipA 8s ease-in-out infinite;
}

.hero-chip--b {
    top: 52%;
    right: 2%;
    animation: heroChipB 9s ease-in-out infinite;
}

.hero-chip--c {
    bottom: 12%;
    left: 12%;
    animation: heroChipC 7s ease-in-out infinite;
}

@keyframes heroChipA {

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

    45% {
        transform: translate(10px, -12px);
    }
}

@keyframes heroChipB {

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

    50% {
        transform: translate(-8px, 10px) rotate(-2deg);
    }
}

@keyframes heroChipC {

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

    50% {
        transform: translate(12px, 8px);
    }
}

.hero-figure {
    position: relative;
    z-index: 2;
    margin: 0;
    filter: drop-shadow(0 28px 55px rgba(46, 204, 113, 0.42)) drop-shadow(0 0 40px rgba(223, 255, 74, 0.12));
}

.hero-product-img {
    margin: 0 auto;
    max-height: min(64vh, 500px);
    width: auto;
    animation: heroProductBob 7s ease-in-out infinite;
}

@keyframes heroProductBob {

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

    45% {
        transform: translateY(-16px) scale(1.025);
    }
}

.hero-order-form {
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(168, 230, 207, 0.45);
    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.22), 0 0 0 1px rgba(255, 255, 255, 0.08) inset;
}

.hero-stars {
    animation: heroStarNudge 5s ease-in-out infinite;
}

@keyframes heroStarNudge {

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

    33% {
        transform: translateY(-3px);
    }

    66% {
        transform: translateY(2px);
    }
}

.hero-badge-tilt {
    animation: heroBadgeBob 4.5s ease-in-out infinite;
}

.hero-badges .badge-pill:first-of-type {
    animation-delay: -0.55s;
}

.hero-badges .badge-pill:last-of-type {
    animation-delay: -1.35s;
}

@keyframes heroBadgeBob {

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

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

.hero-price-pop {
    animation: heroPricePulse 3.2s ease-in-out infinite;
}

@keyframes heroPricePulse {

    0%,
    100% {
        text-shadow: 0 0 0 transparent;
    }

    50% {
        text-shadow: 0 0 20px rgba(223, 255, 74, 0.45);
    }
}

.hero-hli {
    animation: heroHliEnter 0.65s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.hero-highlights .hero-hli:nth-child(1) {
    animation-delay: 0.12s;
}

.hero-highlights .hero-hli:nth-child(2) {
    animation-delay: 0.24s;
}

.hero-highlights .hero-hli:nth-child(3) {
    animation-delay: 0.36s;
}

@keyframes heroHliEnter {
    from {
        opacity: 0;
        transform: translateX(-18px);
    }

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

@media (max-width: 900px) {
    .hero {
        min-height: 0;
        display: block;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-visual-col {
        order: -1;
    }

    .hero-copy-col {
        text-align: center;
    }

    .hero-kicker {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-lead {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-badges {
        justify-content: center;
    }

    .hero-price-row {
        justify-content: center;
    }

    .hero-highlights {
        text-align: left;
        max-width: 320px;
        margin-left: auto;
        margin-right: auto;
    }
}

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

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

.badge-pill {
    background: rgba(168, 230, 207, 0.25);
    border: 1px solid rgba(223, 255, 74, 0.35);
    padding: var(--space-xs) var(--space-sm);
    border-radius: var(--radius-full);
    font-size: var(--font-size-xs);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

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

@media (max-width: 900px) {
    .price-row {
        justify-content: center;
    }
}

.price-current {
    font-size: var(--font-size-xl);
    font-weight: 800;
    color: var(--color-lime);
}

.price-old {
    font-size: var(--font-size-md);
    text-decoration: line-through;
    opacity: 0.6;
}

.hero-highlights {
    list-style: none;
    padding: 0;
    margin: 0 0 var(--space-lg);
    display: grid;
    gap: var(--space-sm);
}

.hero-highlights li {
    display: flex;
    align-items: flex-start;
    gap: var(--space-sm);
    font-size: var(--font-size-sm);
}

.hero-highlights li::before {
    content: "";
    width: 0.55rem;
    height: 0.55rem;
    margin-top: 0.4rem;
    border-radius: var(--radius-full);
    background: var(--color-emerald);
    box-shadow: 0 0 0 3px rgba(46, 204, 113, 0.35);
    flex-shrink: 0;
}

.order-form {
    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-lg);
    box-shadow: var(--shadow-lg);
}

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

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

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: var(--space-sm) var(--space-md);
    border-radius: var(--radius-md);
    border: 2px solid rgba(46, 204, 113, 0.35);
    font-family: inherit;
    font-size: var(--font-size-sm);
    transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
    background: rgba(255, 255, 255, 0.95);
    color: var(--color-text);
}

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

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--color-emerald);
    box-shadow: 0 0 0 4px rgba(46, 204, 113, 0.2);
    outline: none;
}

.form-group.is-invalid input,
.form-group.is-invalid textarea {
    border-color: #c0392b;
}

.field-error {
    display: none;
    color: #c0392b;
    font-size: var(--font-size-xs);
    margin-top: var(--space-xs);
    font-weight: 600;
}

.form-group.is-invalid .field-error {
    display: block;
}

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

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

.checkbox-row label {
    font-size: var(--font-size-xs);
    font-weight: 600;
    color: var(--color-text-muted);
}

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

.btn-primary {
    background: linear-gradient(120deg, var(--color-lime) 0%, var(--color-emerald) 100%);
    color: var(--color-hero-dark);
    box-shadow: var(--shadow-glow);
    width: 100%;
}

.btn-primary:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 22px 50px rgba(46, 204, 113, 0.5);
}

.btn-secondary {
    background: var(--color-teal);
    color: #fff;
}

.btn-secondary:hover {
    background: var(--color-emerald);
    text-decoration: none;
    color: #fff;
}

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

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

.section-inner {
    max-width: 1200px;
    margin: 0 auto;
}

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

.section-head h2 {
    font-family: var(--font-heading);
    font-size: var(--font-size-2xl);
    margin: 0 0 var(--space-sm);
    letter-spacing: -0.02em;
    line-height: var(--line-tight);
}

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

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

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

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

.bento-card {
    background: var(--color-surface);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    border: 1px solid rgba(46, 204, 113, 0.15);
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition-smooth), box-shadow var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

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

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

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

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

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

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

.bento-icon {
    width: 3rem;
    height: 3rem;
    border-radius: var(--radius-md);
    background: linear-gradient(135deg, var(--color-mint), var(--color-emerald));
    display: grid;
    place-items: center;
    font-size: 1.35rem;
    margin-bottom: var(--space-sm);
    color: var(--color-hero-dark);
}

.bento-icon i {
    line-height: 1;
}

.bento-icon--compact {
    width: 2.5rem;
    height: 2.5rem;
    font-size: 1.1rem;
}

.ingredient-fa {
    margin: 0 0 var(--space-sm);
    font-size: var(--font-size-xl);
    color: var(--color-teal);
}

.ingredient-fa i {
    opacity: 0.9;
}

.ingredient-mini-fa {
    margin: 0 0 var(--space-xs);
    font-size: var(--font-size-md);
    color: var(--color-emerald);
}

.ingredient-mini-fa i {
    opacity: 0.85;
}

.ingredient-spotlight {
    background: linear-gradient(180deg, var(--color-mint) 0%, var(--color-bg) 100%);
}

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

.ingredient-card {
    background: var(--color-surface);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    border: 1px solid rgba(26, 188, 156, 0.2);
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition-smooth), box-shadow var(--transition-smooth);
    cursor: default;
}

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

.ingredient-card h3 {
    margin: 0 0 var(--space-sm);
    color: var(--color-teal);
}

.ingredient-card .ingredient-benefit {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height var(--transition-smooth), opacity var(--transition-smooth), margin var(--transition-smooth);
    font-size: var(--font-size-sm);
    color: var(--color-text-muted);
}

.ingredient-card:hover .ingredient-benefit {
    max-height: 6rem;
    opacity: 1;
    margin-top: var(--space-sm);
}

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

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

.trust-item {
    background: var(--color-surface);
    border-radius: var(--radius-xl);
    padding: var(--space-xl) var(--space-lg);
    text-align: center;
    border: 1px solid rgba(46, 204, 113, 0.18);
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition-smooth);
}

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

.trust-icon-wrap {
    width: 4rem;
    height: 4rem;
    margin: 0 auto var(--space-md);
    border-radius: var(--radius-lg);
    background: linear-gradient(145deg, rgba(168, 230, 207, 0.35), rgba(46, 204, 113, 0.45));
    border: 1px solid rgba(223, 255, 74, 0.35);
    display: grid;
    place-items: center;
    font-size: 1.65rem;
    color: var(--color-hero-dark);
    animation: trustFloat 4s ease-in-out infinite;
}

.trust-item:nth-child(2) .trust-icon-wrap {
    animation-delay: 0.4s;
}

.trust-item:nth-child(3) .trust-icon-wrap {
    animation-delay: 0.8s;
}

.trust-icon-wrap i {
    line-height: 1;
}

@keyframes trustFloat {

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

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

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

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

.rhythm-studio {
    background: linear-gradient(180deg, var(--color-bg) 0%, rgba(168, 230, 207, 0.35) 50%, var(--color-bg) 100%);
    position: relative;
    overflow: hidden;
}

.rhythm-studio::before {
    content: "";
    position: absolute;
    width: 40vmax;
    height: 40vmax;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(223, 255, 74, 0.15) 0%, transparent 65%);
    top: -15%;
    right: -10%;
    pointer-events: none;
    animation: orbDrift 18s ease-in-out infinite;
}

.rhythm-studio::after {
    content: "";
    position: absolute;
    width: 30vmax;
    height: 30vmax;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(26, 188, 156, 0.2) 0%, transparent 70%);
    bottom: -10%;
    left: -5%;
    pointer-events: none;
    animation: orbDrift 22s ease-in-out infinite reverse;
}

@keyframes orbDrift {

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

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

.rhythm-shell {
    position: relative;
    z-index: 1;
    max-width: 920px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.55);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(46, 204, 113, 0.22);
    border-radius: var(--radius-xl);
    padding: var(--space-xl);
    box-shadow: var(--shadow-md);
}

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

.rhythm-tab {
    font-family: inherit;
    font-weight: 800;
    font-size: var(--font-size-sm);
    padding: var(--space-sm) var(--space-lg);
    border-radius: var(--radius-full);
    border: 2px solid transparent;
    background: rgba(255, 255, 255, 0.85);
    color: var(--color-text-muted);
    cursor: pointer;
    transition: background var(--transition-fast), color var(--transition-fast), transform var(--transition-fast), box-shadow var(--transition-smooth);
}

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

.rhythm-tab.is-active {
    background: linear-gradient(120deg, var(--color-lime), var(--color-emerald));
    color: var(--color-hero-dark);
    border-color: rgba(255, 255, 255, 0.5);
    box-shadow: var(--shadow-glow);
}

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

.rhythm-panel {
    display: none;
    padding: var(--space-md) 0;
}

.rhythm-panel.is-active {
    display: block;
    animation: fadePanel 0.55s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

@keyframes fadePanel {
    from {
        opacity: 0;
        transform: translateY(0.75rem);
    }

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

.rhythm-orbit {
    width: 100%;
    height: 4px;
    border-radius: var(--radius-full);
    background: linear-gradient(90deg, transparent, var(--color-teal), var(--color-lime), transparent);
    margin-bottom: var(--space-md);
    animation: shimmer 1.2s ease-in-out infinite;
}

@keyframes shimmer {

    0%,
    100% {
        opacity: 0.6;
    }

    50% {
        opacity: 1;
    }
}

.rhythm-lead {
    font-size: var(--font-size-md);
    color: var(--color-text);
    margin: 0 0 var(--space-md);
    font-weight: 600;
}

.rhythm-list {
    margin: 0;
    padding-left: 1.2rem;
    color: var(--color-text-muted);
    font-size: var(--font-size-sm);
}

.rhythm-list li {
    margin-bottom: var(--space-xs);
}

.rhythm-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-md);
    margin-top: var(--space-xl);
    padding-top: var(--space-lg);
    border-top: 1px solid rgba(46, 204, 113, 0.2);
}

@media (max-width: 640px) {
    .rhythm-stats {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

.stat-block {
    text-align: center;
    padding: var(--space-md);
    border-radius: var(--radius-lg);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(168, 230, 207, 0.35));
    border: 1px solid rgba(223, 255, 74, 0.25);
    transition: transform var(--transition-smooth), box-shadow var(--transition-smooth);
}

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

.stat-num {
    display: block;
    font-size: var(--font-size-xl);
    font-weight: 800;
    color: var(--color-emerald);
    line-height: 1.2;
}

.stat-label {
    font-size: var(--font-size-xs);
    color: var(--color-text-muted);
    font-weight: 600;
}

.section-wave {
    height: 4rem;
    margin-top: -1px;
    background: linear-gradient(180deg, var(--color-hero-dark) 0%, transparent 100%);
    opacity: 0.4;
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 48'%3E%3Cpath fill='%23fff' d='M0 0h1440v24c-120 20-240 20-360 0S600 4 480 24 240 44 0 24V0z'/%3E%3C/svg%3E");
    mask-size: cover;
    mask-repeat: no-repeat;
}

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

    .hero-aurora,
    .hero-scanlines,
    .hero-orb--one,
    .hero-orb--two,
    .hero-orb--three,
    .hero-kicker-pulse,
    .hero-title-highlight,
    .hero-ring--slow,
    .hero-ring--fast,
    .hero-pulse-ring,
    .hero-chip--a,
    .hero-chip--b,
    .hero-chip--c,
    .hero-product-img,
    .hero-stars,
    .hero-badge-tilt,
    .hero-badges .badge-pill,
    .hero-price-pop,
    .hero-hli {
        animation: none;
    }

    .hero-title-highlight {
        background: none;
        color: var(--color-lime);
        background-clip: unset;
        -webkit-background-clip: unset;
    }

    .rhythm-studio::before,
    .rhythm-studio::after,
    .rhythm-orbit {
        animation: none;
    }

    .overview-fa {
        animation: none;
    }

    .reveal {
        opacity: 1;
        transform: none;
    }
}

.social-proof {
    background: var(--color-surface);
}

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

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

.proof-stat {
    text-align: center;
    padding: var(--space-lg);
    border-radius: var(--radius-lg);
    background: var(--color-bg);
    border: 1px solid rgba(46, 204, 113, 0.12);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-xs);
}

.proof-stat-icon {
    width: 2.75rem;
    height: 2.75rem;
    border-radius: var(--radius-full);
    background: linear-gradient(135deg, var(--color-mint), var(--color-emerald));
    display: grid;
    place-items: center;
    color: var(--color-hero-dark);
    font-size: 1.1rem;
}

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

.review-preview-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-md);
}

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

.preview-card {
    background: var(--color-bg);
    padding: var(--space-lg);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(26, 188, 156, 0.15);
    transition: transform var(--transition-smooth);
}

.preview-card:hover {
    transform: translateY(-3px);
}

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

.benefits-bento {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    grid-auto-rows: minmax(120px, auto);
    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 {
    grid-column: span 2;
    background: var(--color-surface);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    border: 1px solid rgba(46, 204, 113, 0.12);
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition-smooth), box-shadow var(--transition-smooth);
}

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

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

@media (max-width: 1024px) {

    .benefit-card,
    .benefit-card.wide,
    .benefit-card.tall {
        grid-column: span 2;
        grid-row: auto;
    }
}

@media (max-width: 520px) {

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

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

.tilt-card {
    transform-style: preserve-3d;
}

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

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

.overview-visual {
    margin: 0;
    min-height: min(42vw, 340px);
    border-radius: var(--radius-xl);
    background: linear-gradient(145deg, rgba(168, 230, 207, 0.55), rgba(46, 204, 113, 0.25), rgba(26, 188, 156, 0.35));
    border: 1px solid rgba(223, 255, 74, 0.25);
    box-shadow: var(--shadow-md);
    position: relative;
    overflow: hidden;
    display: grid;
    place-items: center;
}

.overview-icon-cluster {
    position: relative;
    width: 100%;
    min-height: 280px;
}

.overview-fa {
    position: absolute;
    color: var(--color-hero-dark);
    opacity: 0.88;
    animation: overviewIconDrift 8s ease-in-out infinite;
    filter: drop-shadow(0 4px 12px rgba(13, 31, 23, 0.2));
}

.overview-fa--1 {
    font-size: 3.75rem;
    top: 12%;
    left: 14%;
    animation-delay: 0s;
}

.overview-fa--2 {
    font-size: 2.75rem;
    top: 22%;
    right: 18%;
    animation-delay: -2s;
    color: var(--color-teal);
}

.overview-fa--3 {
    font-size: 3.25rem;
    bottom: 18%;
    left: 22%;
    animation-delay: -4s;
}

.overview-fa--4 {
    font-size: 2.5rem;
    bottom: 24%;
    right: 14%;
    animation-delay: -3s;
    color: #126956;
}

@keyframes overviewIconDrift {

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

    50% {
        transform: translate(6px, -10px);
    }
}

.overview-fa--2,
.overview-fa--4 {
    animation-name: overviewIconDriftB;
}

@keyframes overviewIconDriftB {

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

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

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

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

.spec-block {
    display: flex;
    gap: var(--space-md);
    background: var(--color-surface);
    padding: var(--space-lg);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(141, 164, 105, 0.25);
    transition: border-color var(--transition-fast);
}

.spec-block:hover {
    border-color: var(--color-emerald);
}

.spec-block .icon {
    font-size: 1.5rem;
    min-width: 2.5rem;
    display: grid;
    place-items: center;
    color: var(--color-teal);
}

.spec-block .icon i {
    line-height: 1;
}

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

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

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

.step-card {
    background: var(--color-surface);
    padding: var(--space-lg);
    border-radius: var(--radius-lg);
    border-top: 4px solid var(--color-teal);
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition-smooth);
}

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

.step-num {
    font-weight: 800;
    color: var(--color-lime);
    background: var(--color-hero-dark);
    width: 2.25rem;
    height: 2.25rem;
    border-radius: var(--radius-full);
    display: grid;
    place-items: center;
    margin-bottom: var(--space-sm);
}

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

.ingredient-small {
    background: var(--color-surface);
    padding: var(--space-md);
    border-radius: var(--radius-md);
    border: 1px solid rgba(46, 204, 113, 0.15);
}

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

.use-list li {
    display: flex;
    gap: var(--space-md);
    align-items: flex-start;
    background: var(--color-surface);
    padding: var(--space-lg);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.use-list li::before {
    counter-increment: use;
    content: counter(use);
    font-weight: 800;
    background: linear-gradient(135deg, var(--color-emerald), var(--color-teal));
    color: #fff;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: var(--radius-full);
    display: grid;
    place-items: center;
    flex-shrink: 0;
}

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

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

.review-card {
    background: var(--color-surface);
    padding: var(--space-lg);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(46, 204, 113, 0.12);
    transition: box-shadow var(--transition-smooth);
}

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

.review-card header {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    margin-bottom: var(--space-sm);
}

.review-avatar {
    width: 48px;
    height: 48px;
    min-width: 48px;
    min-height: 48px;
    border-radius: var(--radius-full);
    display: grid;
    place-items: center;
    background: linear-gradient(145deg, var(--color-mint), var(--color-emerald));
    color: var(--color-hero-dark);
    font-size: 1.15rem;
    box-shadow: var(--shadow-sm);
}

.review-avatar--b {
    background: linear-gradient(145deg, var(--color-lime), var(--color-mint));
}

.review-avatar--c {
    background: linear-gradient(145deg, var(--color-teal), var(--color-mint));
    color: #fff;
}

.review-avatar i {
    line-height: 1;
}

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

.accordion-item {
    border-bottom: 1px solid rgba(46, 204, 113, 0.2);
}

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

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

.accordion-icon {
    flex-shrink: 0;
    transition: transform var(--transition-smooth);
}

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

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

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

.cta-final {
    background: linear-gradient(120deg, var(--color-hero-dark), #1a4d3a);
    color: #f5fff8;
    text-align: center;
    border-radius: var(--radius-xl);
    padding: var(--space-2xl) var(--space-lg);
    margin: 0 var(--space-lg);
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
    box-shadow: var(--shadow-lg);
}

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

.cta-final p {
    max-width: 42ch;
    margin: 0 auto var(--space-lg);
    opacity: 0.9;
}

.disclaimer-block {
    background: rgba(141, 164, 105, 0.12);
    border: 1px solid rgba(141, 164, 105, 0.35);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    margin-top: var(--space-xl);
    font-size: var(--font-size-sm);
    color: var(--color-text-muted);
}

.site-footer {
    background: var(--color-hero-dark);
    color: #d5ede3;
    padding: var(--space-xl) var(--space-lg) var(--space-lg);
    margin-top: var(--space-section);
}

.footer-inner {
    max-width: 1200px;
    margin: 0 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;
    }
}

.footer-legal-box {
    background: rgba(0, 0, 0, 0.25);
    border: 1px solid rgba(168, 230, 207, 0.2);
    border-radius: var(--radius-md);
    padding: var(--space-md);
    font-size: var(--font-size-xs);
    line-height: var(--line-normal);
    margin-bottom: var(--space-lg);
}

.footer-legal-box p {
    margin: 0 0 var(--space-sm);
}

.footer-legal-box p:last-child {
    margin-bottom: 0;
}

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

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

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

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

.footer-bottom {
    border-top: 1px solid rgba(168, 230, 207, 0.2);
    padding-top: var(--space-md);
    font-size: var(--font-size-xs);
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
    justify-content: space-between;
}

.cookie-banner {
    position: fixed;
    left: var(--space-md);
    right: var(--space-md);
    bottom: var(--space-md);
    z-index: 400;
    max-width: 560px;
    background: rgba(255, 255, 255, 0.82);
    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);
    transform: translateY(120%);
    opacity: 0;
    transition: transform var(--transition-smooth), opacity var(--transition-smooth);
}

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

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

.cookie-actions .btn {
    width: auto;
    padding: var(--space-sm) var(--space-md);
    font-size: var(--font-size-xs);
}

.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(13, 31, 23, 0.55);
    z-index: 300;
    display: none;
    align-items: center;
    justify-content: center;
    padding: var(--space-lg);
}

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

.modal {
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-xl);
    max-width: 480px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    padding: var(--space-xl);
    box-shadow: var(--shadow-lg);
}

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

.toggle-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-md);
    padding: var(--space-md) 0;
    border-bottom: 1px solid rgba(46, 204, 113, 0.15);
}

.toggle-row small {
    display: block;
    color: var(--color-text-muted);
    font-size: var(--font-size-xs);
}

.switch {
    position: relative;
    width: 3.1rem;
    height: 1.75rem;
    flex-shrink: 0;
}

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

.slider {
    position: absolute;
    cursor: pointer;
    inset: 0;
    display: block;
    height: 100%;
    background: #ccc;
    border-radius: var(--radius-full);
    transition: background var(--transition-fast);
}

.slider::before {
    position: absolute;
    content: "";
    height: 1.2rem;
    width: 1.2rem;
    left: 0.28rem;
    bottom: 0.28rem;
    background: #fff;
    border-radius: 50%;
    transition: transform var(--transition-smooth);
}

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

.switch input:checked+.slider::before {
    transform: translateX(1.35rem);
}

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

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

.reveal {
    opacity: 0;
    transform: translateY(36px);
    transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

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

.reveal-delay-1 {
    transition-delay: 0.08s;
}

.reveal-delay-2 {
    transition-delay: 0.16s;
}

.page-legal {
    background: linear-gradient(165deg, #f0faf5 0%, var(--color-bg) 35%, #e8f8f0 100%);
}

.legal-hero {
    position: relative;
    padding: var(--space-2xl) var(--space-lg) var(--space-xl);
    overflow: hidden;
    background: linear-gradient(135deg, var(--color-hero-dark) 0%, #1a4d3a 55%, #0d281f 100%);
    color: #e8fff2;
}

.legal-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 80% 60% at 70% 20%, rgba(46, 204, 113, 0.35) 0%, transparent 55%),
        radial-gradient(ellipse 50% 40% at 10% 80%, rgba(223, 255, 74, 0.12) 0%, transparent 50%);
    pointer-events: none;
}

.legal-hero-inner {
    position: relative;
    z-index: 1;
    max-width: 960px;
    margin: 0 auto;
}

.legal-hero h1 {
    font-family: var(--font-heading);
    font-size: clamp(1.75rem, 5vw, 2.75rem);
    margin: 0 0 var(--space-md);
    letter-spacing: -0.02em;
    line-height: var(--line-tight);
}

.legal-tagline {
    font-size: var(--font-size-md);
    opacity: 0.92;
    max-width: 42ch;
    margin: 0 0 var(--space-md);
}

.doc-date-bar {
    display: inline-flex;
    flex-wrap: wrap;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-sm) var(--space-md);
    border-radius: var(--radius-full);
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(168, 230, 207, 0.35);
    font-size: var(--font-size-sm);
    font-weight: 600;
}

.doc-date-bar time {
    color: var(--color-lime);
}

.legal-layout {
    max-width: 1100px;
    margin: 0 auto;
    padding: var(--space-xl) var(--space-lg) var(--space-2xl);
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: var(--space-xl);
    align-items: start;
}

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

.legal-toc {
    position: sticky;
    top: calc(var(--header-h) + var(--space-md));
    padding: var(--space-lg);
    border-radius: var(--radius-lg);
    background: var(--color-surface);
    border: 1px solid rgba(46, 204, 113, 0.18);
    box-shadow: var(--shadow-sm);
}

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

.legal-toc strong {
    display: block;
    font-size: var(--font-size-xs);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--color-teal);
    margin-bottom: var(--space-sm);
}

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

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

.legal-toc a:hover {
    color: var(--color-emerald);
    border-bottom-color: rgba(46, 204, 113, 0.4);
}

.legal-body {
    min-width: 0;
}

.legal-card {
    background: var(--color-surface);
    border-radius: var(--radius-xl);
    padding: var(--space-xl);
    margin-bottom: var(--space-lg);
    border: 1px solid rgba(46, 204, 113, 0.12);
    box-shadow: var(--shadow-sm);
    transition: box-shadow var(--transition-smooth);
}

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

.legal-card h2 {
    font-size: var(--font-size-lg);
    margin: 0 0 var(--space-md);
    color: var(--color-hero-dark);
    padding-bottom: var(--space-sm);
    border-bottom: 3px solid var(--color-mint);
}

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

.legal-card p,
.legal-card li {
    font-size: var(--font-size-sm);
    color: var(--color-text-muted);
    margin: 0 0 var(--space-md);
}

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

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

.legal-contact-strip {
    margin-top: var(--space-xl);
    padding: var(--space-lg);
    border-radius: var(--radius-lg);
    background: linear-gradient(120deg, rgba(168, 230, 207, 0.45), rgba(46, 204, 113, 0.2));
    border: 1px solid rgba(26, 188, 156, 0.35);
    font-size: var(--font-size-sm);
}

.legal-contact-strip strong {
    color: var(--color-hero-dark);
}

.policy-page .legal-body section {
    scroll-margin-top: calc(var(--header-h) + 1rem);
}

.thank-you-page {
    background: linear-gradient(180deg, var(--color-hero-dark) 0%, #143d2e 40%, var(--color-bg) 40%);
}

.thank-you-page .site-header {
    background: rgba(13, 31, 23, 0.85);
    border-bottom-color: rgba(168, 230, 207, 0.15);
}

.thank-you-page .brand {
    color: #e8fff2;
}

.thank-you-page .burger-line {
    background: #e8fff2;
}

@media (max-width: 900px) {
    .thank-you-page .main-nav a {
        color: #e8fff2;
    }
}

.thank-you-wrap {
    max-width: 720px;
    margin: 0 auto;
    padding: var(--space-xl) var(--space-lg) var(--space-2xl);
}

.thank-you-stage {
    position: relative;
    text-align: center;
    padding: var(--space-2xl) var(--space-lg);
    border-radius: var(--radius-xl);
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(223, 255, 74, 0.25);
    overflow: hidden;
}

.thank-you-stage::before {
    content: "";
    position: absolute;
    width: 200%;
    height: 200%;
    top: -50%;
    left: -50%;
    background: conic-gradient(from 120deg, transparent, rgba(46, 204, 113, 0.15), transparent 40%);
    animation: thankSpin 14s linear infinite;
    pointer-events: none;
}

@keyframes thankSpin {
    to {
        transform: rotate(360deg);
    }
}

.thank-you-stage-inner {
    position: relative;
    z-index: 1;
}

.thank-you-stage h1 {
    font-size: clamp(1.75rem, 5vw, 2.5rem);
    color: #f5fff8;
    margin: 0 0 var(--space-md);
}

.thank-you-stage p {
    color: rgba(245, 255, 248, 0.9);
    font-size: var(--font-size-md);
    max-width: 48ch;
    margin: 0 auto var(--space-md);
}

.thank-you-check {
    display: inline-flex;
    width: 4.5rem;
    height: 4.5rem;
    border-radius: var(--radius-full);
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: var(--space-lg);
    background: linear-gradient(145deg, var(--color-lime), var(--color-emerald));
    color: var(--color-hero-dark);
    font-weight: 800;
    box-shadow: var(--shadow-glow);
    animation: checkPop 0.7s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

@keyframes checkPop {
    from {
        transform: scale(0.4);
        opacity: 0;
    }

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

.thank-you-date {
    margin-top: var(--space-md);
}

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

.thank-you-detail {
    margin-top: var(--space-xl);
    padding: var(--space-xl);
    border-radius: var(--radius-xl);
    background: var(--color-surface);
    border: 1px solid rgba(46, 204, 113, 0.15);
    box-shadow: var(--shadow-md);
    text-align: left;
}

.thank-you-detail h2 {
    font-size: var(--font-size-lg);
    margin: 0 0 var(--space-md);
}

.thank-you-detail p {
    font-size: var(--font-size-sm);
    color: var(--color-text-muted);
    margin: 0 0 var(--space-md);
}

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

    .thank-you-check {
        animation: none;
    }
}

@media (max-width: 320px) {
    :root {
        --font-size-base: 0.9375rem;
        --font-size-sm: 0.8125rem;
        --font-size-md: 1rem;
        --font-size-lg: 1.2rem;
        --space-lg: 1.35rem;
        --space-xl: 2rem;
        --space-section: 2.25rem;
    }

    .header-inner {
        padding: var(--space-xs) 0.75rem;
        min-height: 3.5rem;
        gap: var(--space-xs);
    }

    .brand {
        font-size: 0.95rem;
        max-width: 11rem;
        line-height: 1.2;
    }

    .burger {
        width: 2.5rem;
        height: 2.5rem;
        flex-shrink: 0;
    }

    .burger-line {
        width: 1.15rem;
    }

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

    .hero {
        padding: var(--space-xl) 0.75rem var(--space-lg);
    }

    .hero-kicker {
        font-size: 0.62rem;
        padding: 0.28rem 0.55rem;
        gap: 0.35rem;
    }

    .hero-chip {
        font-size: 0.62rem;
        padding: 0.28rem 0.5rem;
    }

    .hero-visual-stage {
        min-height: 240px;
        padding: var(--space-md) 0.25rem;
    }

    .overview-icon-cluster {
        min-height: 220px;
    }

    .overview-fa--1 {
        font-size: 2.75rem;
    }

    .overview-fa--3 {
        font-size: 2.25rem;
    }

    .hero-copy h1 {
        font-size: clamp(1.35rem, 8vw, 2rem);
    }

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

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

    .btn {
        padding: var(--space-sm) var(--space-md);
        font-size: var(--font-size-xs);
    }

    .bento,
    .benefits-bento,
    .proof-row,
    .review-preview-grid,
    .reviews-grid,
    .specs-grid,
    .steps {
        gap: var(--space-sm);
    }

    .bento-card,
    .benefit-card,
    .trust-item,
    .preview-card,
    .review-card,
    .legal-card {
        padding: var(--space-md);
    }

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

    .rhythm-tabs {
        flex-direction: column;
        align-items: stretch;
    }

    .rhythm-tab {
        width: 100%;
        text-align: center;
    }

    .stat-num {
        font-size: var(--font-size-lg);
    }

    .cookie-banner {
        left: 0.5rem;
        right: 0.5rem;
        bottom: 0.5rem;
        padding: var(--space-md);
        max-width: none;
    }

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

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

    .modal {
        padding: var(--space-md);
        margin: var(--space-sm);
    }

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

    .legal-layout {
        padding: var(--space-md) 0.75rem var(--space-xl);
    }

    .legal-hero {
        padding: var(--space-xl) 0.75rem;
    }

    .thank-you-wrap {
        padding: var(--space-md) 0.75rem var(--space-xl);
    }

    .thank-you-stage {
        padding: var(--space-lg) var(--space-md);
    }

    .cta-final {
        margin: 0 0.75rem;
        padding: var(--space-lg) var(--space-md);
    }

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

    .section-head h2 {
        font-size: clamp(1.35rem, 7vw, 1.85rem);
    }
}