:root {
    --color-sunflare: #FF7C1F;
    --color-neon-berry: #FF1FA8;
    --color-aqua-pulse: #2EEBFF;
    --color-lime-voltage: #D0FF14;
    --color-deep-night: #101A3A;
    --color-surface: #151e3d;
    --color-surface-elevated: #1a2548;
    --color-border: rgba(255, 255, 255, 0.08);
    --color-border-strong: rgba(255, 255, 255, 0.14);
    --color-text: rgba(255, 255, 255, 0.92);
    --color-text-muted: rgba(255, 255, 255, 0.62);
    --color-text-soft: rgba(255, 255, 255, 0.45);
    --font-display: "Fraunces", "Georgia", serif;
    --font-body: "Inter", system-ui, -apple-system, sans-serif;
    --font-mono: "JetBrains Mono", ui-monospace, monospace;
    --fs-display-xl: clamp(2.25rem, 5vw, 3.5rem);
    --fs-display-lg: clamp(1.75rem, 3.5vw, 2.5rem);
    --fs-heading: clamp(1.25rem, 2vw, 1.5rem);
    --fs-body: 1rem;
    --fs-small: 0.875rem;
    --fs-micro: 0.75rem;
    --lh-tight: 1.15;
    --lh-body: 1.65;
    --tracking-display: -0.02em;
    --shadow-soft: 0 8px 32px rgba(0, 0, 0, 0.25);
    --shadow-glow-sun: 0 0 40px rgba(255, 124, 31, 0.2);
    --shadow-glow-aqua: 0 0 28px rgba(46, 235, 255, 0.15);
    --radius-card: 24px;
    --radius-button: 18px;
    --radius-input: 14px;
    --radius-pill: 999px;
    --space-section-y: clamp(4rem, 8vw, 10rem);
    --space-section-y-lg: clamp(5rem, 10vw, 12.5rem);
    --space-card: clamp(1.5rem, 2vw, 2rem);
    --space-grid: clamp(1.5rem, 2vw, 2rem);
    --transition-fast: 0.3s ease;
    --transition-reveal: 0.5s ease;
    --header-height: 4.5rem;
}

*,
*::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-body);
    font-weight: 400;
    line-height: var(--lh-body);
    color: var(--color-text);
    background-color: var(--color-deep-night);
    background-image:
        radial-gradient(ellipse 80% 50% at 50% -20%, rgba(255, 31, 168, 0.12), transparent),
        radial-gradient(ellipse 60% 40% at 100% 50%, rgba(46, 235, 255, 0.06), transparent),
        radial-gradient(ellipse 50% 30% at 0% 80%, rgba(255, 124, 31, 0.08), transparent),
        linear-gradient(180deg, #101A3A 0%, #0d1428 100%);
    min-height: 100vh;
    overflow-x: hidden;
}

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

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

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

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

.link-animated::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 0;
    height: 1px;
    background: linear-gradient(90deg, var(--color-aqua-pulse), var(--color-neon-berry));
    transition: width var(--transition-fast);
}

.link-animated:hover::after {
    width: 100%;
}

h1,
h2,
h3,
h4 {
    font-family: var(--font-display);
    font-weight: 700;
    letter-spacing: var(--tracking-display);
    line-height: var(--lh-tight);
    margin: 0 0 1rem;
}

h1 {
    font-size: var(--fs-display-xl);
    font-weight: 800;
}

h2 {
    font-size: var(--fs-display-lg);
}

h3 {
    font-size: var(--fs-heading);
}

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

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    height: var(--header-height);
    display: flex;
    align-items: center;
    background: rgba(16, 26, 58, 0.65);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.site-header__inner {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 clamp(1.25rem, 4vw, 2rem);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

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

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

.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    z-index: 400;
    pointer-events: none;
    background: rgba(255, 255, 255, 0.06);
}

.scroll-progress::after {
    content: "";
    display: block;
    height: 100%;
    width: var(--scroll-pct, 0%);
    background: linear-gradient(90deg, var(--color-sunflare), var(--color-neon-berry), var(--color-aqua-pulse));
    box-shadow: 0 0 12px rgba(46, 235, 255, 0.35);
    transition: width 0.12s ease-out;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    padding: 0;
    border: 1px solid var(--color-border-strong);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.06);
    cursor: pointer;
    transition: transform var(--transition-fast), border-color var(--transition-fast), background var(--transition-fast);
    z-index: 160;
}

.nav-toggle:hover {
    border-color: rgba(46, 235, 255, 0.35);
    background: rgba(46, 235, 255, 0.08);
}

.nav-toggle__bar {
    display: block;
    width: 20px;
    height: 2px;
    border-radius: 1px;
    background: var(--color-text);
    transition: transform 0.35s ease, opacity 0.25s ease;
}

body.nav-open .nav-toggle__bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

body.nav-open .nav-toggle__bar:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

body.nav-open .nav-toggle__bar:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.nav-backdrop {
    position: fixed;
    inset: 0;
    z-index: 130;
    background: rgba(8, 12, 28, 0.55);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}

.nav {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem 1.25rem;
    justify-content: flex-end;
}

.nav--site {
    align-items: center;
}

.nav a {
    color: var(--color-text-muted);
    font-size: var(--fs-small);
    font-weight: 500;
    padding: 0.35rem 0;
    transition: color var(--transition-fast), transform var(--transition-fast);
}

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

@media (max-width: 959px) {
    .nav-toggle {
        display: flex;
    }

    .nav--site {
        position: fixed;
        top: var(--header-height);
        right: 0;
        bottom: 0;
        width: min(20rem, 88vw);
        margin: 0;
        padding: 1.25rem 1.5rem 2rem;
        flex-direction: column;
        flex-wrap: nowrap;
        align-items: stretch;
        justify-content: flex-start;
        gap: 0.25rem;
        background: rgba(16, 26, 58, 0.97);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        border-left: 1px solid var(--color-border);
        box-shadow: -12px 0 40px rgba(0, 0, 0, 0.35);
        transform: translateX(100%);
        transition: transform 0.42s cubic-bezier(0.22, 1, 0.36, 1);
        overflow-y: auto;
        z-index: 150;
    }

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

    .nav--site a {
        padding: 0.85rem 0.75rem;
        border-radius: 12px;
        border: 1px solid transparent;
    }

    .nav--site a:hover {
        background: rgba(46, 235, 255, 0.08);
        border-color: rgba(46, 235, 255, 0.15);
        transform: translateX(-4px);
    }
}

.section {
    padding: var(--space-section-y) clamp(1.25rem, 4vw, 2rem);
}

.section--tight-top {
    padding-top: clamp(2rem, 5vw, 3rem);
}

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

.section__title {
    text-align: center;
    margin-bottom: clamp(2rem, 4vw, 3rem);
}

.section__title p {
    max-width: 42ch;
    margin-left: auto;
    margin-right: auto;
}

.section__disclosure {
    max-width: 52ch;
    margin: 1rem auto 0;
    font-size: var(--fs-micro);
    color: var(--color-text-soft);
    font-style: italic;
}

.price__currency {
    font-size: 0.55em;
    font-weight: 600;
    opacity: 0.85;
    vertical-align: super;
}

.ads-business {
    padding-top: clamp(3rem, 6vw, 4rem);
}

.ads-business__card {
    max-width: 820px;
    margin: 0 auto;
    padding: clamp(1.5rem, 4vw, 2.25rem);
    border-radius: var(--radius-card);
    border: 1px solid var(--color-border);
    background: rgba(21, 30, 61, 0.45);
}

.ads-business__card h2 {
    margin-bottom: 0.75rem;
    font-size: clamp(1.25rem, 2.5vw, 1.5rem);
}

.ads-business__lead {
    font-size: var(--fs-small);
    margin-bottom: 1.25rem;
    color: var(--color-text-muted);
}

.ads-business__address {
    font-style: normal;
    font-size: var(--fs-small);
    color: var(--color-text-muted);
    margin-bottom: 1.25rem;
    line-height: 1.65;
}

.ads-business__name {
    color: var(--color-text);
    font-size: 1.05rem;
}

.ads-business__region {
    display: block;
    margin-top: 0.5rem;
    font-size: var(--fs-micro);
    color: var(--color-text-soft);
}

.ads-business__list {
    margin: 0;
    padding-left: 1.2rem;
    font-size: var(--fs-small);
    color: var(--color-text-muted);
}

.ads-business__list li {
    margin-bottom: 0.5rem;
}

.footer-business {
    padding-bottom: 1.25rem;
    border-bottom: 1px solid var(--color-border);
}

.footer-business__title {
    font-size: var(--fs-micro);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--color-text-soft);
    margin: 0 0 0.35rem;
}

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

.hero--aurora {
    position: relative;
    overflow: clip;
    padding-top: clamp(1.75rem, 5vw, 3.5rem);
    padding-bottom: var(--space-section-y-lg);
    isolation: isolate;
}

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

.hero__mesh {
    position: absolute;
    inset: -40%;
    background:
        radial-gradient(ellipse 55% 45% at 15% 20%, rgba(255, 124, 31, 0.18), transparent 55%),
        radial-gradient(ellipse 50% 40% at 85% 15%, rgba(255, 31, 168, 0.14), transparent 50%),
        radial-gradient(ellipse 45% 50% at 50% 100%, rgba(46, 235, 255, 0.1), transparent 55%);
    animation: heroMeshShift 14s ease-in-out infinite alternate;
}

.hero__blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(48px);
    opacity: 0.55;
    animation: heroBlobFloat 12s ease-in-out infinite;
}

.hero__blob--a {
    width: min(55vw, 340px);
    height: min(55vw, 340px);
    background: rgba(255, 31, 168, 0.35);
    top: -8%;
    left: -12%;
    animation-delay: 0s;
}

.hero__blob--b {
    width: min(45vw, 280px);
    height: min(45vw, 280px);
    background: rgba(46, 235, 255, 0.22);
    bottom: 5%;
    right: -8%;
    animation-delay: -4s;
    animation-duration: 16s;
}

.hero__blob--c {
    width: min(35vw, 200px);
    height: min(35vw, 200px);
    background: rgba(255, 124, 31, 0.2);
    top: 40%;
    left: 35%;
    animation-delay: -2s;
    animation-duration: 18s;
}

.hero__noise {
    position: absolute;
    inset: 0;
    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");
    mix-blend-mode: overlay;
}

@keyframes heroMeshShift {
    0% {
        transform: translate(0, 0) rotate(0deg) scale(1);
    }

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

@keyframes heroBlobFloat {

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

    33% {
        transform: translate(3%, 4%) scale(1.05);
    }

    66% {
        transform: translate(-2%, 2%) scale(0.98);
    }
}

.hero__wrap {
    position: relative;
    z-index: 1;
}

.hero__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: clamp(2rem, 5vw, 3.5rem);
    align-items: center;
}

@media (min-width: 900px) {
    .hero__grid {
        grid-template-columns: 1fr 1fr;
        align-items: start;
        gap: clamp(2rem, 4vw, 4rem);
    }
}

.hero__visual {
    order: 1;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: min(72vw, 380px);
    padding: 0.5rem;
}

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

.hero__frame {
    position: relative;
    width: min(100%, 420px);
    aspect-ratio: 1;
    max-width: 420px;
    display: flex;
    align-items: center;
    justify-content: center;
    perspective: 900px;
}

.hero__orbits {
    position: absolute;
    inset: -8%;
    z-index: 0;
    pointer-events: none;
}

.hero__ring {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 100%;
    height: 100%;
    transform: translate(-50%, -50%);
}

.hero__ring--r1 {
    border-radius: 50%;
    border: 1px solid rgba(255, 124, 31, 0.42);
    background: transparent;
    box-shadow: 0 0 28px rgba(46, 235, 255, 0.12);
    animation: heroOrbitSpin 50s linear infinite;
}

.hero__ring--r2 {
    width: 85%;
    height: 85%;
    border-radius: 50%;
    border: 1px dashed rgba(255, 31, 168, 0.38);
    background: transparent;
    animation: heroOrbitSpinRev 38s linear infinite;
}

.hero__ring--r3 {
    width: 70%;
    height: 70%;
    border-radius: 50%;
    border: 1px solid rgba(46, 235, 255, 0.22);
    background: transparent;
    animation: heroOrbitSpin 28s linear infinite;
}

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

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

@keyframes heroOrbitSpinRev {
    from {
        transform: translate(-50%, -50%) rotate(360deg);
    }

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

.hero__glow-stack {
    position: absolute;
    inset: 12%;
    z-index: 1;
    pointer-events: none;
}

.hero__glow {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 31, 168, 0.38) 0%, rgba(46, 235, 255, 0.12) 42%, transparent 68%);
    filter: blur(6px);
    animation: pulseGlow 5s ease-in-out infinite alternate;
}

.hero__glow--secondary {
    inset: -5%;
    background: radial-gradient(circle, rgba(255, 124, 31, 0.15) 0%, transparent 60%);
    animation: pulseGlow 7s ease-in-out infinite alternate-reverse;
    animation-delay: -2s;
}

.hero__sparkles {
    position: absolute;
    inset: 0;
    z-index: 3;
    pointer-events: none;
}

.hero__spark {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    color: var(--color-lime-voltage);
    filter: drop-shadow(0 0 10px rgba(208, 255, 20, 0.55));
    animation: heroSpark 3.5s ease-in-out infinite;
}

.hero__spark--1 {
    top: 18%;
    left: 22%;
    animation-delay: 0s;
}

.hero__spark--2 {
    top: 30%;
    right: 18%;
    animation-delay: 0.7s;
    color: var(--color-aqua-pulse);
    filter: drop-shadow(0 0 10px rgba(46, 235, 255, 0.45));
}

.hero__spark--3 {
    bottom: 28%;
    left: 15%;
    animation-delay: 1.4s;
}

.hero__spark--4 {
    bottom: 20%;
    right: 24%;
    animation-delay: 2.1s;
    color: var(--color-neon-berry);
    filter: drop-shadow(0 0 10px rgba(255, 31, 168, 0.4));
}

@keyframes heroSpark {

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

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

.hero__product-wrap {
    position: relative;
    z-index: 2;
    transform: translate3d(var(--hero-mx, 0px), var(--hero-my, 0px), 0);
    transition: transform 0.2s ease-out;
    will-change: transform;
}

.hero__product-float {
    animation: heroFloatTilt 8s ease-in-out infinite;
}

.hero__product-float img {
    filter: drop-shadow(0 24px 56px rgba(0, 0, 0, 0.45)) drop-shadow(0 0 40px rgba(46, 235, 255, 0.12));
}

@keyframes heroFloatTilt {

    0%,
    100% {
        transform: translateY(0) rotateZ(-0.4deg);
    }

    50% {
        transform: translateY(-14px) rotateZ(0.5deg);
    }
}

.hero__glass-edge {
    position: absolute;
    inset: 18%;
    z-index: 4;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: inset 0 0 40px rgba(46, 235, 255, 0.06);
    pointer-events: none;
    animation: heroGlassPulse 5s ease-in-out infinite;
}

@keyframes heroGlassPulse {

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

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

@keyframes pulseGlow {
    0% {
        opacity: 0.82;
        transform: scale(1);
    }

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

.hero__content {
    order: 2;
}

@media (min-width: 900px) {
    .hero__content {
        order: 1;
        padding-top: 0.5rem;
    }
}

.hero__intro {
    margin-bottom: 1rem;
    animation: heroFadeUp 0.85s ease forwards;
    animation-delay: 0.05s;
    opacity: 0;
    animation-fill-mode: forwards;
}

.hero__pill {
    position: relative;
    display: inline-flex;
    align-items: center;
    padding: 0.4rem 1rem 0.4rem 1rem;
    border-radius: var(--radius-pill);
    font-size: var(--fs-micro);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-text);
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.04);
    overflow: hidden;
}

.hero__pill-glow {
    position: absolute;
    inset: 0;
    background: linear-gradient(110deg, transparent 30%, rgba(46, 235, 255, 0.15) 50%, transparent 70%);
    animation: heroShimmer 3.5s ease-in-out infinite;
}

@keyframes heroShimmer {
    0% {
        transform: translateX(-100%);
    }

    100% {
        transform: translateX(100%);
    }
}

.hero__eyebrow {
    margin: 0.75rem 0 0;
    font-size: var(--fs-small);
    color: var(--color-aqua-pulse);
    font-weight: 500;
    letter-spacing: 0.02em;
}

.hero__title {
    margin-bottom: 1rem;
}

.hero__title-line {
    display: block;
    animation: heroFadeUp 0.9s ease forwards;
    opacity: 0;
    animation-fill-mode: forwards;
}

.hero__title-line:first-child {
    animation-delay: 0.12s;
}

.hero__title-line--gradient {
    animation-delay: 0.28s;
    background: linear-gradient(105deg, var(--color-text) 0%, var(--color-text) 35%, var(--color-aqua-pulse) 55%, var(--color-neon-berry) 85%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    padding-bottom: 0.06em;
}

@keyframes heroFadeUp {
    from {
        opacity: 0;
        transform: translateY(22px);
    }

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

.hero__lede {
    font-size: 1.0625rem;
    margin-bottom: 1.35rem;
    animation: heroFadeUp 0.95s ease forwards;
    animation-delay: 0.38s;
    opacity: 0;
    animation-fill-mode: forwards;
}

.hero__trust {
    animation: heroFadeUp 0.95s ease forwards;
    animation-delay: 0.48s;
    opacity: 0;
    animation-fill-mode: forwards;
}

.hero__price-block {
    margin-bottom: 1.35rem;
    animation: heroFadeUp 1s ease forwards;
    animation-delay: 0.55s;
    opacity: 0;
    animation-fill-mode: forwards;
}

.hero__price-note {
    margin: 0.35rem 0 0;
    font-size: var(--fs-micro);
    color: var(--color-text-soft);
    letter-spacing: 0.03em;
}

.hero__price {
    position: relative;
    display: inline-block;
    animation: heroPriceGlow 4s ease-in-out infinite alternate;
}

@keyframes heroPriceGlow {
    0% {
        filter: drop-shadow(0 0 0 transparent);
    }

    100% {
        filter: drop-shadow(0 0 14px rgba(208, 255, 20, 0.25));
    }
}

.hero__highlights li {
    animation: heroFadeUp 0.75s ease forwards;
    opacity: 0;
    animation-fill-mode: forwards;
}

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

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

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

.trust-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.25rem;
}

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

.stars .fa-star {
    font-size: 1.05rem;
    width: 1.1em;
    text-align: center;
}

.stars--sm .fa-star {
    font-size: 0.85rem;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.35rem 0.75rem;
    border-radius: var(--radius-pill);
    font-size: var(--fs-micro);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    border: 1px solid var(--color-border-strong);
    background: rgba(255, 255, 255, 0.04);
    color: var(--color-text-muted);
}

.badge--verify {
    border-color: rgba(46, 235, 255, 0.35);
    color: var(--color-aqua-pulse);
}

.badge .fa-solid {
    font-size: 0.8rem;
}

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

.price {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 800;
    color: var(--color-lime-voltage);
    letter-spacing: var(--tracking-display);
}

.price--old {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--color-text-soft);
    text-decoration: line-through;
}

.highlights {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.highlights li {
    display: flex;
    align-items: flex-start;
    gap: 0.65rem;
    font-size: var(--fs-small);
    color: var(--color-text-muted);
}

.highlights .fa-circle-check {
    flex-shrink: 0;
    font-size: 1.1rem;
    color: var(--color-aqua-pulse);
    margin-top: 0.1rem;
}

.order-form {
    padding: var(--space-card);
    border-radius: var(--radius-card);
    border: 1px solid var(--color-border);
    background: linear-gradient(145deg, rgba(26, 37, 72, 0.9), rgba(16, 26, 58, 0.95));
    box-shadow: var(--shadow-soft), inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.order-form h3 {
    margin-bottom: 1.25rem;
    font-size: 1.25rem;
}

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

.form-field input,
.form-field textarea {
    width: 100%;
    padding: 1.1rem 1rem 0.55rem;
    border-radius: var(--radius-input);
    border: 1px solid var(--color-border-strong);
    background: rgba(16, 26, 58, 0.6);
    color: var(--color-text);
    font-family: var(--font-body);
    font-size: 1rem;
    outline: none;
    transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.form-field textarea {
    min-height: 120px;
    resize: vertical;
    padding-top: 1.35rem;
}

.form-field label {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: var(--fs-small);
    color: var(--color-text-soft);
    pointer-events: none;
    transition: transform var(--transition-fast), font-size var(--transition-fast), top var(--transition-fast), color var(--transition-fast);
}

.form-field--textarea label {
    top: 1.25rem;
    transform: none;
}

.form-field input:focus,
.form-field textarea:focus {
    border-color: rgba(46, 235, 255, 0.55);
    box-shadow: 0 0 0 3px rgba(46, 235, 255, 0.12), var(--shadow-glow-aqua);
}

.form-field input:focus+label,
.form-field input:not(:placeholder-shown)+label {
    top: 0.5rem;
    transform: translateY(0);
    font-size: var(--fs-micro);
    color: var(--color-aqua-pulse);
}

.form-field--textarea textarea:focus+label,
.form-field--textarea textarea:not(:placeholder-shown)+label {
    top: 0.5rem;
    transform: none;
    font-size: var(--fs-micro);
    color: var(--color-aqua-pulse);
}

.form-field input::placeholder,
.form-field textarea::placeholder {
    color: transparent;
}

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

.checkbox-field input {
    width: 1.125rem;
    height: 1.125rem;
    margin-top: 0.2rem;
    accent-color: var(--color-sunflare);
    flex-shrink: 0;
}

.checkbox-field label {
    font-size: var(--fs-small);
    color: var(--color-text-muted);
}

.form-error {
    display: block;
    font-size: var(--fs-micro);
    color: var(--color-neon-berry);
    margin-top: 0.35rem;
    min-height: 1.1em;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.9rem 1.75rem;
    border-radius: var(--radius-button);
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    border: 1px solid transparent;
    transition: transform var(--transition-fast), filter var(--transition-fast), background var(--transition-fast), border-color var(--transition-fast), color var(--transition-fast);
}

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

.btn:active {
    transform: scale(0.99);
}

.btn--primary {
    background: linear-gradient(135deg, var(--color-sunflare), var(--color-neon-berry));
    color: #fff;
    box-shadow: var(--shadow-glow-sun);
}

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

.btn--ghost {
    background: rgba(255, 255, 255, 0.06);
    border-color: var(--color-border);
    color: var(--color-text-muted);
}

.btn--block {
    width: 100%;
}

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

.social-proof__stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: var(--space-grid);
    margin-bottom: 2rem;
}

.stat-card {
    text-align: center;
    padding: var(--space-card);
    border-radius: var(--radius-card);
    border: 1px solid var(--color-border);
    background: rgba(21, 30, 61, 0.5);
    transition: transform var(--transition-fast), border-color var(--transition-fast);
}

.stat-card:hover {
    transform: translateY(-4px);
    border-color: rgba(46, 235, 255, 0.25);
}

.stat-card strong {
    display: block;
    font-family: var(--font-display);
    font-size: 1.75rem;
    color: var(--color-text);
    margin-bottom: 0.25rem;
}

.stat-card span {
    font-size: var(--fs-small);
    color: var(--color-text-soft);
}

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

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

.preview-card {
    padding: var(--space-card);
    border-radius: var(--radius-card);
    border: 1px solid var(--color-border);
    background: linear-gradient(160deg, rgba(26, 37, 72, 0.8), rgba(16, 26, 58, 0.95));
    transition: transform var(--transition-fast), border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.preview-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 124, 31, 0.25);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.preview-card p {
    font-size: var(--fs-small);
    margin-bottom: 0;
}

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

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

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

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

    .bento__item--hero {
        grid-column: span 2;
        grid-row: span 2;
    }
}

.bento__item {
    padding: var(--space-card);
    border-radius: var(--radius-card);
    border: 1px solid var(--color-border);
    background: rgba(21, 30, 61, 0.55);
    transition: transform var(--transition-fast), border-color var(--transition-fast);
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.bento__item:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 255, 255, 0.12);
}

.bento__icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    border: 1px solid var(--color-border-strong);
    background: rgba(46, 235, 255, 0.06);
}

.bento__icon .fa-solid {
    font-size: 1.2rem;
    color: var(--color-aqua-pulse);
}

.bento__item h3 {
    margin-bottom: 0;
    font-size: 1.125rem;
}

.bento__item p {
    margin-bottom: 0;
    font-size: var(--fs-small);
}

.product-story {
    display: grid;
    gap: var(--space-grid);
    align-items: center;
}

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

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

.product-overview__figure {
    min-height: 280px;
}

.product-overview__visual {
    display: grid;
    grid-template-columns: 1fr 1fr;
    place-items: center;
    gap: 1.5rem;
    padding: clamp(2rem, 5vw, 3rem);
    min-height: 260px;
    background: linear-gradient(155deg, rgba(21, 30, 61, 0.9), rgba(16, 26, 58, 0.98));
}

.product-overview__i {
    font-size: clamp(2.5rem, 8vw, 3.75rem);
    opacity: 0.92;
}

.product-overview__i--1 {
    color: var(--color-lime-voltage);
}

.product-overview__i--2 {
    color: var(--color-aqua-pulse);
}

.product-overview__i--3 {
    color: var(--color-neon-berry);
}

.product-overview__i--4 {
    color: var(--color-sunflare);
}

.product-story figcaption {
    margin-top: 0.75rem;
    font-size: var(--fs-small);
    color: var(--color-text-soft);
}

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

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

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

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

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

    .spec-card--span-3 {
        grid-column: span 3;
    }

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

    .spec-card--span-4 {
        grid-column: span 4;
    }
}

.spec-card {
    padding: var(--space-card);
    border-radius: var(--radius-card);
    border: 1px solid var(--color-border);
    background: rgba(16, 26, 58, 0.65);
    transition: transform var(--transition-fast), border-color var(--transition-fast);
}

.spec-card:hover {
    transform: translateY(-4px);
    border-color: rgba(208, 255, 20, 0.2);
}

.spec-card__label {
    font-family: var(--font-mono);
    font-size: var(--fs-micro);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--color-lime-voltage);
    margin-bottom: 0.35rem;
}

.spec-card__value {
    font-family: var(--font-mono);
    font-size: var(--fs-small);
    color: var(--color-text);
}

.steps {
    display: grid;
    gap: var(--space-grid);
}

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

.step {
    padding: var(--space-card);
    border-radius: var(--radius-card);
    border: 1px solid var(--color-border);
    text-align: center;
    background: rgba(21, 30, 61, 0.4);
    transition: transform var(--transition-fast), border-color var(--transition-fast);
}

.step:hover {
    transform: translateY(-4px);
    border-color: rgba(46, 235, 255, 0.2);
}

.step__num {
    font-family: var(--font-mono);
    font-size: var(--fs-micro);
    color: var(--color-neon-berry);
    margin-bottom: 0.5rem;
}

.step__icon {
    display: block;
    font-size: 2.5rem;
    margin: 0 auto 1rem;
    color: var(--color-aqua-pulse);
}

.step h3 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.step p {
    font-size: var(--fs-small);
    margin-bottom: 0;
}

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

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

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

.ingredient-card {
    padding: var(--space-card);
    border-radius: var(--radius-card);
    border: 1px solid var(--color-border);
    background: rgba(16, 26, 58, 0.5);
    transition: transform var(--transition-fast), border-color var(--transition-fast);
}

.ingredient-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 124, 31, 0.2);
}

.ingredient-card h3 {
    font-size: 1rem;
    color: var(--color-sunflare);
    margin-bottom: 0.5rem;
}

.ingredient-card p {
    font-size: var(--fs-small);
    margin-bottom: 0;
}

.instructions {
    counter-reset: step;
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.instructions li {
    display: grid;
    grid-template-columns: auto auto 1fr;
    gap: 1rem;
    align-items: start;
    padding: var(--space-card);
    border-radius: var(--radius-card);
    border: 1px solid var(--color-border);
    background: rgba(21, 30, 61, 0.35);
}

.instructions li::before {
    counter-increment: step;
    content: counter(step);
    font-family: var(--font-mono);
    font-weight: 600;
    font-size: 0.875rem;
    width: 2rem;
    height: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: rgba(255, 124, 31, 0.15);
    color: var(--color-sunflare);
    border: 1px solid rgba(255, 124, 31, 0.25);
}

.instructions__icon {
    color: var(--color-lime-voltage);
}

.instructions__icon .fa-solid {
    font-size: 1.5rem;
}

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

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

.review-card {
    padding: var(--space-card);
    border-radius: var(--radius-card);
    border: 1px solid var(--color-border);
    background: linear-gradient(165deg, rgba(26, 37, 72, 0.75), rgba(16, 26, 58, 0.95));
    transition: transform var(--transition-fast), border-color var(--transition-fast);
}

.review-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 31, 168, 0.2);
}

.review-card__head {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.review-card__avatar {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid var(--color-border-strong);
    background: rgba(46, 235, 255, 0.06);
    font-size: 1.85rem;
    color: var(--color-aqua-pulse);
    flex-shrink: 0;
}

.review-card__meta strong {
    display: block;
    font-size: var(--fs-small);
    color: var(--color-text);
}

.review-card__meta span {
    font-size: var(--fs-micro);
    color: var(--color-text-soft);
}

.review-card p {
    font-size: var(--fs-small);
    margin-bottom: 0;
}

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

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

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

.faq-item button .faq__chev {
    flex-shrink: 0;
    font-size: 0.85rem;
    color: var(--color-aqua-pulse);
    transition: transform var(--transition-fast);
}

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

.faq-panel {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-reveal);
}

.faq-panel p {
    padding-bottom: 1.25rem;
    font-size: var(--fs-small);
    margin: 0;
}

.cta-final {
    text-align: center;
    padding: var(--space-section-y-lg) clamp(1.25rem, 4vw, 2rem);
    border-radius: var(--radius-card);
    border: 1px solid var(--color-border);
    background: linear-gradient(135deg, rgba(255, 124, 31, 0.12), rgba(255, 31, 168, 0.08), rgba(46, 235, 255, 0.06));
    max-width: 900px;
    margin: 0 auto;
}

.cta-final h2 {
    margin-bottom: 0.75rem;
}

.cta-final p {
    max-width: 48ch;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 1.5rem;
}

.disclaimer {
    padding: var(--space-card);
    border-radius: var(--radius-card);
    border: 1px solid rgba(255, 255, 255, 0.06);
    background: rgba(0, 0, 0, 0.2);
    max-width: 900px;
    margin: 0 auto;
}

.disclaimer p {
    font-size: var(--fs-small);
    color: var(--color-text-soft);
    margin-bottom: 0.75rem;
}

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

.site-footer {
    padding: 3rem clamp(1.25rem, 4vw, 2rem);
    border-top: 1px solid var(--color-border);
    background: rgba(0, 0, 0, 0.15);
}

.site-footer__inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

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

.site-footer__copy {
    font-size: var(--fs-micro);
    color: var(--color-text-soft);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 200;
    padding: 1rem clamp(1rem, 3vw, 1.5rem);
    background: rgba(16, 26, 58, 0.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-top: 1px solid var(--color-border);
    transform: translateY(100%);
    transition: transform 0.45s ease;
}

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

.cookie-banner__inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

@media (min-width: 768px) {
    .cookie-banner__inner {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }
}

.cookie-banner p {
    font-size: var(--fs-small);
    margin: 0;
    color: var(--color-text-muted);
}

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

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

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

.cookie-modal__dialog {
    width: 100%;
    max-width: 480px;
    max-height: 90vh;
    overflow-y: auto;
    padding: var(--space-card);
    border-radius: var(--radius-card);
    border: 1px solid var(--color-border);
    background: var(--color-surface-elevated);
    box-shadow: var(--shadow-soft);
}

.cookie-modal__dialog h2 {
    margin-bottom: 0.75rem;
}

.cookie-modal__dialog>p {
    font-size: var(--fs-small);
    margin-bottom: 1.5rem;
}

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

.cookie-toggle:last-of-type {
    border-bottom: none;
    margin-bottom: 1rem;
}

.cookie-toggle span {
    font-size: var(--fs-small);
    color: var(--color-text);
}

.cookie-toggle small {
    display: block;
    font-size: var(--fs-micro);
    color: var(--color-text-soft);
    margin-top: 0.25rem;
}

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

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

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

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

.switch input:checked+.switch-slider {
    background: rgba(46, 235, 255, 0.2);
    border-color: rgba(46, 235, 255, 0.4);
}

.switch input:checked+.switch-slider::before {
    transform: translateX(22px);
    background: var(--color-aqua-pulse);
}

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

.modal-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: flex-end;
}

.policy-page {
    padding: var(--space-section-y) clamp(1.25rem, 4vw, 2rem);
    padding-top: clamp(3rem, 8vw, 5rem);
}

.policy-page.legal-page--creative {
    padding: clamp(2rem, 6vw, 4rem) clamp(1rem, 4vw, 2rem) var(--space-section-y-lg);
}

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

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

.policy-page .updated {
    font-size: var(--fs-small);
    color: var(--color-text-soft);
    margin-bottom: 2rem;
}

.policy-page h2 {
    font-size: 1.35rem;
    margin-top: 2rem;
    margin-bottom: 0.75rem;
}

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

.policy-page li {
    margin-bottom: 0.5rem;
}

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

.thank-you {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: var(--space-section-y) clamp(1.25rem, 4vw, 2rem);
}

.thank-you__inner {
    max-width: 520px;
}

.thank-you h1 {
    margin-bottom: 1rem;
}

.thank-you p {
    margin-bottom: 1.5rem;
}

[data-reveal] {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.55s ease, transform 0.55s ease;
}

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

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

.rhythm-atlas {
    position: relative;
    overflow: hidden;
}

.rhythm-atlas::before {
    content: "";
    position: absolute;
    inset: -20% -10%;
    background: radial-gradient(ellipse at 30% 20%, rgba(255, 124, 31, 0.09), transparent 50%),
        radial-gradient(ellipse at 80% 60%, rgba(255, 31, 168, 0.07), transparent 45%);
    pointer-events: none;
    animation: rhythmDrift 18s ease-in-out infinite alternate;
}

@keyframes rhythmDrift {
    0% {
        transform: translate(0, 0) scale(1);
        opacity: 1;
    }

    100% {
        transform: translate(-2%, 1%) scale(1.02);
        opacity: 0.95;
    }
}

.rhythm-atlas__stage {
    position: relative;
    z-index: 1;
    border-radius: var(--radius-card);
    border: 1px solid var(--color-border);
    background: linear-gradient(165deg, rgba(21, 30, 61, 0.75), rgba(16, 26, 58, 0.95));
    padding: clamp(1.25rem, 3vw, 2rem);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05), var(--shadow-soft);
}

.rhythm-atlas__orbit {
    margin-bottom: 1.25rem;
    opacity: 0.95;
}

.rhythm-atlas__icon-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 0.75rem 1rem;
    padding: 1rem;
    font-size: 1.35rem;
    color: var(--color-aqua-pulse);
}

.rhythm-atlas__icon-row .fa-arrow-right-long {
    font-size: 0.95rem;
    opacity: 0.65;
    color: var(--color-text-soft);
}

.rhythm-atlas__icon-row .fa-sun {
    color: var(--color-sunflare);
}

.rhythm-atlas__icon-row .fa-leaf {
    color: var(--color-lime-voltage);
}

.rhythm-atlas__icon-row .fa-moon {
    color: var(--color-neon-berry);
}

.rhythm-atlas__tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.rhythm-tab {
    font-family: var(--font-body);
    font-size: var(--fs-small);
    font-weight: 600;
    padding: 0.65rem 1.1rem;
    border-radius: var(--radius-pill);
    border: 1px solid var(--color-border-strong);
    background: rgba(255, 255, 255, 0.04);
    color: var(--color-text-muted);
    cursor: pointer;
    transition: transform var(--transition-fast), border-color var(--transition-fast), background var(--transition-fast), color var(--transition-fast), box-shadow var(--transition-fast);
}

.rhythm-tab:hover {
    transform: translateY(-2px);
    border-color: rgba(46, 235, 255, 0.25);
    color: var(--color-text);
}

.rhythm-tab.is-active {
    background: linear-gradient(135deg, rgba(255, 124, 31, 0.2), rgba(255, 31, 168, 0.15));
    border-color: rgba(255, 124, 31, 0.35);
    color: var(--color-text);
    box-shadow: 0 0 20px rgba(255, 124, 31, 0.12);
}

.rhythm-atlas__panels {
    position: relative;
    min-height: 14rem;
}

.rhythm-panel {
    border-radius: 18px;
    padding: 1.25rem 1.35rem;
    border: 1px solid rgba(255, 255, 255, 0.06);
    background: rgba(0, 0, 0, 0.2);
    opacity: 0;
    transform: translateY(12px) scale(0.99);
    transition: opacity 0.45s ease, transform 0.45s ease;
    pointer-events: none;
}

.rhythm-panel.is-visible {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
}

.rhythm-panel__glyph {
    color: var(--color-aqua-pulse);
    margin-bottom: 0.75rem;
}

.rhythm-panel__glyph .fa-solid {
    font-size: 2.75rem;
    line-height: 1;
}

.rhythm-panel__heading {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--color-lime-voltage);
}

.rhythm-panel__text {
    font-size: var(--fs-small);
    margin-bottom: 0.75rem;
}

.rhythm-panel__list {
    margin: 0;
    padding-left: 1.1rem;
    font-size: var(--fs-small);
    color: var(--color-text-muted);
}

.rhythm-panel__list li {
    margin-bottom: 0.35rem;
}

.rhythm-atlas__metrics {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-grid);
    margin-top: 2rem;
}

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

.rhythm-metric {
    text-align: center;
    padding: 1.25rem;
    border-radius: var(--radius-card);
    border: 1px solid var(--color-border);
    background: rgba(21, 30, 61, 0.4);
    transition: transform var(--transition-fast), border-color var(--transition-fast);
}

.rhythm-metric:hover {
    transform: translateY(-3px);
    border-color: rgba(208, 255, 20, 0.2);
}

.rhythm-metric__value {
    display: block;
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 2.75rem);
    font-weight: 800;
    letter-spacing: var(--tracking-display);
    background: linear-gradient(135deg, var(--color-sunflare), var(--color-neon-berry));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    line-height: 1.1;
}

.rhythm-metric__label {
    display: block;
    font-size: var(--fs-micro);
    color: var(--color-text-soft);
    margin-top: 0.35rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

[data-stagger]>* {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 0.55s ease, transform 0.55s ease;
    transition-delay: calc(var(--stagger-i, 0) * 0.07s);
}

[data-stagger].is-staggered>* {
    opacity: 1;
    transform: translateY(0);
}

.legal-shell {
    min-height: 100vh;
    background:
        radial-gradient(ellipse 90% 40% at 50% -10%, rgba(255, 31, 168, 0.14), transparent),
        linear-gradient(180deg, #0a1024 0%, var(--color-deep-night) 35%);
}

.legal-page--creative {
    padding-top: clamp(2rem, 6vw, 4rem);
    padding-bottom: var(--space-section-y-lg);
}

.legal-hero {
    position: relative;
    max-width: 900px;
    margin: 0 auto 2.5rem;
    padding: clamp(1.75rem, 4vw, 2.75rem);
    border-radius: var(--radius-card);
    border: 1px solid var(--color-border);
    background: linear-gradient(145deg, rgba(26, 37, 72, 0.85), rgba(16, 26, 58, 0.95));
    box-shadow: var(--shadow-soft), inset 0 1px 0 rgba(255, 255, 255, 0.06);
    overflow: hidden;
}

.legal-hero::after {
    content: "";
    position: absolute;
    right: -20%;
    top: -30%;
    width: 60%;
    height: 120%;
    background: radial-gradient(circle, rgba(46, 235, 255, 0.08), transparent 65%);
    pointer-events: none;
}

.legal-hero__label {
    font-family: var(--font-mono);
    font-size: var(--fs-micro);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--color-aqua-pulse);
    margin-bottom: 0.5rem;
}

.legal-hero h1 {
    position: relative;
    z-index: 1;
    margin-bottom: 0.75rem;
}

.legal-date {
    position: relative;
    z-index: 1;
    font-size: var(--fs-small);
    color: var(--color-lime-voltage);
    margin-bottom: 0;
}

.legal-body {
    max-width: 820px;
    margin: 0 auto;
    padding: 0 clamp(1rem, 4vw, 2rem);
}

.legal-section {
    margin-bottom: 2.25rem;
    padding: 1.5rem 1.35rem;
    border-radius: 18px;
    border: 1px solid var(--color-border);
    background: rgba(21, 30, 61, 0.35);
    transition: border-color var(--transition-fast), transform var(--transition-fast);
}

.legal-section:hover {
    border-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.legal-section h2 {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    font-size: 1.2rem;
    margin-top: 0;
}

.legal-section h2::before {
    content: "";
    width: 6px;
    height: 1.25rem;
    border-radius: 3px;
    background: linear-gradient(180deg, var(--color-sunflare), var(--color-neon-berry));
    flex-shrink: 0;
}

.legal-callout {
    margin: 1.5rem 0;
    padding: 1.1rem 1.25rem;
    border-radius: 14px;
    border-left: 3px solid var(--color-aqua-pulse);
    background: rgba(46, 235, 255, 0.06);
    font-size: var(--fs-small);
}

.legal-grid {
    display: grid;
    gap: 1rem;
    margin: 1rem 0;
}

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

.legal-card {
    padding: 1rem 1.1rem;
    border-radius: 14px;
    border: 1px solid var(--color-border);
    background: rgba(16, 26, 58, 0.5);
    font-size: var(--fs-small);
}

.legal-card strong {
    color: var(--color-text);
    display: block;
    margin-bottom: 0.35rem;
}

.thank-you--creative {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background:
        radial-gradient(ellipse 80% 50% at 50% 0%, rgba(255, 124, 31, 0.12), transparent),
        var(--color-deep-night);
}

.thank-you__hero {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-section-y) clamp(1rem, 4vw, 2rem);
}

.thank-you__card {
    max-width: 560px;
    width: 100%;
    padding: clamp(2rem, 5vw, 3rem);
    border-radius: var(--radius-card);
    border: 1px solid var(--color-border);
    background: linear-gradient(160deg, rgba(26, 37, 72, 0.9), rgba(16, 26, 58, 0.98));
    box-shadow: var(--shadow-soft), 0 0 80px rgba(255, 31, 168, 0.08);
    text-align: center;
    position: relative;
    overflow: hidden;
    animation: thankCardIn 0.85s ease forwards;
}

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

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

.thank-you__card::before {
    content: "";
    position: absolute;
    top: -50%;
    left: 50%;
    width: 120%;
    height: 60%;
    transform: translateX(-50%);
    background: radial-gradient(ellipse, rgba(46, 235, 255, 0.15), transparent 70%);
    pointer-events: none;
}

.thank-you__icon {
    position: relative;
    width: 72px;
    height: 72px;
    margin: 0 auto 1.25rem;
    border-radius: 50%;
    border: 1px solid rgba(208, 255, 20, 0.25);
    background: rgba(208, 255, 20, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-lime-voltage);
    animation: iconPulse 2.5s ease-in-out infinite;
}

@keyframes iconPulse {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(208, 255, 20, 0.2);
    }

    50% {
        box-shadow: 0 0 24px 4px rgba(46, 235, 255, 0.15);
    }
}

.thank-you__icon .fa-circle-check {
    font-size: 2.25rem;
    line-height: 1;
}

.thank-you__card h1 {
    position: relative;
    margin-bottom: 0.75rem;
}

.thank-you__card p {
    position: relative;
    margin-bottom: 1.5rem;
}

.thank-you__steps {
    position: relative;
    text-align: left;
    margin: 1.5rem 0 0;
    padding: 1rem 1.1rem;
    border-radius: 14px;
    background: rgba(0, 0, 0, 0.25);
    border: 1px solid var(--color-border);
}

.thank-you__stamp {
    margin-bottom: 1.25rem;
}

.thank-you__steps-title {
    margin: 0 0 0.5rem;
    font-size: var(--fs-small);
    color: var(--color-text);
    font-weight: 600;
}

.thank-you__steps ol {
    margin: 0;
    padding-left: 1.2rem;
    font-size: var(--fs-small);
    color: var(--color-text-muted);
}

.thank-you__fineprint {
    margin: 1.25rem 0 0;
    font-size: var(--fs-micro);
    color: var(--color-text-soft);
}

.thank-you__steps li {
    margin-bottom: 0.5rem;
}

.policy-page.legal-page--creative p,
.policy-page.legal-page--creative li {
    font-size: var(--fs-small);
}

@media (prefers-reduced-motion: reduce) {
    .scroll-progress::after {
        transition: none;
    }

    .rhythm-atlas::before,
    .thank-you__icon,
    .rhythm-panel {
        animation: none;
    }

    .rhythm-panel {
        transition: opacity 0.2s ease;
    }

    .thank-you__card {
        animation: none;
    }

    [data-stagger]>* {
        transition: none;
        opacity: 1;
        transform: none;
    }

    .hero--aurora .hero__mesh,
    .hero__blob {
        animation: none;
    }

    .hero__ring {
        animation: none;
    }

    .hero__product-float {
        animation: none;
    }

    .hero__spark,
    .hero__pill-glow,
    .hero__glass-edge {
        animation: none;
    }

    .hero__intro,
    .hero__title-line,
    .hero__lede,
    .hero__trust,
    .hero__price-block,
    .hero__highlights li {
        animation: none;
        opacity: 1;
        transform: none;
    }

    .hero__price {
        animation: none;
        filter: none;
    }
}

@media (max-width: 320px) {
    :root {
        --fs-display-xl: clamp(1.65rem, 8vw, 2.25rem);
        --fs-display-lg: clamp(1.35rem, 6vw, 1.85rem);
        --space-section-y: 2.75rem;
        --space-section-y-lg: 3rem;
        --space-card: 1rem;
        --space-grid: 1rem;
        --radius-card: 18px;
        --radius-button: 14px;
        --radius-input: 12px;
    }

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

    .brand {
        font-size: 0.95rem;
        max-width: min(52vw, 11rem);
        line-height: 1.2;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

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

    .hero__frame {
        max-width: 300px;
        margin: 0 auto;
    }

    .hero__product-float img {
        max-width: min(100%, 240px);
        margin: 0 auto;
    }

    .hero__title-line--gradient {
        background: none;
        -webkit-background-clip: unset;
        background-clip: unset;
        color: var(--color-aqua-pulse);
    }

    .price {
        font-size: 1.65rem;
    }

    .order-form {
        padding: 1rem;
    }

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

    .btn {
        padding: 0.8rem 1.25rem;
        font-size: 0.9375rem;
    }

    .bento__item--hero {
        grid-column: auto;
        grid-row: auto;
    }

    .rhythm-tab {
        flex: 1 1 calc(50% - 0.25rem);
        justify-content: center;
        text-align: center;
        padding: 0.55rem 0.65rem;
        font-size: 0.75rem;
    }

    .rhythm-atlas__metrics {
        gap: 0.75rem;
    }

    .rhythm-metric__value {
        font-size: 1.65rem;
    }

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

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

    .legal-hero {
        padding: 1.15rem;
    }

    .legal-section {
        padding: 1.1rem 0.9rem;
    }

    .thank-you__card {
        padding: 1.5rem 1rem;
    }

    .footer-nav {
        flex-direction: column;
        gap: 0.65rem;
    }

    .site-footer {
        padding: 2rem 0.75rem;
    }
}