:root {
    --color-neon-tangerine: #FF793F;
    --color-hot-pink: #FF2FA3;
    --color-electric-cyan: #00E5FF;
    --color-lime-flash: #CFFF1F;
    --color-deep-indigo: #1A0F3D;
    --color-surface: #0f0824;
    --color-surface-elevated: #241847;
    --color-text: #f4f0ff;
    --color-text-muted: #b8aed4;
    --color-white: #ffffff;
    --font-display: "Segoe UI", system-ui, -apple-system, sans-serif;
    --font-body: "Segoe UI", system-ui, -apple-system, sans-serif;
    --fs-xs: 0.75rem;
    --fs-sm: 0.875rem;
    --fs-md: 1rem;
    --fs-lg: 1.125rem;
    --fs-xl: 1.35rem;
    --fs-2xl: 1.75rem;
    --fs-3xl: 2.25rem;
    --fs-hero: clamp(2.25rem, 6vw, 3.75rem);
    --lh-tight: 1.15;
    --lh-normal: 1.5;
    --fw-regular: 400;
    --fw-semibold: 600;
    --fw-bold: 700;
    --shadow-sm: 0 2px 8px rgba(26, 15, 61, 0.35);
    --shadow-md: 0 8px 24px rgba(26, 15, 61, 0.45);
    --shadow-lg: 0 16px 48px rgba(26, 15, 61, 0.55);
    --shadow-glow-orange: 0 0 32px rgba(255, 121, 63, 0.45);
    --shadow-glow-cyan: 0 0 28px rgba(0, 229, 255, 0.35);
    --shadow-glow-pink: 0 0 28px rgba(255, 47, 163, 0.35);
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 22px;
    --radius-xl: 32px;
    --radius-pill: 999px;
    --space-xs: 0.35rem;
    --space-sm: 0.65rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;
    --space-3xl: 4.5rem;
    --section-pad: clamp(2.5rem, 6vw, 5rem);
    --container: min(1140px, calc(100% - 2rem));
    --header-h: 56px;
    --glass-bg: rgba(26, 15, 61, 0.55);
    --glass-border: rgba(0, 229, 255, 0.18);
    --transition-fast: 0.18s ease;
    --transition-med: 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

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

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

body {
    margin: 0;
    font-family: var(--font-body);
    font-size: var(--fs-md);
    line-height: var(--lh-normal);
    color: var(--color-text);
    background: linear-gradient(165deg, var(--color-surface) 0%, var(--color-deep-indigo) 45%, #12082c 100%);
    min-height: 100vh;
    overflow-x: hidden;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    background: radial-gradient(ellipse 80% 50% at 50% -20%, rgba(255, 47, 163, 0.18), transparent 55%),
        radial-gradient(ellipse 60% 40% at 100% 30%, rgba(0, 229, 255, 0.12), transparent 50%);
    z-index: 0;
    animation: meshDrift 18s ease-in-out infinite alternate;
}

@keyframes meshDrift {
    0% {
        opacity: 0.85;
        transform: scale(1);
    }

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

body>* {
    position: relative;
    z-index: 1;
}

body.nav-open {
    overflow: hidden;
}

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

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

a:hover {
    color: var(--color-lime-flash);
}

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

.site-header {
    position: sticky;
    top: 0;
    z-index: 135;
    padding: var(--space-sm) 0;
    background: var(--glass-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--glass-border);
    box-shadow: var(--shadow-sm);
}

.header-inner {
    width: var(--container);
    margin-inline: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-md);
    min-height: var(--header-h);
}

.brand {
    font-family: var(--font-display);
    font-weight: var(--fw-bold);
    font-size: var(--fs-xl);
    color: var(--color-white);
    letter-spacing: -0.02em;
}

.brand span {
    background: linear-gradient(90deg, var(--color-neon-tangerine), var(--color-hot-pink));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.nav-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    padding: 0;
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    background: rgba(0, 229, 255, 0.08);
    cursor: pointer;
    transition: background var(--transition-fast), border-color var(--transition-fast), transform var(--transition-fast);
    z-index: 130;
}

.nav-toggle:hover {
    background: rgba(0, 229, 255, 0.18);
    border-color: var(--color-electric-cyan);
}

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

.burger-lines span {
    display: block;
    height: 2px;
    background: linear-gradient(90deg, var(--color-lime-flash), var(--color-electric-cyan));
    border-radius: var(--radius-pill);
    transition: transform var(--transition-med), opacity var(--transition-fast), width var(--transition-fast);
}

body.nav-open .burger-lines span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

body.nav-open .burger-lines span:nth-child(2) {
    opacity: 0;
    width: 0;
}

body.nav-open .burger-lines span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

.nav-backdrop {
    display: none;
}

@media (max-width: 899px) {
    .nav-backdrop {
        display: block;
        position: fixed;
        inset: 0;
        background: rgba(8, 4, 20, 0.55);
        backdrop-filter: blur(4px);
        opacity: 0;
        pointer-events: none;
        transition: opacity var(--transition-med);
        z-index: 105;
    }

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

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

.site-nav a {
    color: var(--color-text);
    font-weight: var(--fw-semibold);
    font-size: var(--fs-sm);
    display: inline-block;
    padding: var(--space-xs) 0;
    position: relative;
}

.site-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--color-neon-tangerine), var(--color-hot-pink));
    transition: width var(--transition-med);
}

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

.site-nav a:hover::after {
    width: 100%;
}

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

    .site-nav--drawer {
        position: static;
        transform: none;
        background: transparent;
        padding: 0;
        max-height: none;
        overflow: visible;
    }
}

@media (max-width: 899px) {
    .site-nav--drawer {
        position: fixed;
        top: 0;
        right: 0;
        width: min(100%, 360px);
        height: 100vh;
        height: 100dvh;
        margin: 0;
        padding: calc(var(--header-h) + var(--space-xl)) var(--space-xl) var(--space-xl);
        background: rgba(15, 8, 36, 0.97);
        backdrop-filter: blur(22px);
        -webkit-backdrop-filter: blur(22px);
        border-left: 1px solid var(--glass-border);
        box-shadow: -12px 0 48px rgba(0, 0, 0, 0.45);
        transform: translateX(100%);
        transition: transform var(--transition-med);
        z-index: 120;
        overflow-y: auto;
    }

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

    .site-nav--drawer ul {
        flex-direction: column;
        flex-wrap: nowrap;
        gap: var(--space-md);
    }

    .site-nav--drawer a {
        font-size: var(--fs-lg);
    }
}

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

.section {
    padding: var(--section-pad) 0;
}

.section--tight {
    padding: calc(var(--section-pad) * 0.65) 0;
}

.container {
    width: var(--container);
    margin-inline: auto;
}

.section-title {
    font-family: var(--font-display);
    font-size: var(--fs-3xl);
    font-weight: var(--fw-bold);
    line-height: var(--lh-tight);
    margin: 0 0 var(--space-md);
    color: var(--color-white);
}

.section-title--gradient {
    background: linear-gradient(100deg, var(--color-lime-flash), var(--color-electric-cyan), var(--color-hot-pink));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.section-lead {
    color: var(--color-text-muted);
    max-width: 52ch;
    margin: 0 0 var(--space-xl);
    font-size: var(--fs-lg);
}

.hero--showcase {
    position: relative;
    padding-top: calc(var(--section-pad) + var(--space-lg));
    padding-bottom: calc(var(--section-pad) + var(--space-md));
    overflow: hidden;
    isolation: isolate;
}

.hero-showcase-bg {
    position: absolute;
    inset: -12% -8% 0;
    pointer-events: none;
    z-index: 0;
}

.hero-beam {
    position: absolute;
    width: 140%;
    height: 2px;
    left: -20%;
    background: linear-gradient(90deg, transparent, var(--color-electric-cyan), var(--color-hot-pink), transparent);
    opacity: 0.35;
    filter: blur(1px);
    animation: heroBeamSweep 7s ease-in-out infinite;
}

.hero-beam--1 {
    top: 18%;
    animation-delay: 0s;
}

.hero-beam--2 {
    top: 62%;
    animation-delay: -3.5s;
    background: linear-gradient(90deg, transparent, var(--color-lime-flash), var(--color-neon-tangerine), transparent);
}

@keyframes heroBeamSweep {

    0%,
    100% {
        transform: translateX(-8%) rotate(-2deg);
        opacity: 0.25;
    }

    50% {
        transform: translateX(8%) rotate(1deg);
        opacity: 0.55;
    }
}

.hero-noise {
    position: absolute;
    inset: 0;
    opacity: 0.07;
    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");
    animation: heroNoiseDrift 12s linear infinite;
}

@keyframes heroNoiseDrift {
    to {
        transform: translate(2%, 2%);
    }
}

.hero-particle {
    position: absolute;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    box-shadow: 0 0 14px currentColor;
    animation: heroParticleFloat 6s ease-in-out infinite;
}

.hero-particle--a {
    color: var(--color-electric-cyan);
    background: var(--color-electric-cyan);
    top: 22%;
    left: 12%;
}

.hero-particle--b {
    color: var(--color-hot-pink);
    background: var(--color-hot-pink);
    top: 48%;
    left: 8%;
    animation-delay: -1.2s;
    width: 6px;
    height: 6px;
}

.hero-particle--c {
    color: var(--color-lime-flash);
    background: var(--color-lime-flash);
    top: 70%;
    right: 18%;
    animation-delay: -2.4s;
}

.hero-particle--d {
    color: var(--color-neon-tangerine);
    background: var(--color-neon-tangerine);
    top: 15%;
    right: 22%;
    animation-delay: -3s;
    width: 5px;
    height: 5px;
}

.hero-particle--e {
    color: var(--color-electric-cyan);
    background: var(--color-electric-cyan);
    bottom: 20%;
    left: 28%;
    animation-delay: -4.1s;
    width: 7px;
    height: 7px;
}

@keyframes heroParticleFloat {

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

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

.hero-ring-outer {
    position: absolute;
    width: min(680px, 90vw);
    height: min(680px, 90vw);
    top: 50%;
    left: 50%;
    margin: calc(min(680px, 90vw) / -2) 0 0 calc(min(680px, 90vw) / -2);
    border: 1px solid rgba(0, 229, 255, 0.12);
    border-radius: 50%;
    animation: heroRingBreath 10s ease-in-out infinite;
}

@keyframes heroRingBreath {

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

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

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

@media (min-width: 960px) {
    .hero-showcase-grid {
        grid-template-columns: 1.08fr 1fr;
        gap: var(--space-3xl);
        align-items: start;
    }
}

.hero-stage {
    position: relative;
    perspective: 1000px;
    --tilt-x: 0deg;
    --tilt-y: 0deg;
    transform: perspective(1000px) rotateX(var(--tilt-x)) rotateY(var(--tilt-y));
    transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.hero-portal {
    position: relative;
    margin: 0 auto;
    max-width: 420px;
    padding: 3px;
    overflow: hidden;
    border-radius: calc(var(--radius-xl) + 4px);
    background: linear-gradient(135deg, rgba(255, 121, 63, 0.9), rgba(255, 47, 163, 0.75), rgba(0, 229, 255, 0.75), rgba(207, 255, 31, 0.65));
    background-size: 300% 300%;
    animation: heroPortalGradient 10s ease infinite;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.45), var(--shadow-glow-orange);
}

@keyframes heroPortalGradient {

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

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

.hero-portal__sheen {
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(105deg, transparent 40%, rgba(255, 255, 255, 0.25) 50%, transparent 60%);
    background-size: 200% 100%;
    animation: heroSheen 3.5s ease-in-out infinite;
    pointer-events: none;
    z-index: 2;
    mix-blend-mode: overlay;
}

@keyframes heroSheen {
    0% {
        background-position: 130% 0;
    }

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

.hero-orbit {
    position: absolute;
    inset: -14%;
    border: 1px dashed rgba(0, 229, 255, 0.35);
    border-radius: 50%;
    animation: heroOrbitSpin 24s linear infinite;
    pointer-events: none;
    z-index: 0;
}

.hero-orbit::after {
    content: "";
    position: absolute;
    width: 10px;
    height: 10px;
    background: var(--color-lime-flash);
    border-radius: 50%;
    top: 0;
    left: 50%;
    margin: -5px 0 0 -5px;
    box-shadow: 0 0 16px var(--color-lime-flash);
}

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

.hero-figure {
    margin: 0;
    position: relative;
    border-radius: var(--radius-xl);
    overflow: visible;
    z-index: 1;
    transform-style: preserve-3d;
    animation: heroFigureLift 5s ease-in-out infinite;
    background: rgba(15, 8, 36, 0.45);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: min(360px, 72vw);
}

@keyframes heroFigureLift {

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

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

.hero-icon-cluster {
    position: relative;
    width: min(100%, 400px);
    aspect-ratio: 1;
    max-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-icon-cluster__main {
    font-size: clamp(4.25rem, 17vw, 7.5rem);
    line-height: 1;
    background: linear-gradient(145deg, var(--color-lime-flash), var(--color-electric-cyan) 40%, var(--color-hot-pink));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    filter: drop-shadow(0 12px 28px rgba(0, 229, 255, 0.25));
}

.hero-icon-cluster__sat {
    position: absolute;
    font-size: clamp(1.35rem, 4.5vw, 1.85rem);
    color: var(--color-neon-tangerine);
    opacity: 0.92;
    animation: heroSatFloat 5s ease-in-out infinite;
}

.hero-icon-cluster__sat--1 {
    top: 12%;
    right: 10%;
    animation-delay: 0s;
    color: var(--color-hot-pink);
}

.hero-icon-cluster__sat--2 {
    bottom: 18%;
    left: 8%;
    animation-delay: -1.6s;
    color: var(--color-electric-cyan);
}

.hero-icon-cluster__sat--3 {
    top: 22%;
    left: 14%;
    animation-delay: -3s;
    color: var(--color-lime-flash);
}

@keyframes heroSatFloat {

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

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

.hero-chips {
    list-style: none;
    margin: var(--space-lg) 0 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
    justify-content: center;
}

@media (min-width: 960px) {
    .hero-chips {
        justify-content: flex-start;
    }
}

.hero-chip {
    margin: 0;
    animation: heroChipIn 0.9s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.hero-chip--1 {
    animation-delay: 0.15s;
}

.hero-chip--2 {
    animation-delay: 0.3s;
}

.hero-chip--3 {
    animation-delay: 0.45s;
}

.hero-chip span {
    display: inline-block;
    padding: var(--space-xs) var(--space-md);
    font-size: var(--fs-xs);
    font-weight: var(--fw-semibold);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--color-deep-indigo);
    background: linear-gradient(100deg, var(--color-lime-flash), var(--color-electric-cyan));
    border-radius: var(--radius-pill);
    box-shadow: 0 4px 16px rgba(0, 229, 255, 0.25);
}

@keyframes heroChipIn {
    from {
        opacity: 0;
        transform: translateY(16px) scale(0.92);
    }

    to {
        opacity: 1;
        transform: none;
    }
}

.hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-md);
    margin-top: var(--space-lg);
    align-items: center;
    justify-content: center;
}

@media (min-width: 960px) {
    .hero-badges {
        justify-content: flex-start;
    }
}

.rating-pill--pulse {
    animation: heroPillGlow 3s ease-in-out infinite;
}

@keyframes heroPillGlow {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(0, 229, 255, 0.25);
    }

    50% {
        box-shadow: 0 0 24px 4px rgba(255, 47, 163, 0.2);
    }
}

.trust-badge-fig--bob {
    animation: heroBadgeBob 4s ease-in-out infinite;
}

@keyframes heroBadgeBob {

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

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

.rating-pill {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-sm) var(--space-md);
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-pill);
    font-weight: var(--fw-semibold);
    font-size: var(--fs-sm);
}

.rating-stars {
    color: var(--color-lime-flash);
    letter-spacing: 0.05em;
}

.trust-badge-fig {
    margin: 0;
    width: 72px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.trust-badge-fa {
    font-size: 2.85rem;
    line-height: 1;
    color: var(--color-lime-flash);
    filter: drop-shadow(0 0 14px rgba(0, 229, 255, 0.45));
}

.hero-copy--showcase>* {
    animation: heroCopyRise 0.85s cubic-bezier(0.22, 1, 0.36, 1) both;
}

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

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

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

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

.hero-copy--showcase>*:nth-child(5) {
    animation-delay: 0.36s;
}

@keyframes heroCopyRise {
    from {
        opacity: 0;
        transform: translateY(28px);
    }

    to {
        opacity: 1;
        transform: none;
    }
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    margin: 0 0 var(--space-md);
    padding: var(--space-xs) var(--space-md);
    font-size: var(--fs-xs);
    font-weight: var(--fw-semibold);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--color-text-muted);
    background: rgba(0, 229, 255, 0.08);
    border: 1px solid rgba(0, 229, 255, 0.22);
    border-radius: var(--radius-pill);
    animation: heroEyebrowFade 2.5s ease-in-out infinite alternate;
}

@keyframes heroEyebrowFade {
    from {
        border-color: rgba(0, 229, 255, 0.15);
    }

    to {
        border-color: rgba(255, 121, 63, 0.45);
    }
}

.hero-eyebrow__dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--color-lime-flash);
    box-shadow: 0 0 12px var(--color-lime-flash);
    animation: heroDotPulse 1.4s ease-in-out infinite;
}

@keyframes heroDotPulse {

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

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

.hero-headline {
    font-family: var(--font-display);
    font-size: var(--fs-hero);
    font-weight: var(--fw-bold);
    line-height: var(--lh-tight);
    margin: 0 0 var(--space-md);
    color: var(--color-white);
    letter-spacing: -0.035em;
}

.hero-headline em {
    font-style: normal;
    background: linear-gradient(95deg, var(--color-neon-tangerine), var(--color-hot-pink), var(--color-electric-cyan), var(--color-lime-flash));
    background-size: 250% auto;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    animation: heroHeadlineShimmer 6s linear infinite;
}

@keyframes heroHeadlineShimmer {
    to {
        background-position: 250% center;
    }
}

.hero-tagline--showcase {
    font-size: var(--fs-lg);
    color: var(--color-text-muted);
    margin: 0 0 var(--space-lg);
    max-width: 52ch;
    line-height: 1.55;
}

.hero-price-strip {
    margin-bottom: var(--space-xl);
    padding: 2px;
    border-radius: var(--radius-lg);
    background: linear-gradient(120deg, var(--color-neon-tangerine), var(--color-hot-pink), var(--color-electric-cyan));
    background-size: 200% 100%;
    animation: heroPriceBorder 5s ease infinite;
}

@keyframes heroPriceBorder {

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

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

.hero-price-strip__inner {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: var(--space-md);
    padding: var(--space-md) var(--space-lg);
    background: rgba(15, 8, 36, 0.92);
    border-radius: calc(var(--radius-lg) - 2px);
}

.hero-price-strip__tag {
    margin-left: auto;
    font-size: var(--fs-xs);
    font-weight: var(--fw-bold);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--color-deep-indigo);
    background: var(--color-lime-flash);
    padding: var(--space-xs) var(--space-sm);
    border-radius: var(--radius-pill);
    animation: heroTagWiggle 4s ease-in-out infinite;
}

@keyframes heroTagWiggle {

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

    25% {
        transform: rotate(-2deg);
    }

    75% {
        transform: rotate(2deg);
    }
}

.price-current--pulse {
    animation: heroPriceGlow 2.8s ease-in-out infinite;
}

@keyframes heroPriceGlow {

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

    50% {
        text-shadow: 0 0 24px rgba(207, 255, 31, 0.45);
    }
}

.order-card--hero {
    animation: heroCardSettle 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.4s both;
}

@keyframes heroCardSettle {
    from {
        opacity: 0;
        transform: translateY(20px) scale(0.98);
    }

    to {
        opacity: 1;
        transform: none;
    }
}

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

    .hero-showcase-bg,
    .hero-portal,
    .hero-portal__sheen,
    .hero-orbit,
    .hero-figure,
    .hero-chip,
    .hero-headline em,
    .hero-eyebrow,
    .hero-eyebrow__dot,
    .hero-price-strip,
    .hero-price-strip__tag,
    .price-current--pulse,
    .rating-pill--pulse,
    .trust-badge-fig--bob,
    .hero-icon-cluster__sat,
    .order-card--hero {
        animation: none !important;
    }

    .hero-copy--showcase>*,
    .hero-chip {
        opacity: 1 !important;
        transform: none !important;
    }

    .hero-stage {
        transform: none !important;
    }
}

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

.price-current {
    font-size: var(--fs-3xl);
    font-weight: var(--fw-bold);
    color: var(--color-lime-flash);
}

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

.order-card {
    background: var(--glass-bg);
    backdrop-filter: blur(18px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    box-shadow: var(--shadow-md);
}

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

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

.form-group label {
    display: block;
    font-size: var(--fs-sm);
    font-weight: var(--fw-semibold);
    margin-bottom: var(--space-xs);
    color: var(--color-text-muted);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: var(--space-sm) var(--space-md);
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(15, 8, 36, 0.6);
    color: var(--color-text);
    font-family: inherit;
    font-size: var(--fs-md);
    transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--color-electric-cyan);
    box-shadow: 0 0 0 3px rgba(0, 229, 255, 0.2);
    outline: none;
}

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

.field-error {
    display: block;
    font-size: var(--fs-xs);
    color: var(--color-hot-pink);
    margin-top: var(--space-xs);
    min-height: 1.1em;
}

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

.checkbox-row input[type="checkbox"] {
    margin-top: 0.25rem;
    accent-color: var(--color-neon-tangerine);
}

.checkbox-row .field-error {
    flex-basis: 100%;
    margin-left: 1.75rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    padding: var(--space-md) var(--space-xl);
    font-family: inherit;
    font-size: var(--fs-md);
    font-weight: var(--fw-bold);
    border: none;
    border-radius: var(--radius-pill);
    cursor: pointer;
    transition: transform var(--transition-fast), box-shadow var(--transition-fast), filter var(--transition-fast);
}

.btn--primary {
    background: linear-gradient(95deg, var(--color-neon-tangerine), var(--color-hot-pink));
    color: var(--color-deep-indigo);
    box-shadow: var(--shadow-glow-orange);
}

.btn--primary:hover {
    filter: brightness(1.08);
    transform: translateY(-2px);
}

.btn--outline {
    background: transparent;
    color: var(--color-electric-cyan);
    border: 2px solid var(--color-electric-cyan);
}

.btn--outline:hover {
    background: rgba(0, 229, 255, 0.12);
}

.btn--magnetic {
    position: relative;
    will-change: transform;
}

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

.reveal.is-visible {
    opacity: 1;
    transform: none;
}

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

@media (min-width: 720px) {
    .bento {
        grid-template-columns: repeat(3, 1fr);
        grid-template-rows: auto auto;
        gap: var(--space-lg);
    }

    .bento__energy {
        grid-column: span 2;
    }

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

.bento-card {
    position: relative;
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    background: linear-gradient(145deg, var(--color-surface-elevated), rgba(26, 15, 61, 0.85));
    border: 1px solid rgba(255, 255, 255, 0.08);
    overflow: hidden;
    transition: transform var(--transition-med), box-shadow var(--transition-med);
    transform-style: preserve-3d;
}

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

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

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

.bento-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    margin-top: var(--space-md);
    border-radius: var(--radius-md);
    background: rgba(0, 229, 255, 0.08);
    border: 1px solid rgba(0, 229, 255, 0.2);
}

.bento-icon i {
    font-size: 2rem;
    line-height: 1;
    color: var(--color-lime-flash);
}

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

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

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

.spotlight-item {
    position: relative;
    border-radius: var(--radius-md);
    padding: var(--space-lg);
    background: rgba(36, 24, 71, 0.75);
    border: 1px solid rgba(0, 229, 255, 0.15);
    min-height: 140px;
    cursor: default;
    overflow: hidden;
    transition: border-color var(--transition-med), box-shadow var(--transition-med);
}

.spotlight-item:hover {
    border-color: var(--color-lime-flash);
    box-shadow: var(--shadow-glow-pink);
}

.spotlight-front {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-sm);
}

.spotlight-icon {
    line-height: 1;
}

.spotlight-icon i {
    font-size: 1.65rem;
    color: var(--color-lime-flash);
    opacity: 0.95;
}

.spotlight-item h3 {
    margin: 0;
    font-size: var(--fs-lg);
    color: var(--color-white);
}

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

.spotlight-back {
    position: absolute;
    inset: 0;
    padding: var(--space-lg);
    background: linear-gradient(160deg, rgba(255, 121, 63, 0.2), rgba(26, 15, 61, 0.95));
    opacity: 0;
    transform: translateY(12px);
    display: flex;
    align-items: center;
}

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

.spotlight-item:hover .spotlight-back {
    opacity: 1;
    transform: none;
}

.spotlight-back p {
    margin: 0;
    font-size: var(--fs-sm);
    color: var(--color-text);
}

.trust-science {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-lg);
    align-items: stretch;
}

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

.trust-block {
    text-align: center;
    padding: var(--space-xl);
    border-radius: var(--radius-lg);
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(14px);
}

.trust-icon-wrap {
    width: 72px;
    height: 72px;
    margin: 0 auto var(--space-md);
    display: flex;
    align-items: center;
    justify-content: center;
}

.trust-icon-fa {
    font-size: 2.5rem;
    line-height: 1;
    color: var(--color-electric-cyan);
}

.trust-block h3 {
    margin: 0 0 var(--space-sm);
    color: var(--color-white);
    font-size: var(--fs-lg);
}

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

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

@keyframes iconPulse {

    0%,
    100% {
        filter: drop-shadow(0 0 0 transparent);
    }

    50% {
        filter: drop-shadow(0 0 12px rgba(0, 229, 255, 0.55));
    }
}

.ads-compliance__title {
    font-size: var(--fs-xl);
    margin-bottom: var(--space-md);
    max-width: 100%;
}

.compliance-panel {
    padding: var(--space-xl);
    border-radius: var(--radius-lg);
    background: rgba(15, 8, 36, 0.88);
    border: 1px solid rgba(0, 229, 255, 0.22);
    box-shadow: var(--shadow-sm);
}

.compliance-panel p {
    margin: 0 0 var(--space-md);
    color: var(--color-text-muted);
    font-size: var(--fs-sm);
    max-width: 78ch;
    line-height: 1.65;
}

.compliance-panel p:last-child {
    margin-bottom: 0;
}

.compliance-panel strong {
    color: var(--color-white);
}

.hero-price-footnote {
    flex-basis: 100%;
    margin: var(--space-sm) 0 0;
    font-size: var(--fs-xs);
    color: var(--color-text-muted);
    line-height: 1.45;
    max-width: 52ch;
}

.reviews-disclaimer {
    margin-top: calc(var(--space-md) * -1);
    font-size: var(--fs-sm);
    max-width: 65ch;
    color: var(--color-text-muted);
}

.pulse-strip {
    position: relative;
}

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

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

.stat-card {
    position: relative;
    padding: var(--space-lg);
    border-radius: var(--radius-lg);
    background: linear-gradient(135deg, rgba(36, 24, 71, 0.95), rgba(26, 15, 61, 0.8));
    border: 1px solid rgba(0, 229, 255, 0.2);
    text-align: center;
    overflow: hidden;
    transition: transform var(--transition-med), box-shadow var(--transition-med);
}

.stat-card::before {
    content: "";
    position: absolute;
    inset: -40%;
    background: conic-gradient(from 120deg, transparent, rgba(255, 121, 63, 0.12), transparent, rgba(0, 229, 255, 0.1), transparent);
    animation: statSpin 10s linear infinite;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.stat-card:hover::before {
    opacity: 1;
}

.stat-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-glow-cyan);
}

.stat-card__icon {
    display: block;
    margin-bottom: var(--space-sm);
    font-size: 1.65rem;
    color: var(--color-electric-cyan);
    opacity: 0.95;
}

.stat-card__icon i {
    line-height: 1;
}

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

.stat-card__value {
    display: block;
    font-size: var(--fs-3xl);
    font-weight: var(--fw-bold);
    background: linear-gradient(92deg, var(--color-lime-flash), var(--color-electric-cyan));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    line-height: var(--lh-tight);
}

.stat-card__suffix {
    font-size: 0.65em;
}

.stat-card__label {
    display: block;
    margin-top: var(--space-sm);
    font-size: var(--fs-sm);
    color: var(--color-text-muted);
}

.reveal-stagger .bento-card {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1), transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal-stagger.is-visible .bento-card:nth-child(1) {
    transition-delay: 0.04s;
}

.reveal-stagger.is-visible .bento-card:nth-child(2) {
    transition-delay: 0.1s;
}

.reveal-stagger.is-visible .bento-card:nth-child(3) {
    transition-delay: 0.16s;
}

.reveal-stagger.is-visible .bento-card:nth-child(4) {
    transition-delay: 0.22s;
}

.reveal-stagger.is-visible .bento-card {
    opacity: 1;
    transform: none;
}

.rhythm-section {
    position: relative;
}

.rhythm-lab {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-lg);
    margin-top: var(--space-xl);
}

@media (min-width: 820px) {
    .rhythm-lab {
        grid-template-columns: minmax(0, 280px) 1fr;
        align-items: start;
    }
}

.rhythm-tabs {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: var(--space-sm);
}

@media (min-width: 820px) {
    .rhythm-tabs {
        flex-direction: column;
        flex-wrap: nowrap;
    }
}

.rhythm-tab {
    flex: 1 1 auto;
    min-width: 140px;
    padding: var(--space-md) var(--space-lg);
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(15, 8, 36, 0.6);
    color: var(--color-text);
    font-family: inherit;
    font-size: var(--fs-sm);
    font-weight: var(--fw-semibold);
    cursor: pointer;
    text-align: left;
    transition: border-color var(--transition-fast), background var(--transition-fast), transform var(--transition-fast), box-shadow var(--transition-med);
}

.rhythm-tab:hover {
    border-color: var(--color-electric-cyan);
    transform: translateX(4px);
}

.rhythm-tab.is-active {
    background: linear-gradient(120deg, rgba(255, 121, 63, 0.35), rgba(255, 47, 163, 0.25));
    border-color: var(--color-hot-pink);
    box-shadow: var(--shadow-glow-orange);
    color: var(--color-white);
}

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

.rhythm-panel {
    border-radius: var(--radius-xl);
    padding: var(--space-xl);
    background: var(--glass-bg);
    backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    box-shadow: var(--shadow-md);
    animation: panelIn 0.55s cubic-bezier(0.22, 1, 0.36, 1) both;
}

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

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

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

    to {
        opacity: 1;
        transform: none;
    }
}

.rhythm-visual {
    position: relative;
    height: 140px;
    margin-bottom: var(--space-lg);
    border-radius: var(--radius-lg);
    background: rgba(8, 4, 20, 0.55);
    overflow: hidden;
}

.rhythm-visual--dawn .rhythm-ring {
    position: absolute;
    inset: 18%;
    border: 3px solid rgba(255, 121, 63, 0.6);
    border-radius: 50%;
    animation: ringPulse 2.8s ease-in-out infinite;
}

.rhythm-visual--dawn .rhythm-core {
    position: absolute;
    bottom: 22%;
    left: 50%;
    width: 40%;
    height: 8px;
    margin-left: -20%;
    background: linear-gradient(90deg, transparent, var(--color-lime-flash), transparent);
    border-radius: var(--radius-pill);
    animation: horizonGlow 2.8s ease-in-out infinite;
}

@keyframes ringPulse {

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

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

@keyframes horizonGlow {

    0%,
    100% {
        opacity: 0.4;
    }

    50% {
        opacity: 1;
    }
}

.rhythm-visual--mid .rhythm-grid-glow {
    position: absolute;
    width: 120%;
    height: 4px;
    left: -10%;
    background: linear-gradient(90deg, transparent, var(--color-electric-cyan), transparent);
    top: 35%;
    animation: gridSweep 3.5s ease-in-out infinite;
}

.rhythm-visual--mid .rhythm-grid-glow--2 {
    top: 60%;
    animation-delay: -1.2s;
    background: linear-gradient(90deg, transparent, var(--color-hot-pink), transparent);
}

@keyframes gridSweep {

    0%,
    100% {
        transform: translateX(-6%);
        opacity: 0.5;
    }

    50% {
        transform: translateX(6%);
        opacity: 1;
    }
}

.rhythm-bars {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 12px;
    padding: var(--space-lg);
}

.rhythm-bars span {
    width: 14px;
    border-radius: var(--radius-sm) var(--radius-sm) 0 0;
    background: linear-gradient(180deg, var(--color-lime-flash), var(--color-neon-tangerine));
    animation: barBounce 1.2s ease-in-out infinite;
}

.rhythm-bars span:nth-child(1) {
    height: 40%;
    animation-delay: 0s;
}

.rhythm-bars span:nth-child(2) {
    height: 65%;
    animation-delay: 0.1s;
}

.rhythm-bars span:nth-child(3) {
    height: 50%;
    animation-delay: 0.2s;
}

.rhythm-bars span:nth-child(4) {
    height: 78%;
    animation-delay: 0.3s;
}

@keyframes barBounce {

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

    50% {
        transform: scaleY(0.88);
    }
}

.rhythm-visual--night {
    background: radial-gradient(circle at 70% 35%, rgba(0, 229, 255, 0.15), transparent 45%), #0a0618;
}

.rhythm-moon {
    position: absolute;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, #fff8e8, #c9b896);
    top: 50%;
    left: 50%;
    margin: -32px 0 0 -32px;
    box-shadow: 0 0 40px rgba(0, 229, 255, 0.25);
    animation: moonBob 5s ease-in-out infinite;
}

.rhythm-moon--shade {
    background: transparent;
    box-shadow: none;
    border: 2px dashed rgba(255, 47, 163, 0.4);
    margin-left: 12px;
    animation-delay: -2s;
}

@keyframes moonBob {

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

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

.rhythm-panel h3 {
    margin: 0 0 var(--space-sm);
    font-size: var(--fs-xl);
    color: var(--color-white);
}

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

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

@media (min-width: 720px) {

    .specs-grid,
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

.card-plain {
    padding: var(--space-lg);
    border-radius: var(--radius-md);
    background: rgba(15, 8, 36, 0.65);
    border: 1px solid rgba(255, 255, 255, 0.06);
}

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

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

.card-plain ul {
    margin: 0;
    padding-left: 1.1rem;
}

.cta-band {
    text-align: center;
    padding: var(--space-2xl);
    border-radius: var(--radius-xl);
    background: linear-gradient(120deg, rgba(255, 121, 63, 0.25), rgba(255, 47, 163, 0.2), rgba(0, 229, 255, 0.15));
    border: 1px solid var(--glass-border);
}

.cta-band h2 {
    margin: 0 0 var(--space-md);
    font-size: var(--fs-2xl);
    color: var(--color-white);
}

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

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

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

.review-card {
    padding: var(--space-lg);
    border-radius: var(--radius-md);
    background: var(--color-surface-elevated);
    border: 1px solid rgba(207, 255, 31, 0.2);
}

.review-card blockquote {
    margin: 0 0 var(--space-md);
    font-size: var(--fs-sm);
    color: var(--color-text);
}

.review-card cite {
    font-style: normal;
    font-size: var(--fs-xs);
    color: var(--color-text-muted);
}

.faq-list details {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding: var(--space-md) 0;
    transition: background var(--transition-med), border-color var(--transition-med);
}

.faq-list summary {
    cursor: pointer;
    font-weight: var(--fw-semibold);
    color: var(--color-white);
    list-style: none;
    padding-right: var(--space-xl);
    position: relative;
    transition: color var(--transition-fast);
}

.faq-list summary::after {
    content: "+";
    position: absolute;
    right: 0;
    top: 0;
    width: 1.5rem;
    text-align: center;
    color: var(--color-neon-tangerine);
    font-size: 1.25rem;
    line-height: 1.2;
    transition: transform var(--transition-med), color var(--transition-fast);
}

.faq-list details[open] summary::after {
    transform: rotate(45deg);
    color: var(--color-lime-flash);
}

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

.faq-list details[open] {
    background: rgba(0, 229, 255, 0.05);
    border-radius: var(--radius-sm);
    margin-inline: calc(var(--space-sm) * -1);
    padding-inline: var(--space-sm);
    border: 1px solid rgba(0, 229, 255, 0.12);
}

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

.disclaimer-block {
    margin-top: var(--space-xl);
    padding: var(--space-lg);
    border-radius: var(--radius-md);
    background: rgba(0, 0, 0, 0.25);
    border-left: 4px solid var(--color-neon-tangerine);
    font-size: var(--fs-sm);
    color: var(--color-text-muted);
}

.disclaimer-block strong {
    color: var(--color-white);
}

.site-footer {
    padding: var(--space-2xl) 0 var(--space-xl);
    background: #080414;
    border-top: 1px solid rgba(0, 229, 255, 0.12);
}

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

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr;
    }
}

.footer-brand {
    font-weight: var(--fw-bold);
    color: var(--color-white);
    margin-bottom: var(--space-sm);
}

.footer-contact {
    font-size: var(--fs-sm);
    color: var(--color-text-muted);
    margin: 0;
}

.footer-links h3 {
    font-size: var(--fs-sm);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--color-electric-cyan);
    margin: 0 0 var(--space-md);
}

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

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

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

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

.footer-legal {
    margin-top: var(--space-2xl);
    padding-top: var(--space-lg);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    font-size: var(--fs-xs);
    color: var(--color-text-muted);
}

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

.policy-hero {
    padding: var(--space-2xl) 0 var(--space-xl);
}

.policy-hero h1 {
    margin: 0 0 var(--space-sm);
    font-size: var(--fs-3xl);
    color: var(--color-white);
}

.policy-meta {
    color: var(--color-text-muted);
    font-size: var(--fs-sm);
}

.policy-content {
    padding-bottom: var(--space-3xl);
}

.policy-content section {
    margin-bottom: var(--space-xl);
}

.policy-content h2 {
    font-size: var(--fs-xl);
    color: var(--color-electric-cyan);
    margin: var(--space-xl) 0 var(--space-md);
}

.policy-content p,
.policy-content li {
    color: var(--color-text-muted);
    max-width: 75ch;
}

.policy-content ul {
    padding-left: 1.2rem;
}

.thankyou-page {
    position: relative;
    overflow: hidden;
}

.thankyou-page::before {
    content: "";
    position: absolute;
    width: 480px;
    height: 480px;
    top: -120px;
    right: -80px;
    background: radial-gradient(circle, rgba(255, 47, 163, 0.35), transparent 65%);
    pointer-events: none;
    animation: thankSplash 8s ease-in-out infinite alternate;
}

.thankyou-page::after {
    content: "";
    position: absolute;
    width: 360px;
    height: 360px;
    bottom: -100px;
    left: -60px;
    background: radial-gradient(circle, rgba(0, 229, 255, 0.22), transparent 60%);
    pointer-events: none;
    animation: thankSplash 10s ease-in-out infinite alternate-reverse;
}

@keyframes thankSplash {
    from {
        transform: scale(1) translate(0, 0);
        opacity: 0.8;
    }

    to {
        transform: scale(1.12) translate(12px, -10px);
        opacity: 1;
    }
}

.thankyou-hero {
    min-height: 72vh;
    display: grid;
    place-items: center;
    padding: var(--space-3xl) var(--space-md);
    position: relative;
    z-index: 1;
}

.thankyou-card {
    width: min(640px, 100%);
    padding: var(--space-2xl);
    border-radius: var(--radius-xl);
    background: rgba(26, 15, 61, 0.75);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    box-shadow: var(--shadow-lg), var(--shadow-glow-pink);
    text-align: center;
    position: relative;
    animation: thankCard 0.9s cubic-bezier(0.22, 1, 0.36, 1) both;
    counter-reset: thankstep;
}

@keyframes thankCard {
    from {
        opacity: 0;
        transform: translateY(40px) rotateX(8deg);
    }

    to {
        opacity: 1;
        transform: none;
    }
}

.thankyou-card__badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    margin: 0 auto var(--space-lg);
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-lime-flash), var(--color-electric-cyan));
    color: var(--color-deep-indigo);
    font-size: 1.65rem;
    font-weight: var(--fw-bold);
    animation: badgePop 0.7s cubic-bezier(0.34, 1.56, 0.64, 1) 0.2s both;
}

.thankyou-card__badge i {
    line-height: 1;
}

@keyframes badgePop {
    from {
        transform: scale(0);
    }

    to {
        transform: scale(1);
    }
}

.thankyou-card h1 {
    font-size: var(--fs-3xl);
    color: var(--color-white);
    margin: 0 0 var(--space-md);
    line-height: var(--lh-tight);
}

.thankyou-card__lead {
    color: var(--color-text-muted);
    margin: 0 0 var(--space-xl);
    font-size: var(--fs-lg);
    max-width: 46ch;
    margin-inline: auto;
}

.thankyou-steps {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-md);
    text-align: left;
    margin: var(--space-xl) 0;
}

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

.thankyou-step {
    padding: var(--space-md);
    border-radius: var(--radius-md);
    background: rgba(15, 8, 36, 0.65);
    border: 1px solid rgba(255, 255, 255, 0.08);
    counter-increment: thankstep;
    position: relative;
    transition: transform var(--transition-med), border-color var(--transition-fast);
}

.thankyou-step:hover {
    transform: translateY(-4px);
    border-color: var(--color-electric-cyan);
}

.thankyou-step::before {
    content: counter(thankstep, decimal-leading-zero);
    font-size: var(--fs-xs);
    font-weight: var(--fw-bold);
    color: var(--color-hot-pink);
    letter-spacing: 0.05em;
}

.thankyou-step h2 {
    margin: var(--space-sm) 0;
    font-size: var(--fs-md);
    color: var(--color-white);
}

.thankyou-step p {
    margin: 0;
    font-size: var(--fs-xs);
    color: var(--color-text-muted);
}

.thankyou-actions {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
    justify-content: center;
}

.thankyou-meta-date {
    margin-top: var(--space-xl);
    justify-content: center;
    width: 100%;
}

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

.thankyou-main h1 {
    font-size: var(--fs-3xl);
    color: var(--color-white);
    margin: 0 0 var(--space-md);
}

.thankyou-main p {
    color: var(--color-text-muted);
    margin: 0 0 var(--space-xl);
    max-width: 48ch;
    margin-inline: auto;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 200;
    padding: var(--space-md);
    transform: translateY(110%);
    transition: transform var(--transition-med);
}

.cookie-banner.is-open {
    transform: none;
}

.cookie-inner {
    max-width: 960px;
    margin-inline: auto;
    padding: var(--space-lg);
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.cookie-inner p {
    margin: 0 0 var(--space-md);
    font-size: var(--fs-sm);
    color: var(--color-text);
}

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

.cookie-actions .btn {
    flex: 1 1 auto;
    min-width: 140px;
}

.modal {
    position: fixed;
    inset: 0;
    z-index: 250;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-md);
    background: rgba(8, 4, 20, 0.65);
    backdrop-filter: blur(8px);
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition-med);
}

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

.modal-panel {
    position: relative;
    width: min(520px, 100%);
    max-height: 90vh;
    overflow-y: auto;
    padding: var(--space-xl);
    background: rgba(26, 15, 61, 0.92);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

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

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

.switch-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-md);
    padding: var(--space-md) 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.switch-row span {
    color: var(--color-text);
    font-size: var(--fs-sm);
}

.switch-row small {
    display: block;
    color: var(--color-text-muted);
    font-size: var(--fs-xs);
    margin-top: 2px;
}

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

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

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

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

.switch input:checked+.switch-slider {
    background: linear-gradient(90deg, var(--color-neon-tangerine), var(--color-hot-pink));
}

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

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

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

.modal-close {
    position: absolute;
    top: var(--space-md);
    right: var(--space-md);
    width: 40px;
    height: 40px;
    border: none;
    background: transparent;
    color: var(--color-text);
    font-size: 1.5rem;
    cursor: pointer;
    line-height: 1;
}

.modal-wrap {
    position: relative;
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.spotlight-item:focus-within {
    border-color: var(--color-lime-flash);
    box-shadow: var(--shadow-glow-pink);
}

.spotlight-item:focus-within .spotlight-front {
    opacity: 0;
    transform: translateY(-8px);
}

.spotlight-item:focus-within .spotlight-back {
    opacity: 1;
    transform: none;
}

.legal-page {
    min-height: 100vh;
}

.legal-shell {
    position: relative;
    padding-bottom: var(--space-3xl);
}

.legal-mesh {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    background:
        radial-gradient(ellipse 120% 60% at 0% 0%, rgba(255, 121, 63, 0.14), transparent 45%),
        radial-gradient(ellipse 80% 50% at 100% 20%, rgba(0, 229, 255, 0.12), transparent 50%),
        radial-gradient(ellipse 70% 40% at 50% 100%, rgba(255, 47, 163, 0.1), transparent 55%);
    animation: meshDrift 22s ease-in-out infinite alternate;
}

.legal-hero-pro {
    position: relative;
    z-index: 1;
    padding: var(--space-3xl) 0 var(--space-xl);
    overflow: hidden;
}

.legal-hero-pro .container {
    position: relative;
}

.legal-kicker {
    display: inline-block;
    padding: var(--space-xs) var(--space-md);
    border-radius: var(--radius-pill);
    font-size: var(--fs-xs);
    font-weight: var(--fw-bold);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--color-deep-indigo);
    background: linear-gradient(90deg, var(--color-lime-flash), var(--color-electric-cyan));
    margin-bottom: var(--space-md);
}

.legal-hero-pro h1 {
    margin: 0 0 var(--space-md);
    font-size: clamp(var(--fs-2xl), 5vw, var(--fs-3xl));
    color: var(--color-white);
    max-width: 20ch;
    line-height: var(--lh-tight);
}

.legal-hero-pro .legal-lead {
    margin: 0 0 var(--space-lg);
    color: var(--color-text-muted);
    font-size: var(--fs-lg);
    max-width: 48ch;
}

.legal-date-badge {
    display: inline-flex;
    flex-wrap: wrap;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-md) var(--space-lg);
    border-radius: var(--radius-lg);
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(14px);
    font-size: var(--fs-sm);
    color: var(--color-text);
}

.legal-date-badge time {
    font-weight: var(--fw-bold);
    color: var(--color-lime-flash);
}

.legal-layout {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-xl);
    align-items: start;
}

@media (min-width: 960px) {
    .legal-layout {
        grid-template-columns: 240px 1fr;
        gap: var(--space-2xl);
    }
}

.legal-toc {
    position: relative;
    padding: var(--space-lg);
    border-radius: var(--radius-lg);
    background: rgba(15, 8, 36, 0.75);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

@media (min-width: 960px) {
    .legal-toc {
        position: sticky;
        top: calc(var(--header-h) + var(--space-md));
    }
}

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

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

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

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

.legal-toc a:hover {
    color: var(--color-white);
    border-left-color: var(--color-hot-pink);
}

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

.legal-card-pro {
    margin-bottom: var(--space-xl);
    padding: var(--space-xl);
    border-radius: var(--radius-xl);
    background: linear-gradient(160deg, rgba(36, 24, 71, 0.88), rgba(15, 8, 36, 0.92));
    border: 1px solid rgba(0, 229, 255, 0.12);
    box-shadow: var(--shadow-md);
    transition: border-color var(--transition-med), transform var(--transition-med);
}

.legal-card-pro:hover {
    border-color: rgba(255, 121, 63, 0.35);
    transform: translateY(-2px);
}

.legal-card-pro h2 {
    margin: 0 0 var(--space-md);
    font-size: var(--fs-xl);
    color: var(--color-white);
    padding-bottom: var(--space-sm);
    border-bottom: 2px solid rgba(255, 47, 163, 0.35);
}

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

.legal-card-pro p,
.legal-card-pro li {
    color: var(--color-text-muted);
    font-size: var(--fs-sm);
    line-height: 1.6;
    max-width: 72ch;
}

.legal-card-pro ul {
    padding-left: 1.15rem;
    margin: var(--space-md) 0;
}

.legal-card-pro li+li {
    margin-top: var(--space-xs);
}

.legal-highlight {
    margin: var(--space-lg) 0;
    padding: var(--space-lg);
    border-radius: var(--radius-md);
    background: rgba(255, 121, 63, 0.1);
    border-left: 4px solid var(--color-neon-tangerine);
}

.legal-highlight p {
    margin: 0;
    font-size: var(--fs-sm);
    color: var(--color-text);
}

.legal-contact-card {
    margin-top: var(--space-xl);
    padding: var(--space-xl);
    border-radius: var(--radius-lg);
    background: rgba(0, 229, 255, 0.08);
    border: 1px solid rgba(0, 229, 255, 0.25);
}

.legal-contact-card p {
    margin: 0 0 var(--space-sm);
    color: var(--color-text);
    font-size: var(--fs-sm);
}

.legal-contact-card p:last-child {
    margin-bottom: 0;
}

@media (max-width: 400px) {
    :root {
        --container: min(1140px, calc(100% - 1rem));
    }

    .header-inner {
        gap: var(--space-sm);
    }

    .cookie-actions .btn {
        min-width: 0;
        flex: 1 1 100%;
    }
}

@media (max-width: 360px) {
    :root {
        --fs-2xl: 1.45rem;
        --fs-3xl: 1.85rem;
        --section-pad: 2rem;
    }

    .section-title {
        font-size: var(--fs-2xl);
    }

    .rhythm-tab {
        flex: 1 1 100%;
        min-width: 0;
        font-size: var(--fs-xs);
        padding: var(--space-sm) var(--space-md);
    }

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

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

@media (max-width: 320px) {
    :root {
        --container: min(1140px, calc(100% - 0.75rem));
        --fs-md: 0.9375rem;
        --fs-lg: 1.035rem;
        --fs-xl: 1.2rem;
        --fs-2xl: 1.35rem;
        --fs-3xl: 1.55rem;
        --fs-hero: clamp(1.45rem, 11vw, 1.85rem);
        --section-pad: 1.65rem;
        --space-lg: 1.2rem;
        --space-xl: 1.35rem;
        --space-2xl: 2.25rem;
    }

    html {
        font-size: 15px;
    }

    .site-header {
        padding: var(--space-xs) 0;
    }

    .brand {
        font-size: var(--fs-lg);
        max-width: min(190px, 58vw);
        line-height: var(--lh-tight);
    }

    .nav-toggle {
        width: 44px;
        height: 44px;
        flex-shrink: 0;
    }

    .site-nav--drawer {
        width: min(100%, 100vw);
        padding: calc(var(--header-h) + var(--space-md)) var(--space-md) var(--space-lg);
    }

    .hero-figure {
        min-height: 240px;
    }

    .hero-icon-cluster__main {
        font-size: clamp(3.5rem, 22vw, 5.5rem);
    }

    .hero-icon-cluster__sat {
        font-size: 1.25rem;
    }

    .price-current {
        font-size: var(--fs-2xl);
    }

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

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

    .btn {
        width: 100%;
        padding: var(--space-md);
    }

    .stat-card__value {
        font-size: var(--fs-2xl);
    }

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

    .bento-icon {
        width: 64px;
        height: 64px;
    }

    .bento-icon i {
        font-size: 1.65rem;
    }

    .rhythm-visual {
        height: 120px;
    }

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

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

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

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

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

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

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