:root {
    color-scheme: dark;
    --bg: #03072e;
    --surface: rgba(7, 23, 77, 0.72);
    --surface-strong: rgba(10, 30, 90, 0.92);
    --border: rgba(0, 251, 255, 0.18);
    --text: #eef5ff;
    --muted: #9aa8c8;
    --accent: #00fbff;
    --accent-strong: #00fbff;
    --accent-deep: #00e0e5;
    --accent-soft: #7ecdd4;
    --heading-accent: #00fbff;
    --accent-glow: rgba(0, 251, 255, 0.22);
    --accent-glow-soft: rgba(0, 251, 255, 0.14);
    --accent-border: rgba(0, 251, 255, 0.18);
    --accent-border-hover: rgba(0, 251, 255, 0.55);
    --buy-btn-bg: #00fbff;
    --buy-btn-bg-hover: #33fcff;
    --buy-btn-text: #03072e;
    --buy-btn-shadow: none;
    --buy-btn-shadow-hover: 0 6px 16px rgba(0, 0, 0, 0.22);
    --status-green: #86efac;
    --status-green-strong: #34d399;
    --status-green-glow: rgba(52, 211, 153, 0.65);
    --shadow: 0 24px 80px rgba(0, 0, 0, 0.32);
    --hover-ease: cubic-bezier(0.22, 1, 0.36, 1);
    --hover-duration: 0.4s;
    --motion-ease: cubic-bezier(0.22, 1, 0.36, 1);
    --motion-duration: 0.88s;
    --site-bar-h: 72px;
    --content-top: calc(var(--site-bar-h) + 32px);
    font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

html.lenis,
html.lenis body {
    height: auto;
}

html.lenis.lenis-smooth {
    scroll-behavior: auto !important;
}

html.lenis.lenis-stopped {
    overflow: hidden;
}

.review-card,
.product-card {
    transition:
        transform var(--hover-duration) var(--hover-ease),
        box-shadow var(--hover-duration) var(--hover-ease),
        border-color var(--hover-duration) ease,
        opacity 0.6s ease;
}

.why-card,
.hero-card,
.product-req-card {
    --rx: 0deg;
    --ry: 0deg;
    --glow-x: 50%;
    --glow-y: 50%;
    --glow-opacity: 0;
    --scale: 1;
    position: relative;
    overflow: hidden;
    transform-style: preserve-3d;
    transition:
        transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
        box-shadow var(--hover-duration) var(--hover-ease),
        border-color var(--hover-duration) ease,
        background var(--hover-duration) ease,
        filter 0.4s ease,
        opacity 0.6s ease;
}

.why-card::before,
.hero-card::before,
.product-req-card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: radial-gradient(
        260px circle at var(--glow-x) var(--glow-y),
        rgba(0, 251, 255, 0.28) 0%,
        rgba(0, 251, 255, 0.1) 32%,
        transparent 68%
    );
    opacity: var(--glow-opacity);
    pointer-events: none;
    z-index: 0;
}

.why-card::after,
.hero-card::after,
.product-req-card::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: radial-gradient(
        200px circle at var(--glow-x) var(--glow-y),
        rgba(0, 251, 255, 0.14),
        transparent 62%
    );
    filter: blur(18px);
    opacity: var(--glow-opacity);
    pointer-events: none;
    z-index: 0;
}

.why-card > *,
.hero-card > *,
.product-req-card > * {
    position: relative;
    z-index: 1;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    min-height: 100vh;
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
    background: radial-gradient(circle at top left, rgba(0, 251, 255, 0.18), transparent 18%),
        radial-gradient(circle at bottom right, rgba(0, 251, 255, 0.12), transparent 18%),
        linear-gradient(180deg, #02051e 0%, #060b32 48%, #05081d 100%);
    color: var(--text);
    user-select: text;
    -webkit-user-select: text;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    background-image: linear-gradient(90deg, transparent, rgba(0, 251, 255, 0.12), transparent);
    opacity: 0.8;
    pointer-events: none;
}

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

.products-page.shop-page {
    display: block;
}

.background-canvas {
    position: fixed;
    inset: 0;
    z-index: -2;
    width: 100%;
    height: 100%;
    pointer-events: none;
    background: radial-gradient(circle at top left, rgba(0, 251, 255, 0.12), transparent 20%),
        radial-gradient(circle at bottom right, rgba(0, 251, 255, 0.14), transparent 20%);
}

.site-bar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 25;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 0 34px;
    background: rgba(12, 18, 36, 0.94);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(18px);
    transition:
        background 0.45s var(--motion-ease),
        border-color 0.45s var(--motion-ease),
        box-shadow 0.45s var(--motion-ease),
        transform 0.45s var(--motion-ease);
}

.site-bar.is-scrolled {
    background: rgba(8, 12, 28, 0.97);
    border-bottom-color: rgba(0, 251, 255, 0.12);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.28);
}

.site-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #ffffff;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    font-size: 0.98rem;
    text-decoration: none;
}

.site-logo {
    width: 44px;
    height: 44px;
    object-fit: contain;
    display: block;
    flex: 0 0 auto;
    filter: drop-shadow(0 0 10px rgba(0, 251, 255, 0.35));
}

.site-brand-text {
    white-space: nowrap;
}

.logo-mark {
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--accent), var(--accent-strong));
    box-shadow: 0 0 28px rgba(0, 251, 255, 0.28);
    color: #fff;
    font-weight: 900;
    font-size: 1.05rem;
}

.site-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    flex: 1;
}

.site-nav a {
    color: rgba(234, 245, 255, 0.78);
    text-decoration: none;
    font-size: 0.88rem;
    letter-spacing: 0.02em;
    transition: color 0.2s ease;
    padding: 8px 10px;
}

.site-nav a:hover {
    color: #ffffff;
}

.site-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.site-actions a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 18px;
    border-radius: 999px;
    text-decoration: none;
    font-size: 0.88rem;
    font-weight: 700;
    transition: transform 0.2s ease, background-color 0.2s ease;
}

.site-actions a.discord {
    background: rgba(14, 29, 54, 0.88);
    color: var(--accent-soft);
    border: 1px solid rgba(0, 251, 255, 0.18);
}

.site-actions a.dashboard-btn {
    background: rgba(14, 29, 54, 0.88);
    color: #b8c8ff;
    border: 1px solid rgba(0, 251, 255, 0.2);
}

.site-actions a.dashboard-btn.is-active {
    color: #ffffff;
    border-color: rgba(0, 251, 255, 0.42);
    box-shadow: 0 0 0 1px rgba(0, 251, 255, 0.12);
}

.site-actions a:hover {
    transform: translateY(-1px);
}

.page {
    position: relative;
    flex: 1;
    padding: var(--content-top) clamp(24px, 4vw, 64px) 32px;
    max-width: 1320px;
    margin: 0 auto;
    width: 100%;
}

.feature-row {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    margin-bottom: 34px;
}

.feature-pill {
    background: rgba(11, 24, 54, 0.82);
    border: 1px solid rgba(0, 251, 255, 0.12);
    border-radius: 24px;
    padding: 22px 24px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    box-shadow: 0 20px 55px rgba(0, 0, 0, 0.18);
}

.feature-pill span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 999px;
    background: rgba(0, 251, 255, 0.18);
    color: var(--accent-soft);
    font-size: 0.85rem;
    font-weight: 800;
}

.feature-pill strong {
    font-size: 1.05rem;
    color: #eef5ff;
    line-height: 1.45;
}

.products-preview {
    position: relative;
    margin: 48px auto 0;
    padding: 0 32px 24px;
    width: min(100%, 1180px);
    max-width: 1180px;
    box-sizing: border-box;
    overflow: hidden;
}

.products-header {
    position: relative;
    z-index: 1;
    max-width: 820px;
    margin: 0 auto 40px;
    text-align: center;
}

.products-header span {
    margin-bottom: 0;
}

.why-header h2,
.products-header h2,
.reviews-header h2 {
    margin: 18px auto 12px;
    font-size: 40px;
    color: var(--heading-accent);
    letter-spacing: -0.04em;
    font-weight: 700;
    font-family: "Poppins", sans-serif;
}

.products-header h2 {
    margin: 18px auto 12px;
}

.products-header p {
    margin: 0 auto;
    max-width: 660px;
    color: var(--muted);
    line-height: 1.75;
    font-size: 1rem;
}

.products-scroll {
    position: relative;
    overflow: hidden;
    width: 100%;
}

.products-track {
    display: flex;
    align-items: stretch;
    gap: 24px;
    height: 460px;
    padding-top: 32px;
    width: max-content;
    animation: scroll-loop 120s linear infinite;
    animation-timing-function: linear;
    will-change: transform;
}

.product-card {
    display: block;
    position: relative;
    flex: 0 0 360px;
    height: 420px;
    border-radius: 28px;
    border: 1px solid var(--accent-border);
    background: rgba(8, 13, 34, 0.94);
    box-shadow: 0 32px 96px rgba(0, 0, 0, 0.24);
    text-decoration: none;
    color: inherit;
    overflow: hidden;
    background-size: cover;
    background-position: center;
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.3);
    border-color: rgba(0, 251, 255, 0.28);
}

.product-card.is-loading {
    pointer-events: none;
    opacity: 0.82;
    transform: scale(0.985);
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.product-card.product-image-1 {
    background-image: url("internal_valorant_colorful.png");
}

.product-card.product-image-2 {
    background-image: url("perm_spoofer_colroful.png");
}

.product-card.product-image-3 {
    background-image: url("vanguard_emulator_colorful.png");
}

.product-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.22), rgba(0, 0, 0, 0.06));
    pointer-events: none;
    transition: opacity var(--hover-duration) ease;
    z-index: 1;
}

.product-card:hover::before {
    opacity: 0.7;
}

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

.product-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 24px;
}

.product-tag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(0, 251, 255, 0.16);
    color: var(--accent-soft);
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.18em;
}

.product-title {
    margin: 0;
    font-size: clamp(1.9rem, 3vw, 2.5rem);
    line-height: 1.05;
    color: #ffffff;
}

.product-copy {
    margin: 18px 0 0;
    color: #c3d1ff;
    line-height: 1.8;
    font-size: 0.98rem;
    max-width: 14em;
}

.product-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    margin-top: auto;
    flex-wrap: wrap;
}

.product-status {
    display: inline-flex;
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(0, 251, 255, 0.12);
    color: #b5ffbc;
    font-size: 0.88rem;
    font-weight: 700;
}

.product-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(115, 91, 255, 0.2);
    color: #ffffff;
    font-size: 0.88rem;
    font-weight: 700;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

@media (max-width: 960px) {
    .products-track:not(.products-track--showcase) {
        animation: none;
        justify-content: center;
        flex-wrap: wrap;
    }

    .product-card {
        flex: 0 0 calc(50% - 18px);
        min-height: 360px;
    }
}

@media (max-width: 640px) {
    .products-track:not(.products-track--showcase) {
        justify-content: center;
    }

    .product-card {
        flex: 0 0 100%;
        min-height: 340px;
    }

    .products-header h2 {
        font-size: 2.8rem;
    }

    .products-preview {
        padding: 0 18px 24px;
    }
}

@keyframes scroll-loop {
    0% {
        transform: translateX(0);
    }

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

.reviews-section {
    position: relative;
    margin: 64px 0 0;
    padding: 0 0 56px;
    width: 100%;
    max-width: none;
    overflow: visible;
}

.reviews-header {
    position: relative;
    z-index: 1;
    max-width: 720px;
    margin: 0 auto 40px;
    padding: 0 32px;
    text-align: center;
}

.reviews-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 16px;
    border-radius: 999px;
    border: 1px solid rgba(0, 251, 255, 0.22);
    background: rgba(8, 18, 42, 0.55);
    color: var(--accent-soft);
    font-size: 0.82rem;
    font-weight: 500;
    margin-bottom: 18px;
    backdrop-filter: blur(10px);
}

.reviews-badge-stars {
    color: var(--accent-strong);
    font-size: 0.72rem;
    letter-spacing: 0.08em;
}

.reviews-header p {
    margin: 0 auto;
    max-width: 560px;
    color: var(--muted);
    line-height: 1.75;
    font-size: 0.95rem;
}

.reviews-header a {
    color: var(--accent-strong);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s ease;
}

.reviews-header a:hover {
    color: #9fd8ff;
}

.reviews-marquee {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 10px 0;
}

.reviews-row {
    position: relative;
    overflow: hidden;
    width: 100%;
    padding: 12px 0;
    -webkit-mask-image: linear-gradient(
        to right,
        transparent,
        #000 4%,
        #000 96%,
        transparent
    );
    mask-image: linear-gradient(
        to right,
        transparent,
        #000 4%,
        #000 96%,
        transparent
    );
}

.reviews-track {
    display: flex;
    align-items: stretch;
    gap: 16px;
    width: max-content;
    padding: 8px 0;
    will-change: transform;
}

.reviews-track--right {
    animation: reviews-scroll-right 72s linear infinite;
}

.reviews-track--left {
    animation: reviews-scroll-left 72s linear infinite;
}

.review-card {
    position: relative;
    flex: 0 0 380px;
    width: 380px;
    min-height: 136px;
    border-radius: 16px;
    padding: 18px 20px 20px;
    background: rgba(8, 14, 36, 0.94);
    border: 1px solid rgba(0, 251, 255, 0.16);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.18);
    transform-origin: center center;
    transition:
        transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
        border-color 0.35s ease,
        box-shadow 0.35s ease;
}

.review-card:hover {
    transform: translateY(-4px);
    border-color: rgba(0, 251, 255, 0.34);
    box-shadow: 0 16px 36px rgba(0, 251, 255, 0.16);
    z-index: 2;
}

.review-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 0;
}

.review-user {
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 0;
}

.review-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, var(--accent), var(--accent-deep));
    border: none;
    color: #fff;
    font-weight: 700;
    font-size: 0.82rem;
    flex-shrink: 0;
}

.review-name {
    color: #f7fbff;
    font-size: 0.92rem;
    font-weight: 700;
}

.review-date {
    color: #7f92c4;
    font-size: 0.78rem;
    font-weight: 500;
    flex-shrink: 0;
    padding-top: 2px;
    white-space: nowrap;
}

.review-stars {
    color: var(--accent);
    font-size: 0.74rem;
    letter-spacing: 0.08em;
    margin: 10px 0 8px;
}

.review-text {
    margin: 0;
    color: #d7e4ff;
    line-height: 1.55;
    font-size: 0.88rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

@keyframes reviews-scroll-right {
    0% {
        transform: translateX(-50%);
    }

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

@keyframes reviews-scroll-left {
    0% {
        transform: translateX(0);
    }

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

.reviews-marquee:hover .reviews-track {
    animation-play-state: paused;
}

.reviews-row--bottom .reviews-track {
    margin-left: -80px;
}

@media (max-width: 760px) {
    .review-card {
        flex: 0 0 320px;
        width: 320px;
    }

    .reviews-row {
        -webkit-mask-image: linear-gradient(
            to right,
            transparent,
            #000 3%,
            #000 97%,
            transparent
        );
        mask-image: linear-gradient(
            to right,
            transparent,
            #000 3%,
            #000 97%,
            transparent
        );
    }
}

.why-section {
    position: relative;
    margin: 48px auto 0;
    padding: 52px 32px 34px;
    width: min(100%, 1180px);
    max-width: 1180px;
    box-sizing: border-box;
}

.why-section::before {
    content: none;
}

.why-header {
    position: relative;
    z-index: 1;
    max-width: 820px;
    margin: 0 auto 32px;
    text-align: center;
}

.why-header span,
.products-header span,
.reviews-header span,
.reviews-header .section-badge,
.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    border-radius: 999px;
    background: rgba(0, 251, 255, 0.16);
    color: var(--accent-soft);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    margin-bottom: 18px;
}

.reviews-header span {
    margin-bottom: 0;
}

.section-badge svg {
    width: 14px;
    height: 14px;
    flex: 0 0 auto;
}

.why-header p {
    margin: 0 auto;
    max-width: 660px;
    color: var(--muted);
    line-height: 1.75;
    font-size: 1rem;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 22px;
    position: relative;
    z-index: 1;
    perspective: 800px;
}

.why-card {
    background: rgba(4, 12, 32, 0.92);
    border: 1px solid rgba(0, 251, 255, 0.18);
    border-radius: 24px;
    padding: 30px 24px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.28);
    transform: scale(var(--scale)) rotateX(var(--rx)) rotateY(var(--ry));
}

.why-card:hover {
    transform: translateY(-8px) scale(var(--scale)) rotateX(var(--rx)) rotateY(var(--ry));
    box-shadow:
        0 30px 65px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(0, 251, 255, 0.18),
        0 0 55px rgba(0, 251, 255, 0.22);
    border-color: rgba(0, 251, 255, 0.55);
    background: rgba(5, 16, 42, 0.97);
    z-index: 3;
}

.why-index {
    position: absolute;
    top: 20px;
    right: 22px;
    font-size: 0.82rem;
    color: rgba(0, 251, 255, 0.32);
    font-weight: 600;
    letter-spacing: 0.04em;
    z-index: 2;
}

.why-icon {
    width: 52px;
    height: 52px;
    border-radius: 16px;
    display: grid;
    place-items: center;
    margin-bottom: 18px;
    background: linear-gradient(180deg, rgba(0, 251, 255, 0.16), rgba(0, 251, 255, 0.04));
    color: var(--accent-strong);
    font-size: 1.25rem;
    border: 1px solid var(--accent-border);
    transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.35s ease, box-shadow 0.35s ease;
}

.why-card:hover .why-icon {
    transform: scale(1.08);
    border-color: rgba(0, 251, 255, 0.35);
    box-shadow: 0 0 20px rgba(0, 251, 255, 0.2);
}

.why-card .why-tag {
    display: block;
    font-size: 0.82rem;
    color: var(--accent-soft);
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.16em;
}

.why-card h3 {
    margin: 0 0 14px;
    font-size: 1.2rem;
    color: #fff;
    line-height: 1.35;
}

.why-card p {
    margin: 0;
    color: #acc7ff;
    line-height: 1.75;
    font-size: 0.96rem;
}

.license-card {
    position: relative;
    padding: 26px 24px;
    border-radius: 8px;
    background: rgba(10, 20, 48, 0.88);
    border: 1px solid var(--accent-border);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.19);
    overflow: hidden;
}

.license-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top right, rgba(0, 251, 255, 0.14), transparent 24%),
        radial-gradient(circle at bottom left, rgba(0, 251, 255, 0.08), transparent 22%);
    pointer-events: none;
}

.license-card h3 {
    margin: 0;
    font-size: 1.1rem;
    color: #eef5ff;
}

.license-card p {
    margin: 12px 0 0;
    color: var(--muted);
    line-height: 1.75;
    font-size: 0.95rem;
}

.license-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-top: 22px;
}

.license-price {
    font-size: 1.7rem;
    font-weight: 800;
    color: #f7fbff;
}

.license-tag {
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(0, 251, 255, 0.16);
    color: #9fd5ff;
    font-size: 0.8rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    font-weight: 700;
}

@media (max-width: 980px) {

    .feature-row,
    .product-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 680px) {
    :root {
        --site-bar-h: 128px;
    }

    .site-bar {
        flex-direction: column;
        align-items: flex-start;
        height: auto;
        padding: 16px 20px;
    }

    .page {
        padding-top: var(--content-top);
    }

    .feature-row,
    .product-grid {
        grid-template-columns: 1fr;
    }
}

.panel {
    min-width: 100vw;
    padding: 32px clamp(24px, 4vw, 64px);
    display: grid;
    place-items: center;
}

.panel-card {
    width: min(760px, 92vw);
    padding: 32px 34px;
    border-radius: 32px;
    background: rgba(7, 18, 56, 0.9);
    border: 1px solid rgba(0, 251, 255, 0.18);
    box-shadow: 0 30px 90px rgba(0, 0, 0, 0.22);
    backdrop-filter: blur(16px);
}

.panel-card h2 {
    margin: 0 0 18px;
    font-size: clamp(2rem, 3vw, 3rem);
    color: var(--text);
}

.panel-card p {
    margin: 0 0 24px;
    color: var(--muted);
    line-height: 1.8;
    font-size: 1rem;
}

.panel-card .small-cards {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.panel-card .small-card {
    padding: 18px 16px;
    border-radius: 22px;
    border: 1px solid rgba(0, 251, 255, 0.16);
    background: rgba(10, 24, 62, 0.68);
    color: var(--text);
}

.panel-card .small-card strong {
    display: block;
    margin-top: 10px;
    font-size: 1.3rem;
}

.topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 32px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-weight: 700;
}

.brand .logo {
    width: 40px;
    height: 40px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    background: rgba(0, 251, 255, 0.14);
    border: 1px solid rgba(0, 251, 255, 0.32);
    box-shadow: 0 0 32px rgba(0, 251, 255, 0.15);
}

.brand .logo span {
    font-size: 1.2rem;
    color: var(--accent-strong);
    font-weight: 900;
}

.nav {
    display: flex;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
}

.nav a {
    color: var(--muted);
    text-decoration: none;
    font-size: 0.92rem;
    transition: color 0.2s ease;
}

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

.nav-actions {
    display: flex;
    gap: 12px;
    align-items: center;
}

.btn,
.btn-secondary {
    border: 1px solid rgba(0, 251, 255, 0.28);
    border-radius: 999px;
    padding: 12px 20px;
    font-weight: 700;
    font-size: 0.9rem;
    cursor: pointer;
    transition: transform 0.2s ease, background-color 0.2s ease, color 0.2s ease;
    text-decoration: none;
}

.btn {
    background: linear-gradient(135deg, rgba(0, 251, 255, 0.24), rgba(0, 251, 255, 0.3));
    color: var(--text);
}

.btn:hover {
    transform: translateY(-1px);
    background: linear-gradient(135deg, rgba(0, 251, 255, 0.4), rgba(0, 251, 255, 0.44));
}

.btn-secondary {
    background: transparent;
    color: var(--muted);
}

.btn-secondary:hover {
    color: var(--text);
}

.hero {
    display: grid;
    grid-template-columns: minmax(0, 0.75fr) minmax(620px, 1.25fr);
    grid-template-rows: auto auto;
    gap: 32px;
    align-items: start;
    min-height: auto;
    padding-bottom: 0;
}

.hero-copy {
    max-width: 500px;
}

.hero-status {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    border: 1px solid rgba(0, 251, 255, 0.16);
    background: rgba(12, 30, 75, 0.6);
    border-radius: 999px;
    margin-bottom: 24px;
    font-size: 0.92rem;
    color: var(--muted);
}

.hero-status::before {
    content: "";
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: linear-gradient(180deg, var(--accent-strong), var(--accent-deep));
    box-shadow: 0 0 16px rgba(0, 251, 255, 0.45);
}

.hero h1 {
    margin: 0;
    font-size: clamp(1.8rem, 2.8vw, 2.4rem);
    line-height: 1.08;
    letter-spacing: -0.02em;
    color: var(--text);
    max-width: 420px;
}

.hero h1 .highlight {
    color: var(--heading-accent);
}

.hero p {
    margin: 24px 0 32px;
    max-width: 560px;
    line-height: 1.8;
    color: var(--muted);
    font-size: 1rem;
}

.hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.hero-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(220px, 1fr));
    gap: 16px;
    margin: 24px auto 0;
    width: min(100%, 1180px);
    justify-content: center;
    grid-column: 1 / -1;
    perspective: 800px;
}

.hero-card {
    background: rgba(4, 12, 32, 0.82);
    border: 1px solid var(--accent-border);
    border-radius: 24px;
    padding: 20px 18px;
    backdrop-filter: blur(16px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.28);
    transform: scale(var(--scale)) rotateX(var(--rx)) rotateY(var(--ry));
}

.hero-card.reveal--tilt.is-visible,
.hero-card.visible {
    transform: translateY(0) scale(var(--scale)) rotateX(var(--rx)) rotateY(var(--ry));
    opacity: 1;
}

.hero-card.reveal--tilt.is-visible:hover,
.hero-card.visible:hover,
.hero-card:hover {
    transform: translateY(-8px) scale(var(--scale)) rotateX(var(--rx)) rotateY(var(--ry));
    box-shadow:
        0 30px 65px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(0, 251, 255, 0.18),
        0 0 55px rgba(0, 251, 255, 0.22);
    border-color: rgba(0, 251, 255, 0.55);
    background: rgba(5, 16, 42, 0.96);
    z-index: 3;
}

.hero-card label {
    display: block;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-size: 0.76rem;
    margin-bottom: 10px;
}

.hero-card strong {
    font-size: 1.5rem;
    display: block;
    color: var(--text);
    transition: color var(--hover-duration) ease;
}

.hero-card:hover strong {
    color: var(--accent-soft);
}

.hero-card span {
    color: var(--accent-soft);
}

.hero-visual {
    position: relative;
    min-height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    justify-self: end;
    width: 100%;
}

.visual-panel {
    position: relative;
    width: min(100%, 1120px);
    max-width: 1120px;
    aspect-ratio: 16 / 9;
    border-radius: 36px;
    border: 1px solid rgba(0, 251, 255, 0.22);
    background: radial-gradient(circle at top left, rgba(0, 251, 255, 0.18), transparent 28%),
        linear-gradient(180deg, rgba(9, 24, 68, 0.86), rgba(11, 26, 71, 0.95));
    box-shadow: 0 0 100px rgba(36, 87, 187, 0.18);
    overflow: hidden;
    backdrop-filter: blur(20px);
}

.visual-board {
    position: absolute;
    inset: 24px;
    border-radius: 28px;
    overflow: hidden;
    border: 1px solid rgba(0, 251, 255, 0.18);
    background:
        radial-gradient(circle at 30% 20%, rgba(0, 251, 255, 0.22), transparent 42%),
        linear-gradient(180deg, rgba(9, 24, 68, 0.96), rgba(11, 26, 71, 0.98));
    display: grid;
    place-items: center;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    opacity: 0;
    transition: opacity 0.6s var(--motion-ease);
}

.hero-video.is-ready {
    opacity: 1;
}


.reveal {
    opacity: 0;
    transform: translateY(18px);
    transition:
        opacity 0.78s cubic-bezier(0.22, 1, 0.36, 1),
        transform 0.78s cubic-bezier(0.22, 1, 0.36, 1);
    transition-delay: var(--reveal-delay, 0ms);
}

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

.reveal--tilt {
    transform: translateY(14px) scale(var(--scale)) rotateX(var(--rx)) rotateY(var(--ry));
    transition:
        opacity 0.78s cubic-bezier(0.22, 1, 0.36, 1),
        transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
        box-shadow var(--hover-duration) var(--hover-ease),
        border-color var(--hover-duration) ease,
        background var(--hover-duration) ease;
}

.reveal--tilt.is-visible {
    transform: translateY(0) scale(var(--scale)) rotateX(var(--rx)) rotateY(var(--ry));
}

/* Final animation — classic slide-up for hero/top, smooth blur for scroll content */
.reveal--classic {
    opacity: 0;
    transform: translateY(18px);
    transition:
        opacity 0.78s cubic-bezier(0.22, 1, 0.36, 1),
        transform 0.78s cubic-bezier(0.22, 1, 0.36, 1);
    transition-delay: var(--reveal-delay, 0ms);
}

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

.reveal--smooth:not(.reveal--tilt),
.catalog-page .reveal:not(.reveal--tilt):not(.reveal--classic) {
    opacity: 0;
    transform: translate3d(0, 36px, 0) scale(0.985);
    filter: blur(8px);
    transition:
        opacity var(--motion-duration) var(--motion-ease),
        transform var(--motion-duration) var(--motion-ease),
        filter var(--motion-duration) var(--motion-ease);
    transition-delay: var(--reveal-delay, 0ms);
}

.reveal--smooth:not(.reveal--tilt).is-visible,
.catalog-page .reveal:not(.reveal--tilt):not(.reveal--classic).is-visible {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
    filter: blur(0);
}

.reveal-final-smooth,
.reveal--smooth.reveal--tilt {
    opacity: 0;
    filter: none;
    transform: translate3d(0, 24px, 0) scale(var(--scale, 1)) rotateX(var(--rx, 0deg)) rotateY(var(--ry, 0deg));
    transition:
        opacity var(--motion-duration) var(--motion-ease),
        transform 0.35s var(--motion-ease),
        box-shadow var(--hover-duration) var(--hover-ease),
        border-color var(--hover-duration) ease,
        background var(--hover-duration) ease;
    transition-delay: var(--reveal-delay, 0ms);
}

.reveal-final-smooth.is-visible,
.reveal--smooth.reveal--tilt.is-visible {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(var(--scale, 1)) rotateX(var(--rx, 0deg)) rotateY(var(--ry, 0deg));
}

.visible {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

.btn {
    animation: buttonGlow 5.5s ease-in-out infinite;
    will-change: box-shadow, transform;
}

.hero-status {
    animation: pulseStatus 6s ease-in-out infinite;
    will-change: background;
}

.visual-panel::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 36px;
    background: radial-gradient(circle at 20% 20%, rgba(0, 251, 255, 0.12), transparent 22%),
        radial-gradient(circle at 80% 80%, rgba(0, 251, 255, 0.08), transparent 18%);
    pointer-events: none;
    animation: drift 18s ease-in-out infinite;
    will-change: transform;
}

@keyframes buttonGlow {

    0%,
    100% {
        box-shadow: none;
        transform: translateY(0);
    }

    50% {
        box-shadow: none;
        transform: translateY(-0.5px);
    }
}

@keyframes pulseStatus {

    0%,
    100% {
        background: rgba(12, 30, 75, 0.62);
    }

    50% {
        background: rgba(12, 32, 96, 0.72);
    }
}

@keyframes drift {

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

    50% {
        transform: translate(1px, 1px);
    }
}

@media (max-width: 980px) {
    .hero {
        grid-template-columns: 1fr;
        padding-bottom: 28px;
    }

    .hero-visual {
        order: -1;
    }

    .hero-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {

    .topbar,
    .player {
        flex-direction: column;
        align-items: flex-start;
    }

    .nav {
        order: 2;
    }

    .hero-grid {
        grid-template-columns: 1fr;
    }

    .player {
        left: 16px;
        transform: none;
        width: calc(100% - 32px);
    }
}

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

    .why-card,
    .hero-card {
        transition: border-color 0.2s ease, box-shadow 0.2s ease;
    }

    .why-card:hover,
    .hero-card:hover {
        transform: translateY(-3px);
    }

    .why-card::before,
    .hero-card::before,
    .why-card::after,
    .hero-card::after {
        display: none;
    }
}

.store {
    padding: 118px clamp(20px, 4vw, 48px) 88px;
    max-width: 1380px;
    margin: 0 auto;
}

.catalog {
    flex: 1;
    padding: var(--content-top) clamp(20px, 4vw, 48px) 88px;
    max-width: 1360px;
    margin: 0 auto;
    width: 100%;
}

.products-page.catalog-page .catalog {
    padding-top: var(--content-top);
    padding-bottom: 56px;
}

.catalog-hero {
    text-align: center;
    margin-bottom: 18px;
}

.catalog-hero .section-badge {
    margin-bottom: 14px;
}

.catalog-hero p {
    margin: 0 auto;
    max-width: 520px;
    color: var(--muted);
    line-height: 1.6;
    font-size: 0.88rem;
}

.catalog-panel {
    position: relative;
    margin-bottom: 24px;
    border-radius: 18px;
    border: 1px solid var(--accent-border);
    background: rgba(6, 12, 32, 0.82);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.18);
}

.catalog-panel-inner {
    padding: 22px 24px 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
}

.catalog-panel-head {
    text-align: center;
    margin-bottom: 0;
}

.catalog-panel-head h2 {
    margin: 0 0 6px;
    font-size: clamp(1.35rem, 2.6vw, 1.85rem);
    color: var(--heading-accent);
    letter-spacing: -0.04em;
    font-weight: 700;
    font-family: "Poppins", sans-serif;
}

.catalog-panel-head p {
    margin: 0 auto;
    max-width: 480px;
    color: var(--muted);
    line-height: 1.55;
    font-size: 0.86rem;
}

.catalog-panel-controls {
    display: grid;
    gap: 12px;
    justify-items: center;
    width: 100%;
}

.catalog-search {
    display: flex;
    align-items: center;
    gap: 10px;
    width: min(100%, 440px);
    padding: 11px 16px;
    border-radius: 999px;
    border: 1px solid rgba(0, 251, 255, 0.16);
    background: rgba(4, 10, 28, 0.92);
    transition: border-color 0.28s ease, box-shadow 0.28s ease;
}

.catalog-search:focus-within {
    border-color: rgba(0, 251, 255, 0.38);
    box-shadow: 0 0 0 3px rgba(0, 251, 255, 0.08);
}

.products-page .shop-status {
    min-height: 0;
    margin: 0;
    text-align: center;
    font-size: 0.82rem;
}

.products-page .shop-status:empty {
    display: none;
}

.catalog-search svg {
    width: 18px;
    height: 18px;
    fill: #7f9fd8;
    flex: 0 0 auto;
    transition: fill 0.24s ease;
}

.catalog-search:focus-within svg {
    fill: var(--accent-soft);
}

.catalog-search input {
    width: 100%;
    border: none;
    background: transparent;
    color: #eef5ff;
    font: inherit;
    outline: none;
}

.catalog-search input::placeholder {
    color: #7f92c4;
}

.shop-status {
    min-height: 1.4em;
    color: var(--accent-soft);
    font-size: 0.92rem;
}

.catalog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
    gap: 22px;
    transition: opacity 0.28s ease, transform 0.28s cubic-bezier(0.22, 1, 0.36, 1);
}

.catalog-grid.is-filtering {
    opacity: 0;
    transform: translateY(10px);
}

.catalog-intro {
    text-align: center;
    margin-bottom: 28px;
}

.catalog-intro h1 {
    margin: 16px 0 10px;
    font-size: clamp(2.5rem, 5vw, 4.2rem);
    color: #f7fbff;
}

.catalog-intro p {
    margin: 0 auto;
    max-width: 680px;
    color: var(--muted);
    line-height: 1.75;
}

.catalog-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 16px 18px;
    border-radius: 20px;
    border: 1px solid var(--accent-border);
    background: rgba(8, 13, 34, 0.88);
}

.catalog-meta {
    display: grid;
    gap: 4px;
    text-align: right;
    color: var(--accent-soft);
    font-size: 0.9rem;
    white-space: nowrap;
}

.catalog-card {
    display: grid;
    grid-template-rows: 180px 1fr;
    border-radius: 22px;
    border: 1px solid var(--accent-border);
    background: rgba(8, 13, 34, 0.9);
    box-shadow: var(--shadow);
    overflow: hidden;
    transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.2s ease, box-shadow 0.2s ease;
}

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

.catalog-card:hover {
    border-color: rgba(0, 251, 255, 0.34);
    box-shadow: 0 18px 48px rgba(0, 251, 255, 0.14);
}

.catalog-card-media {
    position: relative;
    background: linear-gradient(135deg, rgba(0, 251, 255, 0.34), rgba(8, 13, 34, 0.92)) center/cover no-repeat;
}

.catalog-card-status,
.status-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 12px;
    border-radius: 999px;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    background: rgba(0, 251, 255, 0.16);
    color: var(--accent-soft);
    border: 1px solid rgba(0, 251, 255, 0.32);
}

.status-pill::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: currentColor;
    box-shadow: 0 0 8px currentColor;
}

.status-pill--overlay {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 1;
}

.status-pill--undetected {
    background: rgba(34, 197, 94, 0.18);
    color: #86efac;
    border: 1px solid rgba(52, 211, 153, 0.38);
}

.status-pill--risk {
    text-transform: none;
    letter-spacing: 0.03em;
    font-size: 0.66rem;
    background: rgba(220, 168, 40, 0.18);
    color: #ffe08a;
    border: 1px solid rgba(220, 168, 40, 0.38);
    max-width: calc(100% - 24px);
    line-height: 1.25;
}

.status-pill--neutral {
    text-transform: none;
    letter-spacing: 0.04em;
    background: rgba(0, 251, 255, 0.14);
    color: var(--accent-soft);
    border: 1px solid rgba(0, 251, 255, 0.28);
}

.catalog-card-body {
    display: grid;
    gap: 14px;
    padding: 18px;
    align-content: start;
}

.catalog-card-body h3 {
    margin: 0;
}

.catalog-card-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-top: 6px;
}

.catalog-card-price {
    color: var(--accent-soft);
    font-weight: 800;
    font-size: 0.95rem;
}

.catalog-buy-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 16px;
    border-radius: 999px;
    border: none;
    background: var(--buy-btn-bg);
    color: var(--buy-btn-text);
    text-decoration: none;
    font-weight: 700;
    font-size: 0.86rem;
    white-space: nowrap;
    box-shadow: var(--buy-btn-shadow);
    transition: background 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease;
}

.catalog-buy-btn:hover {
    background: var(--buy-btn-bg-hover);
    box-shadow: var(--buy-btn-shadow-hover);
    transform: translateY(-1px);
}

.catalog-buy-btn.is-loading {
    pointer-events: none;
    position: relative;
    color: transparent;
}

.catalog-buy-btn.is-loading::after {
    content: "";
    position: absolute;
    inset: 0;
    margin: auto;
    width: 16px;
    height: 16px;
    border: 2px solid rgba(3, 7, 46, 0.22);
    border-top-color: var(--buy-btn-text);
    border-radius: 50%;
    animation: catalog-btn-spin 0.7s linear infinite;
}

.showcase-card.is-loading {
    pointer-events: none;
    position: relative;
    color: transparent;
}

.showcase-card.is-loading::after {
    content: "";
    position: absolute;
    inset: 0;
    margin: auto;
    width: 16px;
    height: 16px;
    border: 2px solid rgba(0, 251, 255, 0.22);
    border-top-color: var(--accent-strong);
    border-radius: 50%;
    animation: catalog-btn-spin 0.7s linear infinite;
}

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

.catalog-empty {
    grid-column: 1 / -1;
    text-align: center;
    color: #acc7ff;
    padding: 56px 20px;
}

.store-hero {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 24px;
    align-items: end;
    margin-bottom: 28px;
}

.store-kicker {
    display: inline-flex;
    margin-bottom: 14px;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(0, 251, 255, 0.12);
    color: var(--accent-soft);
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.store-hero h1 {
    margin: 0;
    font-size: clamp(2.4rem, 5vw, 4.5rem);
    line-height: 1.02;
    color: #f7fbff;
}

.store-hero p {
    margin: 14px 0 0;
    max-width: 560px;
    color: var(--muted);
    line-height: 1.7;
}

.store-search {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 0 18px;
    min-height: 58px;
    border-radius: 18px;
    border: 1px solid rgba(0, 251, 255, 0.16);
    background:
        linear-gradient(135deg, rgba(0, 251, 255, 0.08), rgba(8, 13, 34, 0.92));
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.store-search svg {
    width: 18px;
    height: 18px;
    fill: #7eb6ff;
}

.store-search input {
    width: 100%;
    border: none;
    background: transparent;
    color: #eef5ff;
    font: inherit;
    outline: none;
}

.store-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 22px;
    color: var(--accent-soft);
    font-size: 0.9rem;
}

.store-grid {
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    gap: 20px;
}

.store-card {
    --card-delay: 0ms;
    position: relative;
    grid-column: span 4;
    min-height: 390px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border-radius: 28px;
    border: 1px solid rgba(0, 251, 255, 0.12);
    background: linear-gradient(180deg, rgba(11, 18, 46, 0.96), rgba(6, 10, 28, 0.98));
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.22);
    opacity: 0;
    transform: translateY(24px);
    transition:
        opacity 0.55s ease var(--card-delay),
        transform 0.55s var(--hover-ease) var(--card-delay),
        border-color 0.25s ease,
        box-shadow 0.25s ease;
}

.store-card--featured {
    grid-column: span 8;
    min-height: 420px;
}

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

.store-card:hover {
    border-color: rgba(0, 251, 255, 0.34);
    box-shadow: 0 30px 80px rgba(24, 84, 200, 0.22);
    transform: translateY(-8px);
}

.store-card-glow {
    position: absolute;
    inset: auto -20% -40% -20%;
    height: 180px;
    background: radial-gradient(circle, rgba(0, 251, 255, 0.18), transparent 70%);
    pointer-events: none;
}

.store-card-index {
    position: absolute;
    top: 16px;
    right: 18px;
    z-index: 2;
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.18em;
    color: rgba(255, 255, 255, 0.28);
}

.store-card-media {
    position: relative;
    height: 220px;
    background: linear-gradient(135deg, rgba(0, 251, 255, 0.34), rgba(8, 13, 34, 0.92));
    background-size: cover;
    background-position: center;
}

.store-card--featured .store-card-media {
    height: 260px;
}

.store-card-media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.04), rgba(3, 7, 24, 0.72));
}

.store-card-tag,
.store-card-status {
    position: absolute;
    z-index: 1;
    top: 16px;
    padding: 8px 12px;
    border-radius: 999px;
    font-size: 0.74rem;
    font-weight: 700;
}

.store-card-tag {
    left: 16px;
    background: rgba(0, 251, 255, 0.18);
    color: #9fd5ff;
}

.store-card-status {
    right: 16px;
    background: rgba(8, 20, 48, 0.72);
    color: #b5ffbc;
    border: 1px solid rgba(0, 251, 255, 0.16);
}

.store-card-body {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 20px;
    flex: 1;
}

.store-card-body h3 {
    margin: 0;
    font-size: 1.45rem;
    color: #fff;
}

.store-card-body p {
    margin: 0;
    color: #b7c7ff;
    line-height: 1.65;
    flex: 1;
}

.store-card-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.store-card-price {
    font-size: 1.15rem;
    font-weight: 800;
    color: #f7fbff;
}

.store-buy-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 18px;
    border-radius: 999px;
    border: none;
    background: var(--buy-btn-bg);
    color: var(--buy-btn-text);
    font-weight: 700;
    text-decoration: none;
    box-shadow: var(--buy-btn-shadow);
    transition: transform 0.18s ease, background 0.18s ease, box-shadow 0.18s ease;
}

.store-buy-link:hover {
    transform: translateY(-2px);
    background: var(--buy-btn-bg-hover);
    box-shadow: var(--buy-btn-shadow-hover);
}

.store-empty {
    grid-column: 1 / -1;
    text-align: center;
    color: #acc7ff;
    padding: 56px 20px;
}

.product-shell {
    flex: 1;
    padding: var(--content-top) clamp(20px, 4vw, 48px) 80px;
    max-width: 1320px;
    margin: 0 auto;
    width: 100%;
}

.product-breadcrumbs {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    margin-bottom: 22px;
    color: #8ca4de;
    font-size: 0.9rem;
}

.product-breadcrumbs a {
    color: var(--accent-soft);
    text-decoration: none;
}

.product-breadcrumbs a:hover {
    text-decoration: underline;
}

.product-breadcrumbs span:last-child {
    color: #eef5ff;
    font-weight: 600;
}

.product-layout {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 28px;
    align-items: start;
}

.product-gallery,
.product-panel {
    border-radius: 28px;
    border: 1px solid var(--accent-border);
    background: rgba(8, 13, 34, 0.9);
    box-shadow: var(--shadow);
}

.product-gallery {
    padding: 18px;
}

.product-hero-media {
    height: 420px;
    border-radius: 22px;
    background: linear-gradient(135deg, rgba(0, 251, 255, 0.34), rgba(8, 13, 34, 0.92));
    background-size: cover;
    background-position: center;
}

.product-thumbs {
    display: flex;
    gap: 12px;
    margin-top: 14px;
    overflow-x: auto;
}

.product-thumb {
    width: 88px;
    height: 64px;
    flex: 0 0 auto;
    border-radius: 14px;
    border: 2px solid transparent;
    background: rgba(6, 12, 32, 0.95) center/cover no-repeat;
    cursor: pointer;
}

.product-thumb.is-active {
    border-color: var(--accent-strong);
    box-shadow: 0 0 0 3px rgba(0, 251, 255, 0.16);
}

.product-panel {
    padding: 28px;
}

.product-hero-wrap {
    position: relative;
}

.product-feature-cards {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    margin-top: 16px;
}

.product-feature-card {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 12px;
    border-radius: 16px;
    border: 1px solid rgba(0, 251, 255, 0.12);
    background: rgba(5, 10, 28, 0.92);
}

.product-feature-card strong {
    display: block;
    color: var(--accent-soft);
    font-size: 0.72rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.product-feature-card span:last-child {
    color: #f7fbff;
    font-weight: 700;
    font-size: 0.92rem;
}

.product-feature-icon {
    font-size: 1.2rem;
}

.product-title-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
}

.product-title-row h1 {
    margin: 0;
    font-size: clamp(2rem, 4vw, 2.8rem);
    color: #fff;
}

.product-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 14px;
}

.product-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 12px;
    border-radius: 999px;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.product-price-row {
    margin-bottom: 18px;
}

.product-price {
    font-size: clamp(2rem, 4vw, 2.6rem);
    color: #f7fbff;
}

.duration-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin-bottom: 22px;
}

.duration-card {
    position: relative;
    display: grid;
    gap: 6px;
    padding: 16px 14px;
    border-radius: 16px;
    border: 2px solid rgba(0, 251, 255, 0.14);
    background: rgba(5, 10, 28, 0.92);
    color: inherit;
    text-align: left;
    cursor: pointer;
    transition: border-color 0.18s ease, background 0.18s ease, box-shadow 0.18s ease;
}

.duration-card.is-selected {
    border-color: var(--accent);
    background: rgba(0, 251, 255, 0.1);
    box-shadow: inset 0 0 0 1px rgba(0, 251, 255, 0.2);
}

.duration-card-check {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: transparent;
    color: transparent;
    font-size: 0.72rem;
    font-weight: 800;
}

.duration-card.is-selected .duration-card-check {
    background: var(--accent);
    color: #fff;
}

.duration-card-name {
    color: #f7fbff;
    font-weight: 700;
    font-size: 0.95rem;
    padding-right: 24px;
}

.duration-card-price {
    color: #8ca4de;
    font-size: 0.86rem;
    font-weight: 600;
}

.product-panel h1 {
    margin: 0 0 12px;
    font-size: clamp(2rem, 4vw, 2.8rem);
    color: #fff;
}

.product-description {
    margin: 0 0 24px;
    color: #b8c8ff;
    line-height: 1.75;
}

.duration-block h2,
.product-qty span,
.product-total span {
    display: block;
    margin-bottom: 12px;
    color: var(--accent-soft);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.duration-list {
    display: grid;
    gap: 10px;
    margin-bottom: 22px;
}

.duration-option {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 14px;
    width: 100%;
    padding: 14px 16px;
    border-radius: 16px;
    border: 1px solid var(--accent-border);
    background: rgba(5, 10, 28, 0.92);
    color: inherit;
    text-align: left;
    cursor: pointer;
    transition: border-color 0.18s ease, background 0.18s ease, transform 0.18s ease;
}

.duration-option.is-selected {
    border-color: rgba(0, 251, 255, 0.55);
    background: rgba(0, 251, 255, 0.1);
    box-shadow: inset 0 0 0 1px rgba(0, 251, 255, 0.18);
}

.duration-radio {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    border: 2px solid rgba(0, 251, 255, 0.34);
    position: relative;
}

.duration-option.is-selected .duration-radio::after {
    content: "";
    position: absolute;
    inset: 3px;
    border-radius: 50%;
    background: var(--accent-strong);
}

.duration-copy {
    display: grid;
    gap: 4px;
}

.duration-copy strong {
    color: #f7fbff;
    font-size: 0.96rem;
}

.duration-copy small {
    color: #8ca4de;
    font-size: 0.8rem;
}

.duration-price {
    color: var(--accent-soft);
    font-weight: 800;
}

.product-qty,
.product-total {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 18px;
}

.qty-control {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    padding: 8px 12px;
    border-radius: 14px;
    border: 1px solid rgba(0, 251, 255, 0.16);
    background: rgba(5, 10, 28, 0.92);
}

.qty-control button {
    width: 32px;
    height: 32px;
    border: none;
    border-radius: 10px;
    background: rgba(0, 251, 255, 0.12);
    color: #eef5ff;
    cursor: pointer;
    font-size: 1.1rem;
}

.product-total strong {
    font-size: 2rem;
    color: var(--accent-soft);
}

.product-buy-form {
    display: grid;
    gap: 12px;
    margin-bottom: 18px;
}

.product-buy-form label {
    display: grid;
    gap: 6px;
    color: var(--accent-soft);
    font-size: 0.84rem;
    font-weight: 600;
}

.product-buy-form input {
    padding: 12px 14px;
    border-radius: 12px;
    border: 1px solid rgba(0, 251, 255, 0.18);
    background: rgba(6, 12, 32, 0.95);
    color: #eef5ff;
    font: inherit;
}

.product-buy-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 16px 20px;
    border: none;
    border-radius: 999px;
    background: var(--buy-btn-bg);
    color: var(--buy-btn-text);
    font: inherit;
    font-weight: 800;
    cursor: pointer;
    box-shadow: var(--buy-btn-shadow);
    transition: background 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease;
}

.product-buy-btn:hover {
    background: var(--buy-btn-bg-hover);
    box-shadow: var(--buy-btn-shadow-hover);
    transform: translateY(-1px);
}

.product-buy-btn svg {
    width: 18px;
    height: 18px;
}

.product-buy-actions {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 12px;
}

.product-cart-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 16px 18px;
    border: 1px solid rgba(0, 251, 255, 0.2);
    border-radius: 999px;
    background: rgba(5, 10, 28, 0.92);
    color: #eef5ff;
    font: inherit;
    font-weight: 700;
    cursor: pointer;
    transition: border-color 0.18s ease, background 0.18s ease, transform 0.18s ease;
}

.product-cart-btn svg {
    width: 18px;
    height: 18px;
}

.product-cart-btn:hover {
    border-color: rgba(0, 251, 255, 0.42);
    background: rgba(0, 251, 255, 0.1);
}

.product-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    color: var(--accent-soft);
    font-size: 0.84rem;
    font-weight: 600;
}

.product-success,
.product-loading {
    margin-bottom: 18px;
}

.product-loading {
    width: min(520px, 100%);
    height: 420px;
    margin: 0 auto 18px;
    border-radius: 22px;
    border: 1px solid rgba(0, 251, 255, 0.12);
    background: linear-gradient(
        110deg,
        rgba(18, 28, 58, 0.55) 8%,
        rgba(36, 58, 102, 0.42) 18%,
        rgba(18, 28, 58, 0.55) 33%
    );
    background-size: 200% 100%;
    animation: product-shell-shimmer 1.4s ease-in-out infinite;
}

@keyframes product-shell-shimmer {
    0% { background-position: 100% 0; }
    100% { background-position: -100% 0; }
}

html.product-prefetched #product-loading {
    display: none;
}

.duration-empty {
    color: var(--accent-soft);
}

.product-error {
    max-width: 560px;
    margin: 48px auto;
    padding: 32px;
    border-radius: 24px;
    border: 1px solid rgba(0, 251, 255, 0.18);
    background: rgba(8, 13, 34, 0.92);
    text-align: center;
}

.product-error p {
    margin: 0 0 12px;
    color: var(--muted);
    line-height: 1.7;
}

.product-error .btn {
    margin-top: 20px;
    display: inline-flex;
}

.product-specs {
    display: grid;
    gap: 28px;
    margin-top: 34px;
}

.product-specs--empty {
    padding: 24px;
    border-radius: 20px;
    border: 1px dashed rgba(0, 251, 255, 0.2);
    color: var(--accent-soft);
    text-align: center;
}

.product-specs--empty code {
    color: var(--accent-soft);
}

.product-specs-block {
    padding: 22px;
    border-radius: 20px;
    border: 1px solid var(--accent-border);
    background: rgba(8, 13, 34, 0.9);
    box-shadow: var(--shadow);
}

.product-specs-heading {
    margin-bottom: 16px;
}

.product-specs-kicker {
    display: inline-flex;
    margin-bottom: 8px;
    color: var(--accent-strong);
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.product-specs-heading h2 {
    margin: 0 0 8px;
    color: #f7fbff;
    font-size: clamp(1.4rem, 2.6vw, 1.9rem);
}

.product-specs-heading p {
    margin: 0;
    color: var(--accent-soft);
    font-size: 0.92rem;
}

.product-req-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 10px;
}

.product-req-card {
    position: relative;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 10px;
    align-items: center;
    min-height: 0;
    padding: 12px 12px;
    border-radius: 14px;
    border: 1px solid var(--accent-border);
    background: rgba(5, 10, 28, 0.92);
    transform: scale(var(--scale)) rotateX(var(--rx)) rotateY(var(--ry));
}

.product-req-card:hover {
    border-color: rgba(0, 251, 255, 0.42);
    box-shadow:
        0 12px 28px rgba(0, 0, 0, 0.28),
        0 0 0 1px rgba(0, 251, 255, 0.14),
        0 0 24px rgba(0, 251, 255, 0.16);
    background: rgba(6, 12, 32, 0.96);
}

.product-req-icon {
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: rgba(0, 251, 255, 0.12);
    border: 1px solid rgba(0, 251, 255, 0.22);
    color: var(--accent-strong);
}

.product-req-icon svg {
    width: 16px;
    height: 16px;
}

.product-req-body {
    min-width: 0;
}

.product-req-code {
    position: absolute;
    top: 8px;
    right: 10px;
    color: rgba(0, 251, 255, 0.38);
    font-size: 0.68rem;
    font-weight: 700;
}

.product-req-label {
    display: block;
    margin-bottom: 3px;
    color: rgba(140, 164, 222, 0.82);
    font-size: 0.62rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.product-req-card strong {
    color: #f7fbff;
    font-size: 0.8rem;
    line-height: 1.35;
    font-weight: 700;
}

.product-features-panel {
    border-radius: 20px;
    border: 1px solid rgba(0, 251, 255, 0.12);
    background: rgba(5, 10, 28, 0.92);
    overflow: hidden;
}

.product-features-panel-head {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 18px;
    border-bottom: 1px solid rgba(0, 251, 255, 0.1);
    color: #f7fbff;
}

.product-features-list {
    list-style: none;
    margin: 0;
    padding: 18px;
    display: grid;
    gap: 12px;
}

.product-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: #d7e4ff;
    line-height: 1.6;
}

.product-feature-check {
    width: 22px;
    height: 22px;
    flex: 0 0 auto;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: rgba(0, 251, 255, 0.16);
    color: var(--accent-strong);
    font-size: 0.72rem;
    font-weight: 800;
}

.product-feature-groups {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 14px;
    padding: 18px;
}

.product-feature-group {
    border-radius: 16px;
    border: 1px solid var(--accent-border);
    background: rgba(8, 16, 38, 0.88);
    overflow: hidden;
}

.product-feature-group-head,
.product-feature-group-title {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0;
    padding: 12px 14px;
    border-bottom: 1px solid rgba(0, 251, 255, 0.1);
    color: #f7fbff;
    font-size: 0.9rem;
    font-weight: 700;
}

.product-feature-group-head svg,
.product-feature-group-title span[aria-hidden="true"] {
    width: 16px;
    height: 16px;
    color: var(--accent-strong);
    flex: 0 0 auto;
}

.product-feature-group .product-features-list {
    padding: 12px 14px;
    gap: 8px;
}

.product-feature-group .product-feature-item {
    font-size: 0.84rem;
}

.product-feature-group .product-feature-check {
    width: 18px;
    height: 18px;
    font-size: 0.62rem;
}

@media (max-width: 1080px) {
    .store-hero,
    .product-layout,
    .catalog-toolbar {
        grid-template-columns: 1fr;
    }

    .catalog-toolbar {
        flex-direction: column;
        align-items: stretch;
    }

    .catalog-meta,
    .catalog-panel-meta {
        text-align: center;
    }

    .store-card,
    .store-card--featured {
        grid-column: span 6;
    }

    .product-feature-cards {
        grid-template-columns: 1fr;
    }

    .product-req-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 720px) {
    .store-card,
    .store-card--featured {
        grid-column: span 12;
    }

    .product-hero-media {
        height: 300px;
    }

    .duration-grid {
        grid-template-columns: 1fr;
    }

    .product-req-grid {
        grid-template-columns: 1fr;
    }

    .product-buy-actions {
        grid-template-columns: 1fr;
    }
}

.shop-status {
    min-height: 1.4em;
    color: var(--accent-soft);
    font-size: 0.92rem;
}

.shop-status.is-error {
    color: #ff9fae;
}

.shop-status.is-success {
    color: var(--accent-soft);
}

.checkout-error {
    min-height: 1.2em;
    margin: 0;
    color: #ff9fae;
    font-size: 0.88rem;
}

.shop-setup {
    grid-column: 1 / -1;
    max-width: 720px;
    margin: 0 auto;
    padding: 28px;
    border-radius: 20px;
    background: rgba(10, 20, 48, 0.82);
    border: 1px solid rgba(0, 251, 255, 0.16);
    color: #c3d1ff;
    line-height: 1.7;
}

.cart-overlay,
.buy-overlay {
    position: fixed;
    inset: 0;
    background: rgba(2, 6, 20, 0.55);
    backdrop-filter: blur(4px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.32s cubic-bezier(0.22, 1, 0.36, 1);
    z-index: 40;
}

.cart-overlay.is-open,
.buy-overlay.is-open {
    opacity: 1;
    pointer-events: auto;
}

.cart-fab {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 60;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px 10px 10px;
    border-radius: 999px;
    border: 1px solid rgba(0, 251, 255, 0.28);
    background: rgba(6, 10, 26, 0.94);
    color: var(--accent);
    font: inherit;
    font-size: 0.92rem;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.34);
    backdrop-filter: blur(14px);
    transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}

.cart-fab-icon {
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: rgba(0, 251, 255, 0.12);
    border: 1px solid rgba(0, 251, 255, 0.24);
    color: var(--accent);
    flex-shrink: 0;
}

.cart-fab-icon svg {
    width: 18px;
    height: 18px;
}

.cart-fab-label {
    color: var(--accent);
    letter-spacing: 0.01em;
    white-space: nowrap;
}

.cart-fab:hover {
    transform: translateY(-2px);
    border-color: rgba(0, 251, 255, 0.48);
    background: rgba(8, 14, 34, 0.98);
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.38), 0 0 18px rgba(0, 251, 255, 0.1);
}

.cart-fab.is-pulsing {
    animation: cart-pulse 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.cart-fab.has-items {
    border-color: rgba(0, 251, 255, 0.42);
}

body.cart-open .cart-fab {
    pointer-events: none;
    opacity: 0;
    transform: translateY(8px);
}

.cart-count {
    position: static;
    min-width: 22px;
    height: 22px;
    padding: 0 6px;
    border-radius: 999px;
    background: rgba(0, 251, 255, 0.14);
    border: 1px solid rgba(0, 251, 255, 0.28);
    color: #eef5ff;
    font-size: 0.72rem;
    font-weight: 800;
    display: grid;
    place-items: center;
    box-shadow: none;
    transition: transform 0.22s ease, opacity 0.22s ease;
}

.cart-count.is-hidden {
    opacity: 0.55;
    transform: none;
    pointer-events: none;
}

@media (max-width: 640px) {
    .cart-fab {
        right: 16px;
        bottom: max(16px, env(safe-area-inset-bottom));
        gap: 8px;
        padding: 8px 12px 8px 8px;
        font-size: 0.86rem;
    }

    .cart-fab-icon {
        width: 30px;
        height: 30px;
    }
}

.cart-drawer {
    position: fixed;
    top: 0;
    right: 0;
    width: min(440px, 100vw);
    height: 100vh;
    background: rgba(7, 14, 36, 0.98);
    border-left: 1px solid rgba(0, 251, 255, 0.16);
    box-shadow: -24px 0 80px rgba(0, 0, 0, 0.35);
    transform: translateX(104%);
    transition: transform 0.36s cubic-bezier(0.22, 1, 0.36, 1);
    z-index: 50;
    display: flex;
    flex-direction: column;
    padding: 24px;
}

.cart-drawer.is-open {
    transform: translateX(0);
}

.cart-drawer-kicker {
    margin: 0 0 4px;
    color: var(--accent-soft);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.cart-footer {
    display: grid;
    gap: 12px;
    padding-top: 8px;
    border-top: 1px solid rgba(0, 251, 255, 0.1);
}

.cart-note {
    margin: 0;
    color: #8ca4de;
    font-size: 0.82rem;
}

.cart-checkout-btn {
    width: 100%;
    padding: 15px 18px;
    border: none;
    border-radius: 999px;
    background: var(--buy-btn-bg);
    color: var(--buy-btn-text);
    font: inherit;
    font-weight: 800;
    cursor: pointer;
    box-shadow: var(--buy-btn-shadow);
    transition: transform 0.18s ease, background 0.18s ease, box-shadow 0.18s ease;
}

.cart-checkout-btn:hover {
    background: var(--buy-btn-bg-hover);
    box-shadow: var(--buy-btn-shadow-hover);
    transform: translateY(-1px);
}

.cart-checkout-btn:disabled {
    opacity: 0.7;
    cursor: wait;
}

.cart-toast {
    position: fixed;
    right: 24px;
    bottom: 24px;
    padding: 12px 16px;
    border-radius: 14px;
    background: rgba(8, 13, 34, 0.96);
    border: 1px solid rgba(0, 251, 255, 0.28);
    color: #eef5ff;
    font-size: 0.9rem;
    font-weight: 600;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
    opacity: 0;
    transform: translateY(12px);
    pointer-events: none;
    transition: opacity 0.28s ease, transform 0.28s cubic-bezier(0.22, 1, 0.36, 1);
    z-index: 60;
}

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

@keyframes cart-pulse {
    0% { transform: scale(1); }
    40% { transform: scale(1.08); }
    100% { transform: scale(1); }
}

.buy-modal {
    position: fixed;
    top: 50%;
    left: 50%;
    width: min(440px, calc(100vw - 32px));
    padding: 28px;
    border-radius: 24px;
    background: rgba(7, 14, 36, 0.98);
    border: 1px solid rgba(0, 251, 255, 0.18);
    box-shadow: 0 30px 90px rgba(0, 0, 0, 0.35);
    transform: translate(-50%, -48%) scale(0.96);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.22s ease, transform 0.22s ease;
    z-index: 55;
}

.buy-modal.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translate(-50%, -50%) scale(1);
}

.buy-modal h2 {
    margin: 0 0 8px;
    color: #f7fbff;
}

.buy-modal-copy {
    margin: 0 0 18px;
    color: #acc7ff;
    line-height: 1.6;
}

.buy-modal-form {
    display: grid;
    gap: 12px;
}

.buy-modal-form label {
    display: grid;
    gap: 6px;
    color: var(--accent-soft);
    font-size: 0.84rem;
    font-weight: 600;
}

.buy-modal-form input {
    padding: 12px 14px;
    border-radius: 12px;
    border: 1px solid rgba(0, 251, 255, 0.18);
    background: rgba(6, 12, 32, 0.95);
    color: #eef5ff;
    font: inherit;
}

.buy-modal-close {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 1px solid rgba(0, 251, 255, 0.18);
    background: transparent;
    color: #eef5ff;
    font-size: 1.3rem;
    cursor: pointer;
}

.cart-drawer-header,
.cart-total-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.cart-drawer-header h2 {
    margin: 0;
    color: #f7fbff;
}

.cart-close {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid rgba(0, 251, 255, 0.18);
    background: transparent;
    color: #eef5ff;
    font-size: 1.4rem;
    cursor: pointer;
}

.cart-items {
    flex: 1 1 auto;
    min-height: 0;
    overflow: auto;
    margin: 12px 0;
    display: grid;
    gap: 8px;
    align-content: start;
    align-items: start;
}

.cart-item {
    display: flex;
    align-items: center;
    align-self: start;
    width: 100%;
    gap: 8px;
    padding: 8px 10px;
    border-radius: 12px;
    background: rgba(10, 20, 48, 0.72);
    border: 1px solid rgba(0, 251, 255, 0.12);
    opacity: 0;
    transform: translateY(6px);
    transition: opacity 0.28s ease, transform 0.28s cubic-bezier(0.22, 1, 0.36, 1);
}

.cart-item.is-visible {
    opacity: 1;
    transform: translateY(0);
    transition-delay: var(--item-delay, 0ms);
}

.cart-item-thumb {
    width: 36px;
    height: 36px;
    flex: 0 0 36px;
    border-radius: 8px;
    background: linear-gradient(135deg, rgba(0, 251, 255, 0.34), rgba(8, 13, 34, 0.92)) center/cover no-repeat;
}

.cart-item-main {
    flex: 1;
    min-width: 0;
    display: grid;
    gap: 4px;
}

.cart-item-topline,
.cart-item-bottomline {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.cart-item-remove {
    width: 24px;
    height: 24px;
    flex: 0 0 auto;
    display: grid;
    place-items: center;
    border: none;
    border-radius: 6px;
    background: transparent;
    color: #7f8fbf;
    cursor: pointer;
    transition: color 0.18s ease, background 0.18s ease;
}

.cart-item-remove svg {
    width: 14px;
    height: 14px;
}

.cart-item-remove:hover {
    color: #ff9fae;
    background: rgba(255, 120, 140, 0.1);
}

.cart-item-price {
    color: var(--accent-strong);
    font-weight: 700;
    font-size: 0.8rem;
    white-space: nowrap;
}

.cart-item:not(.is-entering) {
    opacity: 1;
    transform: none;
}

.cart-item-info {
    display: grid;
    gap: 2px;
    min-width: 0;
}

.cart-item-info strong {
    color: #f7fbff;
    font-size: 0.8rem;
    line-height: 1.2;
}

.cart-item-info span {
    color: #8ca4de;
    font-size: 0.7rem;
}

.cart-item-actions {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 2px 6px;
    border-radius: 8px;
    border: 1px solid var(--accent-border);
    background: rgba(5, 10, 28, 0.92);
    font-size: 0.76rem;
    color: #eef5ff;
}

.cart-item-actions button {
    width: 18px;
    height: 18px;
    padding: 0;
    border: none;
    border-radius: 4px;
    background: transparent;
    color: #c3d1ff;
    font-size: 0.85rem;
    line-height: 1;
    cursor: pointer;
    transition: color 0.18s ease, background 0.18s ease;
}

.cart-item-actions button:hover {
    color: #eef5ff;
    background: rgba(0, 251, 255, 0.12);
}

.cart-empty {
    color: var(--accent-soft);
    text-align: center;
    padding: 24px 0;
}

.checkout-form {
    display: grid;
    gap: 12px;
}

.checkout-form label {
    display: grid;
    gap: 6px;
    color: var(--accent-soft);
    font-size: 0.84rem;
    font-weight: 600;
}

.checkout-form input {
    padding: 12px 14px;
    border-radius: 12px;
    border: 1px solid rgba(0, 251, 255, 0.18);
    background: rgba(6, 12, 32, 0.95);
    color: #eef5ff;
    font: inherit;
}

.checkout-error {
    min-height: 1.2em;
    margin: 0;
    color: #ff9fae;
    font-size: 0.88rem;
}

.checkout-btn,
.buy-modal .shop-buy-btn {
    width: 100%;
    justify-content: center;
}

body.cart-open,
body.buy-open {
    overflow: hidden;
}

.shop-setup {
    grid-column: 1 / -1;
    max-width: 720px;
    margin: 0 auto;
    padding: 28px;
    border-radius: 20px;
    background: rgba(10, 20, 48, 0.82);
    border: 1px solid rgba(0, 251, 255, 0.16);
    color: #c3d1ff;
    line-height: 1.7;
}

.shop-setup ol {
    margin: 16px 0;
    padding-left: 20px;
}

.shop-setup code {
    color: #9fd5ff;
}

.shop-setup a {
    color: var(--accent-soft);
}

@media (max-width: 720px) {
    .catalog-card-actions {
        grid-template-columns: 1fr;
    }

    .catalog-toolbar {
        align-items: stretch;
        flex-direction: column;
    }
}

.site-nav a.is-active {
    color: #ffffff;
}

@media (prefers-reduced-motion: reduce) {
    .reveal,
    .reveal--tilt {
        opacity: 1;
        transform: none;
        transition: none;
    }

    .hero-copy,
    .hero-visual,
    .visual-panel,
    .hero-video {
        transform: none !important;
        opacity: 1;
    }

    .products-page .reveal--smooth:not(.reveal--tilt),
    .products-page .reveal--smooth.reveal--tilt,
    .reveal--smooth:not(.reveal--tilt),
    .reveal--smooth.reveal--tilt {
        opacity: 1;
        transform: none;
        filter: none;
        transition: none;
    }

    html.lenis.lenis-smooth {
        scroll-behavior: auto;
    }

    .products-track:not(.products-track--showcase),
    .reviews-track {
        animation: none !important;
    }

    .btn,
    .hero-status,
    .visual-panel::before {
        animation: none !important;
    }

    .background-canvas {
        display: none;
    }

    .catalog-card {
        opacity: 1;
        transform: none;
        transition: border-color 0.2s ease, box-shadow 0.2s ease;
    }

    .catalog-card.is-hovered,
    .catalog-card:hover {
        transform: none;
    }

    .faq-card,
    .faq-card-body,
    .faq-orb {
        transition: none !important;
        animation: none !important;
    }

    .catalog-card-media,
    .catalog-card.is-hovered .catalog-card-media,
    .catalog-card:hover .catalog-card-media {
        transform: none;
        transition: none;
    }

    .cart-drawer,
    .cart-overlay,
    .cart-item,
    .cart-toast,
    .cart-fab.is-pulsing {
        transition: none;
        animation: none;
        transform: none;
        opacity: 1;
    }

    .dashboard-results--enter {
        animation: none;
        opacity: 1;
        transform: none;
        filter: none;
    }
}

/* ── FAQ page ── */

.reveal-final-classic {
    opacity: 0;
    transform: translateY(18px);
    transition:
        opacity 0.78s cubic-bezier(0.22, 1, 0.36, 1),
        transform 0.78s cubic-bezier(0.22, 1, 0.36, 1);
    transition-delay: var(--reveal-delay, 0ms);
}

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

.reveal-final-smooth {
    opacity: 0;
    transform: translate3d(0, 36px, 0) scale(0.985);
    filter: blur(8px);
    transition:
        opacity var(--motion-duration) var(--motion-ease),
        transform var(--motion-duration) var(--motion-ease),
        filter var(--motion-duration) var(--motion-ease);
    transition-delay: var(--reveal-delay, 0ms);
}

.reveal-final-smooth.is-visible {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
    filter: blur(0);
}

.faq-page {
    --faq-glow: rgba(0, 251, 255, 0.35);
}

.faq-shell {
    position: relative;
    z-index: 1;
    flex: 1;
    max-width: 1180px;
    margin: 0 auto;
    width: 100%;
    padding: var(--content-top) 24px 80px;
}

.faq-watermark {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -52%);
    font-size: clamp(5rem, 14vw, 11rem);
    font-weight: 900;
    letter-spacing: -0.04em;
    color: transparent;
    -webkit-text-stroke: 1px rgba(0, 251, 255, 0.05);
    pointer-events: none;
    z-index: 0;
    user-select: none;
}

.faq-hero {
    position: relative;
    text-align: center;
    padding: 24px 20px 28px;
    margin-bottom: 22px;
}

.faq-hero .section-badge {
    margin-bottom: 14px;
}

.faq-orb {
    position: absolute;
    top: 0;
    left: 50%;
    width: min(280px, 70vw);
    height: min(280px, 70vw);
    transform: translateX(-50%);
    border-radius: 50%;
    background:
        radial-gradient(circle at 30% 30%, rgba(0, 251, 255, 0.2), transparent 55%),
        radial-gradient(circle at 70% 60%, rgba(0, 251, 255, 0.12), transparent 50%);
    filter: blur(36px);
    animation: faqOrbPulse 8s ease-in-out infinite;
    pointer-events: none;
}

@keyframes faqOrbPulse {
    0%, 100% { opacity: 0.55; transform: translateX(-50%) scale(1); }
    50% { opacity: 0.9; transform: translateX(-50%) scale(1.06); }
}

.faq-hero h1 {
    position: relative;
    margin: 0 0 10px;
    font-size: clamp(1.35rem, 2.6vw, 1.85rem);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.04em;
    color: #eef5ff;
}

.faq-hero h1 .highlight {
    color: var(--heading-accent);
    background: none;
    -webkit-text-fill-color: var(--heading-accent);
}

.faq-hero-lead {
    position: relative;
    max-width: 520px;
    margin: 0 auto;
    color: var(--muted);
    font-size: 0.88rem;
    line-height: 1.6;
}

.faq-stats {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
}

.faq-stat {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    border-radius: 16px;
    border: 1px solid rgba(0, 251, 255, 0.16);
    background: rgba(8, 13, 34, 0.78);
    backdrop-filter: blur(12px);
    min-width: 160px;
}

.faq-stat-icon {
    display: grid;
    place-items: center;
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: linear-gradient(145deg, rgba(0, 251, 255, 0.22), rgba(0, 251, 255, 0.08));
    font-size: 1.1rem;
}

.faq-stat strong {
    display: block;
    font-size: 0.92rem;
    font-weight: 700;
}

.faq-stat span {
    display: block;
    color: #8ea8ff;
    font-size: 0.78rem;
    font-weight: 500;
}

.faq-stage {
    display: grid;
    grid-template-columns: 240px minmax(0, 1fr);
    gap: 28px;
    align-items: start;
}

.faq-rail {
    position: sticky;
    top: 96px;
    padding: 22px 18px;
    border-radius: 20px;
    border: 1px solid var(--accent-border);
    background: rgba(8, 13, 34, 0.82);
    box-shadow: var(--shadow);
}

.faq-rail-title {
    margin: 0 0 14px;
    color: var(--accent-strong);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.faq-rail-nav {
    display: grid;
    gap: 6px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.faq-rail-nav a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    border-radius: 12px;
    color: #a3b9ff;
    font-size: 0.86rem;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.2s ease, color 0.2s ease;
}

.faq-rail-nav a:hover,
.faq-rail-nav a.is-active {
    background: rgba(0, 251, 255, 0.12);
    color: #eef5ff;
}

.faq-rail-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(0, 251, 255, 0.35);
    flex-shrink: 0;
    transition: background 0.2s ease, box-shadow 0.2s ease;
}

.faq-rail-nav a.is-active .faq-rail-dot {
    background: var(--accent-strong);
    box-shadow: 0 0 12px rgba(0, 251, 255, 0.6);
}

.faq-rail-divider {
    height: 1px;
    margin: 18px 0;
    background: linear-gradient(90deg, transparent, rgba(0, 251, 255, 0.2), transparent);
}

.faq-rail-note {
    margin: 0;
    color: #8ea8ff;
    font-size: 0.8rem;
    line-height: 1.55;
}

.faq-list {
    display: grid;
    gap: 14px;
}

.faq-card {
    --faq-accent: rgba(0, 251, 255, 0.14);
    --faq-accent-text: var(--heading-accent);
    position: relative;
    border-radius: 20px;
    border: 1px solid var(--accent-border);
    background: rgba(8, 13, 34, 0.88);
    overflow: hidden;
    transition:
        border-color 0.35s ease,
        box-shadow 0.35s ease,
        transform 0.35s var(--hover-ease);
}

.faq-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--faq-accent, rgba(0, 251, 255, 0.12)), transparent 55%);
    opacity: 0;
    transition: opacity 0.35s ease;
    pointer-events: none;
}

.faq-card.is-open {
    border-color: rgba(0, 251, 255, 0.38);
    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.28),
        0 0 0 1px rgba(0, 251, 255, 0.1),
        inset 3px 0 0 var(--faq-accent-text, var(--accent-strong));
}

.faq-card.is-open::before {
    opacity: 1;
}

.faq-card-head {
    display: grid;
    grid-template-columns: auto auto 1fr auto;
    align-items: center;
    gap: 14px;
    width: 100%;
    padding: 20px 22px;
    border: none;
    background: transparent;
    color: inherit;
    font: inherit;
    text-align: left;
    cursor: pointer;
}

.faq-card-num {
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    color: var(--faq-accent-text, var(--accent-strong));
    opacity: 0.85;
}

.faq-card-icon {
    display: grid;
    place-items: center;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(0, 251, 255, 0.1);
    border: 1px solid rgba(0, 251, 255, 0.22);
    color: var(--accent-strong);
    flex-shrink: 0;
}

.faq-card-icon svg {
    width: 20px;
    height: 20px;
}

.faq-card-question {
    margin: 0;
    font-size: 1.02rem;
    font-weight: 700;
    line-height: 1.4;
}

.faq-card-chevron {
    width: 32px;
    height: 32px;
    border-radius: 10px;
    display: grid;
    place-items: center;
    background: rgba(0, 251, 255, 0.08);
    color: var(--accent-strong);
    transition: transform 0.35s var(--hover-ease), background 0.25s ease;
}

.faq-card.is-open .faq-card-chevron {
    transform: rotate(180deg);
    background: rgba(0, 251, 255, 0.18);
}

.faq-card-body {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.45s var(--hover-ease);
}

.faq-card.is-open .faq-card-body {
    grid-template-rows: 1fr;
}

.faq-card-body-inner {
    overflow: hidden;
}

.faq-card-answer {
    margin: 0;
    padding: 0 22px 22px 80px;
    color: var(--muted);
    font-size: 0.96rem;
    line-height: 1.7;
}

.faq-cta {
    margin-top: 40px;
    padding: 32px 28px;
    border-radius: 24px;
    border: 1px solid rgba(0, 251, 255, 0.22);
    background:
        radial-gradient(circle at top right, rgba(0, 251, 255, 0.16), transparent 45%),
        rgba(8, 13, 34, 0.92);
    text-align: center;
    box-shadow: var(--shadow);
}

.faq-cta h2 {
    margin: 0 0 10px;
    font-size: 1.6rem;
    font-weight: 800;
}

.faq-cta p {
    margin: 0 auto 20px;
    color: #a3b9ff;
    max-width: 480px;
    line-height: 1.6;
}

.faq-cta-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
}

.faq-cta-actions .btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 22px;
    border-radius: 14px;
    border: 1px solid rgba(0, 251, 255, 0.22);
    background: rgba(0, 251, 255, 0.08);
    color: #eef5ff;
    font-weight: 700;
    text-decoration: none;
    transition: border-color 0.2s ease, background 0.2s ease;
}

.faq-cta-actions .btn-secondary:hover {
    border-color: rgba(0, 251, 255, 0.42);
    background: rgba(0, 251, 255, 0.14);
}

@media (max-width: 900px) {
    .faq-stage {
        grid-template-columns: 1fr;
    }

    .faq-rail {
        position: static;
    }

    .faq-rail-nav {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .faq-card-answer {
        padding-left: 22px;
    }

    .faq-card-head {
        grid-template-columns: auto 1fr auto;
    }

    .faq-card-num {
        display: none;
    }
}

/* ── Site footer ── */

.site-footer {
    position: relative;
    z-index: 2;
    margin-top: auto;
    border-top: 1px solid rgba(0, 251, 255, 0.1);
    background:
        linear-gradient(180deg, rgba(4, 8, 24, 0.4), rgba(4, 8, 24, 0.92)),
        rgba(5, 9, 26, 0.96);
    overflow: hidden;
}

.site-footer-glow {
    position: absolute;
    top: 0;
    left: 50%;
    width: min(720px, 90vw);
    height: 1px;
    transform: translateX(-50%);
    background: linear-gradient(90deg, transparent, rgba(0, 251, 255, 0.65), rgba(0, 251, 255, 0.35), transparent);
    box-shadow: 0 0 40px rgba(0, 251, 255, 0.35);
}

.site-footer-inner {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 1.4fr);
    gap: clamp(28px, 4vw, 48px);
    max-width: 1320px;
    margin: 0 auto;
    padding: clamp(36px, 5vw, 52px) clamp(24px, 4vw, 48px) 32px;
}

.site-footer-inner--compact {
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
    align-items: center;
    padding: clamp(28px, 4vw, 40px) clamp(24px, 4vw, 48px) 24px;
}

.site-footer-discord {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 18px;
    border-radius: 14px;
    border: 1px solid rgba(0, 251, 255, 0.24);
    background: rgba(0, 251, 255, 0.1);
    color: #eef5ff;
    font-size: 0.86rem;
    font-weight: 700;
    text-decoration: none;
    transition:
        border-color 0.25s ease,
        background 0.25s ease,
        transform 0.25s var(--hover-ease);
}

.site-footer-discord svg {
    width: 18px;
    height: 18px;
}

.site-footer-discord:hover {
    border-color: rgba(0, 251, 255, 0.42);
    background: rgba(0, 251, 255, 0.16);
    transform: translateY(-2px);
}

.site-footer-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 10px 18px;
}

.site-footer-nav a {
    color: #a3c4ff;
    font-size: 0.86rem;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.2s ease;
}

.site-footer-nav a:hover {
    color: #ffffff;
}

.site-footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
}

.site-logo--footer {
    width: 40px;
    height: 40px;
}

.site-footer-name {
    font-size: 1.05rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #eef5ff;
}

.site-footer-name strong {
    color: var(--heading-accent);
    font-weight: 800;
}

.site-footer-tagline {
    margin: 0 0 18px;
    max-width: 380px;
    color: var(--muted);
    font-size: 0.88rem;
    line-height: 1.65;
}

.site-footer-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 18px;
}

.site-footer-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border-radius: 999px;
    border: 1px solid rgba(0, 251, 255, 0.16);
    background: rgba(8, 16, 42, 0.72);
    color: #d8e8ff;
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.02em;
}

.site-footer-pill-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--status-green-strong);
    box-shadow: 0 0 10px var(--status-green-glow);
}

.site-footer-pill-dot--blue {
    background: var(--accent-strong);
    box-shadow: 0 0 10px rgba(0, 251, 255, 0.55);
}

.site-footer-pill-dot--gold {
    background: var(--accent-strong);
    box-shadow: 0 0 10px rgba(0, 251, 255, 0.45);
}

.site-footer-social {
    display: flex;
    gap: 10px;
}

.site-footer-social-btn {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border-radius: 12px;
    border: 1px solid rgba(0, 251, 255, 0.18);
    background: rgba(8, 16, 42, 0.65);
    color: var(--accent-soft);
    text-decoration: none;
    transition:
        border-color 0.25s ease,
        background 0.25s ease,
        color 0.25s ease,
        transform 0.25s var(--hover-ease);
}

.site-footer-social-btn svg {
    width: 18px;
    height: 18px;
}

.site-footer-social-btn:hover {
    border-color: rgba(0, 251, 255, 0.38);
    background: rgba(0, 251, 255, 0.12);
    color: #eef5ff;
    transform: translateY(-2px);
}

.site-footer-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.site-footer-panel {
    padding: 18px 16px;
    border-radius: 18px;
    border: 1px solid rgba(0, 251, 255, 0.12);
    background: rgba(8, 13, 34, 0.55);
    backdrop-filter: blur(10px);
    transition:
        border-color 0.35s ease,
        box-shadow 0.35s ease,
        transform 0.35s var(--hover-ease);
}

.site-footer-panel:hover {
    border-color: rgba(0, 251, 255, 0.24);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.22);
    transform: translateY(-2px);
}

.site-footer-panel h3 {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0 0 14px;
    color: #8ea8ff;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.site-footer-panel-line {
    width: 18px;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--accent-strong), rgba(0, 251, 255, 0.2));
}

.site-footer-panel ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 8px;
}

.site-footer-panel a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #c3d8ff;
    font-size: 0.86rem;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.2s ease, transform 0.2s ease;
}

.site-footer-panel a::before {
    content: "";
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: rgba(0, 251, 255, 0.35);
    transition: background 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.site-footer-panel a:hover {
    color: #ffffff;
    transform: translateX(3px);
}

.site-footer-panel a:hover::before {
    background: var(--accent-strong);
    box-shadow: 0 0 10px rgba(0, 251, 255, 0.55);
    transform: scale(1.2);
}

.site-footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
    max-width: 1320px;
    margin: 0 auto;
    padding: 16px clamp(24px, 4vw, 48px) 24px;
    border-top: 1px solid rgba(0, 251, 255, 0.08);
}

.site-footer-copy {
    margin: 0;
    color: #7a94cc;
    font-size: 0.8rem;
    font-weight: 500;
}

.site-footer-bottom-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.site-footer-status {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    border-radius: 999px;
    border: 1px solid rgba(52, 211, 153, 0.28);
    background: rgba(16, 185, 129, 0.08);
    color: #9ef0c9;
    font-size: 0.78rem;
    font-weight: 700;
}

.site-footer-status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--status-green-strong);
    box-shadow: 0 0 12px var(--status-green-glow);
    animation: footerStatusPulse 2.4s ease-in-out infinite;
}

@keyframes footerStatusPulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.65; transform: scale(0.88); }
}

@media (max-width: 980px) {
    .site-footer-inner,
    .site-footer-inner--compact {
        grid-template-columns: 1fr;
    }

    .site-footer-nav {
        justify-content: flex-start;
    }
}

@media (max-width: 720px) {
    .site-footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* ── Legal / Terms page ── */

.legal-shell,
.reviews-shell {
    position: relative;
    z-index: 1;
    flex: 1;
    max-width: 1180px;
    margin: 0 auto;
    width: 100%;
    padding: var(--content-top) 24px 80px;
}

.legal-watermark,
.reviews-watermark {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -52%);
    font-size: clamp(5rem, 14vw, 11rem);
    font-weight: 900;
    letter-spacing: -0.04em;
    color: transparent;
    -webkit-text-stroke: 1px rgba(0, 251, 255, 0.05);
    pointer-events: none;
    z-index: 0;
    user-select: none;
}

.legal-hero,
.reviews-hero {
    position: relative;
    text-align: center;
    padding: 24px 20px 28px;
    margin-bottom: 22px;
}

.legal-hero .section-badge,
.reviews-hero .section-badge {
    margin-bottom: 14px;
}

.legal-hero h1,
.reviews-hero h1 {
    margin: 0 0 10px;
    font-size: clamp(1.35rem, 2.6vw, 1.85rem);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.04em;
    color: #eef5ff;
}

.legal-hero h1 .highlight,
.reviews-hero h1 .highlight {
    color: var(--heading-accent);
}

.legal-hero-lead,
.reviews-hero-lead {
    max-width: 520px;
    margin: 0 auto;
    color: var(--muted);
    font-size: 0.88rem;
    line-height: 1.6;
}

.legal-stage {
    display: grid;
    grid-template-columns: 220px minmax(0, 1fr);
    gap: 24px;
    align-items: start;
}

.legal-rail {
    position: sticky;
    top: calc(var(--site-bar-h) + 20px);
    padding: 18px 16px;
    border-radius: 18px;
    border: 1px solid var(--accent-border);
    background: rgba(8, 13, 34, 0.82);
    box-shadow: var(--shadow);
}

.legal-rail-title {
    margin: 0 0 12px;
    color: var(--accent-strong);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.legal-rail-nav {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 6px;
}

.legal-rail-nav a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 9px 10px;
    border-radius: 10px;
    color: #a3b9ff;
    font-size: 0.84rem;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.2s ease, color 0.2s ease;
}

.legal-rail-nav a:hover,
.legal-rail-nav a.is-active {
    background: rgba(0, 251, 255, 0.12);
    color: #eef5ff;
}

.legal-rail-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: rgba(0, 251, 255, 0.35);
}

.legal-rail-nav a.is-active .legal-rail-dot {
    background: var(--accent-strong);
    box-shadow: 0 0 10px rgba(0, 251, 255, 0.55);
}

.legal-list {
    display: grid;
    gap: 14px;
}

.legal-card {
    padding: 20px 22px;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.vny-panel {
    border-radius: 18px;
    border: 1px solid var(--accent-border);
    background: rgba(6, 12, 32, 0.82);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.18);
}

.legal-card.vny-panel {
    background: rgba(6, 12, 32, 0.82);
}

.legal-card:hover {
    border-color: rgba(0, 251, 255, 0.26);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.2);
}

.legal-card-head {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
}

.legal-card-num {
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    color: var(--accent-strong);
}

.legal-card-icon {
    display: grid;
    place-items: center;
    width: 40px;
    height: 40px;
    border-radius: 12px;
    border: 1px solid rgba(0, 251, 255, 0.2);
    background: rgba(0, 251, 255, 0.1);
    color: var(--accent-strong);
}

.legal-card-icon svg {
    width: 18px;
    height: 18px;
}

.legal-card-head h2 {
    margin: 0;
    font-size: 1.02rem;
    font-weight: 700;
}

.legal-rules {
    margin: 0;
    padding: 0 0 0 18px;
    display: grid;
    gap: 10px;
    color: #a3b9ff;
    font-size: 0.92rem;
    line-height: 1.65;
}

.legal-rules li::marker {
    color: var(--accent-strong);
}

/* ── Reviews page ── */

.reviews-stats {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
    margin-top: 22px;
}

.reviews-stat {
    min-width: 130px;
    padding: 14px 18px;
    text-align: center;
}

.reviews-stat.vny-panel {
    background: rgba(6, 12, 32, 0.82);
}

.reviews-stat strong {
    display: block;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--heading-accent);
    line-height: 1.1;
}

.reviews-stat span {
    display: block;
    margin-top: 4px;
    color: #8ea8ff;
    font-size: 0.76rem;
    font-weight: 600;
}

.reviews-spotlight {
    position: relative;
    margin-bottom: 24px;
    padding: 28px 26px;
    overflow: hidden;
}

.reviews-spotlight.vny-panel {
    background: rgba(6, 12, 32, 0.82);
}

.reviews-spotlight-label {
    position: relative;
    display: inline-block;
    margin-bottom: 10px;
    color: var(--accent-strong);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.reviews-spotlight-stars {
    position: relative;
    margin-bottom: 12px;
    color: #fcd34d;
    font-size: 1.1rem;
    letter-spacing: 0.12em;
}

.reviews-spotlight-text {
    position: relative;
    margin: 0 0 16px;
    color: #eef5ff;
    font-size: clamp(1.05rem, 2vw, 1.25rem);
    font-weight: 600;
    line-height: 1.55;
}

.reviews-spotlight-meta {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    gap: 12px 18px;
    color: #8ea8ff;
    font-size: 0.84rem;
    font-weight: 600;
}

.reviews-toolbar {
    display: flex;
    justify-content: center;
    margin-bottom: 18px;
}

.reviews-filter {
    display: inline-flex;
    flex-wrap: wrap;
    gap: 8px;
    padding: 6px;
    border-radius: 999px;
    border: 1px solid var(--accent-border);
    background: rgba(8, 13, 34, 0.72);
}

.reviews-filter button {
    border: none;
    background: transparent;
    color: #a3b9ff;
    font: inherit;
    font-size: 0.82rem;
    font-weight: 700;
    padding: 8px 14px;
    border-radius: 999px;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease;
}

.reviews-filter button.is-active,
.reviews-filter button:hover {
    background: rgba(0, 251, 255, 0.16);
    color: #ffffff;
}

.reviews-status {
    text-align: center;
    color: #8ea8ff;
    font-size: 0.9rem;
    margin-bottom: 18px;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 14px;
}

.review-tile {
    padding: 18px;
    transition: border-color 0.3s ease, transform 0.3s var(--hover-ease);
}

.review-tile.vny-panel {
    background: rgba(6, 12, 32, 0.82);
}

.review-tile.vny-panel:hover {
    border-color: rgba(0, 251, 255, 0.28);
    transform: translateY(-3px);
}

.review-tile-top {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 12px;
    align-items: center;
    margin-bottom: 12px;
}

.review-tile-avatar {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    background: linear-gradient(145deg, rgba(0, 251, 255, 0.22), rgba(0, 251, 255, 0.08));
    color: #eef5ff;
    font-weight: 800;
}

.review-tile-meta strong {
    display: block;
    font-size: 0.88rem;
    color: #eef5ff;
}

.review-tile-meta span {
    display: block;
    margin-top: 2px;
    color: #8ea8ff;
    font-size: 0.76rem;
}

.review-tile-stars {
    color: #fcd34d;
    font-size: 0.82rem;
    letter-spacing: 0.06em;
}

.review-tile-text {
    margin: 0;
    color: #a3b9ff;
    font-size: 0.9rem;
    line-height: 1.6;
}

@media (max-width: 900px) {
    .legal-stage {
        grid-template-columns: 1fr;
    }

    .legal-rail {
        position: static;
    }

    .legal-rail-nav {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

/* ── Status page ── */

.status-shell {
    position: relative;
    z-index: 1;
    flex: 1;
    max-width: 1180px;
    margin: 0 auto;
    width: 100%;
    padding: var(--content-top) 24px 80px;
}

.status-watermark {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -52%);
    font-size: clamp(5rem, 14vw, 11rem);
    font-weight: 900;
    letter-spacing: 0.2em;
    color: transparent;
    -webkit-text-stroke: 1px rgba(0, 251, 255, 0.05);
    pointer-events: none;
    z-index: 0;
}

.status-hero {
    text-align: center;
    padding: 24px 20px 28px;
    margin-bottom: 22px;
}

.status-hero .section-badge {
    margin-bottom: 14px;
}

.status-hero h1 {
    margin: 0 0 10px;
    font-size: clamp(1.35rem, 2.6vw, 1.85rem);
    font-weight: 700;
    letter-spacing: -0.04em;
    color: var(--text);
}

.status-hero h1 .highlight {
    color: var(--heading-accent);
}

.status-hero-lead {
    max-width: 520px;
    margin: 0 auto;
    color: var(--muted);
    font-size: 0.88rem;
    line-height: 1.6;
}

.status-overview {
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) auto;
    gap: 24px;
    align-items: center;
    padding: 24px;
    margin-bottom: 22px;
}

.status-overview-heading {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
}

.status-live-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--status-green-strong);
    box-shadow: 0 0 14px var(--status-green-glow);
    animation: footerStatusPulse 2.4s ease-in-out infinite;
}

.status-overview-copy h2 {
    margin: 0;
    font-size: 1.35rem;
    font-weight: 700;
}

.status-overview-copy p {
    margin: 0 0 18px;
    color: var(--accent-soft);
    font-size: 0.88rem;
    line-height: 1.55;
}

.status-overview-stats {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
    margin-bottom: 16px;
}

.status-overview-stats div {
    padding: 12px 14px;
    border-radius: 14px;
    border: 1px solid rgba(0, 251, 255, 0.12);
    background: rgba(4, 8, 22, 0.55);
}

.status-overview-stats strong {
    display: block;
    color: #eef5ff;
    font-size: 1.1rem;
}

.status-overview-stats span {
    display: block;
    margin-top: 4px;
    color: #8ea8ff;
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.status-bar {
    display: flex;
    gap: 4px;
    height: 8px;
    border-radius: 999px;
    overflow: hidden;
    background: rgba(4, 8, 22, 0.65);
}

.status-bar-segment {
    flex: 1;
    min-width: 8px;
    border-radius: 999px;
}

.status-bar-segment--operational { background: linear-gradient(90deg, #34d399, #6ee7b7); }
.status-bar-segment--maintenance { background: linear-gradient(90deg, #fbbf24, #f59e0b); }
.status-bar-segment--risk { background: linear-gradient(90deg, #a78bfa, #c084fc); }

.status-ring-wrap {
    position: relative;
    width: 140px;
    height: 140px;
}

.status-ring {
    width: 100%;
    height: 100%;
}

.status-ring-label {
    position: absolute;
    inset: 0;
    display: grid;
    place-content: center;
    text-align: center;
}

.status-ring-label strong {
    font-size: 1.5rem;
    color: var(--heading-accent);
}

.status-ring-label span {
    color: #8ea8ff;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.status-controls {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    margin-bottom: 18px;
}

.status-filter {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.status-filter button {
    border: 1px solid var(--accent-border);
    background: rgba(6, 12, 32, 0.82);
    color: #a3b9ff;
    font: inherit;
    font-size: 0.8rem;
    font-weight: 700;
    padding: 9px 14px;
    border-radius: 999px;
    cursor: pointer;
    transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.status-filter button.is-active,
.status-filter button:hover {
    border-color: rgba(0, 251, 255, 0.32);
    background: rgba(0, 251, 255, 0.12);
    color: #ffffff;
}

.status-filter button[data-filter="operational"].is-active,
.status-filter button[data-filter="operational"]:hover {
    border-color: rgba(52, 211, 153, 0.32);
    background: rgba(34, 197, 94, 0.12);
    color: var(--status-green);
}

.status-search {
    min-width: min(100%, 280px);
}

.status-message {
    text-align: center;
    color: #8ea8ff;
    font-size: 0.88rem;
    margin-bottom: 16px;
}

.status-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 14px;
}

.status-card {
    padding: 18px;
    display: grid;
    gap: 14px;
}

.status-card.vny-panel,
.status-card {
    border-radius: 18px;
    border: 1px solid var(--accent-border);
    background: rgba(6, 12, 32, 0.82);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.18);
    transition: border-color 0.3s ease, transform 0.3s var(--hover-ease);
}

.status-card:hover {
    border-color: rgba(0, 251, 255, 0.28);
    transform: translateY(-3px);
}

.status-card-top {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 12px;
    align-items: start;
}

.status-card-icon {
    width: 12px;
    height: 12px;
    margin-top: 6px;
    border-radius: 50%;
    box-shadow: 0 0 12px currentColor;
}

.status-card-icon--operational { background: var(--status-green-strong); color: var(--status-green-strong); }
.status-card-icon--maintenance { background: #fbbf24; color: #fbbf24; }
.status-card-icon--risk { background: #c084fc; color: #c084fc; }

.status-card-copy h2 {
    margin: 0 0 4px;
    font-size: 1rem;
    font-weight: 700;
}

.status-card-copy p {
    margin: 0;
    color: #8ea8ff;
    font-size: 0.82rem;
}

.status-card-badge {
    padding: 7px 10px;
    border-radius: 999px;
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    white-space: nowrap;
}

.status-card-badge--operational {
    color: var(--status-green);
    background: rgba(34, 197, 94, 0.14);
    border: 1px solid rgba(52, 211, 153, 0.32);
}

.status-card-badge--maintenance {
    color: #fcd34d;
    background: rgba(251, 191, 36, 0.12);
    border: 1px solid rgba(251, 191, 36, 0.28);
}

.status-card-badge--risk {
    color: #e9d5ff;
    background: rgba(167, 139, 250, 0.14);
    border: 1px solid rgba(192, 132, 252, 0.32);
    text-transform: none;
    letter-spacing: 0.02em;
    font-size: 0.64rem;
}

.status-product-link {
    color: var(--accent-strong);
    font-weight: 700;
    text-decoration: none;
    position: relative;
    display: inline-flex;
    align-items: center;
    min-width: 92px;
    justify-content: center;
}

.status-product-link:hover {
    color: #ffffff;
}

.status-product-link.is-loading {
    pointer-events: none;
    color: transparent;
}

.status-product-link.is-loading::after {
    content: "";
    position: absolute;
    width: 14px;
    height: 14px;
    border: 2px solid rgba(255, 255, 255, 0.28);
    border-top-color: #ffffff;
    border-radius: 50%;
    animation: catalog-btn-spin 0.7s linear infinite;
}

.status-message.is-error {
    color: #fca5a5;
}

.status-card-foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding-top: 12px;
    border-top: 1px solid rgba(0, 251, 255, 0.1);
    color: #7a94cc;
    font-size: 0.76rem;
}

.status-card-foot a:not(.status-product-link) {
    color: var(--accent-strong);
    font-weight: 700;
    text-decoration: none;
}

.status-card-foot a:not(.status-product-link):hover {
    color: #ffffff;
}

.status-empty {
    grid-column: 1 / -1;
    text-align: center;
    color: #8ea8ff;
    padding: 32px 16px;
}

.status-footnote {
    margin-top: 24px;
    text-align: center;
    color: #7a94cc;
    font-size: 0.8rem;
}

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

    .status-overview-stats {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .status-ring-wrap {
        margin: 0 auto;
    }
}

@media (max-width: 1100px) {
    .site-nav {
        gap: 12px;
    }

    .site-nav a {
        font-size: 0.8rem;
        padding: 6px 8px;
    }
}

.site-nav a {
    position: relative;
}

.site-nav a.is-loading,
.btn.is-loading,
.btn-secondary.is-loading,
.dashboard-submit.is-loading {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    color: transparent !important;
}

.site-nav a.is-loading span,
.btn.is-loading span,
.btn-secondary.is-loading span,
.dashboard-submit.is-loading span {
    opacity: 0;
}

.site-nav a.is-loading::after,
.btn.is-loading::after,
.btn-secondary.is-loading::after,
.dashboard-submit.is-loading::after {
    content: "";
    position: absolute;
    inset: 0;
    margin: auto;
    width: 16px;
    height: 16px;
    border: 2px solid rgba(255, 255, 255, 0.28);
    border-top-color: #ffffff;
    border-radius: 50%;
    animation: catalog-btn-spin 0.7s linear infinite;
}

.btn-secondary.is-loading::after {
    border-color: rgba(0, 251, 255, 0.22);
    border-top-color: var(--accent-strong);
}

.dashboard-submit {
    position: relative;
}

.reviews-status:empty {
    display: none;
}

/* ── Dashboard page ── */

.dashboard-shell {
    position: relative;
    z-index: 1;
    flex: 1;
    max-width: 1080px;
    margin: 0 auto;
    width: 100%;
    padding: var(--content-top) 24px 80px;
}

.dashboard-watermark {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -52%);
    font-size: clamp(5rem, 14vw, 11rem);
    font-weight: 900;
    letter-spacing: 0.18em;
    color: transparent;
    -webkit-text-stroke: 1px rgba(0, 251, 255, 0.05);
    pointer-events: none;
    z-index: 0;
}

.dashboard-hero {
    text-align: center;
    padding: 24px 20px 28px;
    margin-bottom: 22px;
}

.dashboard-hero h1 {
    margin: 0 0 10px;
    font-size: clamp(1.35rem, 2.6vw, 1.85rem);
    font-weight: 700;
    letter-spacing: -0.04em;
}

.dashboard-hero h1 .highlight {
    color: var(--heading-accent);
}

.dashboard-hero-lead {
    max-width: 560px;
    margin: 0 auto;
    color: var(--muted);
    font-size: 0.88rem;
    line-height: 1.6;
}

.dashboard-lookup {
    padding: 24px;
    margin-bottom: 24px;
}

.dashboard-form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.dashboard-field {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.dashboard-field span {
    color: #8ea8ff;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.dashboard-field input {
    width: 100%;
    border: 1px solid rgba(0, 251, 255, 0.16);
    background: rgba(8, 14, 32, 0.72);
    color: #eef5ff;
    border-radius: 14px;
    padding: 14px 16px;
    font: inherit;
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.dashboard-field input:focus {
    border-color: rgba(0, 251, 255, 0.42);
    box-shadow: 0 0 0 3px rgba(0, 251, 255, 0.08);
}

.dashboard-form-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 18px;
}

.dashboard-form-note {
    min-height: 1.2rem;
    margin: 14px 0 0;
    color: #fca5a5;
    font-size: 0.82rem;
}

.dashboard-results {
    margin-top: 28px;
}

.dashboard-results[hidden] {
    display: none !important;
}

.dashboard-results--enter {
    animation: dashboardResultsIn 0.82s cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes dashboardResultsIn {
    from {
        opacity: 0;
        transform: translate3d(0, 28px, 0);
        filter: blur(6px);
    }

    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
        filter: blur(0);
    }
}

.dashboard-results-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 18px;
}

.dashboard-results-label {
    display: block;
    color: #7f9fd8;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 6px;
}

.dashboard-results-head h2 {
    margin: 0;
    font-size: clamp(0.92rem, 2vw, 1.15rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    word-break: break-all;
    line-height: 1.35;
    max-width: min(100%, 720px);
}

.dashboard-status-pill {
    padding: 8px 12px;
    border-radius: 999px;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    border: 1px solid transparent;
}

.dashboard-status-pill--success {
    color: #86efac;
    background: rgba(34, 197, 94, 0.14);
    border-color: rgba(52, 211, 153, 0.28);
}

.dashboard-status-pill--pending {
    color: #fcd34d;
    background: rgba(251, 191, 36, 0.12);
    border-color: rgba(251, 191, 36, 0.28);
}

.dashboard-status-pill--danger {
    color: #fca5a5;
    background: rgba(248, 113, 113, 0.12);
    border-color: rgba(248, 113, 113, 0.28);
}

.dashboard-status-pill--neutral {
    color: #c4d4ff;
    background: rgba(0, 251, 255, 0.1);
    border-color: rgba(0, 251, 255, 0.22);
}

.dashboard-results-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.dashboard-card {
    padding: 20px;
}

.dashboard-card--wide {
    grid-column: 1 / -1;
}

.dashboard-card-label {
    display: block;
    color: #7f9fd8;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.dashboard-kv-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.dashboard-kv {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(0, 251, 255, 0.08);
}

.dashboard-kv:last-child {
    padding-bottom: 0;
    border-bottom: none;
}

.dashboard-kv span {
    color: #8ea8ff;
    font-size: 0.8rem;
}

.dashboard-kv strong {
    color: #eef5ff;
    font-size: 0.84rem;
    text-align: right;
    word-break: break-word;
}

.dashboard-items {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.dashboard-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 14px 16px;
    border-radius: 14px;
    background: rgba(8, 14, 32, 0.55);
    border: 1px solid rgba(0, 251, 255, 0.1);
}

.dashboard-item-copy strong {
    display: block;
    color: #eef5ff;
    margin-bottom: 4px;
}

.dashboard-item-copy span {
    color: #8ea8ff;
    font-size: 0.8rem;
}

.dashboard-item-meta {
    text-align: right;
    color: #8ea8ff;
    font-size: 0.78rem;
}

.dashboard-item-meta strong {
    display: block;
    color: var(--accent-strong);
    margin-top: 4px;
}

.dashboard-delivered {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.dashboard-delivered-item {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 14px 16px;
    border-radius: 14px;
    background: rgba(8, 14, 32, 0.55);
    border: 1px solid rgba(0, 251, 255, 0.1);
}

.dashboard-delivered-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.dashboard-delivered-label {
    color: #8ea8ff;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.dashboard-delivered-code {
    display: block;
    width: 100%;
    color: #eef5ff;
    font-family: "Consolas", "SFMono-Regular", monospace;
    font-size: 0.95rem;
    line-height: 1.45;
    word-break: break-all;
    padding: 12px 14px;
    border-radius: 12px;
    background: rgba(4, 10, 24, 0.72);
    border: 1px solid var(--accent-border);
}

.dashboard-delivered-meta {
    color: #7f9fd8;
    font-size: 0.78rem;
}

.dashboard-copy-btn {
    flex-shrink: 0;
    border: 1px solid rgba(0, 251, 255, 0.24);
    background: rgba(0, 251, 255, 0.12);
    color: #b8dcff;
    border-radius: 999px;
    padding: 7px 12px;
    font: inherit;
    font-size: 0.72rem;
    font-weight: 700;
    cursor: pointer;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.dashboard-copy-btn:hover {
    background: rgba(0, 251, 255, 0.22);
    color: #ffffff;
}

.dashboard-timeline {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.dashboard-timeline-row {
    display: grid;
    grid-template-columns: 12px minmax(0, 1fr);
    gap: 12px;
    align-items: start;
}

.dashboard-timeline-dot {
    width: 10px;
    height: 10px;
    margin-top: 5px;
    border-radius: 50%;
    background: var(--accent-strong);
    box-shadow: 0 0 0 4px rgba(0, 251, 255, 0.12);
}

.dashboard-timeline-dot--error,
.dashboard-timeline-dot--danger {
    background: #f87171;
    box-shadow: 0 0 0 4px rgba(248, 113, 113, 0.12);
}

.dashboard-timeline-copy strong {
    display: block;
    color: #eef5ff;
    margin-bottom: 4px;
}

.dashboard-timeline-copy span {
    color: #8ea8ff;
    font-size: 0.78rem;
}

.dashboard-empty {
    margin: 0;
    color: #8ea8ff;
    font-size: 0.84rem;
}

@media (max-width: 760px) {
    .dashboard-form-grid,
    .dashboard-results-grid {
        grid-template-columns: 1fr;
    }

    .dashboard-results-head {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* ── Hero video frame + live pill (kept from v2 trial) ── */
.hero-v2-eyebrow {
    margin-bottom: 24px;
}

.hero-v2-pill.hero-status {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 0;
    padding: 10px 16px;
    font-size: 0.84rem;
    border-color: rgba(0, 251, 255, 0.14);
    background: rgba(8, 14, 34, 0.72);
    box-shadow: none;
}

.hero-v2-pill.hero-status::before {
    display: none;
}

.hero-v2-live-dot {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: var(--status-green-strong);
    box-shadow: 0 0 10px var(--status-green-glow);
    flex-shrink: 0;
}

.hero-visual .hero-v2-frame {
    position: relative;
    width: min(100%, 1120px);
    max-width: 1120px;
    aspect-ratio: 16 / 9;
    border-radius: 28px;
    overflow: hidden;
    border: 1px solid rgba(0, 251, 255, 0.18);
    background: #050818;
    box-shadow: 0 28px 70px rgba(0, 0, 0, 0.38);
}

.hero-visual .hero-v2-frame .hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ── Home products showcase ── */
.products-showcase {
    margin-top: 56px;
    padding-bottom: 36px;
}

.products-kicker {
    display: inline-flex;
    padding: 8px 14px;
    border-radius: 999px;
    border: 1px solid rgba(0, 251, 255, 0.16);
    background: rgba(0, 251, 255, 0.06);
    color: var(--accent);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.products-showcase-stage {
    position: relative;
    margin-top: 8px;
}

.products-scroll--showcase {
    -webkit-mask-image: linear-gradient(
        90deg,
        transparent 0%,
        rgba(0, 0, 0, 0.35) 6%,
        #000 14%,
        #000 86%,
        rgba(0, 0, 0, 0.35) 94%,
        transparent 100%
    );
    mask-image: linear-gradient(
        90deg,
        transparent 0%,
        rgba(0, 0, 0, 0.35) 6%,
        #000 14%,
        #000 86%,
        rgba(0, 0, 0, 0.35) 94%,
        transparent 100%
    );
}

@keyframes showcase-marquee {
    0% {
        transform: translate3d(0, 0, 0);
    }

    100% {
        transform: translate3d(var(--showcase-loop-offset, -50%), 0, 0);
    }
}

.products-track--showcase {
    height: 430px;
    padding-top: 24px;
    gap: 20px;
    animation: none;
}

.products-track--showcase.is-marquee-running {
    animation: showcase-marquee var(--showcase-duration, 45s) linear infinite;
    animation-play-state: running;
}

.products-showcase-stage:hover .products-track--showcase.is-marquee-running {
    animation-play-state: paused;
}

.showcase-card {
    position: relative;
    flex: 0 0 260px;
    height: 380px;
    border-radius: 22px;
    overflow: hidden;
    border: 1px solid rgba(0, 251, 255, 0.16);
    background: rgba(8, 13, 34, 0.94) center/cover no-repeat;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.28);
    text-decoration: none;
    color: inherit;
    transition: transform 0.28s var(--hover-ease), border-color 0.28s ease, box-shadow 0.28s ease;
}

.showcase-card:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: rgba(0, 251, 255, 0.38);
    box-shadow: 0 28px 60px rgba(0, 0, 0, 0.34);
}

.showcase-card-shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 0%, transparent 72%, rgba(0, 0, 0, 0.5) 100%);
    pointer-events: none;
}

.showcase-card-corner {
    position: absolute;
    top: 14px;
    left: 14px;
    width: 34px;
    height: 34px;
    border-top: 2px solid var(--accent);
    border-left: 2px solid var(--accent);
    border-radius: 6px 0 0 0;
    opacity: 0.85;
    pointer-events: none;
    z-index: 1;
}

.showcase-card-status {
    position: absolute;
    left: 50%;
    bottom: 16px;
    z-index: 2;
    transform: translateX(-50%);
    display: flex;
    justify-content: center;
}

.showcase-card .status-pill--overlay {
    position: static;
    transform: none;
}

.products-showcase-cta {
    display: flex;
    justify-content: center;
    margin-top: 28px;
}

.products-all-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 180px;
    padding: 14px 28px;
    border-radius: 999px;
    border: 1px solid rgba(0, 251, 255, 0.22);
    background: rgba(8, 13, 34, 0.92);
    color: #eef5ff;
    font-weight: 700;
    font-size: 0.92rem;
    text-decoration: none;
    transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.products-all-btn:hover {
    transform: translateY(-2px);
    border-color: rgba(0, 251, 255, 0.42);
    background: rgba(10, 18, 42, 0.98);
}

.products-showcase-loading,
.products-showcase-empty {
    flex: 1 0 auto;
    width: 100%;
    text-align: center;
    color: var(--muted);
    padding: 48px 20px;
}

@media (max-width: 980px) {
    .hero-visual .hero-v2-frame {
        border-radius: 22px;
    }

    .products-track--showcase {
        height: 390px;
    }

    .showcase-card {
        flex-basis: 220px;
        height: 340px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .products-track--showcase.is-marquee-running {
        animation: none !important;
    }
}