/* Customer storefront (public) */
.store-body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background:
        radial-gradient(ellipse 80% 50% at 10% -10%, rgba(45, 212, 168, 0.12), transparent 55%),
        radial-gradient(ellipse 60% 40% at 90% 0%, rgba(56, 120, 180, 0.14), transparent 50%),
        linear-gradient(165deg, #0c1118 0%, #152032 42%, #0e141c 100%);
    color: #e8eef5;
    font-family: "Figtree", ui-sans-serif, system-ui, sans-serif;
}

.store-main--wide {
    width: 100%;
    padding: 0;
}

.store-nav {
    background: rgba(10, 14, 20, 0.85);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 0.65rem;
    padding-bottom: 0.65rem;
}

.store-nav .navbar-brand,
.store-nav .nav-link {
    color: #e8eef5 !important;
}

.store-nav .nav-link:hover {
    color: #7dd3c0 !important;
}

.store-brand {
    text-decoration: none !important;
    line-height: 1;
}

.store-brand:hover .store-brand-wordmark {
    filter: brightness(1.15);
}

.store-brand-logo {
    height: 56px;
    width: auto;
    margin-right: 0;
    border-radius: 0.45rem;
    box-shadow: 0 0 0 1px rgba(45, 212, 168, 0.25);
}

.store-brand-wordmark {
    font-family: "Orbitron", ui-sans-serif, system-ui, sans-serif;
    font-weight: 700;
    font-size: 1.55rem;
    letter-spacing: 0.06em;
    text-transform: lowercase;
    color: #f2f7fc;
    background: linear-gradient(120deg, #f2f7fc 0%, #7dd3c0 55%, #2dd4a8 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: filter 0.15s ease;
}

@media (min-width: 992px) {
    .store-brand-logo {
        height: 64px;
    }

    .store-brand-wordmark {
        font-size: 1.85rem;
        letter-spacing: 0.08em;
    }
}

.store-nav .navbar-toggler {
    border-color: rgba(255, 255, 255, 0.3);
}

.store-nav .navbar-toggler-icon {
    filter: invert(1);
}

.btn-accent {
    background: #2dd4a8;
    border-color: #2dd4a8;
    color: #062218;
    font-weight: 600;
}

.btn-accent:hover {
    background: #25b890;
    border-color: #25b890;
    color: #062218;
}

.store-hero h1 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    letter-spacing: -0.02em;
}

.store-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0.75rem;
    padding: 1.25rem;
}

.store-footer {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.store-footer a {
    color: #9fb3c8;
    text-decoration: none;
}

.store-footer a:hover {
    color: #7dd3c0;
}

.status-undetected { color: #2dd4a8; }
.status-updating { color: #f0c14a; }
.status-offline { color: #f07178; }

/* Catalog grid — larger modern cover cards */
.cheat-catalog-hero {
    padding-bottom: 0.25rem;
}

.cheat-catalog-title {
    font-family: "Orbitron", ui-sans-serif, system-ui, sans-serif;
    font-weight: 700;
    font-size: clamp(1.85rem, 3.5vw, 2.6rem);
    letter-spacing: 0.04em;
    margin-bottom: 0.35rem;
}

.cheat-catalog-sub {
    font-size: 1.05rem;
}

.cheat-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.75rem;
}

@media (min-width: 1200px) {
    .cheat-grid {
        grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
        gap: 2rem;
    }
}

.cheat-tile {
    display: flex;
    flex-direction: column;
    text-decoration: none !important;
    color: inherit;
    background: linear-gradient(180deg, rgba(18, 26, 36, 0.95) 0%, rgba(8, 12, 18, 0.98) 100%);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 1rem;
    overflow: hidden;
    min-height: 100%;
    transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.cheat-tile:hover {
    transform: translateY(-6px);
    border-color: rgba(45, 212, 168, 0.55);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.45);
}

.cheat-tile-media {
    position: relative;
    aspect-ratio: 16 / 11;
    background: #070b10;
    overflow: hidden;
}

.cheat-tile-media img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    display: block;
    background: radial-gradient(ellipse at center, #1c2838 0%, #070b10 72%);
    transition: transform .35s ease;
}

.cheat-tile:hover .cheat-tile-media img {
    transform: scale(1.03);
}

.cheat-tile-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3.25rem;
    font-weight: 700;
    color: #2dd4a8;
    background: linear-gradient(145deg, rgba(45, 212, 168, 0.16), rgba(0, 0, 0, 0.6));
}

.cheat-tile-status {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    padding: 0.35rem 0.6rem;
    border-radius: 0.4rem;
    background: rgba(0, 0, 0, 0.78);
    border: 1px solid rgba(255, 255, 255, 0.14);
    backdrop-filter: blur(6px);
}

.cheat-tile-body {
    padding: 1.15rem 1.25rem 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
    flex: 1;
}

.cheat-tile-title {
    font-size: 1.35rem;
    font-weight: 700;
    margin: 0;
    color: #f2f7fc;
    line-height: 1.25;
}

.cheat-tile-desc {
    margin: 0;
    font-size: 0.98rem;
    color: #b0c2d4;
    line-height: 1.45;
}

.cheat-tile-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
}

.cheat-chip {
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 600;
    color: #d7e6f4;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 0.4rem;
    padding: 0.28rem 0.55rem;
}

.cheat-tile-footer {
    margin-top: auto;
    padding-top: 0.35rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.75rem;
}

.cheat-tile-price {
    font-size: 1.1rem;
    font-weight: 700;
    color: #2dd4a8;
}

.cheat-tile-price--muted {
    color: #9fb3c8;
    font-weight: 500;
}

.cheat-tile-cta {
    font-size: 0.9rem;
    font-weight: 650;
    color: #9fb3c8;
}

.cheat-tile:hover .cheat-tile-cta {
    color: #7dd3c0;
}

/* Detail page */
.cheat-section-title {
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #9fb3c8;
    margin: 0 0 0.85rem;
}

.cheat-status-pill {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    padding: 0.3rem 0.55rem;
    border-radius: 0.4rem;
    background: rgba(0, 0, 0, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.cheat-overview {
    font-size: 1.05rem;
    line-height: 1.55;
    color: #c5d4e3;
}

.cheat-feature-list {
    margin: 0;
    padding-left: 1.15rem;
    color: #d7e6f4;
    font-size: 1rem;
    line-height: 1.55;
}

.cheat-feature-list li + li {
    margin-top: 0.4rem;
}

.cheat-detail-hero {
    background: #0a0e14;
}

.cheat-detail-hero-img {
    width: 100%;
    max-height: 420px;
    object-fit: contain;
    object-position: center;
    display: block;
    background: radial-gradient(ellipse at center, #1a2430 0%, #0a0e14 75%);
}

.cheat-detail-hero-placeholder {
    min-height: 220px;
}

.cheat-shot-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 0.75rem;
}

.cheat-shot {
    display: block;
    border-radius: 0.55rem;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.12);
    aspect-ratio: 16 / 10;
    background: #0a0e14;
}

.cheat-shot img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .2s ease;
}

.cheat-shot:hover img {
    transform: scale(1.04);
}

.cheat-features {
    white-space: pre-wrap;
    font-family: inherit;
    font-size: 0.95rem;
    color: #c5d4e3;
    margin: 0;
}

.cheat-buy {
    top: 5rem;
}

.cheat-plan-list {
    margin: 0;
}

.cheat-plan-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.75rem;
    padding: 0.9rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.cheat-plan-row:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.cheat-plan-actions {
    display: flex;
    align-items: center;
    gap: 0.65rem;
}

.cheat-plan-price {
    font-weight: 700;
    font-size: 1.05rem;
    color: #e8eef5;
}

.text-accent { color: #2dd4a8 !important; }

.btn-discord {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    background: #5865F2;
    border: 1px solid #5865F2;
    color: #fff;
    font-weight: 650;
}

.btn-discord:hover {
    background: #4752c4;
    border-color: #4752c4;
    color: #fff;
}

.btn-discord-icon {
    width: 1.25rem;
    height: 1.25rem;
    flex-shrink: 0;
}

.auth-divider {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin: 0 0 1rem;
    color: #7a8fa3;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.auth-divider::before,
.auth-divider::after {
    content: "";
    flex: 1;
    height: 1px;
    background: rgba(255, 255, 255, 0.12);
}

.store-body .form-control,
.store-body .form-select {
    background: rgba(0, 0, 0, 0.35);
    border-color: rgba(255, 255, 255, 0.15);
    color: #e8eef5;
}

.store-body .form-control:focus,
.store-body .form-select:focus {
    background: rgba(0, 0, 0, 0.45);
    color: #e8eef5;
    border-color: #2dd4a8;
    box-shadow: 0 0 0 0.2rem rgba(45, 212, 168, 0.2);
}

.store-body .text-muted {
    color: #9fb3c8 !important;
}

/* Floating support chat widget */
.support-chat {
    position: fixed;
    right: 1rem;
    bottom: 1rem;
    z-index: 1080;
    font-size: 0.95rem;
}

.support-chat--page {
    position: static;
    z-index: auto;
    margin: 1rem 0 1.5rem;
    max-width: 520px;
}

.support-chat-toggle {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    border: none;
    border-radius: 999px;
    padding: 1rem 1.45rem;
    background: #2dd4a8;
    color: #062218;
    font-weight: 700;
    font-size: 1.1rem;
    line-height: 1.2;
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.4);
}

.support-chat-toggle-icon {
    width: 1.65rem;
    height: 1.65rem;
    flex-shrink: 0;
}

.support-chat-toggle:hover {
    filter: brightness(1.05);
}

.support-chat-panel {
    position: relative;
    width: min(380px, calc(100vw - 2rem));
    height: min(520px, calc(100vh - 7rem));
    min-width: 300px;
    min-height: 320px;
    max-width: min(720px, calc(100vw - 1.5rem));
    max-height: calc(100vh - 6rem);
    margin-bottom: 0.85rem;
    display: flex;
    flex-direction: column;
    background: #1a2430;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 0.85rem;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.45);
    overflow: hidden;
    color: #e8eef5;
}

.support-chat-panel--embed {
    width: 100%;
    height: min(560px, 70vh);
    max-width: 900px;
    margin-bottom: 0;
    box-shadow: none;
}

.support-chat-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
    padding: 0.85rem 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    background: #121920;
    color: #f2f7fc;
}

.support-chat-header strong {
    letter-spacing: 0.02em;
    color: #f2f7fc;
}

.support-chat-header-actions {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    flex-shrink: 0;
}

.support-chat-end-btn {
    background: transparent;
    border: 1px solid rgba(255, 120, 120, 0.55);
    color: #ffb4b4;
    font-size: 0.75rem;
    padding: 0.2rem 0.55rem;
}

.support-chat-end-btn:hover {
    background: rgba(255, 80, 80, 0.15);
    color: #ffd0d0;
}

.support-chat-close-btn {
    border: none;
    background: transparent;
    color: #c5d4e3;
    font-size: 1.5rem;
    line-height: 1;
    padding: 0 0.25rem;
}

.support-chat-status {
    padding: 0.5rem 1rem;
    font-size: 0.8rem;
    color: #b8c9da;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    background: #15202b;
}

.support-chat-messages {
    flex: 1;
    overflow-y: auto;
    padding: 0.85rem 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
    background: #1a2430;
}

.support-chat-msg {
    max-width: 92%;
    padding: 0.55rem 0.7rem;
    border-radius: 0.55rem;
    color: #e8eef5;
}

.support-chat-msg--customer {
    align-self: flex-end;
    background: rgba(45, 212, 168, 0.22);
    border: 1px solid rgba(45, 212, 168, 0.35);
}

.support-chat-msg--staff {
    align-self: flex-start;
    background: #243141;
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.support-chat-msg-who {
    font-size: 0.72rem;
    color: #b8c9da;
    margin-bottom: 0.2rem;
}

.support-chat-msg-body {
    white-space: pre-wrap;
    word-break: break-word;
    color: #eef4fa;
}

.support-chat-start,
.support-chat-compose {
    padding: 0.85rem 1rem 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
    background: #15202b;
}

.support-chat-field label {
    display: block;
    margin-bottom: 0.3rem;
    font-size: 0.85rem;
    font-weight: 600;
    color: #e8eef5;
}

.support-chat-optional {
    font-weight: 500;
    color: #9fb3c8;
}

.support-chat-panel .form-control,
.support-chat-panel .form-control:focus {
    background: #f4f7fb !important;
    color: #0f1720 !important;
    border-color: #9fb3c8 !important;
    caret-color: #0f1720;
}

.support-chat-panel .form-control::placeholder {
    color: #5a6f84 !important;
    opacity: 1;
}

.support-chat-panel .form-control:disabled {
    background: #d5dde6 !important;
    color: #4a5a6a !important;
}

.support-chat-compose {
    flex-direction: row;
    align-items: flex-end;
}

.support-chat-compose textarea {
    flex: 1;
    min-height: 2.75rem;
    max-height: 6.5rem;
    resize: vertical;
}

.support-chat-compose button {
    flex-shrink: 0;
}

.support-chat-resize {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 1.15rem;
    height: 1.15rem;
    cursor: nwse-resize;
    background:
        linear-gradient(135deg, transparent 55%, rgba(255, 255, 255, 0.35) 55%, rgba(255, 255, 255, 0.35) 65%, transparent 65%),
        linear-gradient(135deg, transparent 70%, rgba(255, 255, 255, 0.45) 70%, rgba(255, 255, 255, 0.45) 80%, transparent 80%);
    touch-action: none;
    z-index: 2;
}

/* Hide floating launcher on /support — page embed is primary there */
body:has(.support-chat--page) #store-support-chat {
    display: none !important;
}

/* —— Nav status pill —— */
.nav-status-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    margin-left: 0.65rem;
    padding: 0.35rem 0.75rem;
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 650;
    letter-spacing: 0.02em;
    text-decoration: none !important;
    border: 1px solid rgba(45, 212, 168, 0.35);
    background: rgba(45, 212, 168, 0.1);
    color: #9fe8d4 !important;
    white-space: nowrap;
    transition: border-color .15s ease, background .15s ease;
}

.nav-status-pill:hover {
    border-color: rgba(45, 212, 168, 0.6);
    background: rgba(45, 212, 168, 0.16);
    color: #c6f5e8 !important;
}

.nav-status-pill--warn {
    border-color: rgba(240, 193, 74, 0.4);
    background: rgba(240, 193, 74, 0.1);
    color: #f5d78a !important;
}

.nav-status-pill--down {
    border-color: rgba(240, 113, 120, 0.45);
    background: rgba(240, 113, 120, 0.12);
    color: #ffb0b5 !important;
}

.home-status-dot {
    width: 0.55rem;
    height: 0.55rem;
    border-radius: 50%;
    background: currentColor;
    box-shadow: 0 0 0 0 rgba(45, 212, 168, 0.55);
    animation: status-pulse 2.2s ease-out infinite;
    flex-shrink: 0;
}

.nav-status-pill--warn .home-status-dot,
.home-status-chip--warn .home-status-dot {
    animation: none;
}

.nav-status-pill--down .home-status-dot,
.home-status-chip--down .home-status-dot {
    animation: none;
}

@keyframes status-pulse {
    0% { box-shadow: 0 0 0 0 rgba(45, 212, 168, 0.5); }
    70% { box-shadow: 0 0 0 8px rgba(45, 212, 168, 0); }
    100% { box-shadow: 0 0 0 0 rgba(45, 212, 168, 0); }
}

/* —— Landing page —— */
.home-hero {
    position: relative;
    overflow: hidden;
    padding: clamp(2.5rem, 6vw, 4.5rem) 0 clamp(3rem, 7vw, 5rem);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    background:
        linear-gradient(120deg, rgba(8, 12, 18, 0.55) 0%, transparent 55%),
        url("/images/holdf0wn-logo.jpg") right 8% center / min(42vw, 420px) no-repeat;
}

.home-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, #0c1118 28%, rgba(12, 17, 24, 0.88) 52%, rgba(12, 17, 24, 0.55) 100%);
    pointer-events: none;
}

.home-hero-inner {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 2.5rem;
    align-items: center;
}

@media (min-width: 992px) {
    .home-hero-inner {
        grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.95fr);
        gap: 3rem;
    }

    .home-hero {
        background-image: none;
    }

    .home-hero::before {
        display: none;
    }
}

.home-kicker {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #7dd3c0;
    margin-bottom: 0.85rem;
}

.home-hero-title {
    font-family: "Syne", ui-sans-serif, system-ui, sans-serif;
    font-weight: 800;
    font-size: clamp(2.15rem, 5vw, 3.35rem);
    line-height: 1.08;
    letter-spacing: -0.03em;
    margin-bottom: 1rem;
    color: #f4f8fc;
}

.home-hero-brand {
    display: block;
    font-family: "Orbitron", ui-sans-serif, system-ui, sans-serif;
    font-weight: 700;
    font-size: 0.42em;
    letter-spacing: 0.12em;
    text-transform: lowercase;
    margin-bottom: 0.55rem;
    background: linear-gradient(120deg, #f2f7fc 0%, #7dd3c0 55%, #2dd4a8 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.home-hero-lead {
    font-size: 1.12rem;
    line-height: 1.55;
    color: #b0c2d4;
    max-width: 36rem;
    margin-bottom: 1.5rem;
}

.home-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 1.25rem;
}

.home-hero-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
    align-items: center;
}

.home-status-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.4rem 0.8rem;
    border-radius: 999px;
    font-size: 0.85rem;
    font-weight: 650;
    text-decoration: none !important;
    border: 1px solid rgba(45, 212, 168, 0.4);
    background: rgba(45, 212, 168, 0.12);
    color: #9fe8d4 !important;
}

.home-status-chip--warn {
    border-color: rgba(240, 193, 74, 0.45);
    background: rgba(240, 193, 74, 0.12);
    color: #f5d78a !important;
}

.home-status-chip--down {
    border-color: rgba(240, 113, 120, 0.45);
    background: rgba(240, 113, 120, 0.12);
    color: #ffb0b5 !important;
}

.home-meta-pill {
    font-size: 0.82rem;
    color: #9fb3c8;
    padding: 0.35rem 0.65rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.03);
}

.home-hero-mosaic {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    grid-template-rows: auto auto;
    gap: 0.85rem;
    animation: home-rise 0.7s ease-out both;
}

@keyframes home-rise {
    from { opacity: 0; transform: translateY(18px); }
    to { opacity: 1; transform: translateY(0); }
}

.home-mosaic-card {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: #070b10;
    min-height: 140px;
    text-decoration: none !important;
    color: inherit;
    transition: transform .2s ease, border-color .2s ease;
}

.home-mosaic-card:hover {
    transform: translateY(-4px);
    border-color: rgba(45, 212, 168, 0.45);
}

.home-mosaic-card--0 { grid-row: span 2; min-height: 300px; }
.home-mosaic-card--1 { min-height: 145px; }
.home-mosaic-card--2 { min-height: 145px; }
.home-mosaic-card--3 { grid-column: span 2; min-height: 130px; }

.home-mosaic-card img,
.home-mosaic-fallback {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    min-height: inherit;
}

.home-mosaic-fallback {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: #2dd4a8;
    background: linear-gradient(145deg, rgba(45, 212, 168, 0.18), rgba(0, 0, 0, 0.65));
}

.home-mosaic-label {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 0.75rem 0.9rem;
    display: flex;
    justify-content: space-between;
    gap: 0.5rem;
    align-items: baseline;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.85));
    font-size: 0.9rem;
}

.home-mosaic-label strong {
    color: #f2f7fc;
}

.home-mosaic-label em {
    font-style: normal;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.home-hero-brand-panel {
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 1.1rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.03);
    text-align: center;
    color: #9fb3c8;
}

.home-hero-logo {
    width: min(180px, 50%);
    border-radius: 0.75rem;
    margin-bottom: 1rem;
    box-shadow: 0 0 0 1px rgba(45, 212, 168, 0.25);
}

.home-section {
    padding: clamp(2.75rem, 5vw, 4.25rem) 0;
}

.home-section--catalog {
    background: rgba(0, 0, 0, 0.18);
    border-block: 1px solid rgba(255, 255, 255, 0.06);
}

.home-section-eyebrow {
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #7dd3c0;
    margin-bottom: 0.55rem;
}

.home-section-title {
    font-family: "Syne", ui-sans-serif, system-ui, sans-serif;
    font-weight: 750;
    font-size: clamp(1.65rem, 3vw, 2.25rem);
    letter-spacing: -0.02em;
    margin-bottom: 0.65rem;
    color: #f2f7fc;
}

.home-section-lead {
    color: #9fb3c8;
    font-size: 1.05rem;
    max-width: 40rem;
    margin-bottom: 1.75rem;
}

.home-section-head {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-end;
    gap: 1rem;
    margin-bottom: 1.75rem;
}

.home-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.home-step {
    padding: 1.35rem 1.25rem;
    border-radius: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.035);
    transition: border-color .2s ease, transform .2s ease;
}

.home-step:hover {
    border-color: rgba(45, 212, 168, 0.35);
    transform: translateY(-3px);
}

.home-step-num {
    display: block;
    font-family: "Orbitron", ui-sans-serif, system-ui, sans-serif;
    font-size: 0.85rem;
    letter-spacing: 0.08em;
    color: #2dd4a8;
    margin-bottom: 0.75rem;
}

.home-step h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 0.45rem;
}

.home-step p {
    margin: 0;
    color: #9fb3c8;
    font-size: 0.95rem;
    line-height: 1.45;
}

.home-catalog-grid {
    margin-top: 0.25rem;
}

.home-why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1rem;
}

.home-why-card {
    padding: 1.5rem 1.35rem;
    border-radius: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: linear-gradient(165deg, rgba(25, 36, 48, 0.9), rgba(10, 14, 20, 0.95));
}

.home-why-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 0.55rem;
}

.home-why-card p {
    margin: 0;
    color: #9fb3c8;
    line-height: 1.5;
}

.home-faq-wrap {
    display: grid;
    gap: 2rem;
}

@media (min-width: 900px) {
    .home-faq-wrap {
        grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
        align-items: start;
    }
}

.home-faq .accordion-item {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0.75rem !important;
    overflow: hidden;
    margin-bottom: 0.65rem;
}

.home-faq .accordion-button {
    background: rgba(255, 255, 255, 0.04);
    color: #e8eef5;
    font-weight: 650;
    box-shadow: none !important;
}

.home-faq .accordion-button:not(.collapsed) {
    background: rgba(45, 212, 168, 0.1);
    color: #f2f7fc;
}

.home-faq .accordion-button::after {
    filter: invert(1);
}

.home-faq .accordion-body {
    background: rgba(0, 0, 0, 0.25);
    color: #9fb3c8;
}

.home-faq .accordion-body a {
    color: #7dd3c0;
}

.home-cta-band {
    padding: clamp(2.5rem, 5vw, 3.75rem) 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    background:
        radial-gradient(ellipse 70% 80% at 50% 120%, rgba(45, 212, 168, 0.16), transparent 60%),
        rgba(0, 0, 0, 0.28);
}

.home-cta-inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem;
}

.home-cta-title {
    font-family: "Syne", ui-sans-serif, system-ui, sans-serif;
    font-weight: 750;
    font-size: clamp(1.5rem, 3vw, 2rem);
    margin-bottom: 0.4rem;
}

.home-cta-lead {
    margin: 0;
    color: #9fb3c8;
    max-width: 34rem;
}

.home-cta-inner .home-hero-actions {
    margin-bottom: 0;
}

/* —— Status page —— */
.status-hero {
    padding: clamp(2.25rem, 5vw, 3.5rem) 0 2rem;
}

.status-hero-title {
    font-family: "Syne", ui-sans-serif, system-ui, sans-serif;
    font-weight: 800;
    font-size: clamp(2rem, 4.5vw, 3rem);
    letter-spacing: -0.03em;
    margin-bottom: 0.85rem;
}

.status-hero-lead {
    color: #9fb3c8;
    font-size: 1.08rem;
    max-width: 40rem;
    margin-bottom: 1.35rem;
}

.status-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
}

.status-overall {
    border-block: 1px solid rgba(255, 255, 255, 0.08);
    padding: 1.25rem 0;
}

.status-board-ok {
    background: rgba(45, 212, 168, 0.08);
}

.status-board-warn {
    background: rgba(240, 193, 74, 0.08);
}

.status-board-down {
    background: rgba(240, 113, 120, 0.1);
}

.status-overall-inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.status-overall-main {
    display: flex;
    align-items: center;
    gap: 0.9rem;
}

.status-overall-dot {
    width: 0.9rem;
    height: 0.9rem;
    border-radius: 50%;
    flex-shrink: 0;
}

.status-board-ok .status-overall-dot {
    background: #2dd4a8;
    box-shadow: 0 0 0 0 rgba(45, 212, 168, 0.5);
    animation: status-pulse 2.2s ease-out infinite;
}

.status-board-warn .status-overall-dot { background: #f0c14a; }
.status-board-down .status-overall-dot { background: #f07178; }

.status-overall-label {
    font-family: "Syne", ui-sans-serif, system-ui, sans-serif;
    font-size: 1.35rem;
    font-weight: 750;
    margin: 0 0 0.15rem;
    color: #f2f7fc;
}

.status-overall-sub {
    margin: 0;
    color: #9fb3c8;
    font-size: 0.92rem;
}

.status-overall-checked {
    margin: 0;
    font-size: 0.82rem;
    color: #7a8fa3;
}

.status-live-head {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    margin-bottom: 1.25rem;
}

.status-live-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #2dd4a8;
    padding: 0.28rem 0.6rem;
    border-radius: 999px;
    border: 1px solid rgba(45, 212, 168, 0.35);
    background: rgba(45, 212, 168, 0.1);
}

.status-sys-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 0.85rem;
}

.status-sys-card {
    padding: 1.15rem 1.2rem;
    border-radius: 0.9rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.035);
}

.status-sys-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.45rem;
}

.status-sys-top h3 {
    font-size: 1.05rem;
    font-weight: 700;
    margin: 0;
}

.status-sys-card p {
    margin: 0;
    font-size: 0.88rem;
    color: #9fb3c8;
}

.status-sys-pill {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    padding: 0.22rem 0.5rem;
    border-radius: 0.35rem;
}

.status-sys-pill.is-live {
    color: #2dd4a8;
    background: rgba(45, 212, 168, 0.12);
    border: 1px solid rgba(45, 212, 168, 0.3);
}

.status-sys-pill.is-down {
    color: #f07178;
    background: rgba(240, 113, 120, 0.12);
    border: 1px solid rgba(240, 113, 120, 0.3);
}

.status-systems-note {
    margin: 1.15rem 0 0;
    color: #9fb3c8;
    font-size: 0.95rem;
}

.status-product-board {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
    margin-bottom: 1.5rem;
}

.status-product-row {
    display: grid;
    grid-template-columns: 64px minmax(0, 1fr) auto;
    gap: 1rem;
    align-items: center;
    padding: 0.75rem 1rem;
    border-radius: 0.85rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.03);
    text-decoration: none !important;
    color: inherit;
    transition: border-color .15s ease, background .15s ease;
}

.status-product-row:hover {
    border-color: rgba(45, 212, 168, 0.4);
    background: rgba(45, 212, 168, 0.05);
}

.status-product-media {
    width: 64px;
    height: 48px;
    border-radius: 0.45rem;
    overflow: hidden;
    background: #070b10;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: #2dd4a8;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.status-product-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.status-product-info {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    min-width: 0;
}

.status-product-info strong {
    color: #f2f7fc;
    font-size: 1.05rem;
}

.status-product-info span {
    color: #9fb3c8;
    font-size: 0.88rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.status-product-flag {
    font-size: 0.8rem;
    font-weight: 750;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    padding: 0.35rem 0.65rem;
    border-radius: 0.4rem;
    background: rgba(0, 0, 0, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.12);
    white-space: nowrap;
}

.status-legend {
    display: grid;
    gap: 0.45rem;
    padding: 1rem 1.15rem;
    border-radius: 0.85rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(0, 0, 0, 0.22);
    color: #9fb3c8;
    font-size: 0.92rem;
}

@media (max-width: 575.98px) {
    .status-product-row {
        grid-template-columns: 48px minmax(0, 1fr);
    }

    .status-product-flag {
        grid-column: 2;
        justify-self: start;
    }

    .home-mosaic-card--0 {
        min-height: 200px;
    }
}
