:root {
    --color-coral: #FF5A5F;
    --color-peach: #FFB997;
    --color-teal: #6AD1E3;
    --color-lemon: #FFE066;
    --color-indigo: #2D1A4F;
    --color-white: #FFFFFF;
    --color-off: #F8F6FF;
    --color-text: #1E1533;
    --color-muted: #5C5470;
    --color-border: color-mix(in srgb, var(--color-indigo) 10%, transparent);
    --color-border-strong: color-mix(in srgb, var(--color-indigo) 16%, transparent);
    --font-sans: "Segoe UI Variable", "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
    --font-display: "Segoe UI Variable", "Segoe UI", system-ui, sans-serif;
    --fs-xs: clamp(0.75rem, 0.68rem + 0.35vw, 0.875rem);
    --fs-sm: clamp(0.875rem, 0.82rem + 0.28vw, 1rem);
    --fs-md: clamp(1rem, 0.94rem + 0.32vw, 1.125rem);
    --fs-lg: clamp(1.125rem, 1rem + 0.55vw, 1.35rem);
    --fs-xl: clamp(1.5rem, 1.15rem + 1.1vw, 2rem);
    --fs-hero: clamp(2.25rem, 1.4rem + 3.2vw, 3.75rem);
    --shadow-sm: 0 1px 2px rgba(45, 26, 79, 0.04), 0 4px 12px rgba(45, 26, 79, 0.06);
    --shadow-md: 0 4px 8px rgba(45, 26, 79, 0.06), 0 12px 32px rgba(45, 26, 79, 0.1);
    --shadow-lg: 0 8px 16px rgba(45, 26, 79, 0.08), 0 24px 56px rgba(45, 26, 79, 0.12);
    --shadow-glow-coral: 0 0 0 1px color-mix(in srgb, var(--color-coral) 20%, transparent), 0 12px 40px rgba(255, 90, 95, 0.35);
    --shadow-glow-teal: 0 0 0 1px color-mix(in srgb, var(--color-teal) 25%, transparent), 0 12px 36px rgba(106, 209, 227, 0.32);
    --radius-sm: 10px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --radius-full: 9999px;
    --space-xs: 0.35rem;
    --space-sm: 0.75rem;
    --space-md: 1.25rem;
    --space-lg: 2rem;
    --space-xl: 3rem;
    --space-2xl: clamp(3rem, 5vw + 2rem, 5rem);
    --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-spring: cubic-bezier(0.34, 1.3, 0.64, 1);
    --transition-fast: 0.18s var(--ease-out-expo);
    --transition-med: 0.4s var(--ease-out-expo);
    --header-h: 4.5rem;
    --glass-bg: color-mix(in srgb, var(--color-white) 72%, transparent);
    --glass-border: color-mix(in srgb, var(--color-white) 40%, transparent);
    --max-w: 1180px;
    --focus-ring: 0 0 0 3px color-mix(in srgb, var(--color-teal) 45%, transparent);
    --overlay-scrim: color-mix(in srgb, var(--color-indigo) 55%, transparent);
    --overlay-deep: color-mix(in srgb, #0f0820 55%, transparent);
    --shadow-drawer: -12px 0 40px color-mix(in srgb, var(--color-indigo) 18%, transparent);
}

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

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    scrollbar-gutter: stable;
    overflow-x: hidden;
}

::selection {
    background: color-mix(in srgb, var(--color-teal) 38%, transparent);
    color: var(--color-indigo);
}

body {
    margin: 0;
    font-family: var(--font-sans);
    font-size: var(--fs-md);
    line-height: 1.65;
    letter-spacing: 0.01em;
    color: var(--color-text);
    background-color: var(--color-off);
    background-image: radial-gradient(120% 80% at 50% -10%, color-mix(in srgb, var(--color-peach) 35%, transparent), transparent 55%), linear-gradient(180deg, var(--color-off) 0%, var(--color-white) 45%);
    overflow-x: hidden;
}

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

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

a:hover,
a:focus-visible {
    color: var(--color-coral);
}

:focus-visible {
    outline: none;
    box-shadow: var(--focus-ring);
    border-radius: var(--radius-sm);
}

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

.skip-link:focus {
    left: var(--space-md);
    top: 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;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    height: var(--header-h);
    display: flex;
    flex-direction: column;
    align-items: stretch;
    backdrop-filter: blur(20px) saturate(1.2);
    -webkit-backdrop-filter: blur(20px) saturate(1.2);
    background: color-mix(in srgb, var(--color-white) 78%, transparent);
    border-bottom: 1px solid var(--color-border);
    box-shadow: var(--shadow-sm);
}

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

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

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

.nav-main {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm) var(--space-md);
    align-items: center;
    justify-content: flex-end;
}

.nav-main a {
    font-size: var(--fs-sm);
    font-weight: 600;
    text-decoration: none;
    color: var(--color-indigo);
    padding: var(--space-xs) 0;
    position: relative;
    transition: color var(--transition-fast), transform var(--transition-fast);
}

.nav-main a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--color-coral), var(--color-teal));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition-med);
}

.nav-main a:hover,
.nav-main a:focus-visible {
    color: var(--color-coral);
}

.nav-main a:hover::after,
.nav-main a:focus-visible::after {
    transform: scaleX(1);
}

.burger {
    display: none;
    position: relative;
    z-index: 1002;
    width: 48px;
    height: 48px;
    padding: 0;
    border: none;
    border-radius: var(--radius-md);
    background: linear-gradient(145deg, rgba(255, 90, 95, 0.15), rgba(106, 209, 227, 0.2));
    cursor: pointer;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 6px;
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition-med), box-shadow var(--transition-med), background var(--transition-fast);
}

.burger:hover {
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

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

.burger.is-active .burger__line:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
    background: var(--color-coral);
}

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

.burger.is-active .burger__line:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
    background: var(--color-teal);
}

.nav-backdrop {
    position: fixed;
    inset: 0;
    z-index: 998;
    background: var(--overlay-deep);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--transition-med), visibility var(--transition-med);
}

.nav-backdrop.is-visible {
    opacity: 1;
    visibility: visible;
}

body.nav-open {
    overflow: hidden;
}

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

    .nav-main {
        position: fixed;
        z-index: 1001;
        top: 0;
        right: 0;
        width: min(100%, 320px);
        height: 100vh;
        height: 100dvh;
        margin: 0;
        padding: calc(var(--header-h) + var(--space-lg)) var(--space-lg) var(--space-xl);
        flex-direction: column;
        flex-wrap: nowrap;
        align-items: stretch;
        justify-content: flex-start;
        gap: var(--space-sm);
        background: linear-gradient(180deg, rgba(248, 246, 255, 0.97) 0%, rgba(255, 185, 151, 0.35) 100%);
        backdrop-filter: blur(18px);
        -webkit-backdrop-filter: blur(18px);
        border-left: 1px solid var(--color-border-strong);
        box-shadow: var(--shadow-drawer);
        transform: translateX(105%);
        transition: transform var(--transition-med);
    }

    .nav-main a {
        font-size: var(--fs-md);
        padding: var(--space-sm) 0;
        border-bottom: 1px solid var(--color-border);
    }

    .nav-main a::after {
        display: none;
    }

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

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

.hero--showcase {
    --hero-mx: 0px;
    --hero-my: 0px;
    position: relative;
    padding: var(--space-2xl) var(--space-md);
    overflow: hidden;
    min-height: min(92vh, 980px);
    background:
        radial-gradient(ellipse 100% 60% at 50% 0%, rgba(106, 209, 227, 0.12), transparent 55%),
        radial-gradient(ellipse 80% 50% at 100% 30%, rgba(255, 90, 95, 0.14), transparent 50%),
        radial-gradient(ellipse 70% 45% at 0% 70%, rgba(255, 224, 102, 0.08), transparent 45%),
        linear-gradient(165deg, #120a28 0%, #0a0618 38%, #05030d 100%);
}

.hero__canvas {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    transition: transform 0.55s var(--ease-out-expo);
    transform: translate3d(var(--hero-mx), var(--hero-my), 0);
    will-change: transform;
}

.hero__depth {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 90% 70% at 50% 45%, transparent 30%, rgba(5, 3, 13, 0.85) 100%);
    pointer-events: none;
}

.hero__noise {
    position: absolute;
    inset: -20%;
    opacity: 0.055;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    animation: hero-noise-opacity 4s ease-in-out infinite;
    mix-blend-mode: overlay;
}

.hero__mesh.hero__mesh--lines {
    position: absolute;
    inset: 0;
    opacity: 0.35;
    background-image:
        repeating-linear-gradient(-18deg,
            transparent,
            transparent 47px,
            rgba(106, 209, 227, 0.07) 47px,
            rgba(106, 209, 227, 0.07) 48px),
        repeating-linear-gradient(72deg,
            transparent,
            transparent 71px,
            rgba(255, 90, 95, 0.05) 71px,
            rgba(255, 90, 95, 0.05) 72px);
    mask-image: radial-gradient(ellipse 85% 75% at 50% 42%, black 15%, transparent 72%);
    animation: hero-mesh-drift 26s linear infinite;
}

.hero__mesh.hero__mesh--dots {
    position: absolute;
    inset: 0;
    opacity: 0.5;
    background-image: radial-gradient(rgba(255, 255, 255, 0.14) 1px, transparent 1px);
    background-size: 28px 28px;
    animation: hero-dots-pulse 14s ease-in-out infinite, hero-mesh-drift 32s linear reverse infinite;
    mask-image: radial-gradient(ellipse 88% 78% at 50% 38%, black 22%, transparent 78%);
}

.hero__aurora {
    position: absolute;
    inset: -32% -22%;
    background: conic-gradient(from 200deg at 50% 50%, rgba(255, 90, 95, 0.38), rgba(106, 209, 227, 0.32), rgba(255, 224, 102, 0.28), rgba(255, 90, 95, 0.38));
    animation: hero-aurora-spin 32s linear infinite;
    opacity: 0.52;
    filter: blur(64px);
}

.hero__aurora.hero__aurora--echo {
    inset: -25% -15%;
    background: conic-gradient(from 90deg at 40% 60%, rgba(106, 209, 227, 0.4), rgba(255, 90, 95, 0.25), rgba(255, 224, 102, 0.3), rgba(106, 209, 227, 0.4));
    animation: hero-aurora-spin 48s linear infinite reverse;
    opacity: 0.35;
    filter: blur(72px);
}

.hero__beam {
    position: absolute;
    top: -10%;
    width: min(38%, 420px);
    height: 120%;
    pointer-events: none;
    opacity: 0.22;
    background: linear-gradient(90deg,
            transparent 0%,
            rgba(106, 209, 227, 0.15) 35%,
            rgba(255, 90, 95, 0.12) 50%,
            rgba(106, 209, 227, 0.15) 65%,
            transparent 100%);
    filter: blur(20px);
    animation: hero-beam-sweep 11s ease-in-out infinite;
}

.hero__beam--a {
    left: 5%;
    animation-delay: 0s;
}

.hero__beam--b {
    left: 38%;
    width: min(28%, 320px);
    opacity: 0.16;
    animation: hero-beam-sweep 14s ease-in-out infinite reverse;
    animation-delay: -3s;
}

.hero__beam--c {
    right: 2%;
    left: auto;
    width: min(34%, 380px);
    opacity: 0.18;
    animation: hero-beam-sweep 9s ease-in-out infinite;
    animation-delay: -1.5s;
}

.hero__particles {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.hero__particles span {
    position: absolute;
    border-radius: 50%;
    background: var(--color-white);
    box-shadow: 0 0 12px rgba(106, 209, 227, 0.6);
    animation: hero-particle-float 12s ease-in-out infinite;
}

.hero__particles span:nth-child(1) {
    width: 3px;
    height: 3px;
    left: 12%;
    top: 22%;
    animation-duration: 14s;
    animation-delay: 0s;
}

.hero__particles span:nth-child(2) {
    width: 4px;
    height: 4px;
    left: 78%;
    top: 18%;
    animation-duration: 11s;
    animation-delay: -2s;
    box-shadow: 0 0 14px rgba(255, 90, 95, 0.5);
}

.hero__particles span:nth-child(3) {
    width: 2px;
    height: 2px;
    left: 55%;
    top: 8%;
    animation-duration: 16s;
    animation-delay: -4s;
}

.hero__particles span:nth-child(4) {
    width: 3px;
    height: 3px;
    left: 88%;
    top: 42%;
    animation-duration: 13s;
    animation-delay: -1s;
}

.hero__particles span:nth-child(5) {
    width: 2px;
    height: 2px;
    left: 22%;
    top: 58%;
    animation-duration: 15s;
    animation-delay: -6s;
}

.hero__particles span:nth-child(6) {
    width: 4px;
    height: 4px;
    left: 42%;
    top: 72%;
    animation-duration: 10s;
    animation-delay: -3s;
    box-shadow: 0 0 10px rgba(255, 224, 102, 0.55);
}

.hero__particles span:nth-child(7) {
    width: 2px;
    height: 2px;
    left: 65%;
    top: 62%;
    animation-duration: 17s;
    animation-delay: -5s;
}

.hero__particles span:nth-child(8) {
    width: 3px;
    height: 3px;
    left: 8%;
    top: 78%;
    animation-duration: 12s;
    animation-delay: -2.5s;
}

.hero__particles span:nth-child(9) {
    width: 2px;
    height: 2px;
    left: 92%;
    top: 68%;
    animation-duration: 14s;
    animation-delay: -7s;
}

.hero__particles span:nth-child(10) {
    width: 3px;
    height: 3px;
    left: 32%;
    top: 14%;
    animation-duration: 13s;
    animation-delay: -4.5s;
}

.hero__particles span:nth-child(11) {
    width: 2px;
    height: 2px;
    left: 70%;
    top: 88%;
    animation-duration: 18s;
    animation-delay: -8s;
}

.hero__particles span:nth-child(12) {
    width: 4px;
    height: 4px;
    left: 48%;
    top: 92%;
    animation-duration: 11s;
    animation-delay: -1.2s;
    box-shadow: 0 0 16px rgba(106, 209, 227, 0.45);
}

.hero__orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(0);
    animation: hero-orb-float 9s ease-in-out infinite;
}

.hero__orb--one {
    width: 200px;
    height: 200px;
    left: 6%;
    top: 14%;
    background: radial-gradient(circle, rgba(255, 90, 95, 0.48), transparent 68%);
    animation-delay: 0s;
}

.hero__orb--two {
    width: 140px;
    height: 140px;
    right: 10%;
    bottom: 18%;
    background: radial-gradient(circle, rgba(106, 209, 227, 0.52), transparent 70%);
    animation-delay: -2.2s;
}

.hero__orb--three {
    width: 100px;
    height: 100px;
    right: 26%;
    top: 10%;
    background: radial-gradient(circle, rgba(255, 224, 102, 0.42), transparent 72%);
    animation-delay: -4.5s;
}

.hero__inner {
    position: relative;
    z-index: 1;
    width: min(100% - 2 * var(--space-md), var(--max-w));
    margin-inline: auto;
    display: grid;
    grid-template-columns: 1fr 1.15fr 1fr;
    gap: var(--space-xl);
    align-items: center;
}

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

    .hero__column--form {
        grid-column: 1 / -1;
        max-width: 520px;
        margin-inline: auto;
        width: 100%;
    }
}

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

    .hero__column--form {
        max-width: none;
    }
}

.hero__column--visual {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-md);
}

.hero__column--form {
    animation: hero-fade-up 0.95s ease forwards 0.52s both;
}

.hero__visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 440px;
    aspect-ratio: 1 / 1.15;
}

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

.hero__orbit-ring--outer {
    width: 112%;
    height: 112%;
    top: 50%;
    left: 50%;
    border: 1px dashed rgba(255, 255, 255, 0.22);
    animation: hero-orbit-spin 38s linear infinite;
    box-shadow:
        0 0 0 1px rgba(106, 209, 227, 0.08),
        inset 0 0 40px rgba(255, 90, 95, 0.06);
}

.hero__orbit-ring--mid {
    width: 96%;
    height: 96%;
    top: 50%;
    left: 50%;
    border: 2px solid transparent;
    background:
        linear-gradient(#0a0618, #0a0618) padding-box,
        conic-gradient(from 0deg, var(--color-coral), var(--color-teal), var(--color-lemon), var(--color-coral)) border-box;
    animation: hero-orbit-spin-rev 22s linear infinite;
    opacity: 0.75;
    filter: blur(0.5px);
}

.hero__orbit-ring--inner {
    width: 82%;
    height: 82%;
    top: 50%;
    left: 50%;
    border: 1px dashed rgba(106, 209, 227, 0.35);
    animation: hero-orbit-spin-fast 16s linear infinite;
    box-shadow: 0 0 24px rgba(106, 209, 227, 0.12);
}

.hero__product-glow {
    position: absolute;
    width: 58%;
    height: 52%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    background: radial-gradient(ellipse 100% 100% at 50% 45%, rgba(106, 209, 227, 0.35), rgba(255, 90, 95, 0.15) 45%, transparent 70%);
    pointer-events: none;
    z-index: 0;
    animation: hero-glow-pulse 5s ease-in-out infinite;
    filter: blur(12px);
}

.hero__spark {
    position: absolute;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--color-lemon);
    box-shadow: 0 0 20px var(--color-coral);
    animation: hero-spark 3.5s ease-in-out infinite;
    z-index: 3;
}

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

.hero__spark--b {
    bottom: 18%;
    left: 2%;
    animation-delay: 1.2s;
    background: var(--color-teal);
    box-shadow: 0 0 18px var(--color-teal);
}

.hero__spark--c {
    top: 42%;
    right: -2%;
    width: 8px;
    height: 8px;
    animation-delay: 0.6s;
    animation-duration: 2.8s;
    background: var(--color-peach);
    box-shadow: 0 0 16px var(--color-lemon);
}

.hero__figure {
    position: relative;
    z-index: 2;
    margin: 0;
}

.hero__img {
    position: relative;
    z-index: 1;
    animation: hero-float 6s ease-in-out infinite, hero-breathe 4s ease-in-out infinite;
    will-change: transform;
}

.hero__stats {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--space-sm);
    list-style: none;
    margin: 0;
    padding: 0;
    width: 100%;
}

.hero__stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 88px;
    padding: var(--space-sm) var(--space-md);
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.22);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    animation: hero-stat-pop 5s ease-in-out infinite;
}

.hero__stat:nth-child(2) {
    animation-delay: 0.6s;
}

.hero__stat:nth-child(3) {
    animation-delay: 1.2s;
}

.hero__stat-num {
    font-size: var(--fs-xl);
    font-weight: 800;
    color: var(--color-lemon);
    line-height: 1.1;
    background: linear-gradient(135deg, var(--color-white), var(--color-peach));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero__stat-label {
    font-size: 0.65rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.75);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.hero__eyebrow {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    margin: 0 0 var(--space-sm);
    font-size: var(--fs-xs);
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--color-teal);
    animation: hero-fade-up 0.85s ease forwards both;
}

.hero__eyebrow-dot {
    flex-shrink: 0;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-coral), var(--color-teal));
    box-shadow: 0 0 14px rgba(106, 209, 227, 0.65);
    animation: hero-dot-breathe 2.4s ease-in-out infinite;
}

.hero__title-stack {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    animation: hero-fade-up 0.85s ease forwards 0.08s both;
}

.hero__copy .hero__title {
    color: var(--color-white);
}

.hero__title-shimmer {
    display: inline-block;
    font-size: clamp(2.5rem, 1.5rem + 3.5vw, 4rem);
    font-weight: 900;
    letter-spacing: -0.04em;
    line-height: 1;
    background: linear-gradient(110deg, var(--color-white) 0%, var(--color-peach) 25%, var(--color-coral) 50%, var(--color-teal) 75%, var(--color-white) 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    animation: hero-shimmer 5s linear infinite;
}

.hero__title-line {
    display: block;
    width: min(12rem, 55vw);
    height: 3px;
    margin: 0.35rem 0 0.65rem;
    border-radius: var(--radius-full);
    background: linear-gradient(90deg, var(--color-coral), var(--color-teal), var(--color-lemon), var(--color-coral));
    background-size: 200% 100%;
    animation: hero-line-flow 4s ease-in-out infinite;
    opacity: 0.95;
}

.hero__title-rest {
    display: block;
    font-size: clamp(1.25rem, 2.5vw, 1.75rem);
    font-weight: 700;
    color: rgba(255, 255, 255, 0.92);
    letter-spacing: -0.02em;
    line-height: 1.25;
}

.hero__copy .hero__lead {
    color: rgba(255, 255, 255, 0.88);
    animation: hero-fade-up 0.85s ease forwards 0.35s both;
}

.hero__trust {
    animation: hero-fade-up 0.85s ease forwards 0.45s both;
}

.hero__copy .price-block {
    animation: hero-fade-up 0.85s ease forwards 0.42s both;
}

.hero__copy .badges .badge {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.28);
    color: var(--color-white);
    animation: hero-badge-glow 2.8s ease-in-out infinite;
}

.hero__copy .highlights li {
    color: rgba(255, 255, 255, 0.95);
}

.hero__copy .price-block__current {
    color: var(--color-lemon);
    animation: hero-price-pulse 2.5s ease-in-out infinite;
}

.hero__copy .price-block__old {
    color: rgba(255, 255, 255, 0.55);
}

.hero__highlights li {
    animation: hero-fade-up 0.7s ease forwards both;
}

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

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

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

.hero__highlights li::before {
    animation: hero-dot-pulse 2s ease-in-out infinite;
}

.hero__form-card {
    position: relative;
    padding: var(--space-lg);
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.22);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-radius: var(--radius-xl);
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.35);
    animation: hero-form-glow 4s ease-in-out infinite;
}

.hero__form-card::before {
    content: "";
    position: absolute;
    inset: -2px;
    border-radius: inherit;
    padding: 2px;
    background: linear-gradient(135deg, var(--color-coral), var(--color-teal), var(--color-lemon), var(--color-coral));
    background-size: 300% 300%;
    animation: hero-border-flow 8s ease infinite;
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    z-index: -1;
}

.hero__form-card h2 {
    color: var(--color-white);
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.hero__form-card .form-field label {
    color: rgba(255, 255, 255, 0.92);
}

.hero__form-card .form-field input,
.hero__form-card .form-field textarea {
    background: color-mix(in srgb, var(--color-white) 95%, transparent);
    border-color: var(--color-border-strong);
}

.hero__form-card .checkbox-field label {
    color: rgba(255, 255, 255, 0.85);
}

.hero__form-card .checkbox-field a {
    color: var(--color-peach);
}

@keyframes hero-mesh-drift {
    0% {
        transform: translate(0, 0);
    }

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

@keyframes hero-noise-opacity {

    0%,
    100% {
        opacity: 0.04;
    }

    50% {
        opacity: 0.09;
    }
}

@keyframes hero-dots-pulse {

    0%,
    100% {
        opacity: 0.45;
    }

    50% {
        opacity: 0.62;
    }
}

@keyframes hero-beam-sweep {

    0%,
    100% {
        transform: translateX(-6%) scaleY(1);
        opacity: 0.14;
    }

    50% {
        transform: translateX(6%) scaleY(1.08);
        opacity: 0.26;
    }
}

@keyframes hero-particle-float {

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

    25% {
        transform: translate(8px, -14px) scale(1.1);
        opacity: 1;
    }

    50% {
        transform: translate(-4px, -22px) scale(0.95);
        opacity: 0.7;
    }

    75% {
        transform: translate(-10px, 6px) scale(1.05);
        opacity: 0.95;
    }
}

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

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

@keyframes hero-orbit-spin-rev {
    from {
        transform: translate(-50%, -50%) rotate(0deg);
    }

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

@keyframes hero-orbit-spin-fast {
    from {
        transform: translate(-50%, -50%) rotate(0deg);
    }

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

@keyframes hero-glow-pulse {

    0%,
    100% {
        opacity: 0.75;
        transform: translate(-50%, -50%) scale(1);
    }

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

@keyframes hero-dot-breathe {

    0%,
    100% {
        transform: scale(1);
        box-shadow: 0 0 14px rgba(106, 209, 227, 0.65);
    }

    50% {
        transform: scale(1.15);
        box-shadow: 0 0 22px rgba(255, 90, 95, 0.55);
    }
}

@keyframes hero-line-flow {

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

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

@keyframes hero-aurora-spin {
    0% {
        transform: rotate(0deg) scale(1);
    }

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

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

@keyframes hero-orb-float {

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

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

@keyframes hero-spark {

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

    50% {
        transform: scale(1.35);
        opacity: 0.4;
    }
}

@keyframes hero-float {

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

    50% {
        transform: translateY(-14px) rotate(1deg);
    }
}

@keyframes hero-breathe {

    0%,
    100% {
        filter: drop-shadow(0 24px 48px rgba(106, 209, 227, 0.35));
    }

    50% {
        filter: drop-shadow(0 32px 56px rgba(255, 90, 95, 0.45));
    }
}

@keyframes hero-shimmer {
    0% {
        background-position: 200% center;
    }

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

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

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

@keyframes hero-stat-pop {

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

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

@keyframes hero-badge-glow {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(106, 209, 227, 0);
    }

    50% {
        box-shadow: 0 0 28px rgba(106, 209, 227, 0.35);
    }
}

@keyframes hero-price-pulse {

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

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

@keyframes hero-dot-pulse {

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

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

@keyframes hero-form-glow {

    0%,
    100% {
        box-shadow: 0 24px 48px rgba(0, 0, 0, 0.35);
    }

    50% {
        box-shadow: 0 28px 56px rgba(255, 90, 95, 0.2), 0 0 40px rgba(106, 209, 227, 0.15);
    }
}

@keyframes hero-border-flow {
    0% {
        background-position: 0% 50%;
    }

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

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

@keyframes mesh-shift {
    0% {
        background-position: 0% 50%;
    }

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

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

@keyframes pulse-glow {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(106, 209, 227, 0.35);
    }

    50% {
        box-shadow: 0 0 28px 6px rgba(255, 90, 95, 0.25);
    }
}

.section--mesh {
    position: relative;
    overflow: hidden;
}

.section--mesh::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgba(255, 90, 95, 0.08), rgba(106, 209, 227, 0.12), rgba(255, 224, 102, 0.1));
    background-size: 200% 200%;
    animation: mesh-shift 14s ease infinite;
    pointer-events: none;
    z-index: 0;
}

.section--mesh .section__inner {
    position: relative;
    z-index: 1;
}

.reveal--stagger .bento__card,
.reveal--stagger .bento--categories .bento__card {
    transform: translateY(20px);
    transition: opacity 0.65s ease, transform 0.65s ease;
}

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

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

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

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

.reveal--stagger.is-visible .bento__card,
.reveal--stagger.is-visible .bento--categories .bento__card {
    opacity: 1;
    transform: translateY(0);
}

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

.stars {
    color: var(--color-lemon);
    font-size: var(--fs-lg);
    letter-spacing: 2px;
}

.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: var(--space-xs) var(--space-sm);
    background: color-mix(in srgb, var(--color-white) 85%, transparent);
    border: 1px solid var(--color-border-strong);
    border-radius: 999px;
    color: var(--color-indigo);
}

.hero__title {
    font-family: var(--font-display);
    font-size: var(--fs-hero);
    font-weight: 800;
    line-height: 1.1;
    color: var(--color-indigo);
    margin: 0 0 var(--space-md);
    letter-spacing: -0.03em;
}

.hero--showcase .hero__title {
    font-size: inherit;
    font-weight: inherit;
    color: inherit;
    font-family: var(--font-display);
}

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

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

.price-block__current {
    font-size: var(--fs-xl);
    font-weight: 800;
    color: var(--color-coral);
}

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

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

.highlights li {
    display: flex;
    align-items: flex-start;
    gap: var(--space-sm);
    font-size: var(--fs-sm);
    font-weight: 600;
    color: var(--color-indigo);
}

.highlights li::before {
    content: "";
    flex-shrink: 0;
    width: 10px;
    height: 10px;
    margin-top: 0.35em;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-teal), var(--color-coral));
}

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

.order-form h2 {
    margin: 0 0 var(--space-md);
    font-size: var(--fs-xl);
    color: var(--color-indigo);
}

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

.form-field label {
    display: block;
    font-size: var(--fs-sm);
    font-weight: 700;
    color: var(--color-indigo);
    margin-bottom: var(--space-xs);
}

.form-field input,
.form-field textarea {
    width: 100%;
    padding: var(--space-sm) var(--space-md);
    border: 2px solid var(--color-border-strong);
    border-radius: var(--radius-md);
    font-family: inherit;
    font-size: var(--fs-sm);
    accent-color: var(--color-coral);
    transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.form-field input:focus,
.form-field textarea:focus {
    border-color: var(--color-teal);
    box-shadow: var(--focus-ring);
    outline: none;
}

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

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

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

.form-field--error .field-error {
    display: block;
}

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

.checkbox-field input {
    width: auto;
    margin-top: 0.25rem;
}

.checkbox-field label {
    font-size: var(--fs-xs);
    font-weight: 500;
    color: var(--color-muted);
}

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

.btn--primary {
    background: linear-gradient(135deg, var(--color-coral) 0%, color-mix(in srgb, var(--color-coral) 88%, #fff) 100%);
    color: var(--color-white);
    box-shadow: var(--shadow-glow-coral);
}

@media (hover: hover) and (pointer: fine) {
    .btn--primary:hover {
        transform: translateY(-2px) scale(1.015);
        box-shadow: 0 14px 44px rgba(255, 90, 95, 0.42);
    }
}

.btn--secondary {
    background: var(--color-indigo);
    color: var(--color-white);
}

.btn--secondary:hover {
    background: #3d2566;
    transform: translateY(-2px);
}

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

.btn--ghost:hover {
    background: var(--color-indigo);
    color: var(--color-white);
}

.btn--magnetic {
    position: relative;
}

.section {
    padding: var(--space-2xl) var(--space-md);
}

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

.section__title {
    font-family: var(--font-display);
    font-size: var(--fs-xl);
    font-weight: 800;
    color: var(--color-indigo);
    text-align: center;
    margin: 0 0 var(--space-sm);
    letter-spacing: -0.02em;
    text-wrap: balance;
}

.section__subtitle {
    text-align: center;
    color: var(--color-muted);
    max-width: 52ch;
    margin: 0 auto var(--space-xl);
    font-size: var(--fs-md);
}

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

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

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

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

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

.bento__card {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--color-border);
    transition: transform var(--transition-med), box-shadow var(--transition-med), border-color var(--transition-fast);
}

@media (hover: hover) and (pointer: fine) {
    .bento__card:hover {
        transform: translateY(-5px);
        box-shadow: var(--shadow-lg);
        border-color: color-mix(in srgb, var(--color-teal) 22%, transparent);
    }
}

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

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

@media (max-width: 520px) {
    .bento__card--wide {
        grid-column: span 1;
    }

    .bento__card--tall {
        grid-row: span 1;
    }
}

.bento--categories {
    grid-template-columns: repeat(3, 1fr);
}

.bento--categories .bento__card--energy {
    grid-column: 1 / 3;
    grid-row: 1;
}

.bento--categories .bento__card--muscle {
    grid-column: 3 / 4;
    grid-row: 1;
}

.bento--categories .bento__card--immunity {
    grid-column: 1 / 2;
    grid-row: 2;
}

.bento--categories .bento__card--vitamins {
    grid-column: 2 / 4;
    grid-row: 2;
}

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

    .bento--categories .bento__card--energy {
        grid-column: 1 / -1;
        grid-row: auto;
    }

    .bento--categories .bento__card--muscle,
    .bento--categories .bento__card--immunity,
    .bento--categories .bento__card--vitamins {
        grid-column: auto;
        grid-row: auto;
    }
}

.bento__icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-md);
    background: linear-gradient(135deg, var(--color-teal), var(--color-lemon));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    margin-bottom: var(--space-sm);
}

.bento__card h3 {
    margin: 0 0 var(--space-xs);
    font-size: var(--fs-lg);
    color: var(--color-indigo);
}

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

.social-proof {
    background: linear-gradient(180deg, var(--color-white), var(--color-off));
}

.proof-grid {
    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-sm);
}

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

.proof-interactive {
    margin-top: var(--space-xl);
    padding: var(--space-lg);
    border-radius: var(--radius-xl);
    background: color-mix(in srgb, var(--color-white) 65%, transparent);
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow-sm);
}

.proof-interactive__label {
    margin: 0 0 var(--space-sm);
    text-align: center;
    font-size: var(--fs-xs);
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--color-indigo);
}

.proof-interactive__chips {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
    justify-content: center;
    margin-bottom: var(--space-md);
}

.proof-chip {
    font-family: inherit;
    font-size: var(--fs-xs);
    font-weight: 800;
    padding: 0.55rem 1rem;
    border-radius: 999px;
    border: 2px solid var(--color-border-strong);
    background: var(--color-white);
    color: var(--color-indigo);
    cursor: pointer;
    transition: transform var(--transition-med), box-shadow var(--transition-med), border-color var(--transition-fast), background var(--transition-fast);
}

@media (hover: hover) and (pointer: fine) {
    .proof-chip:hover {
        transform: translateY(-2px);
        border-color: var(--color-teal);
    }
}

.proof-chip.is-active {
    background: linear-gradient(135deg, var(--color-indigo), #4a2d7a);
    color: var(--color-white);
    border-color: transparent;
    box-shadow: var(--shadow-md);
}

.proof-interactive__panels {
    max-width: 52ch;
    margin: 0 auto;
    text-align: center;
}

.proof-panel {
    margin: 0;
    font-size: var(--fs-sm);
    color: var(--color-muted);
    line-height: 1.65;
    animation: pathways-in 0.45s ease both;
}

.proof-panel:not(.is-active) {
    display: none;
}

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

.review-card {
    padding: var(--space-md);
    background: var(--color-white);
    border-radius: var(--radius-md);
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow-sm);
    transition: box-shadow var(--transition-med), transform var(--transition-med);
}

@media (hover: hover) and (pointer: fine) {
    .review-card:hover {
        box-shadow: var(--shadow-glow-teal);
        transform: translateY(-2px);
    }
}

.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);
    background: var(--color-indigo);
    color: var(--color-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    min-height: 160px;
    cursor: default;
    transition: transform var(--transition-med);
}

@media (hover: hover) and (pointer: fine) {
    .spotlight-card:hover {
        transform: translateY(-6px);
    }
}

.spotlight-card h3 {
    margin: 0 0 var(--space-sm);
    font-size: var(--fs-lg);
    color: var(--color-lemon);
}

.spotlight-card__front {
    transition: opacity var(--transition-med);
}

.spotlight-card__back {
    position: absolute;
    inset: 0;
    padding: var(--space-lg);
    background: linear-gradient(160deg,
            color-mix(in srgb, var(--color-teal) 95%, transparent),
            color-mix(in srgb, var(--color-indigo) 98%, transparent));
    transition: opacity var(--transition-med);
    display: flex;
    align-items: center;
    font-size: var(--fs-sm);
    line-height: 1.5;
}

@media (hover: hover) and (pointer: fine) {
    .spotlight-card:hover .spotlight-card__front {
        opacity: 0;
    }

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

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

.trust-item {
    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-med);
}

@media (hover: hover) and (pointer: fine) {
    .trust-item:hover {
        transform: scale(1.03);
    }
}

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

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

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

.pathways {
    background: linear-gradient(180deg, var(--color-white), var(--color-off));
}

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

.pathways__tab {
    font-family: inherit;
    font-size: var(--fs-sm);
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    padding: var(--space-sm) var(--space-md);
    border-radius: 999px;
    border: 2px solid var(--color-border-strong);
    background: var(--color-white);
    color: var(--color-indigo);
    cursor: pointer;
    transition: transform var(--transition-med), box-shadow var(--transition-med), border-color var(--transition-fast), background var(--transition-fast);
}

@media (hover: hover) and (pointer: fine) {
    .pathways__tab:hover {
        transform: translateY(-2px);
        border-color: var(--color-teal);
        box-shadow: var(--shadow-sm);
    }
}

.pathways__tab.is-active {
    background: linear-gradient(135deg, var(--color-coral), #ff8a8e);
    color: var(--color-white);
    border-color: transparent;
    box-shadow: var(--shadow-glow-coral);
}

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

.pathways__panels {
    position: relative;
}

.pathways__panel {
    display: none;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
    gap: var(--space-xl);
    align-items: center;
    padding: var(--space-lg);
    border-radius: var(--radius-xl);
    background: color-mix(in srgb, var(--color-white) 85%, transparent);
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow-lg);
    animation: pathways-in 0.55s var(--ease-out-expo) both;
}

.pathways__panel.is-active {
    display: grid;
}

@keyframes pathways-in {
    from {
        opacity: 0;
        transform: translateY(16px) scale(0.98);
    }

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

.pathways__visual {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    animation: pulse-glow 4.5s ease-in-out infinite;
}

.pathways__svg {
    width: 100%;
    height: auto;
    display: block;
}

.pathways__copy h3 {
    margin: 0 0 var(--space-sm);
    font-size: var(--fs-lg);
    color: var(--color-indigo);
}

.pathways__copy p {
    margin: 0 0 var(--space-md);
    color: var(--color-muted);
    font-size: var(--fs-sm);
}

.pathways__list {
    margin: 0;
    padding-left: 1.1rem;
    color: var(--color-indigo);
    font-size: var(--fs-sm);
    font-weight: 600;
}

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

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

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

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

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

.spec-card {
    padding: var(--space-md);
    background: var(--color-white);
    border-radius: var(--radius-md);
    border-left: 4px solid var(--color-teal);
    box-shadow: var(--shadow-sm);
}

.spec-card h3 {
    margin: 0 0 var(--space-xs);
    font-size: var(--fs-sm);
    color: var(--color-indigo);
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

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

.step {
    text-align: center;
    padding: var(--space-md);
}

.step__num {
    width: 48px;
    height: 48px;
    margin: 0 auto var(--space-sm);
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-coral), var(--color-lemon));
    color: var(--color-indigo);
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.ingredient-card {
    padding: var(--space-md);
    background: var(--color-white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    border-top: 3px solid var(--color-coral);
}

.instructions {
    counter-reset: step;
    list-style: none;
    margin: 0;
    padding: 0;
    max-width: 640px;
    margin-inline: auto;
}

.instructions li {
    position: relative;
    padding-left: 3.5rem;
    margin-bottom: var(--space-lg);
}

.instructions li::before {
    counter-increment: step;
    content: counter(step);
    position: absolute;
    left: 0;
    top: 0;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: var(--radius-sm);
    background: var(--color-teal);
    color: var(--color-indigo);
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
}

.faq details {
    background: var(--color-white);
    border-radius: var(--radius-md);
    margin-bottom: var(--space-sm);
    border: 1px solid var(--color-border-strong);
    overflow: hidden;
}

.faq summary {
    padding: var(--space-md);
    font-weight: 700;
    color: var(--color-indigo);
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background var(--transition-fast);
}

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

.faq summary::after {
    content: "+";
    font-size: 1.25rem;
    color: var(--color-coral);
}

.faq details[open] summary::after {
    content: "−";
}

.faq summary:hover {
    background: var(--color-off);
}

.faq details p {
    margin: 0;
    padding: 0 var(--space-md) var(--space-md);
    font-size: var(--fs-sm);
    color: var(--color-muted);
}

.cta-final {
    text-align: center;
    padding: var(--space-2xl) var(--space-md);
    background: linear-gradient(135deg, var(--color-indigo), #4a2d7a);
    color: var(--color-white);
    border-radius: var(--radius-xl);
    margin: 0 var(--space-md);
    max-width: calc(var(--max-w) + 2 * var(--space-md));
    margin-inline: auto;
}

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

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

.disclaimer-block {
    background: color-mix(in srgb, var(--color-lemon) 25%, transparent);
    border: 1px solid var(--color-border-strong);
    border-radius: var(--radius-md);
    padding: var(--space-lg);
    margin-top: var(--space-xl);
    font-size: var(--fs-xs);
    color: var(--color-muted);
}

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

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

.section--fda-notice {
    background: var(--color-off);
    padding: var(--space-xl) var(--space-md);
}

.section--fda-notice .section__title {
    font-size: var(--fs-lg);
    color: var(--color-indigo);
}

.notice-banner {
    padding: var(--space-lg);
    border-radius: var(--radius-lg);
    border: 2px solid var(--color-border-strong);
    background: var(--color-white);
    font-size: var(--fs-sm);
    color: var(--color-text);
    line-height: 1.65;
    box-shadow: var(--shadow-sm);
}

.notice-banner p {
    margin: 0 0 var(--space-md);
}

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

.notice-banner strong {
    color: var(--color-indigo);
}

.hero__microcopy {
    font-size: var(--fs-xs);
    color: rgba(255, 255, 255, 0.72);
    margin: 0 0 var(--space-sm);
    max-width: 42ch;
    line-height: 1.45;
}

.price-note {
    font-size: var(--fs-xs);
    color: rgba(255, 255, 255, 0.72);
    margin: 0 0 var(--space-md);
    line-height: 1.45;
}

.form-legal-note {
    font-size: var(--fs-xs);
    color: rgba(255, 255, 255, 0.78);
    line-height: 1.55;
    margin: 0 0 var(--space-md);
}

.form-legal-note a {
    color: var(--color-peach);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.survey-disclaimer {
    font-size: var(--fs-xs);
    color: var(--color-muted);
    text-align: center;
    max-width: 64ch;
    margin: 0 auto var(--space-md);
    line-height: 1.55;
}

.hero__stat-num--word {
    font-size: var(--fs-md);
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    background: none;
    -webkit-background-clip: unset;
    background-clip: unset;
    color: var(--color-lemon);
}

.footer-legal a {
    color: var(--color-peach);
}

.site-footer {
    background: var(--color-indigo);
    color: rgba(255, 255, 255, 0.88);
    padding: var(--space-xl) var(--space-md);
    margin-top: var(--space-2xl);
}

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

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

.site-footer a {
    color: var(--color-peach);
    text-decoration: none;
}

.site-footer a:hover {
    color: var(--color-white);
    text-decoration: underline;
}

.footer-legal {
    font-size: var(--fs-xs);
    line-height: 1.65;
    padding: var(--space-md);
    background: rgba(0, 0, 0, 0.2);
    border-radius: var(--radius-md);
    margin-bottom: var(--space-md);
}

.footer-copy {
    font-size: var(--fs-xs);
    opacity: 0.85;
    margin: 0;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 2000;
    padding: var(--space-md);
    background: var(--glass-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-top: 1px solid var(--glass-border);
    box-shadow: var(--shadow-lg);
    transform: translateY(110%);
    transition: transform var(--transition-med);
}

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

.cookie-banner__inner {
    width: min(100% - 2 * var(--space-md), var(--max-w));
    margin-inline: auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: var(--space-md);
    justify-content: space-between;
}

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

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

.modal-overlay {
    position: fixed;
    inset: 0;
    z-index: 3000;
    background: var(--overlay-scrim);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-md);
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--transition-med), visibility var(--transition-med);
}

.modal-overlay.is-open {
    opacity: 1;
    visibility: visible;
}

.modal {
    width: min(520px, 100%);
    max-height: 90vh;
    overflow-y: auto;
    background: color-mix(in srgb, var(--color-white) 88%, transparent);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    box-shadow: var(--shadow-lg);
}

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

.cookie-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-sm) 0;
    border-bottom: 1px solid var(--color-border-strong);
    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: #ccc;
    border-radius: 26px;
    transition: background var(--transition-fast);
}

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

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

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

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

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

.policy-page {
    padding: var(--space-xl) var(--space-md) var(--space-2xl);
}

.policy-page__inner {
    width: min(100% - 2 * var(--space-md), 800px);
    margin-inline: auto;
}

.policy-page h1 {
    font-size: var(--fs-xl);
    color: var(--color-indigo);
}

.policy-page h2 {
    font-size: var(--fs-lg);
    margin-top: var(--space-lg);
    color: var(--color-indigo);
}

.policy-page p,
.policy-page li {
    font-size: var(--fs-sm);
    color: var(--color-muted);
}

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

.thank-you {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: var(--space-2xl) var(--space-md);
}

.thank-you h1 {
    font-size: var(--fs-xl);
    color: var(--color-indigo);
}

.thank-you p {
    color: var(--color-muted);
    max-width: 42ch;
    margin-inline: auto;
}

.legal-page {
    min-height: 100vh;
    background: radial-gradient(1200px 600px at 10% -10%, rgba(255, 90, 95, 0.18), transparent 55%),
        radial-gradient(900px 500px at 100% 0%, rgba(106, 209, 227, 0.2), transparent 50%),
        var(--color-off);
}

.legal-hero {
    position: relative;
    overflow: hidden;
    padding: var(--space-2xl) var(--space-md) var(--space-xl);
    border-bottom: 1px solid var(--color-border);
    background: linear-gradient(135deg, #2d1a4f 0%, #4a2d7a 45%, #6ad1e3 120%);
    color: var(--color-white);
}

.legal-hero__inner {
    width: min(100% - 2 * var(--space-md), 960px);
    margin-inline: auto;
}

.legal-hero__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: var(--fs-xs);
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    opacity: 0.9;
}

.legal-hero h1 {
    margin: var(--space-md) 0 var(--space-sm);
    font-size: clamp(1.75rem, 1.2rem + 2vw, 2.75rem);
    line-height: 1.1;
    letter-spacing: -0.03em;
}

.legal-hero__meta {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-md);
    align-items: center;
    font-size: var(--fs-sm);
    opacity: 0.95;
}

.legal-hero__meta time {
    font-weight: 800;
    padding: var(--space-xs) var(--space-sm);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.22);
}

.legal-body {
    padding: var(--space-xl) var(--space-md) var(--space-2xl);
}

.legal-body__inner {
    width: min(100% - 2 * var(--space-md), 920px);
    margin-inline: auto;
    display: grid;
    gap: var(--space-xl);
}

.legal-intro {
    font-size: var(--fs-md);
    color: var(--color-text);
    line-height: 1.75;
}

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

.legal-card {
    padding: var(--space-lg);
    border-radius: var(--radius-lg);
    background: var(--color-white);
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow-md);
    transition: transform var(--transition-med), box-shadow var(--transition-med);
}

@media (hover: hover) and (pointer: fine) {
    .legal-card:hover {
        transform: translateY(-3px);
        box-shadow: var(--shadow-lg);
    }
}

.legal-card h2 {
    margin: 0 0 var(--space-sm);
    font-size: var(--fs-md);
    color: var(--color-indigo);
}

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

.legal-section {
    padding: var(--space-lg);
    border-radius: var(--radius-xl);
    background: linear-gradient(180deg,
            color-mix(in srgb, var(--color-white) 95%, transparent),
            color-mix(in srgb, var(--color-off) 75%, transparent));
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow-sm);
}

.legal-section h2 {
    margin: 0 0 var(--space-md);
    font-size: var(--fs-lg);
    color: var(--color-indigo);
    letter-spacing: -0.02em;
}

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

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

.legal-aside {
    padding: var(--space-lg);
    border-radius: var(--radius-lg);
    border-left: 5px solid var(--color-coral);
    background: rgba(255, 224, 102, 0.22);
}

.legal-timeline {
    display: grid;
    gap: var(--space-md);
}

.legal-timeline__item {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: var(--space-md);
    align-items: start;
    padding: var(--space-md);
    border-radius: var(--radius-md);
    background: var(--color-white);
    border: 1px solid var(--color-border);
}

.legal-timeline__badge {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    color: var(--color-indigo);
    background: linear-gradient(135deg, var(--color-teal), var(--color-lemon));
}

.thank-page {
    min-height: 100vh;
    background: radial-gradient(900px 500px at 50% -20%, rgba(255, 90, 95, 0.2), transparent 55%),
        radial-gradient(700px 400px at 0% 40%, rgba(106, 209, 227, 0.18), transparent 50%),
        var(--color-off);
}

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

.thank-hero__bg {
    position: absolute;
    inset: 0;
    background: conic-gradient(from 180deg at 50% 40%, rgba(255, 224, 102, 0.35), rgba(106, 209, 227, 0.25), rgba(255, 90, 95, 0.25), rgba(255, 224, 102, 0.35));
    animation: mesh-shift 18s linear infinite;
    opacity: 0.55;
    pointer-events: none;
}

.thank-hero__content {
    position: relative;
    z-index: 1;
    width: min(100% - 2 * var(--space-md), 720px);
    margin-inline: auto;
    text-align: center;
}

.thank-hero__icon {
    width: 88px;
    height: 88px;
    margin: 0 auto var(--space-md);
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.25rem;
    font-weight: 900;
    color: var(--color-indigo);
    background: linear-gradient(145deg, var(--color-lemon), var(--color-teal));
    box-shadow: var(--shadow-glow-teal);
    animation: hero-float 6s ease-in-out infinite;
}

.thank-hero h1 {
    margin: 0 0 var(--space-md);
    font-size: clamp(1.85rem, 1.2rem + 2.5vw, 2.75rem);
    color: var(--color-indigo);
    letter-spacing: -0.03em;
}

.thank-hero p {
    margin: 0 auto var(--space-md);
    max-width: 52ch;
    color: var(--color-muted);
    font-size: var(--fs-md);
    line-height: 1.75;
}

.thank-steps {
    width: min(100% - 2 * var(--space-md), 880px);
    margin-inline: auto;
    padding: 0 var(--space-md) var(--space-2xl);
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: var(--space-md);
}

.thank-step {
    padding: var(--space-lg);
    border-radius: var(--radius-lg);
    background: color-mix(in srgb, var(--color-white) 85%, transparent);
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition-med), box-shadow var(--transition-med);
}

@media (hover: hover) and (pointer: fine) {
    .thank-step:hover {
        transform: translateY(-4px);
        box-shadow: var(--shadow-md);
    }
}

.thank-step strong {
    display: block;
    margin-bottom: var(--space-xs);
    color: var(--color-indigo);
    font-size: var(--fs-sm);
}

.thank-step span {
    font-size: var(--fs-xs);
    color: var(--color-muted);
    line-height: 1.6;
}

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

    .hero--showcase {
        --hero-mx: 0px;
        --hero-my: 0px;
    }

    .hero__canvas {
        transform: none !important;
        transition: none !important;
    }

    .hero__canvas .hero__noise,
    .hero__canvas .hero__mesh--lines,
    .hero__canvas .hero__mesh--dots,
    .hero__canvas .hero__aurora,
    .hero__canvas .hero__aurora--echo,
    .hero__beam,
    .hero__particles span,
    .hero__orb,
    .hero__orbit-ring,
    .hero__product-glow,
    .hero__spark,
    .hero__stat,
    .hero__title-shimmer,
    .hero__eyebrow-dot,
    .hero__title-line,
    .hero__form-card,
    .hero__form-card::before,
    .hero__img,
    .thank-hero__icon,
    .section--mesh::before,
    .thank-hero__bg,
    .pathways__visual {
        animation: none !important;
    }

    .hero__title-shimmer {
        color: var(--color-white);
        background: none;
        -webkit-background-clip: unset;
        background-clip: unset;
    }

    .hero__title-line {
        background: linear-gradient(90deg, var(--color-coral), var(--color-teal));
        opacity: 1;
    }

    .hero__copy .badge,
    .hero__copy .price-block__current,
    .hero__highlights li::before {
        animation: none !important;
    }

    .hero__eyebrow,
    .hero__title-stack,
    .hero__column--form,
    .hero__copy .hero__lead,
    .hero__trust,
    .hero__copy .price-block,
    .hero__highlights li {
        opacity: 1 !important;
        animation: none !important;
        transform: none !important;
    }

    .reveal,
    .reveal--stagger .bento__card {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }

    .pathways__panel {
        animation: none !important;
    }

    .proof-panel {
        animation: none !important;
    }

    .cookie-banner,
    .modal-overlay,
    .nav-backdrop {
        transition: none !important;
    }

    .nav-main {
        transition: none !important;
    }
}

@media (max-width: 320px) {
    :root {
        --header-h: 64px;
        --space-md: 0.65rem;
        --space-lg: 1rem;
        --space-xl: 1.35rem;
        --space-2xl: 2.25rem;
        --radius-lg: 16px;
        --radius-xl: 20px;
    }

    body {
        font-size: 0.95rem;
    }

    .site-header__inner {
        padding: 0 0.5rem;
        gap: 0.5rem;
    }

    .brand {
        font-size: 0.8rem;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

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

    .hero--showcase {
        min-height: auto;
        padding: var(--space-xl) 0.5rem;
    }

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

    .hero__title-shimmer {
        font-size: 1.65rem;
    }

    .hero__title-rest {
        font-size: 1.05rem;
    }

    .hero__lead {
        font-size: 1rem;
    }

    .hero__stat {
        min-width: 76px;
        padding: 0.4rem 0.5rem;
    }

    .hero__stat-num {
        font-size: 1.05rem;
    }

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

    .order-form h2 {
        font-size: 1.2rem;
    }

    .btn {
        width: 100%;
        padding: 0.85rem 1rem;
        font-size: 0.95rem;
    }

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

    .section__title {
        font-size: 1.35rem;
    }

    .section__subtitle {
        font-size: 0.9rem;
        margin-bottom: var(--space-md);
    }

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

    .pathways__tabs {
        gap: 0.35rem;
    }

    .pathways__tab {
        flex: 1 1 calc(50% - 0.35rem);
        min-width: 0;
        font-size: 0.65rem;
        padding: 0.55rem 0.45rem;
        text-align: center;
    }

    .pathways__panel {
        padding: var(--space-md);
        gap: var(--space-md);
    }

    .pathways__copy h3 {
        font-size: 1.05rem;
    }

    .cta-final {
        margin: 0 0.5rem;
        padding: var(--space-xl) var(--space-md);
        border-radius: var(--radius-lg);
    }

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

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

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

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

    .site-footer {
        padding: var(--space-lg) 0.5rem;
    }

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

    .legal-body {
        padding: var(--space-lg) 0.5rem var(--space-xl);
    }

    .legal-card,
    .legal-section {
        padding: var(--space-md);
    }

    .thank-hero {
        padding: var(--space-xl) 0.5rem;
    }

    .thank-steps {
        padding: 0 0.5rem var(--space-xl);
    }
}