:root {
    --color-sunset-peach: #ffad87;
    --color-rose-pink: #ff6fa3;
    --color-sky-aqua: #6ed4ff;
    --color-lime-mist: #c8ff7a;
    --color-lavender-haze: #d8b4ff;
    --color-bg-deep: #0f0c14;
    --color-bg-card: rgba(255, 255, 255, 0.04);
    --color-text: #f4f0f8;
    --color-text-muted: rgba(244, 240, 248, 0.72);
    --color-border: rgba(255, 255, 255, 0.12);
    --color-border-hover: rgba(255, 255, 255, 0.22);
    --font-display: "Outfit", system-ui, sans-serif;
    --font-body: "DM Sans", system-ui, sans-serif;
    --font-mono: "IBM Plex Mono", ui-monospace, monospace;
    --shadow-soft: 0 8px 32px rgba(0, 0, 0, 0.35);
    --shadow-glow-rose: 0 0 40px rgba(255, 111, 163, 0.25);
    --shadow-glow-aqua: 0 0 36px rgba(110, 212, 255, 0.2);
    --radius-xl: 24px;
    --radius-btn: 18px;
    --radius-input: 14px;
    --space-section-y-mobile: clamp(4rem, 10vw, 5rem);
    --space-section-y-desktop: clamp(7.5rem, 12vw, 10rem);
    --space-card: clamp(1.5rem, 3vw, 2rem);
    --space-grid: clamp(1.5rem, 2.5vw, 2rem);
    --transition-fast: 0.3s ease;
    --transition-reveal: 0.5s ease;
}

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

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

body {
    margin: 0;
    font-family: var(--font-body);
    font-weight: 450;
    font-size: 1rem;
    line-height: 1.65;
    color: var(--color-text);
    background: var(--color-bg-deep);
    background-image:
        radial-gradient(ellipse 80% 50% at 50% -20%, rgba(255, 111, 163, 0.18), transparent),
        radial-gradient(ellipse 60% 40% at 100% 50%, rgba(110, 212, 255, 0.08), transparent),
        radial-gradient(ellipse 50% 30% at 0% 80%, rgba(216, 180, 255, 0.1), transparent);
    min-height: 100vh;
    overflow-x: hidden;
}

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

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

a:hover {
    color: var(--color-sunset-peach);
}

.link-animated {
    position: relative;
    display: inline-block;
}

.link-animated::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, var(--color-rose-pink), var(--color-sky-aqua));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition-fast);
}

.link-animated:hover::after {
    transform: scaleX(1);
}

h1,
h2,
h3,
h4 {
    font-family: var(--font-display);
    font-weight: 750;
    letter-spacing: -0.015em;
    line-height: 1.15;
    margin: 0 0 0.75em;
}

h1 {
    font-size: clamp(2rem, 5vw, 3.25rem);
}

h2 {
    font-size: clamp(1.65rem, 3.5vw, 2.5rem);
}

h3 {
    font-size: clamp(1.15rem, 2vw, 1.35rem);
}

p {
    margin: 0 0 1em;
    color: var(--color-text-muted);
}

.spec-value {
    font-family: var(--font-mono);
    font-size: 0.9rem;
    font-weight: 450;
    letter-spacing: 0.02em;
}

.skip-link {
    position: absolute;
    left: -9999px;
    top: 0;
    z-index: 10000;
    padding: 0.75rem 1rem;
    background: var(--color-rose-pink);
    color: #0f0c14;
    font-weight: 600;
    border-radius: var(--radius-input);
}

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

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    background: rgba(15, 12, 20, 0.65);
    border-bottom: 1px solid var(--color-border);
}

.header-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

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

.brand span {
    color: var(--color-sunset-peach);
}

.site-nav a {
    color: var(--color-text-muted);
    font-size: 0.92rem;
    font-weight: 500;
}

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

.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    z-index: 10001;
    transform-origin: left;
    transform: scaleX(0);
    background: linear-gradient(90deg, var(--color-rose-pink), var(--color-sky-aqua), var(--color-lime-mist));
    transition: transform 0.15s ease-out;
    pointer-events: none;
}

.burger {
    display: none;
    position: relative;
    width: 48px;
    height: 48px;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 14px;
    background: rgba(12, 10, 16, 0.88);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    cursor: pointer;
    z-index: 1002;
    transition: border-color 0.35s ease, box-shadow 0.35s ease, transform 0.2s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.burger:hover {
    border-color: rgba(255, 173, 135, 0.42);
    box-shadow: 0 6px 28px rgba(255, 111, 163, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.burger:active {
    transform: scale(0.96);
}

.burger.is-active {
    border-color: rgba(110, 212, 255, 0.45);
    box-shadow: 0 0 0 1px rgba(110, 212, 255, 0.15), 0 8px 32px rgba(110, 212, 255, 0.12);
}

.burger-box {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.burger-inner {
    width: 22px;
    height: 14px;
    position: relative;
    display: block;
}

.burger-line {
    display: block;
    position: absolute;
    left: 0;
    right: 0;
    height: 2px;
    border-radius: 2px;
    background: linear-gradient(90deg, #f8f4fc, rgba(244, 240, 248, 0.82));
    transition: transform 0.55s cubic-bezier(0.68, -0.55, 0.265, 1.55), opacity 0.3s ease, top 0.4s ease, width 0.35s ease;
    transform-origin: center;
}

.burger-line:nth-child(1) {
    top: 0;
}

.burger-line:nth-child(2) {
    top: 6px;
    width: 72%;
}

.burger-line:nth-child(3) {
    top: 12px;
}

.burger.is-active .burger-line:nth-child(1) {
    top: 6px;
    transform: rotate(45deg);
}

.burger.is-active .burger-line:nth-child(2) {
    opacity: 0;
    width: 0;
    transform: translateX(-8px);
}

.burger.is-active .burger-line:nth-child(3) {
    top: 6px;
    transform: rotate(-45deg);
}

.nav-panel-head {
    display: none;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0 0 1.25rem;
    margin-bottom: 0.5rem;
    border-bottom: 1px solid var(--color-border);
}

.nav-panel-kicker {
    margin: 0;
    font-family: var(--font-display);
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--color-sunset-peach);
}

.nav-drawer-close {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    padding: 0;
    border: 1px solid var(--color-border);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.05);
    color: var(--color-text);
    cursor: pointer;
    transition: background 0.3s ease, border-color 0.3s ease, transform 0.25s ease, color 0.25s ease;
}

.nav-drawer-close:hover {
    background: rgba(255, 111, 163, 0.12);
    border-color: rgba(255, 111, 163, 0.35);
    color: var(--color-sunset-peach);
}

.nav-drawer-close:active {
    transform: scale(0.94);
}

.nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(8, 5, 12, 0.72);
    backdrop-filter: blur(6px);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s ease, visibility 0.35s ease;
}

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

.nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem 1.25rem;
}

main {
    overflow-x: hidden;
}

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

@media (min-width: 900px) {
    .section {
        padding: var(--space-section-y-desktop) 2rem;
    }
}

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

.section-head {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 3rem;
}

.section-head h2 {
    margin-bottom: 0.5rem;
}

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

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

.hero {
    padding-top: clamp(3rem, 8vw, 5rem);
    position: relative;
    overflow: clip;
}

.hero--aurora {
    margin-top: 0;
    padding-bottom: clamp(2rem, 6vw, 4rem);
}

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

.hero-aurora-mesh {
    position: absolute;
    inset: -20%;
    background:
        radial-gradient(ellipse 80% 60% at 20% 20%, rgba(255, 111, 163, 0.22), transparent 50%),
        radial-gradient(ellipse 70% 50% at 85% 30%, rgba(110, 212, 255, 0.18), transparent 45%),
        radial-gradient(ellipse 50% 40% at 50% 90%, rgba(200, 255, 122, 0.1), transparent 50%),
        radial-gradient(ellipse 60% 40% at 70% 70%, rgba(216, 180, 255, 0.14), transparent 55%);
    animation: aurora-shift 18s ease-in-out infinite alternate;
}

@keyframes aurora-shift {
    0% {
        transform: translate(0, 0) rotate(0deg) scale(1);
        opacity: 1;
    }

    33% {
        transform: translate(2%, -1%) rotate(1deg) scale(1.03);
        opacity: 0.95;
    }

    66% {
        transform: translate(-1%, 2%) rotate(-0.5deg) scale(1.02);
        opacity: 1;
    }

    100% {
        transform: translate(1%, 1%) rotate(0.5deg) scale(1);
        opacity: 0.98;
    }
}

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

.hero-orb--1 {
    width: min(45vw, 280px);
    height: min(45vw, 280px);
    left: -5%;
    top: 10%;
    background: radial-gradient(circle, rgba(255, 111, 163, 0.5), transparent 70%);
    animation-delay: 0s;
}

.hero-orb--2 {
    width: min(35vw, 220px);
    height: min(35vw, 220px);
    right: 0;
    bottom: 25%;
    background: radial-gradient(circle, rgba(110, 212, 255, 0.45), transparent 70%);
    animation-delay: -6s;
    animation-duration: 22s;
}

.hero-orb--3 {
    width: min(28vw, 180px);
    height: min(28vw, 180px);
    left: 40%;
    bottom: 5%;
    background: radial-gradient(circle, rgba(216, 180, 255, 0.4), transparent 70%);
    animation-delay: -12s;
    animation-duration: 20s;
}

@keyframes orb-drift {

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

    50% {
        transform: translate(8%, -6%) scale(1.08);
    }
}

.hero-beam {
    position: absolute;
    left: 50%;
    top: -20%;
    width: min(90%, 520px);
    height: 120%;
    margin-left: min(-45%, -260px);
    background: linear-gradient(105deg,
            transparent 0%,
            rgba(255, 173, 135, 0.06) 25%,
            rgba(110, 212, 255, 0.08) 50%,
            rgba(255, 111, 163, 0.05) 75%,
            transparent 100%);
    animation: beam-sweep 12s ease-in-out infinite;
    opacity: 0.7;
}

@keyframes beam-sweep {

    0%,
    100% {
        transform: translateX(-4%) skewX(-2deg);
        opacity: 0.5;
    }

    50% {
        transform: translateX(4%) skewX(2deg);
        opacity: 0.85;
    }
}

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

.hero-grid {
    display: grid;
    gap: var(--space-grid);
    align-items: start;
}

@media (min-width: 900px) {
    .hero-grid {
        grid-template-columns: 1fr 1fr;
        align-items: center;
    }
}

.hero-visual {
    order: 1;
    position: relative;
    display: flex;
    justify-content: center;
    padding: 2rem 0;
    min-height: 320px;
}

@media (min-width: 900px) {
    .hero-visual {
        order: 0;
    }
}

.hero-visual--stage {
    align-items: center;
}

.hero-spotlight {
    position: absolute;
    left: 0;
    right: 0;
    margin: 0 auto;
    width: min(95%, 400px);
    aspect-ratio: 1;
    border-radius: 50%;
    background: radial-gradient(circle at 45% 40%, rgba(255, 255, 255, 0.09) 0%, transparent 55%);
    z-index: 0;
    animation: spotlight-breathe 7s ease-in-out infinite;
}

@keyframes spotlight-breathe {

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

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

.hero-orbit {
    position: absolute;
    width: min(100%, 400px);
    height: min(100%, 400px);
    max-width: 400px;
    max-height: 400px;
    aspect-ratio: 1;
    left: 50%;
    transform: translateX(-50%);
    z-index: 0;
    pointer-events: none;
}

.hero-orbit-ring {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.hero-orbit-ring--slow {
    inset: -4%;
    border-color: rgba(255, 173, 135, 0.25);
    border-style: dashed;
    animation: orbit-spin 48s linear infinite;
}

.hero-orbit-ring--fast {
    inset: -10%;
    border-color: rgba(110, 212, 255, 0.2);
    animation: orbit-spin 28s linear infinite reverse;
}

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

.hero-glow {
    position: absolute;
    left: 0;
    right: 0;
    margin: 0 auto;
    width: min(100%, 380px);
    aspect-ratio: 1;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 111, 163, 0.38) 0%, rgba(110, 212, 255, 0.18) 45%, transparent 68%);
    filter: blur(5px);
    z-index: 0;
    animation: pulse-glow 5s ease-in-out infinite, glow-hue 10s ease-in-out infinite alternate;
    transition: transform 0.35s ease-out, opacity 0.35s ease;
}

@keyframes glow-hue {
    0% {
        filter: blur(5px) hue-rotate(0deg);
    }

    100% {
        filter: blur(6px) hue-rotate(12deg);
    }
}

@keyframes pulse-glow {

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

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

.hero-float-tag {
    position: absolute;
    z-index: 2;
    font-family: var(--font-mono);
    font-size: 0.68rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    padding: 0.35rem 0.65rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: rgba(15, 12, 20, 0.55);
    backdrop-filter: blur(8px);
    color: var(--color-sunset-peach);
    animation: tag-float 5s ease-in-out infinite;
}

.hero-float-tag--1 {
    top: 8%;
    right: 6%;
    animation-delay: 0s;
}

.hero-float-tag--2 {
    bottom: 28%;
    left: 4%;
    color: var(--color-sky-aqua);
    animation-delay: -1.5s;
    animation-duration: 6s;
}

.hero-float-tag--3 {
    bottom: 12%;
    right: 12%;
    color: var(--color-lime-mist);
    animation-delay: -3s;
    animation-duration: 5.5s;
}

@keyframes tag-float {

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

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

.hero-product-wrap {
    position: relative;
    z-index: 1;
    animation: float-y 6s ease-in-out infinite;
    transition: transform 0.2s ease-out;
}

@keyframes float-y {

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

    50% {
        transform: translateY(-12px) rotate(0.5deg);
    }
}

.hero-product-wrap img {
    max-width: 280px;
    margin: 0 auto;
    animation: hero-img-glow 4.5s ease-in-out infinite;
}

@keyframes hero-img-glow {

    0%,
    100% {
        filter: drop-shadow(0 0 26px rgba(255, 111, 163, 0.4));
    }

    50% {
        filter: drop-shadow(0 0 42px rgba(110, 212, 255, 0.38));
    }
}

@media (min-width: 600px) {
    .hero-product-wrap img {
        max-width: 340px;
    }
}

.hero-content {
    order: 2;
}

@media (min-width: 900px) {
    .hero-content {
        order: 0;
    }
}

.hero-content--enter>* {
    animation: hero-enter-up 0.85s cubic-bezier(0.22, 1, 0.36, 1) backwards;
}

.hero-content--enter>*:nth-child(1) {
    animation-delay: 0.05s;
}

.hero-content--enter>*:nth-child(2) {
    animation-delay: 0.12s;
}

.hero-content--enter>*:nth-child(3) {
    animation-delay: 0.2s;
}

.hero-content--enter>*:nth-child(4) {
    animation-delay: 0.28s;
}

.hero-content--enter>*:nth-child(5) {
    animation-delay: 0.35s;
}

.hero-content--enter>*:nth-child(6) {
    animation-delay: 0.42s;
}

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

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

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-mono);
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: var(--color-sky-aqua);
    margin: 0 0 0.75rem;
}

.hero-eyebrow-pulse {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--color-rose-pink);
    box-shadow: 0 0 14px var(--color-rose-pink);
    animation: eyebrow-blink 2.2s ease-in-out infinite;
}

@keyframes eyebrow-blink {

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

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

.hero-title {
    display: flex;
    flex-direction: column;
    gap: 0.15em;
    margin-bottom: 0.75rem;
    line-height: 1.08;
}

.hero-title-line {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: clamp(1.85rem, 4.5vw, 2.75rem);
    letter-spacing: -0.03em;
    color: var(--color-text);
}

.hero-title-accent {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: clamp(1.5rem, 3.8vw, 2.35rem);
    letter-spacing: -0.02em;
    background: linear-gradient(110deg,
            var(--color-sunset-peach) 0%,
            var(--color-rose-pink) 25%,
            var(--color-sky-aqua) 55%,
            var(--color-lime-mist) 85%,
            var(--color-lavender-haze) 100%);
    background-size: 220% auto;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    animation: title-shimmer 7s linear infinite;
}

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

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

.hero-meta {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
    z-index: 2;
    position: relative;
}

.hero-trust-line {
    font-size: 0.82rem;
    color: var(--color-text-muted);
    margin: 0;
    max-width: 22rem;
    line-height: 1.45;
}

.price-legal {
    font-size: 0.82rem;
    color: var(--color-text-muted);
    margin: -0.5rem 0 1.25rem;
    line-height: 1.5;
    max-width: 36rem;
}

.order-legal {
    font-size: 0.88rem;
    color: var(--color-text-muted);
    margin: 0 0 1.1rem;
    line-height: 1.55;
}

.footer-merchant {
    margin-bottom: 0.5rem;
    padding: 1.25rem 0 0;
    border-top: 1px solid var(--color-border);
    font-size: 0.88rem;
    color: var(--color-text-muted);
    line-height: 1.55;
}

.footer-merchant p {
    margin: 0 0 0.65rem;
}

.footer-merchant-note {
    font-size: 0.8rem;
    margin: 0 !important;
    opacity: 0.9;
}

.stars--twinkle svg {
    animation: star-twinkle 2.4s ease-in-out infinite;
}

.stars--twinkle svg:nth-child(1) {
    animation-delay: 0s;
}

.stars--twinkle svg:nth-child(2) {
    animation-delay: 0.2s;
}

.stars--twinkle svg:nth-child(3) {
    animation-delay: 0.4s;
}

.stars--twinkle svg:nth-child(4) {
    animation-delay: 0.6s;
}

.stars--twinkle svg:nth-child(5) {
    animation-delay: 0.8s;
}

@keyframes star-twinkle {

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

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

.trust-badge--lift {
    transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.trust-badge--lift:hover {
    transform: translateY(-3px);
    border-color: rgba(255, 173, 135, 0.45);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}

.stars {
    display: inline-flex;
    gap: 2px;
    color: var(--color-sunset-peach);
}

.stars svg {
    width: 18px;
    height: 18px;
}

.badge-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.35rem 0.65rem;
    border-radius: 999px;
    border: 1px solid var(--color-border);
    background: var(--color-bg-card);
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--color-text-muted);
}

.trust-badge svg {
    width: 14px;
    height: 14px;
    stroke: var(--color-lime-mist);
}

.hero-lead {
    font-size: 1.05rem;
    margin-bottom: 1.25rem;
}

.hero-price-pill {
    padding: 0.55rem 1rem 0.55rem 1.1rem;
    border-radius: var(--radius-btn);
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.02));
    border: 1px solid var(--color-border);
    width: fit-content;
    max-width: 100%;
    animation: price-pill-glow 4s ease-in-out infinite;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.2);
}

@keyframes price-pill-glow {

    0%,
    100% {
        box-shadow: 0 4px 24px rgba(0, 0, 0, 0.2), 0 0 0 1px rgba(255, 255, 255, 0.08);
        border-color: rgba(255, 255, 255, 0.12);
    }

    50% {
        box-shadow: 0 8px 36px rgba(110, 212, 255, 0.18), 0 0 0 1px rgba(255, 173, 135, 0.35);
        border-color: rgba(255, 173, 135, 0.35);
    }
}

.price-block {
    display: flex;
    align-items: baseline;
    gap: 0.75rem;
    margin-bottom: 1.25rem;
}

.price-current {
    position: relative;
    display: inline-block;
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 800;
    color: var(--color-sky-aqua);
    overflow: hidden;
}

.price-value {
    position: relative;
    z-index: 1;
}

.price-shimmer {
    position: absolute;
    inset: 0;
    left: -100%;
    width: 55%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.45), transparent);
    animation: price-shimmer-slide 3.5s ease-in-out infinite;
    pointer-events: none;
    z-index: 0;
}

@keyframes price-shimmer-slide {
    0% {
        transform: translateX(0);
    }

    40%,
    100% {
        transform: translateX(280%);
    }
}

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

.highlights {
    list-style: none;
    margin: 0 0 1.5rem;
    padding: 0;
    display: grid;
    gap: 0.65rem;
}

.highlights li {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    font-size: 0.95rem;
    color: var(--color-text-muted);
    transition: transform 0.4s ease, color 0.3s ease;
}

.highlights li:hover {
    transform: translateX(6px);
    color: rgba(244, 240, 248, 0.88);
}

.highlights svg {
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    stroke: var(--color-lime-mist);
    margin-top: 3px;
}

.order-card {
    padding: var(--space-card);
    border-radius: var(--radius-xl);
    border: 1px solid var(--color-border);
    background: linear-gradient(160deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0.02) 100%);
    box-shadow: var(--shadow-soft);
}

.order-card h3 {
    margin-bottom: 1rem;
}

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

.field input,
.field textarea {
    width: 100%;
    padding: 1.1rem 0.9rem 0.55rem;
    border-radius: var(--radius-input);
    border: 1px solid var(--color-border);
    background: rgba(15, 12, 20, 0.6);
    color: var(--color-text);
    font-family: inherit;
    font-size: 1rem;
    transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

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

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

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

.field input:focus,
.field textarea:focus {
    outline: none;
    border-color: var(--color-rose-pink);
    box-shadow: 0 0 0 3px rgba(255, 111, 163, 0.2);
}

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

.field textarea:focus+label,
.field textarea:not(:placeholder-shown)+label {
    top: 0.55rem;
}

.field-error {
    display: block;
    font-size: 0.8rem;
    color: #ff8a8a;
    margin-top: 0.35rem;
    min-height: 1.1em;
}

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

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

.checkbox-field label {
    font-size: 0.88rem;
    color: var(--color-text-muted);
    line-height: 1.45;
}

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

.btn-primary {
    width: 100%;
    background: linear-gradient(135deg, var(--color-rose-pink), var(--color-sunset-peach));
    color: #0f0c14;
    box-shadow: var(--shadow-glow-rose);
}

.btn-primary:hover {
    transform: scale(1.03);
    filter: brightness(1.08);
}

.btn-secondary {
    background: transparent;
    border: 1px solid var(--color-border);
    color: var(--color-text);
}

.btn-secondary:hover {
    transform: scale(1.03);
    border-color: var(--color-border-hover);
    background: rgba(255, 255, 255, 0.05);
}

.rhythm-section {
    position: relative;
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
    background: linear-gradient(180deg, rgba(255, 111, 163, 0.06) 0%, rgba(15, 12, 20, 0.9) 45%, rgba(110, 212, 255, 0.05) 100%);
    overflow: hidden;
}

.rhythm-bg {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 140px;
    pointer-events: none;
    opacity: 0.9;
}

.wave-svg {
    width: 100%;
    height: 100%;
    display: block;
    animation: wave-drift 14s ease-in-out infinite alternate;
}

@keyframes wave-drift {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-4%);
    }
}

.rhythm-interactive {
    border-radius: var(--radius-xl);
    border: 1px solid var(--color-border);
    background: rgba(0, 0, 0, 0.25);
    padding: 1.25rem;
    margin-bottom: 2rem;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.rhythm-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.25rem;
}

.rhythm-tab {
    font-family: var(--font-display);
    font-size: 0.82rem;
    font-weight: 650;
    padding: 0.55rem 0.9rem;
    border-radius: 999px;
    border: 1px solid var(--color-border);
    background: transparent;
    color: var(--color-text-muted);
    cursor: pointer;
    transition: transform 0.25s ease, border-color 0.25s ease, color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.rhythm-tab:hover {
    transform: translateY(-2px);
    color: var(--color-text);
    border-color: rgba(255, 173, 135, 0.45);
}

.rhythm-tab.is-active {
    color: #0f0c14;
    background: linear-gradient(135deg, var(--color-sunset-peach), var(--color-rose-pink));
    border-color: transparent;
    box-shadow: 0 6px 24px rgba(255, 111, 163, 0.35);
}

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

.rhythm-panel {
    animation: panel-in 0.5s ease both;
}

.rhythm-panel[hidden] {
    display: none !important;
}

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

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

.rhythm-chips {
    list-style: none;
    margin: 1rem 0 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
}

.rhythm-chips li {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.88rem;
    color: var(--color-text-muted);
    padding: 0.4rem 0.75rem;
    border-radius: var(--radius-input);
    border: 1px solid var(--color-border);
    background: rgba(255, 255, 255, 0.03);
}

.chip-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--color-sky-aqua);
    box-shadow: 0 0 10px var(--color-sky-aqua);
}

.rhythm-metrics {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

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

.metric-card {
    position: relative;
    padding: 1.25rem 1rem 1rem 4.5rem;
    border-radius: var(--radius-xl);
    border: 1px solid var(--color-border);
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.05), transparent);
    transition: transform 0.4s ease, border-color 0.4s ease;
}

.metric-card:hover {
    transform: translateY(-6px) scale(1.02);
    border-color: rgba(200, 255, 122, 0.35);
}

.metric-ring {
    position: absolute;
    left: 1rem;
    top: 50%;
    margin-top: -22px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 2px solid rgba(255, 111, 163, 0.5);
    border-top-color: var(--color-rose-pink);
    animation: spin-slow 8s linear infinite;
}

.metric-ring--b {
    border-color: rgba(110, 212, 255, 0.4);
    border-top-color: var(--color-sky-aqua);
    animation-duration: 11s;
    animation-direction: reverse;
}

.metric-ring--c {
    border-color: rgba(200, 255, 122, 0.4);
    border-top-color: var(--color-lime-mist);
    animation-duration: 9s;
}

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

.metric-label {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--color-text-muted);
}

.metric-value {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1.15rem;
    color: var(--color-lavender-haze);
}

.stagger-fade .stagger-item {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.stagger-fade.is-inview .stagger-item {
    opacity: 1;
    transform: translateY(0);
}

.stagger-fade.is-inview .stagger-item:nth-child(1) {
    transition-delay: 0.05s;
}

.stagger-fade.is-inview .stagger-item:nth-child(2) {
    transition-delay: 0.15s;
}

.stagger-fade.is-inview .stagger-item:nth-child(3) {
    transition-delay: 0.25s;
}

.social-proof {
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
    background: rgba(255, 255, 255, 0.02);
}

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

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

.proof-stat {
    text-align: center;
    padding: var(--space-card);
    border-radius: var(--radius-xl);
    border: 1px solid var(--color-border);
    background: var(--color-bg-card);
}

.proof-stat strong {
    font-family: var(--font-display);
    font-size: 1.75rem;
    color: var(--color-sky-aqua);
    display: block;
}

.review-preview-grid {
    display: grid;
    gap: 1rem;
    grid-template-columns: 1fr;
    margin-top: 2rem;
}

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

.review-card-mini {
    padding: 1rem 1.1rem;
    border-radius: var(--radius-xl);
    border: 1px solid var(--color-border);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), transparent);
    transition: transform var(--transition-fast), border-color var(--transition-fast);
}

.review-card-mini:hover {
    transform: translateY(-4px);
    border-color: var(--color-border-hover);
}

.review-card-mini p {
    font-size: 0.9rem;
    margin: 0;
}

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

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

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

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

    .bento-tall {
        min-height: 220px;
    }
}

.bento-card {
    padding: var(--space-card);
    border-radius: var(--radius-xl);
    border: 1px solid var(--color-border);
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
    transition: transform var(--transition-fast), border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.bento-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 173, 135, 0.35);
    box-shadow: var(--shadow-glow-aqua);
}

.bento-icon {
    width: 40px;
    height: 40px;
    margin-bottom: 0.75rem;
    stroke: var(--color-sky-aqua);
    fill: none;
    stroke-width: 1.25;
}

.product-story {
    display: grid;
    gap: 2rem;
    align-items: center;
}

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

.product-story figure {
    margin: 0;
    border-radius: var(--radius-xl);
    overflow: hidden;
    border: 1px solid var(--color-border);
}

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

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

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

.spec-card {
    padding: var(--space-card);
    border-radius: var(--radius-xl);
    border: 1px solid var(--color-border);
    background: var(--color-bg-card);
    transition: transform var(--transition-fast), border-color var(--transition-fast);
}

.spec-card:hover {
    transform: translateY(-4px);
    border-color: var(--color-lavender-haze);
}

.spec-card header {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    margin-bottom: 0.5rem;
}

.spec-card svg {
    width: 22px;
    height: 22px;
    stroke: var(--color-lime-mist);
    fill: none;
    stroke-width: 1.25;
}

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

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

.step-card {
    text-align: center;
    padding: var(--space-card);
    border-radius: var(--radius-xl);
    border: 1px solid var(--color-border);
    background: linear-gradient(180deg, rgba(110, 212, 255, 0.08), transparent);
    transition: transform var(--transition-fast);
}

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

.step-num {
    width: 36px;
    height: 36px;
    margin: 0 auto 0.75rem;
    border-radius: 50%;
    background: rgba(255, 111, 163, 0.25);
    border: 1px solid var(--color-border);
    font-family: var(--font-mono);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-sunset-peach);
}

.step-card svg {
    width: 36px;
    height: 36px;
    margin: 0 auto 0.75rem;
    stroke: var(--color-sky-aqua);
    fill: none;
    stroke-width: 1.25;
}

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

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

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

.ingredient-card {
    padding: var(--space-card);
    border-radius: var(--radius-xl);
    border: 1px solid var(--color-border);
    background: var(--color-bg-card);
    transition: transform var(--transition-fast), border-color var(--transition-fast);
}

.ingredient-card:hover {
    transform: translateY(-4px);
    border-color: rgba(200, 255, 122, 0.35);
}

.instructions-list {
    counter-reset: usestep;
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 1rem;
}

.instructions-list li {
    counter-increment: usestep;
    position: relative;
    padding: 1.25rem 1.25rem 1.25rem 4rem;
    border-radius: var(--radius-xl);
    border: 1px solid var(--color-border);
    background: rgba(255, 255, 255, 0.03);
}

.instructions-list li::before {
    content: counter(usestep);
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    width: 2rem;
    height: 2rem;
    border-radius: var(--radius-input);
    background: rgba(110, 212, 255, 0.2);
    font-family: var(--font-mono);
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-sky-aqua);
}

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

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

.review-full {
    padding: var(--space-card);
    border-radius: var(--radius-xl);
    border: 1px solid var(--color-border);
    background: linear-gradient(160deg, rgba(216, 180, 255, 0.08), transparent);
    transition: transform var(--transition-fast);
}

.review-full:hover {
    transform: translateY(-4px);
}

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

.faq-item {
    border-bottom: 1px solid var(--color-border);
}

.faq-item button {
    width: 100%;
    text-align: left;
    padding: 1.1rem 0;
    background: none;
    border: none;
    color: var(--color-text);
    font-family: var(--font-display);
    font-weight: 650;
    font-size: 1.05rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.faq-item button svg {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    stroke: var(--color-sunset-peach);
    transition: transform var(--transition-fast);
}

.faq-item.is-open button svg {
    transform: rotate(180deg);
}

.faq-panel {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.45s ease;
}

.faq-panel p {
    padding-bottom: 1.1rem;
    margin: 0;
}

.faq-item.is-open .faq-panel {
    max-height: 560px;
}

.cta-final {
    text-align: center;
    padding: var(--space-section-y-mobile) 1.5rem;
    border-radius: var(--radius-xl);
    margin: 0 1.5rem;
    border: 1px solid var(--color-border);
    background: linear-gradient(135deg, rgba(255, 111, 163, 0.12), rgba(110, 212, 255, 0.1));
}

.cta-final .cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
    align-items: center;
}

@media (min-width: 900px) {
    .cta-final {
        margin: 0 auto;
        max-width: 1160px;
        padding: var(--space-section-y-desktop) 2rem;
    }
}

.disclaimer-block {
    max-width: 800px;
    margin: 0 auto;
    padding: var(--space-card);
    border-radius: var(--radius-xl);
    border: 1px dashed var(--color-border);
    background: rgba(0, 0, 0, 0.2);
}

.disclaimer-block p {
    font-size: 0.9rem;
    margin: 0;
}

.site-footer {
    padding: 3rem 1.5rem 8rem;
    border-top: 1px solid var(--color-border);
    background: rgba(0, 0, 0, 0.25);
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    gap: 2rem;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem 1.5rem;
}

.footer-links a {
    color: var(--color-text-muted);
    font-size: 0.92rem;
}

.footer-copy {
    font-size: 0.85rem;
    color: var(--color-text-muted);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 2000;
    padding: 1rem 1.5rem;
    background: rgba(15, 12, 20, 0.92);
    backdrop-filter: blur(12px);
    border-top: 1px solid var(--color-border);
    transform: translateY(100%);
    transition: transform 0.45s ease;
}

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

.cookie-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.cookie-inner p {
    margin: 0;
    flex: 1 1 280px;
    font-size: 0.9rem;
}

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

.cookie-actions .btn {
    width: auto;
    padding: 0.65rem 1rem;
    font-size: 0.88rem;
}

.modal-overlay {
    position: fixed;
    inset: 0;
    z-index: 3000;
    background: rgba(0, 0, 0, 0.65);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--transition-fast), visibility var(--transition-fast);
}

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

.modal {
    width: 100%;
    max-width: 480px;
    max-height: 90vh;
    overflow-y: auto;
    padding: 1.5rem;
    border-radius: var(--radius-xl);
    border: 1px solid var(--color-border);
    background: #16121c;
    box-shadow: var(--shadow-soft);
}

.modal h2 {
    margin-bottom: 1rem;
}

.cookie-toggle-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--color-border);
}

.cookie-toggle-row span {
    font-size: 0.95rem;
}

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

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

.switch-slider {
    position: absolute;
    cursor: pointer;
    inset: 0;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 999px;
    transition: background var(--transition-fast);
}

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

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

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

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

.modal-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1.25rem;
}

.modal-actions .btn {
    width: auto;
    flex: 1;
    min-width: 120px;
}

.policy-creative {
    background: var(--color-bg-deep);
}

.policy-creative__hero {
    padding: 2.5rem 1.5rem 3rem;
    text-align: center;
    background: linear-gradient(135deg, rgba(255, 111, 163, 0.16) 0%, rgba(110, 212, 255, 0.1) 45%, rgba(216, 180, 255, 0.1) 100%);
    border-bottom: 1px solid var(--color-border);
    position: relative;
    overflow: hidden;
}

.policy-creative__hero::after {
    content: "";
    position: absolute;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(200, 255, 122, 0.15), transparent 70%);
    top: -60px;
    right: 10%;
    pointer-events: none;
}

.policy-creative__hero h1 {
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
}

.policy-doc-date {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.35rem 0.65rem;
    margin-top: 1.25rem;
    padding: 0.55rem 1.1rem;
    border-radius: 999px;
    border: 1px solid var(--color-border);
    background: rgba(0, 0, 0, 0.35);
    font-family: var(--font-mono);
    font-size: 0.82rem;
    color: var(--color-sunset-peach);
    position: relative;
    z-index: 1;
}

.policy-creative__layout {
    display: grid;
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto;
    padding: 2rem 1.5rem 4.5rem;
}

@media (min-width: 900px) {
    .policy-creative__layout {
        grid-template-columns: minmax(180px, 240px) minmax(0, 1fr);
        align-items: start;
    }
}

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

.policy-toc {
    position: sticky;
    top: 5.5rem;
    padding: 1.25rem;
    border-radius: var(--radius-xl);
    border: 1px solid var(--color-border);
    background: linear-gradient(165deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
}

.policy-toc-title {
    font-family: var(--font-display);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--color-text-muted);
    margin: 0 0 0.75rem;
}

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

.policy-toc a {
    display: block;
    padding: 0.45rem 0;
    font-size: 0.9rem;
    color: var(--color-text-muted);
    border-bottom: 1px solid transparent;
    transition: color 0.25s ease, border-color 0.25s ease, padding-left 0.25s ease;
}

.policy-toc a:hover {
    color: var(--color-sky-aqua);
    padding-left: 0.35rem;
    border-bottom-color: rgba(110, 212, 255, 0.3);
}

.policy-creative__main {
    min-width: 0;
}

.policy-card {
    border-radius: var(--radius-xl);
    border: 1px solid var(--color-border);
    padding: 1.5rem 1.35rem;
    margin-bottom: 1.35rem;
    background: linear-gradient(155deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
    transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.policy-card:hover {
    transform: translateY(-3px);
    border-color: rgba(255, 173, 135, 0.28);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
}

.policy-card h2 {
    margin-top: 0;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.policy-card h2::before {
    content: "";
    width: 4px;
    height: 1.1em;
    border-radius: 2px;
    background: linear-gradient(180deg, var(--color-rose-pink), var(--color-sky-aqua));
    flex-shrink: 0;
}

.policy-lead {
    font-size: 1.05rem;
    color: var(--color-text-muted);
    margin-bottom: 1.5rem;
}

.thank-creative {
    max-width: 720px;
    margin: 0 auto;
    padding: 2rem 1.5rem 4rem;
}

.thank-hero-card {
    text-align: center;
    padding: 2.5rem 1.5rem;
    border-radius: var(--radius-xl);
    border: 1px solid var(--color-border);
    background: linear-gradient(160deg, rgba(255, 111, 163, 0.12), rgba(110, 212, 255, 0.08));
    margin-bottom: 2rem;
    position: relative;
    overflow: hidden;
}

.thank-hero-card::before {
    content: "";
    position: absolute;
    inset: -40%;
    background: conic-gradient(from 120deg, transparent, rgba(200, 255, 122, 0.06), transparent 40%);
    animation: thank-spin 18s linear infinite;
}

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

.thank-hero-card>* {
    position: relative;
    z-index: 1;
}

.thank-steps {
    display: grid;
    gap: 1rem;
    margin-top: 1.5rem;
}

.thank-step {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 1rem 1.1rem;
    border-radius: var(--radius-xl);
    border: 1px solid var(--color-border);
    background: rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.thank-step:hover {
    transform: translateX(6px);
    border-color: rgba(110, 212, 255, 0.35);
}

.thank-step-num {
    flex-shrink: 0;
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    background: rgba(255, 111, 163, 0.25);
    border: 1px solid var(--color-border);
    font-family: var(--font-mono);
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-sunset-peach);
}

.thank-step h3 {
    margin: 0 0 0.35em;
    font-size: 1.05rem;
    font-family: var(--font-display);
    font-weight: 700;
}

.thank-step p {
    margin: 0;
}

.policy-page main {
    padding: 2rem 1.5rem 4rem;
    max-width: 800px;
    margin: 0 auto;
}

.policy-creative .policy-page main,
.policy-creative main {
    padding: 0;
    max-width: none;
    margin: 0;
}

.policy-page h1 {
    margin-bottom: 1rem;
}

.policy-page h2 {
    font-size: 1.25rem;
    margin-top: 2rem;
}

.policy-page ul {
    padding-left: 1.25rem;
    color: var(--color-text-muted);
}

.policy-page address {
    font-style: normal;
    margin: 1rem 0;
    color: var(--color-text-muted);
}

.thank-you-page .hero-content {
    text-align: center;
    max-width: 560px;
    margin: 0 auto;
    padding: 4rem 0;
}

@media (max-width: 899px) {
    .hero-grid {
        display: flex;
        flex-direction: column;
    }

    .hero-visual {
        order: 1;
    }

    .hero-content {
        order: 2;
    }
}

@media (max-width: 1023px) {
    .burger {
        display: block;
    }

    .nav-overlay {
        display: block;
    }

    .nav-panel-head {
        display: flex;
    }

    .site-nav {
        position: fixed;
        top: 0;
        right: 0;
        width: min(100%, 360px);
        height: 100vh;
        height: 100dvh;
        margin: 0;
        padding: calc(1.1rem + env(safe-area-inset-top, 0px)) 1.35rem 2rem;
        background:
            radial-gradient(ellipse 120% 80% at 100% 0%, rgba(255, 111, 163, 0.12), transparent 55%),
            linear-gradient(175deg, rgba(20, 16, 28, 0.98) 0%, rgba(12, 10, 18, 0.99) 55%, rgba(15, 12, 22, 1) 100%);
        border-left: 1px solid rgba(255, 255, 255, 0.1);
        box-shadow: -16px 0 56px rgba(0, 0, 0, 0.55);
        transform: translateX(104%);
        transition: transform 0.5s cubic-bezier(0.32, 0.72, 0, 1);
        z-index: 1001;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }

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

    .site-nav.is-open .nav-list li {
        animation: nav-drawer-item 0.5s cubic-bezier(0.22, 1, 0.36, 1) backwards;
    }

    .site-nav.is-open .nav-list li:nth-child(1) {
        animation-delay: 0.04s;
    }

    .site-nav.is-open .nav-list li:nth-child(2) {
        animation-delay: 0.08s;
    }

    .site-nav.is-open .nav-list li:nth-child(3) {
        animation-delay: 0.12s;
    }

    .site-nav.is-open .nav-list li:nth-child(4) {
        animation-delay: 0.16s;
    }

    .site-nav.is-open .nav-list li:nth-child(5) {
        animation-delay: 0.2s;
    }

    .site-nav.is-open .nav-list li:nth-child(6) {
        animation-delay: 0.24s;
    }

    .site-nav.is-open .nav-list li:nth-child(7) {
        animation-delay: 0.28s;
    }

    .site-nav.is-open .nav-list li:nth-child(8) {
        animation-delay: 0.32s;
    }

    @keyframes nav-drawer-item {
        from {
            opacity: 0;
            transform: translateX(16px);
        }

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

    .nav-list {
        flex-direction: column;
        gap: 0.2rem;
    }

    .site-nav a {
        display: block;
        padding: 0.95rem 1.05rem;
        border-radius: 12px;
        font-size: 1.08rem;
        font-weight: 550;
        border: 1px solid transparent;
        transition: background 0.3s ease, border-color 0.3s ease, transform 0.25s ease;
    }

    .site-nav a:hover {
        background: rgba(255, 255, 255, 0.07);
        border-color: rgba(255, 255, 255, 0.08);
    }

    .site-nav a:focus-visible {
        outline: 2px solid var(--color-sky-aqua);
        outline-offset: 2px;
    }

    body.nav-open,
    html.nav-open {
        overflow: hidden;
        touch-action: none;
    }
}

@media (min-width: 1024px) {
    .burger {
        display: none;
    }

    .nav-overlay {
        display: none !important;
    }

    .nav-panel-head {
        display: none !important;
    }

    .site-nav {
        position: static;
        transform: none;
        width: auto;
        height: auto;
        padding: 0;
        background: none;
        border: none;
        box-shadow: none;
        overflow: visible;
    }

    .site-nav .nav-list li {
        animation: none !important;
    }
}

@media (max-width: 359px) {
    .header-inner {
        padding: 0.65rem 0.75rem;
    }

    .brand {
        font-size: 0.9rem;
        max-width: calc(100% - 52px);
        line-height: 1.25;
    }

    .burger {
        width: 42px;
        height: 42px;
        flex-shrink: 0;
    }

    .section {
        padding-left: 0.75rem;
        padding-right: 0.75rem;
    }

    .section-inner {
        padding-left: 0;
        padding-right: 0;
    }

    .hero-float-tag {
        display: none;
    }

    .hero-title-line {
        font-size: 1.35rem;
    }

    .hero-title-accent {
        font-size: 1.2rem;
    }

    .hero-lead {
        font-size: 0.95rem;
    }

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

    .order-card {
        padding: 1rem;
    }

    .field input,
    .field textarea {
        font-size: 16px;
    }

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

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

    .bento-grid {
        gap: 0.85rem;
    }

    .btn {
        min-height: 44px;
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .cta-final {
        margin-left: 0.75rem;
        margin-right: 0.75rem;
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .cookie-inner {
        padding-left: 0.75rem;
        padding-right: 0.75rem;
    }

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

    .policy-creative__hero {
        padding: 1.1rem 0.75rem;
    }

    .policy-creative__main {
        padding-left: 0.75rem;
        padding-right: 0.75rem;
    }

    .thank-creative {
        padding-left: 0.75rem;
        padding-right: 0.75rem;
    }
}

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

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

    .wave-svg {
        animation: none;
    }

    .scroll-progress {
        transition: none;
    }

    .thank-hero-card::before {
        animation: none;
    }

  .metric-ring {
    animation: none;
  }

  .site-nav.is-open .nav-list li {
    animation: none !important;
  }
}