:root {
    --color-fire-pop: #ff5c2b;
    --color-pink-pulse: #ff2fb3;
    --color-sky-neon: #2fd4ff;
    --color-lime-blast: #c2ff1f;
    --color-midnight-wave: #0f1a44;
    --color-white: #ffffff;
    --color-off-white: #f4f6ff;
    --color-text: #0f1a44;
    --color-text-muted: #4a5578;
    --color-border: rgba(15, 26, 68, 0.12);
    --font-heading: "DM Sans", system-ui, sans-serif;
    --font-body: "Inter", system-ui, sans-serif;
    --shadow-sm: 0 2px 8px rgba(15, 26, 68, 0.06);
    --shadow-md: 0 8px 24px rgba(15, 26, 68, 0.1);
    --shadow-lg: 0 16px 48px rgba(15, 26, 68, 0.14);
    --shadow-glow-fire: 0 0 32px rgba(255, 92, 43, 0.45);
    --shadow-glow-pink: 0 0 28px rgba(255, 47, 179, 0.35);
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 22px;
    --radius-xl: 28px;
    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;
    --space-3xl: 4rem;
    --header-h: 4.25rem;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    margin: 0;
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.6;
    color: var(--color-text);
    background: linear-gradient(165deg, var(--color-off-white) 0%, var(--color-white) 40%, #eef2ff 100%);
    min-height: 100vh;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: var(--color-fire-pop);
    text-decoration: none;
    transition: color 0.2s ease, opacity 0.2s ease;
}

a:hover {
    color: var(--color-pink-pulse);
}

.skip-link {
    position: absolute;
    left: -9999px;
    z-index: 10000;
    padding: var(--space-md) var(--space-lg);
    background: var(--color-midnight-wave);
    color: var(--color-white);
    border-radius: var(--radius-sm);
}

.skip-link:focus {
    left: var(--space-md);
    top: var(--space-md);
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    height: var(--header-h);
    display: flex;
    align-items: center;
    backdrop-filter: blur(16px) saturate(180%);
    -webkit-backdrop-filter: blur(16px) saturate(180%);
    background: rgba(255, 255, 255, 0.72);
    border-bottom: 1px solid rgba(15, 26, 68, 0.08);
    box-shadow: var(--shadow-sm);
}

.header-inner {
    width: min(1200px, 100% - 2rem);
    margin-inline: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-lg);
}

.brand {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.15rem;
    letter-spacing: -0.02em;
    color: var(--color-midnight-wave);
}

.brand span {
    background: linear-gradient(90deg, var(--color-fire-pop), var(--color-pink-pulse));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

.burger {
    display: none;
    position: relative;
    z-index: 1201;
    width: 48px;
    height: 48px;
    padding: 0;
    border: none;
    border-radius: var(--radius-md);
    background: rgba(15, 26, 68, 0.06);
    cursor: pointer;
    transition: background 0.25s ease, box-shadow 0.25s ease;
}

.burger:hover {
    background: rgba(255, 92, 43, 0.12);
    box-shadow: 0 0 0 2px rgba(255, 92, 43, 0.25);
}

.burger-box {
    display: block;
    width: 24px;
    height: 18px;
    margin: 0 auto;
    position: relative;
}

.burger-line {
    display: block;
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    border-radius: 2px;
    background: var(--color-midnight-wave);
    transition: transform 0.35s cubic-bezier(0.65, 0, 0.35, 1), top 0.35s ease, opacity 0.25s ease;
}

.burger-line:nth-child(1) {
    top: 0;
}

.burger-line:nth-child(2) {
    top: 8px;
}

.burger-line:nth-child(3) {
    top: 16px;
}

.burger.is-active .burger-line:nth-child(1) {
    top: 8px;
    transform: rotate(45deg);
}

.burger.is-active .burger-line:nth-child(2) {
    opacity: 0;
    transform: scaleX(0.2);
}

.burger.is-active .burger-line:nth-child(3) {
    top: 8px;
    transform: rotate(-45deg);
}

.nav-backdrop {
    position: fixed;
    inset: 0;
    z-index: 1199;
    background: rgba(15, 26, 68, 0.45);
    backdrop-filter: blur(4px);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s ease, visibility 0.35s ease;
}

.nav-backdrop.is-visible {
    opacity: 1;
    visibility: visible;
}

body.nav-open {
    overflow: hidden;
}

.site-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-md) var(--space-lg);
    align-items: center;
}

.site-nav a {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--color-text-muted);
}

.site-nav a:hover {
    color: var(--color-fire-pop);
}

.section {
    padding-block: var(--space-3xl);
    width: min(1200px, 100% - 2rem);
    margin-inline: auto;
}

.compliance-banner {
    padding-block: var(--space-2xl);
    background: linear-gradient(180deg, #eef2ff 0%, var(--color-white) 55%, var(--color-off-white) 100%);
}

.compliance-inner {
    width: min(960px, 100% - 2rem);
    margin-inline: auto;
    padding: var(--space-xl);
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.compliance-title {
    font-family: var(--font-heading);
    font-size: clamp(1.15rem, 2.5vw, 1.45rem);
    font-weight: 800;
    margin: 0 0 var(--space-lg);
    color: var(--color-midnight-wave);
    letter-spacing: -0.02em;
}

.compliance-list {
    margin: 0;
    padding-left: 1.25rem;
    color: var(--color-text-muted);
    font-size: 0.95rem;
    line-height: 1.65;
}

.compliance-list li {
    margin-bottom: var(--space-md);
}

.compliance-list strong {
    color: var(--color-midnight-wave);
}

.compliance-list a {
    font-weight: 600;
}

.compliance-foot {
    margin: var(--space-lg) 0 0;
    padding-top: var(--space-md);
    border-top: 1px solid var(--color-border);
    font-size: 0.9rem;
    color: var(--color-text-muted);
}

.review-disclaimer {
    margin: 0 0 var(--space-lg);
    font-size: 0.92rem;
    color: var(--color-text-muted);
    max-width: 62ch;
    line-height: 1.55;
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    margin: 0 0 var(--space-md);
    color: var(--color-midnight-wave);
}

.section-lead {
    max-width: 52ch;
    color: var(--color-text-muted);
    margin: 0 0 var(--space-2xl);
}

.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.hero {
    padding-block: var(--space-3xl) 0;
    background: linear-gradient(145deg, #070d24 0%, var(--color-midnight-wave) 35%, #152a5c 70%, #0c1638 100%);
    color: var(--color-white);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 90% 70% at 100% 0%, rgba(255, 92, 43, 0.22), transparent 50%),
        radial-gradient(ellipse 70% 60% at 0% 100%, rgba(47, 212, 255, 0.18), transparent 50%),
        radial-gradient(ellipse 50% 40% at 50% 50%, rgba(255, 47, 179, 0.08), transparent 60%);
    pointer-events: none;
    z-index: 0;
}

.hero-mesh {
    position: absolute;
    inset: -30% -20%;
    z-index: 0;
    opacity: 0.55;
    background: conic-gradient(from 210deg at 50% 50%, rgba(255, 92, 43, 0.15), rgba(255, 47, 179, 0.12), rgba(47, 212, 255, 0.14), rgba(194, 255, 31, 0.1), rgba(255, 92, 43, 0.15));
    animation: heroMeshSpin 28s linear infinite;
    filter: blur(60px);
    pointer-events: none;
}

@keyframes heroMeshSpin {
    to {
        transform: rotate(360deg);
    }
}

.hero-noise {
    position: absolute;
    inset: 0;
    z-index: 1;
    opacity: 0.04;
    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.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    pointer-events: none;
}

.hero-grid-lines {
    position: absolute;
    inset: 0;
    z-index: 1;
    background-image: linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 48px 48px;
    mask-image: radial-gradient(ellipse 80% 70% at 50% 40%, black, transparent);
    pointer-events: none;
    animation: heroGridDrift 22s ease-in-out infinite alternate;
}

@keyframes heroGridDrift {
    from {
        transform: translate(0, 0);
    }

    to {
        transform: translate(-24px, -12px);
    }
}

.hero-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 0;
}

.hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(40px);
    opacity: 0.55;
    animation: orbFloat 9s ease-in-out infinite;
}

.hero-orb-a {
    width: min(55vw, 420px);
    height: min(55vw, 420px);
    background: radial-gradient(circle, rgba(255, 92, 43, 0.55), transparent 70%);
    top: -8%;
    right: -5%;
    animation-delay: 0s;
}

.hero-orb-b {
    width: min(45vw, 360px);
    height: min(45vw, 360px);
    background: radial-gradient(circle, rgba(47, 212, 255, 0.45), transparent 70%);
    bottom: -10%;
    left: -8%;
    animation-delay: 2s;
}

.hero-orb-c {
    width: min(35vw, 280px);
    height: min(35vw, 280px);
    background: radial-gradient(circle, rgba(255, 47, 179, 0.4), transparent 70%);
    top: 40%;
    left: 35%;
    animation-delay: 1s;
}

.hero-orb-d {
    width: min(28vw, 220px);
    height: min(28vw, 220px);
    background: radial-gradient(circle, rgba(194, 255, 31, 0.35), transparent 70%);
    bottom: 18%;
    right: 12%;
    animation-delay: 0.5s;
    animation-duration: 11s;
}

@keyframes orbFloat {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    50% {
        transform: translate(12px, -18px) scale(1.05);
    }
}

.hero-inner {
    position: relative;
    z-index: 2;
    width: min(1200px, 100% - 2rem);
    margin-inline: auto;
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    gap: var(--space-2xl);
    align-items: center;
    padding-bottom: var(--space-2xl);
}

@media (max-width: 900px) {
    .hero-inner {
        grid-template-columns: 1fr;
    }
}

.hero-kicker {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    margin: 0 0 var(--space-md);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.75);
    animation: heroKickerIn 0.85s cubic-bezier(0.22, 1, 0.36, 1) 0.1s both;
}

.hero-kicker-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-lime-blast), var(--color-sky-neon));
    box-shadow: 0 0 14px rgba(194, 255, 31, 0.7);
    animation: heroDotPulse 2.2s ease-in-out infinite;
}

@keyframes heroDotPulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.25);
        opacity: 0.85;
    }
}

@keyframes heroKickerIn {
    from {
        opacity: 0;
        transform: translateX(-16px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-title-block {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
    margin: 0 0 var(--space-lg);
}

.hero-title-line {
    display: block;
    font-family: var(--font-heading);
    font-weight: 800;
    letter-spacing: -0.04em;
    line-height: 1.05;
}

.hero-title-line-1 {
    font-size: clamp(2.75rem, 8vw, 4.25rem);
    background: linear-gradient(110deg, var(--color-white) 0%, rgba(255, 255, 255, 0.88) 40%, var(--color-lime-blast) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    animation: heroLine1 1.1s cubic-bezier(0.22, 1, 0.36, 1) 0.15s both;
    filter: drop-shadow(0 0 40px rgba(47, 212, 255, 0.2));
}

@keyframes heroLine1 {
    from {
        opacity: 0;
        transform: translateY(28px) skewY(-2deg);
        letter-spacing: -0.02em;
    }

    to {
        opacity: 1;
        transform: translateY(0) skewY(0);
        letter-spacing: -0.04em;
    }
}

.hero-title-line-2 {
    font-size: clamp(1.35rem, 3.5vw, 2.15rem);
    color: rgba(255, 255, 255, 0.92);
    font-style: normal;
    font-weight: 700;
    animation: heroLine2 1.05s cubic-bezier(0.22, 1, 0.36, 1) 0.35s both;
}

.hero-title-line-2 em {
    font-style: normal;
    background: linear-gradient(90deg, var(--color-sky-neon), var(--color-pink-pulse));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

@keyframes heroLine2 {
    from {
        opacity: 0;
        transform: translateY(20px);
        filter: blur(4px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
        filter: blur(0);
    }
}

.hero-lead-stagger {
    animation: heroLeadIn 1s cubic-bezier(0.22, 1, 0.36, 1) 0.5s both;
}

@keyframes heroLeadIn {
    from {
        opacity: 0;
        transform: translateY(14px);
    }

    to {
        opacity: 0.92;
        transform: translateY(0);
    }
}

.hero-stats {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
    margin-bottom: var(--space-lg);
}

.hero-stat {
    padding: var(--space-xs) var(--space-md);
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(8px);
    animation: heroStatPop 0.65s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}

.hero-stat:nth-child(1) {
    animation-delay: 0.55s;
}

.hero-stat:nth-child(2) {
    animation-delay: 0.68s;
}

.hero-stat:nth-child(3) {
    animation-delay: 0.81s;
}

@keyframes heroStatPop {
    from {
        opacity: 0;
        transform: scale(0.85) translateY(10px);
    }

    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.hero-price-anim .price-current {
    animation: heroPricePop 0.9s cubic-bezier(0.34, 1.56, 0.64, 1) 0.85s both;
}

@keyframes heroPricePop {
    from {
        opacity: 0;
        transform: scale(0.9);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

.price-tag {
    margin-left: auto;
    padding: 0.2rem 0.55rem;
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    border-radius: var(--radius-sm);
    background: linear-gradient(135deg, var(--color-fire-pop), var(--color-pink-pulse));
    color: var(--color-white);
    animation: heroTagWiggle 3s ease-in-out infinite;
}

@keyframes heroTagWiggle {

    0%,
    100% {
        transform: rotate(-2deg);
    }

    50% {
        transform: rotate(2deg);
    }
}

.hero-form-glow {
    animation: heroFormEdge 5s ease infinite;
}

@keyframes heroFormEdge {

    0%,
    100% {
        box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.12), 0 12px 40px rgba(0, 0, 0, 0.2);
    }

    50% {
        box-shadow: 0 0 0 1px rgba(47, 212, 255, 0.35), 0 16px 48px rgba(255, 47, 179, 0.12);
    }
}

.price-row {
    display: flex;
    align-items: baseline;
    flex-wrap: wrap;
    gap: var(--space-md);
    margin-bottom: var(--space-lg);
    width: 100%;
}

.hero-copy h1 {
    font-family: var(--font-heading);
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -0.04em;
}

.hero-copy .lead {
    font-size: 1.125rem;
    opacity: 0.92;
    margin: 0 0 var(--space-xl);
    max-width: 42ch;
}

.hero-meta {
    margin-bottom: var(--space-md);
    animation: heroMetaIn 0.9s ease 0.65s both;
}

.hero-trust-note {
    margin: 0;
    font-size: 0.875rem;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.86);
    max-width: 48ch;
}

.hero-price-note {
    margin: 0 0 var(--space-lg);
    font-size: 0.78rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.72);
    max-width: 52ch;
}

@keyframes heroMetaIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.rating {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-weight: 700;
}

.stars {
    color: var(--color-lime-blast);
    letter-spacing: 2px;
}

.trust-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-sm) var(--space-md);
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-md);
    font-size: 0.85rem;
    font-weight: 600;
}

.hero-copy abbr[title] {
    text-decoration: underline dotted;
    cursor: help;
}

.price-current {
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--color-lime-blast);
}

.price-old {
    font-size: 1.25rem;
    text-decoration: line-through;
    opacity: 0.65;
}

.hero-visual {
    position: relative;
    perspective: 1200px;
}

.hero-visual-shell {
    position: relative;
    display: grid;
    place-items: center;
    min-height: min(72vw, 520px);
    transform-style: preserve-3d;
    transition: transform 0.22s ease-out;
    will-change: transform;
}

.hero-orbit {
    position: absolute;
    width: min(92%, 420px);
    height: min(92%, 420px);
    animation: heroOrbitSpin 32s linear infinite;
    opacity: 0.85;
}

@keyframes heroOrbitSpin {
    to {
        transform: rotate(360deg);
    }
}

.hero-orbit-path {
    stroke-dashoffset: 0;
    animation: heroDash 24s linear infinite;
}

@keyframes heroDash {
    to {
        stroke-dashoffset: -240;
    }
}

.hero-glow-burst {
    position: absolute;
    width: min(85%, 380px);
    aspect-ratio: 1;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 92, 43, 0.25) 0%, rgba(47, 212, 255, 0.12) 45%, transparent 70%);
    animation: heroBurst 5s ease-in-out infinite;
    pointer-events: none;
}

@keyframes heroBurst {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.9;
    }

    50% {
        transform: scale(1.08);
        opacity: 1;
    }
}

.hero-figure-float {
    position: relative;
    z-index: 2;
    margin: 0;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-glow-fire), var(--shadow-lg), 0 24px 80px rgba(15, 26, 68, 0.35);
    transform: perspective(1000px) rotateY(-6deg) rotateX(2deg);
    transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
    animation: heroImgFloat 7s ease-in-out infinite;
}

@keyframes heroImgFloat {

    0%,
    100% {
        transform: perspective(1000px) rotateY(-6deg) rotateX(2deg) translateY(0);
    }

    50% {
        transform: perspective(1000px) rotateY(-4deg) rotateX(1deg) translateY(-12px);
    }
}

.hero-visual-shell:hover .hero-figure-float {
    transform: perspective(1000px) rotateY(0deg) rotateX(0deg) scale(1.03) translateY(-6px);
    animation-play-state: paused;
}

.hero-float-pill {
    position: absolute;
    z-index: 3;
    padding: var(--space-xs) var(--space-md);
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.35);
    background: rgba(15, 26, 68, 0.45);
    backdrop-filter: blur(10px);
    color: var(--color-white);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.hero-float-pill-a {
    top: 8%;
    left: 0;
    animation: heroPillA 5.5s ease-in-out infinite;
}

.hero-float-pill-b {
    top: 42%;
    right: -2%;
    animation: heroPillB 6s ease-in-out infinite;
}

.hero-float-pill-c {
    bottom: 14%;
    left: 6%;
    animation: heroPillC 5.8s ease-in-out infinite;
}

@keyframes heroPillA {

    0%,
    100% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(6px, -8px);
    }
}

@keyframes heroPillB {

    0%,
    100% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(-8px, 6px);
    }
}

@keyframes heroPillC {

    0%,
    100% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(10px, 4px);
    }
}

.hero-marquee {
    position: relative;
    z-index: 2;
    overflow: hidden;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(0, 0, 0, 0.2);
    padding: var(--space-md) 0;
}

.hero-marquee-track {
    display: flex;
    width: max-content;
    gap: var(--space-3xl);
    animation: heroMarquee 28s linear infinite;
}

.hero-marquee-track span {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    white-space: nowrap;
    color: rgba(255, 255, 255, 0.45);
}

@keyframes heroMarquee {
    to {
        transform: translateX(-50%);
    }
}

.order-card {
    margin-top: var(--space-xl);
    padding: var(--space-xl);
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: var(--radius-lg);
    backdrop-filter: blur(12px);
}

.order-card h2 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    margin: 0 0 var(--space-lg);
}

.form-group {
    margin-bottom: var(--space-md);
}

.form-group label {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: var(--space-xs);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: var(--space-md);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.95);
    color: var(--color-text);
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.order-card .form-group input,
.order-card .form-group textarea {
    background: rgba(255, 255, 255, 0.98);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-sky-neon);
    box-shadow: 0 0 0 3px rgba(47, 212, 255, 0.25);
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
}

.checkbox-row {
    display: flex;
    align-items: flex-start;
    gap: var(--space-sm);
    margin-bottom: var(--space-lg);
}

.checkbox-row input {
    margin-top: 4px;
    width: auto;
    accent-color: var(--color-fire-pop);
}

.checkbox-row label {
    font-size: 0.875rem;
    line-height: 1.5;
}

.error-msg {
    display: none;
    font-size: 0.8rem;
    color: #ffb4c0;
    margin-top: var(--space-xs);
}

.error-msg.is-visible {
    display: block;
}

.form-group.has-error input,
.form-group.has-error textarea {
    border-color: #ff6b8a;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    padding: var(--space-md) var(--space-xl);
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1rem;
    border: none;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn-primary {
    background: linear-gradient(135deg, var(--color-fire-pop), #ff3d6b);
    color: var(--color-white);
    box-shadow: var(--shadow-glow-fire);
    width: 100%;
}

.btn-primary:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 12px 40px rgba(255, 92, 43, 0.5);
}

.btn-primary:active {
    transform: translateY(0);
}

.btn-magnetic {
    position: relative;
}

.btn-secondary {
    background: transparent;
    color: var(--color-midnight-wave);
    border: 2px solid var(--color-midnight-wave);
}

.btn-secondary:hover {
    background: var(--color-midnight-wave);
    color: var(--color-white);
}

.bento-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: auto auto;
    gap: var(--space-md);
}

@media (max-width: 900px) {
    .bento-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 520px) {
    .bento-grid {
        grid-template-columns: 1fr;
    }
}

.bento-card {
    position: relative;
    padding: var(--space-xl);
    border-radius: var(--radius-lg);
    background: var(--color-white);
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow-md);
    overflow: hidden;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.bento-card.tilt {
    transform-style: preserve-3d;
}

.bento-card:hover {
    box-shadow: var(--shadow-lg), 0 0 24px rgba(47, 212, 255, 0.2);
}

.bento-card.large {
    grid-column: span 2;
    grid-row: span 1;
    background: linear-gradient(145deg, #fff 0%, #f0f4ff 100%);
}

.bento-card.tall {
    grid-row: span 2;
}

.bento-card h3 {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    margin: 0 0 var(--space-sm);
    color: var(--color-midnight-wave);
}

.bento-card p {
    margin: 0;
    color: var(--color-text-muted);
    font-size: 0.95rem;
}

.bento-card .bento-icon-fa {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    margin-bottom: var(--space-md);
    border-radius: var(--radius-md);
    background: linear-gradient(145deg, rgba(15, 26, 68, 0.04), rgba(47, 212, 255, 0.08));
}

.bento-icon-fa i {
    font-size: 1.75rem;
    line-height: 1;
}

.bento-grid .bento-card:nth-child(1) .bento-icon-fa i {
    color: var(--color-fire-pop);
}

.bento-grid .bento-card:nth-child(2) .bento-icon-fa i {
    color: var(--color-pink-pulse);
}

.bento-grid .bento-card:nth-child(3) .bento-icon-fa i {
    color: var(--color-sky-neon);
}

.bento-grid .bento-card:nth-child(4) .bento-icon-fa i {
    color: var(--color-lime-blast);
}

.ingredient-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: var(--space-lg);
}

.ingredient-card {
    position: relative;
    padding: var(--space-xl);
    border-radius: var(--radius-lg);
    background: var(--color-white);
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    min-height: 200px;
    transition: box-shadow 0.35s ease;
}

.ingredient-card:hover {
    box-shadow: var(--shadow-md), var(--shadow-glow-pink);
}

.ingredient-card h3 {
    font-family: var(--font-heading);
    margin: 0 0 var(--space-sm);
    color: var(--color-midnight-wave);
}

.ingredient-card .ingredient-front,
.ingredient-card .ingredient-back {
    transition: opacity 0.35s ease, transform 0.35s ease;
}

.ingredient-card .ingredient-back {
    position: absolute;
    inset: 0;
    padding: var(--space-xl);
    background: linear-gradient(160deg, rgba(255, 92, 43, 0.08), rgba(47, 212, 255, 0.12));
    opacity: 0;
    transform: translateY(8px);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.ingredient-card:hover .ingredient-front {
    opacity: 0;
}

.ingredient-card:hover .ingredient-back {
    opacity: 1;
    transform: translateY(0);
}

.trust-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
    text-align: center;
}

@media (max-width: 720px) {
    .trust-row {
        grid-template-columns: 1fr;
    }
}

.trust-item {
    padding: var(--space-xl);
    background: var(--color-white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.trust-item:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}

.trust-icon-fa {
    width: 64px;
    height: 64px;
    margin: 0 auto var(--space-md);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(160deg, rgba(255, 92, 43, 0.08), rgba(47, 212, 255, 0.1));
    box-shadow: 0 4px 16px rgba(15, 26, 68, 0.08);
}

.trust-icon-fa i {
    font-size: 2rem;
    line-height: 1;
}

.trust-item:nth-child(1) .trust-icon-fa i {
    color: var(--color-sky-neon);
}

.trust-item:nth-child(2) .trust-icon-fa i {
    color: var(--color-fire-pop);
}

.trust-item:nth-child(3) .trust-icon-fa i {
    color: var(--color-lime-blast);
}

.trust-item h3 {
    font-family: var(--font-heading);
    margin: 0 0 var(--space-sm);
    font-size: 1.1rem;
}

.trust-item p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--color-text-muted);
}

.spec-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--space-md);
}

.spec-item {
    padding: var(--space-lg);
    background: var(--color-white);
    border-radius: var(--radius-md);
    border: 1px solid var(--color-border);
}

.spec-item dt {
    font-weight: 700;
    color: var(--color-fire-pop);
    margin-bottom: var(--space-xs);
}

.spec-item dd {
    margin: 0;
    color: var(--color-text-muted);
}

.benefits-list {
    display: grid;
    gap: var(--space-md);
}

.benefits-list article {
    display: flex;
    gap: var(--space-md);
    padding: var(--space-lg);
    background: var(--color-white);
    border-radius: var(--radius-md);
    border-left: 4px solid var(--color-sky-neon);
    box-shadow: var(--shadow-sm);
}

.benefits-list strong {
    color: var(--color-midnight-wave);
}

.review-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-lg);
}

.review-card {
    padding: var(--space-xl);
    background: var(--color-white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow-sm);
}

.review-card blockquote {
    margin: 0 0 var(--space-md);
    font-style: italic;
    color: var(--color-text-muted);
}

.review-card footer {
    font-weight: 700;
    color: var(--color-midnight-wave);
}

.faq-list details {
    padding: var(--space-lg);
    background: var(--color-white);
    border-radius: var(--radius-md);
    border: 1px solid var(--color-border);
    margin-bottom: var(--space-md);
}

.faq-list summary {
    font-weight: 700;
    cursor: pointer;
    list-style: none;
}

.faq-list summary::-webkit-details-marker {
    display: none;
}

.faq-list details[open] summary {
    color: var(--color-fire-pop);
}

.cta-block {
    text-align: center;
    padding: var(--space-3xl) var(--space-xl);
    background: linear-gradient(120deg, var(--color-midnight-wave), #1e3a8a);
    color: var(--color-white);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
}

.cta-block h2 {
    font-family: var(--font-heading);
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    margin: 0 0 var(--space-md);
}

.cta-block p {
    max-width: 50ch;
    margin: 0 auto var(--space-xl);
    opacity: 0.92;
}

.disclaimer-box {
    margin-top: var(--space-2xl);
    padding: var(--space-lg);
    background: rgba(15, 26, 68, 0.06);
    border-radius: var(--radius-md);
    border: 1px solid var(--color-border);
    font-size: 0.875rem;
    color: var(--color-text-muted);
}

.disclaimer-box strong {
    color: var(--color-midnight-wave);
}

.site-footer {
    margin-top: var(--space-3xl);
    padding: var(--space-2xl) var(--space-xl) var(--space-xl);
    background: var(--color-midnight-wave);
    color: rgba(255, 255, 255, 0.85);
}

.footer-inner {
    width: min(1200px, 100% - 2rem);
    margin-inline: auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--space-xl);
    margin-bottom: var(--space-xl);
}

.site-footer h2 {
    font-family: var(--font-heading);
    font-size: 1rem;
    margin: 0 0 var(--space-md);
    color: var(--color-white);
}

.site-footer ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.site-footer li {
    margin-bottom: var(--space-sm);
}

.site-footer a {
    color: rgba(255, 255, 255, 0.85);
}

.site-footer a:hover {
    color: var(--color-lime-blast);
}

.legal-strip {
    padding-top: var(--space-xl);
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    font-size: 0.8rem;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.7);
}

.legal-strip p {
    margin: 0 0 var(--space-md);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 2000;
    padding: var(--space-lg);
    background: rgba(15, 26, 68, 0.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    color: var(--color-white);
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.cookie-banner.is-visible {
    transform: translateY(0);
}

.cookie-inner {
    width: min(1100px, 100%);
    margin-inline: auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-lg);
}

.cookie-actions {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
}

.cookie-actions .btn {
    width: auto;
    padding: var(--space-sm) var(--space-lg);
    font-size: 0.9rem;
}

.btn-ghost {
    background: transparent;
    color: var(--color-white);
    border: 1px solid rgba(255, 255, 255, 0.4);
}

.btn-ghost:hover {
    background: rgba(255, 255, 255, 0.1);
}

.modal-overlay {
    position: fixed;
    inset: 0;
    z-index: 3000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-lg);
    background: rgba(15, 26, 68, 0.55);
    backdrop-filter: blur(8px);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.modal-overlay.is-open {
    opacity: 1;
    visibility: visible;
}

.modal {
    width: min(480px, 100%);
    max-height: 90vh;
    overflow-y: auto;
    padding: var(--space-xl);
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: var(--shadow-lg);
    color: var(--color-text);
}

.modal h2 {
    font-family: var(--font-heading);
    margin: 0 0 var(--space-lg);
    font-size: 1.35rem;
}

.cookie-toggle-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-md) 0;
    border-bottom: 1px solid var(--color-border);
}

.cookie-toggle-row:last-of-type {
    border-bottom: none;
}

.switch {
    position: relative;
    width: 48px;
    height: 26px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    inset: 0;
    background: #ccc;
    border-radius: 26px;
    transition: background 0.3s;
    cursor: pointer;
}

.slider::before {
    content: "";
    position: absolute;
    height: 20px;
    width: 20px;
    left: 3px;
    bottom: 3px;
    background: white;
    border-radius: 50%;
    transition: transform 0.3s;
}

.switch input:checked+.slider {
    background: var(--color-fire-pop);
}

.switch input:checked+.slider::before {
    transform: translateX(22px);
}

.switch input:disabled+.slider {
    opacity: 0.6;
    cursor: not-allowed;
}

.modal-actions {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
    margin-top: var(--space-xl);
}

.policy-page {
    padding-block: var(--space-3xl);
    width: min(800px, 100% - 2rem);
    margin-inline: auto;
}

.policy-page h1 {
    font-family: var(--font-heading);
    font-size: 2rem;
    margin: 0 0 var(--space-lg);
}

.policy-page h2 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    margin: var(--space-xl) 0 var(--space-md);
}

.policy-page p,
.policy-page li {
    color: var(--color-text-muted);
}

.policy-page ul {
    padding-left: 1.25rem;
}

.thank-you-page {
    min-height: calc(100vh - var(--header-h) - 200px);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: var(--space-3xl) var(--space-lg);
}

.thank-you-page h1 {
    font-family: var(--font-heading);
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    color: var(--color-midnight-wave);
}

@media (max-width: 768px) {
    .burger {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .site-nav {
        position: fixed;
        z-index: 1200;
        top: 0;
        right: 0;
        width: min(100%, 20rem);
        height: 100vh;
        height: 100dvh;
        padding: calc(var(--header-h) + var(--space-lg)) var(--space-xl) var(--space-xl);
        background: rgba(255, 255, 255, 0.94);
        backdrop-filter: blur(18px) saturate(160%);
        -webkit-backdrop-filter: blur(18px) saturate(160%);
        border-left: 1px solid var(--color-border);
        box-shadow: -12px 0 40px rgba(15, 26, 68, 0.12);
        transform: translateX(100%);
        opacity: 0;
        visibility: hidden;
        transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.3s ease, visibility 0.3s;
    }

    .site-nav.is-open {
        transform: translateX(0);
        opacity: 1;
        visibility: visible;
    }

    .site-nav ul {
        flex-direction: column;
        align-items: flex-start;
        gap: var(--space-lg);
    }

    .site-nav a {
        font-size: 1.05rem;
    }
}

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.gradient-text {
    background: linear-gradient(90deg, var(--color-fire-pop), var(--color-pink-pulse), var(--color-sky-neon), var(--color-lime-blast));
    background-size: 280% 100%;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    animation: gradientShift 10s ease infinite;
}

.rhythm-section {
    position: relative;
}

.rhythm-header {
    margin-bottom: var(--space-xl);
}

.rhythm-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
    margin-bottom: var(--space-xl);
}

.rhythm-tab {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.95rem;
    padding: var(--space-sm) var(--space-lg);
    border-radius: 999px;
    border: 2px solid var(--color-border);
    background: var(--color-white);
    color: var(--color-text-muted);
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
}

.rhythm-tab:hover {
    transform: translateY(-2px);
    border-color: rgba(255, 92, 43, 0.45);
    color: var(--color-midnight-wave);
}

.rhythm-tab.is-active {
    background: linear-gradient(135deg, var(--color-midnight-wave), #1e3a8a);
    color: var(--color-white);
    border-color: transparent;
    box-shadow: var(--shadow-glow-pink);
}

.rhythm-panels {
    position: relative;
    min-height: 16rem;
}

.rhythm-panel {
    display: none;
}

.rhythm-panel.is-active {
    display: block;
    animation: panelIn 0.55s cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes panelIn {
    from {
        opacity: 0;
        transform: translateY(16px) scale(0.98);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.rhythm-card {
    padding: var(--space-xl);
    border-radius: var(--radius-xl);
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
}

.rhythm-card::before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: 0.12;
    pointer-events: none;
}

.rhythm-card-morning::before {
    background: linear-gradient(135deg, var(--color-fire-pop), var(--color-lime-blast));
}

.rhythm-card-mid::before {
    background: linear-gradient(135deg, var(--color-sky-neon), var(--color-midnight-wave));
}

.rhythm-card-eve::before {
    background: linear-gradient(135deg, var(--color-pink-pulse), var(--color-midnight-wave));
}

.rhythm-card-week::before {
    background: linear-gradient(135deg, var(--color-lime-blast), var(--color-sky-neon));
}

.rhythm-card-head {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    margin-bottom: var(--space-md);
    position: relative;
    z-index: 1;
}

.rhythm-card h3 {
    font-family: var(--font-heading);
    margin: 0;
    font-size: 1.5rem;
    color: var(--color-midnight-wave);
}

.rhythm-card p,
.rhythm-card li {
    position: relative;
    z-index: 1;
    color: var(--color-text-muted);
}

.rhythm-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-xs) var(--space-md);
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    background: rgba(15, 26, 68, 0.08);
    color: var(--color-midnight-wave);
}

.rhythm-check {
    margin: var(--space-lg) 0 0;
    padding-left: 1.2rem;
    position: relative;
    z-index: 1;
}

.rhythm-check li {
    margin-bottom: var(--space-sm);
}

.rhythm-meter {
    margin-top: var(--space-xl);
    height: 10px;
    border-radius: 999px;
    background: rgba(15, 26, 68, 0.08);
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.rhythm-meter-fill {
    display: block;
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg, var(--color-fire-pop), var(--color-pink-pulse));
    transition: width 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.interactive-strip {
    margin-top: var(--space-2xl);
    padding: var(--space-lg);
    border-radius: var(--radius-lg);
    background: linear-gradient(120deg, rgba(15, 26, 68, 0.04), rgba(47, 212, 255, 0.08));
    border: 1px solid var(--color-border);
}

.interactive-strip-label {
    margin: 0 0 var(--space-sm);
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--color-text-muted);
}

.pulse-bar {
    height: 12px;
    border-radius: 999px;
    background: rgba(15, 26, 68, 0.08);
    overflow: hidden;
}

.pulse-bar-fill {
    display: block;
    height: 100%;
    width: 0%;
    border-radius: inherit;
    background: linear-gradient(90deg, var(--color-lime-blast), var(--color-sky-neon), var(--color-fire-pop));
    background-size: 200% 100%;
    animation: gradientShift 6s ease infinite;
    transition: width 0.15s ease-out;
}

.doc-shell {
    background: linear-gradient(180deg, #f0f4ff 0%, var(--color-white) 28%, var(--color-off-white) 100%);
}

.doc-hero {
    position: relative;
    padding: var(--space-3xl) var(--space-lg) var(--space-2xl);
    overflow: hidden;
}

.doc-hero-inner {
    width: min(960px, 100% - 2rem);
    margin-inline: auto;
    position: relative;
    z-index: 1;
}

.doc-hero h1 {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4.5vw, 3rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    margin: 0 0 var(--space-md);
    color: var(--color-midnight-wave);
}

.doc-hero-lead {
    font-size: 1.1rem;
    color: var(--color-text-muted);
    max-width: 58ch;
    margin: 0 0 var(--space-lg);
}

.doc-meta {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-md);
    align-items: center;
    font-size: 0.9rem;
    color: var(--color-text-muted);
}

.doc-meta time {
    font-weight: 700;
    color: var(--color-fire-pop);
}

.doc-blob {
    position: absolute;
    width: min(70vw, 520px);
    height: min(70vw, 520px);
    border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
    background: radial-gradient(circle at 30% 30%, rgba(255, 92, 43, 0.35), transparent 55%), radial-gradient(circle at 70% 60%, rgba(47, 212, 255, 0.3), transparent 50%);
    filter: blur(0);
    opacity: 0.9;
    top: -20%;
    right: -15%;
    animation: orbFloat 12s ease-in-out infinite;
    pointer-events: none;
}

.doc-content {
    width: min(960px, 100% - 2rem);
    margin-inline: auto;
    padding-bottom: var(--space-3xl);
}

.doc-grid {
    display: grid;
    gap: var(--space-lg);
}

.doc-card {
    padding: var(--space-xl);
    background: var(--color-white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.doc-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.doc-card h2 {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    margin: 0 0 var(--space-md);
    color: var(--color-midnight-wave);
}

.doc-card p,
.doc-card li {
    color: var(--color-text-muted);
    margin: 0 0 var(--space-md);
}

.doc-card ul {
    padding-left: 1.25rem;
    margin: 0 0 var(--space-md);
}

.doc-callout {
    padding: var(--space-lg);
    border-radius: var(--radius-md);
    border-left: 4px solid var(--color-fire-pop);
    background: rgba(255, 92, 43, 0.06);
    margin: var(--space-xl) 0;
}

.doc-columns {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: var(--space-lg);
}

.doc-tag {
    display: inline-block;
    padding: var(--space-xs) var(--space-sm);
    border-radius: var(--radius-sm);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    background: rgba(47, 212, 255, 0.15);
    color: var(--color-midnight-wave);
    margin-bottom: var(--space-sm);
}

.thank-hero {
    text-align: center;
    padding: var(--space-3xl) var(--space-lg);
}

.thank-hero h1 {
    font-family: var(--font-heading);
    font-size: clamp(1.85rem, 4vw, 2.75rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    margin: 0 0 var(--space-md);
    color: var(--color-midnight-wave);
}

.thank-hero-icon {
    width: 88px;
    height: 88px;
    margin: 0 auto var(--space-lg);
    border-radius: 50%;
    background: conic-gradient(from 180deg, var(--color-fire-pop), var(--color-pink-pulse), var(--color-sky-neon), var(--color-lime-blast), var(--color-fire-pop));
    display: grid;
    place-items: center;
    animation: orbFloat 8s ease-in-out infinite;
    box-shadow: var(--shadow-glow-fire);
}

.thank-hero-icon span {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: var(--color-white);
    display: grid;
    place-items: center;
    font-size: 2rem;
}

.thank-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--space-md);
    margin-top: var(--space-2xl);
}

.thank-step {
    padding: var(--space-lg);
    border-radius: var(--radius-lg);
    background: var(--color-white);
    border: 1px solid var(--color-border);
    text-align: left;
}

.thank-step strong {
    display: block;
    font-family: var(--font-heading);
    margin-bottom: var(--space-sm);
    color: var(--color-midnight-wave);
}

.bento-grid .bento-card:nth-child(1) {
    animation: panelIn 0.7s ease 0.05s both;
}

.bento-grid .bento-card:nth-child(2) {
    animation: panelIn 0.7s ease 0.12s both;
}

.bento-grid .bento-card:nth-child(3) {
    animation: panelIn 0.7s ease 0.19s both;
}

.bento-grid .bento-card:nth-child(4) {
    animation: panelIn 0.7s ease 0.26s both;
}

.cta-block {
    position: relative;
    overflow: hidden;
}

.cta-block::after {
    content: "";
    position: absolute;
    inset: -40%;
    background: radial-gradient(circle, rgba(194, 255, 31, 0.12), transparent 55%);
    animation: orbFloat 14s linear infinite;
    pointer-events: none;
    z-index: 0;
}

.cta-block h2,
.cta-block p,
.cta-block .btn {
    position: relative;
    z-index: 1;
}

main.thank-page-wide {
    display: block;
    min-height: auto;
    text-align: left;
    align-items: stretch;
    max-width: 960px;
}

@media (max-width: 320px) {
    :root {
        --header-h: 3.75rem;
        --space-3xl: 2.5rem;
        --space-2xl: 2rem;
    }

    .header-inner {
        width: 100%;
        padding-inline: 0.75rem;
        gap: var(--space-sm);
    }

    .brand {
        font-size: 0.82rem;
        line-height: 1.2;
        max-width: 11rem;
    }

    .burger {
        width: 42px;
        height: 42px;
    }

    .section {
        width: 100%;
        padding-inline: 0.75rem;
        padding-block: var(--space-2xl);
    }

    .hero-inner {
        width: 100%;
        padding-inline: 0.75rem;
        gap: var(--space-lg);
    }

    .hero-copy h1 {
        font-size: 1.55rem;
        line-height: 1.12;
    }

    .hero-copy .lead {
        font-size: 0.95rem;
    }

    .price-current {
        font-size: 1.75rem;
    }

    .order-card {
        padding: var(--space-lg);
    }

    .form-group input,
    .form-group textarea {
        padding: 0.65rem 0.75rem;
        font-size: 0.95rem;
    }

    .btn {
        padding: 0.75rem var(--space-md);
        font-size: 0.95rem;
    }

    .section-title {
        font-size: 1.35rem;
        word-wrap: break-word;
    }

    .section-lead {
        font-size: 0.9rem;
        margin-bottom: var(--space-lg);
    }

    .bento-card {
        padding: var(--space-lg);
    }

    .bento-card.large {
        grid-column: span 1;
    }

    .bento-card.tall {
        grid-row: span 1;
    }

    .ingredient-card {
        min-height: 0;
        padding: var(--space-lg);
    }

    .trust-item {
        padding: var(--space-lg);
    }

    .rhythm-tabs {
        gap: 0.4rem;
    }

    .rhythm-tab {
        font-size: 0.8rem;
        padding: 0.4rem 0.65rem;
    }

    .rhythm-card h3 {
        font-size: 1.15rem;
    }

    .spec-grid {
        grid-template-columns: 1fr;
    }

    .review-card {
        padding: var(--space-lg);
    }

    .faq-list details {
        padding: var(--space-md);
    }

    .cta-block {
        padding: var(--space-xl) var(--space-md);
    }

    .cookie-inner {
        flex-direction: column;
        align-items: stretch;
    }

    .cookie-actions {
        flex-direction: column;
    }

    .cookie-actions .btn {
        width: 100%;
    }

    .footer-inner {
        width: 100%;
        padding-inline: 0.75rem;
    }

    .doc-hero {
        padding-inline: 0.75rem;
    }

    .doc-content {
        width: 100%;
        padding-inline: 0.75rem;
    }

    .doc-hero h1 {
        font-size: 1.45rem;
    }

    .thank-hero {
        padding-inline: 0.75rem;
    }

    .hero-title-line-1 {
        font-size: 2.1rem;
    }

    .hero-title-line-2 {
        font-size: 1rem;
    }

    .hero-float-pill {
        font-size: 0.62rem;
        padding: 0.15rem 0.4rem;
    }

    .hero-float-pill-b {
        right: 0;
    }

    .hero-marquee-track span {
        font-size: 0.62rem;
        letter-spacing: 0.1em;
    }

    .hero-kicker {
        font-size: 0.62rem;
        letter-spacing: 0.06em;
    }

    .policy-page {
        width: 100%;
        padding-inline: 0.75rem;
    }
}

@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }

    .rhythm-panel.is-active {
        animation: none;
    }
}