/* /Components/Layout/MainLayout.razor.rz.scp.css */
.app-wrapper[b-xqizjm7i9x] {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.main-content[b-xqizjm7i9x] {
    flex: 1;
}

/* ── Footer ─────────────────────────────────────────────── */
.site-footer[b-xqizjm7i9x] {
    background: var(--bg-primary);
    border-top: 1px solid var(--border-subtle);
    padding: 1.75rem 1.5rem;
}

.footer-inner[b-xqizjm7i9x] {
    max-width: 1180px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-brand[b-xqizjm7i9x] {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    color: var(--purple-bright);
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.footer-rune[b-xqizjm7i9x] {
    font-size: 1.1rem;
    text-shadow: 0 0 10px var(--glow-purple);
}

.footer-copy[b-xqizjm7i9x] {
    font-size: 0.8rem;
    color: var(--text-muted);
    letter-spacing: 0.02em;
}

#blazor-error-ui .reload[b-xqizjm7i9x] {
    color: #f87171;
    text-decoration: underline;
    margin-left: 0.5rem;
}
/* /Components/Layout/NavMenu.razor.rz.scp.css */
/* ── Nav Header ─────────────────────────────────────────── */
.nav-header[b-euv77zhz8p] {
    position: sticky;
    top: 0;
    z-index: var(--z-nav);
    background: rgba(4, 4, 14, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border-subtle);
    box-shadow: 0 1px 30px rgba(0,0,0,0.4);
}

.nav-container[b-euv77zhz8p] {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 1.5rem;
    height: 4rem;
    display: flex;
    align-items: center;
    gap: 2rem;
    position: relative;
}

/* ── Brand ──────────────────────────────────────────────── */
.nav-brand[b-euv77zhz8p] {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    text-decoration: none;
    flex-shrink: 0;
}

.nav-brand-rune[b-euv77zhz8p] {
    font-size: 1.5rem;
    color: var(--purple-bright);
    text-shadow: 0 0 12px var(--glow-purple);
    line-height: 1;
}

.nav-brand-name[b-euv77zhz8p] {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    color: var(--text-primary);
    background: linear-gradient(135deg, var(--purple-bright), var(--cyan) 130%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ── Nav Toggle button (mobile) ─────────────────────────── */
.nav-toggle-label[b-euv77zhz8p] {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    margin-left: auto;
    padding: 0.5rem;
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-sm);
    background: transparent;
    transition: border-color 0.2s;
}

.nav-toggle-label:hover[b-euv77zhz8p] { border-color: var(--border-glow); }

.nav-toggle-label span[b-euv77zhz8p] {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--text-secondary);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.nav-toggle-label.is-open span:nth-child(1)[b-euv77zhz8p] { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle-label.is-open span:nth-child(2)[b-euv77zhz8p] { opacity: 0; transform: scaleX(0); }
.nav-toggle-label.is-open span:nth-child(3)[b-euv77zhz8p] { transform: rotate(-45deg) translate(5px, -5px); }

/* ── Nav links ──────────────────────────────────────────── */
.nav-menu[b-euv77zhz8p] {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    margin-left: auto;
}

.nav-link[b-euv77zhz8p] {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.45rem 0.9rem;
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-secondary);
    text-decoration: none;
    border-radius: var(--radius-sm);
    transition: all 0.2s ease;
    position: relative;
}

.nav-link[b-euv77zhz8p]::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0.9rem;
    right: 0.9rem;
    height: 1px;
    background: var(--purple-bright);
    transform: scaleX(0);
    transition: transform 0.25s ease;
    box-shadow: 0 0 8px var(--glow-purple);
}

.nav-link:hover[b-euv77zhz8p] {
    color: var(--text-primary);
    background: rgba(139, 92, 246, 0.08);
}

.nav-link:hover[b-euv77zhz8p]::after,
[b-euv77zhz8p] .nav-link.active::after {
    transform: scaleX(1);
}

[b-euv77zhz8p] .nav-link.active {
    color: var(--purple-bright);
    background: rgba(139, 92, 246, 0.1);
}

/* ── Mobile ─────────────────────────────────────────────── */
@media (max-width: 640px) {
    .nav-toggle-label[b-euv77zhz8p] { display: flex; }

    .nav-menu[b-euv77zhz8p] {
        display: none;
        position: absolute;
        top: 4rem;
        left: 0;
        right: 0;
        flex-direction: column;
        align-items: stretch;
        background: rgba(8, 8, 26, 0.97);
        backdrop-filter: blur(16px);
        border-bottom: 1px solid var(--border-subtle);
        padding: 1rem;
        gap: 0.25rem;
        box-shadow: 0 8px 32px rgba(0,0,0,0.5);
    }

    .nav-menu.is-open[b-euv77zhz8p] {
        display: flex;
    }

    .nav-link[b-euv77zhz8p] {
        padding: 0.75rem 1rem;
        font-size: 0.8rem;
    }
}
/* /Components/Layout/ReconnectModal.razor.rz.scp.css */
.components-reconnect-first-attempt-visible[b-jjmp6yxki0],
.components-reconnect-repeated-attempt-visible[b-jjmp6yxki0],
.components-reconnect-failed-visible[b-jjmp6yxki0],
.components-pause-visible[b-jjmp6yxki0],
.components-resume-failed-visible[b-jjmp6yxki0],
.components-rejoining-animation[b-jjmp6yxki0] {
    display: none;
}

#components-reconnect-modal.components-reconnect-show .components-reconnect-first-attempt-visible[b-jjmp6yxki0],
#components-reconnect-modal.components-reconnect-show .components-rejoining-animation[b-jjmp6yxki0],
#components-reconnect-modal.components-reconnect-paused .components-pause-visible[b-jjmp6yxki0],
#components-reconnect-modal.components-reconnect-resume-failed .components-resume-failed-visible[b-jjmp6yxki0],
#components-reconnect-modal.components-reconnect-retrying[b-jjmp6yxki0],
#components-reconnect-modal.components-reconnect-retrying .components-reconnect-repeated-attempt-visible[b-jjmp6yxki0],
#components-reconnect-modal.components-reconnect-retrying .components-rejoining-animation[b-jjmp6yxki0],
#components-reconnect-modal.components-reconnect-failed[b-jjmp6yxki0],
#components-reconnect-modal.components-reconnect-failed .components-reconnect-failed-visible[b-jjmp6yxki0] {
    display: block;
}


#components-reconnect-modal[b-jjmp6yxki0] {
    background-color: white;
    width: 20rem;
    margin: 20vh auto;
    padding: 2rem;
    border: 0;
    border-radius: 0.5rem;
    box-shadow: 0 3px 6px 2px rgba(0, 0, 0, 0.3);
    opacity: 0;
    transition: display 0.5s allow-discrete, overlay 0.5s allow-discrete;
    animation: components-reconnect-modal-fadeOutOpacity-b-jjmp6yxki0 0.5s both;
    &[open]

{
    animation: components-reconnect-modal-slideUp-b-jjmp6yxki0 1.5s cubic-bezier(.05, .89, .25, 1.02) 0.3s, components-reconnect-modal-fadeInOpacity-b-jjmp6yxki0 0.5s ease-in-out 0.3s;
    animation-fill-mode: both;
}

}

#components-reconnect-modal[b-jjmp6yxki0]::backdrop {
    background-color: rgba(0, 0, 0, 0.4);
    animation: components-reconnect-modal-fadeInOpacity-b-jjmp6yxki0 0.5s ease-in-out;
    opacity: 1;
}

@keyframes components-reconnect-modal-slideUp-b-jjmp6yxki0 {
    0% {
        transform: translateY(30px) scale(0.95);
    }

    100% {
        transform: translateY(0);
    }
}

@keyframes components-reconnect-modal-fadeInOpacity-b-jjmp6yxki0 {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes components-reconnect-modal-fadeOutOpacity-b-jjmp6yxki0 {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

.components-reconnect-container[b-jjmp6yxki0] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

#components-reconnect-modal p[b-jjmp6yxki0] {
    margin: 0;
    text-align: center;
}

#components-reconnect-modal button[b-jjmp6yxki0] {
    border: 0;
    background-color: #6b9ed2;
    color: white;
    padding: 4px 24px;
    border-radius: 4px;
}

    #components-reconnect-modal button:hover[b-jjmp6yxki0] {
        background-color: #3b6ea2;
    }

    #components-reconnect-modal button:active[b-jjmp6yxki0] {
        background-color: #6b9ed2;
    }

.components-rejoining-animation[b-jjmp6yxki0] {
    position: relative;
    width: 80px;
    height: 80px;
}

    .components-rejoining-animation div[b-jjmp6yxki0] {
        position: absolute;
        border: 3px solid #0087ff;
        opacity: 1;
        border-radius: 50%;
        animation: components-rejoining-animation-b-jjmp6yxki0 1.5s cubic-bezier(0, 0.2, 0.8, 1) infinite;
    }

        .components-rejoining-animation div:nth-child(2)[b-jjmp6yxki0] {
            animation-delay: -0.5s;
        }

@keyframes components-rejoining-animation-b-jjmp6yxki0 {
    0% {
        top: 40px;
        left: 40px;
        width: 0;
        height: 0;
        opacity: 0;
    }

    4.9% {
        top: 40px;
        left: 40px;
        width: 0;
        height: 0;
        opacity: 0;
    }

    5% {
        top: 40px;
        left: 40px;
        width: 0;
        height: 0;
        opacity: 1;
    }

    100% {
        top: 0px;
        left: 0px;
        width: 80px;
        height: 80px;
        opacity: 0;
    }
}
/* /Components/Pages/Home.razor.rz.scp.css */
/* ═══════════════════════════════════════════════════════════
   Home Page Styles
   ═══════════════════════════════════════════════════════════ */

/* ── Hero ───────────────────────────────────────────────── */
.hero[b-65klddgo91] {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: radial-gradient(ellipse 80% 60% at 20% 50%, rgba(91, 33, 182, 0.18) 0%, transparent 60%),
                radial-gradient(ellipse 60% 50% at 80% 40%, rgba(34, 211, 238, 0.07) 0%, transparent 55%),
                var(--bg-deep);
}

/* Background orbs */
.hero-orbs[b-65klddgo91] { position: absolute; inset: 0; pointer-events: none; }

.orb[b-65klddgo91] {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    animation: float-orb 18s ease-in-out infinite;
}

.orb-1[b-65klddgo91] {
    width: 500px; height: 500px;
    top: -120px; left: -80px;
    background: rgba(91, 33, 182, 0.14);
    animation-delay: 0s;
}

.orb-2[b-65klddgo91] {
    width: 350px; height: 350px;
    top: 40%; right: -60px;
    background: rgba(34, 211, 238, 0.08);
    animation-delay: -6s;
    animation-duration: 14s;
}

.orb-3[b-65klddgo91] {
    width: 280px; height: 280px;
    bottom: -60px; left: 35%;
    background: rgba(139, 92, 246, 0.1);
    animation-delay: -11s;
    animation-duration: 20s;
}

/* Floating runes */
.hero-runes[b-65klddgo91] { position: absolute; inset: 0; pointer-events: none; }

.rune[b-65klddgo91] {
    position: absolute;
    font-family: serif;
    font-size: 2.5rem;
    color: var(--purple-bright);
    animation: float-rune 8s ease-in-out infinite;
    user-select: none;
}

.r1[b-65klddgo91] { top: 12%; left: 8%;  animation-delay: 0s;    font-size: 3rem; }
.r2[b-65klddgo91] { top: 20%; right: 10%; animation-delay: -1.5s; font-size: 2rem; }
.r3[b-65klddgo91] { top: 55%; left: 5%;  animation-delay: -3s;   font-size: 2.8rem; }
.r4[b-65klddgo91] { top: 70%; right: 8%;  animation-delay: -4.5s; font-size: 2.2rem; }
.r5[b-65klddgo91] { top: 35%; right: 4%;  animation-delay: -2s;   font-size: 1.8rem; }
.r6[b-65klddgo91] { bottom: 18%; left: 12%; animation-delay: -5.5s; font-size: 2.4rem; }
.r7[b-65klddgo91] { top: 8%;  right: 20%; animation-delay: -0.8s; font-size: 1.6rem; }

/* Hex ring decoration */
.hero-ring[b-65klddgo91] {
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    border: 1px solid rgba(139, 92, 246, 0.07);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: spin-slow 60s linear infinite;
    pointer-events: none;
}

.hero-ring[b-65klddgo91]::before {
    content: '';
    position: absolute;
    inset: 40px;
    border-radius: 50%;
    border: 1px solid rgba(34, 211, 238, 0.05);
}

/* Hero content */
.hero-content[b-65klddgo91] {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 2rem 1.5rem;
    animation: fade-in-up 0.8s ease both;
}

.hero-eyebrow[b-65klddgo91] {
    font-family: var(--font-heading);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--cyan);
    margin-bottom: 1.25rem;
    text-shadow: 0 0 16px var(--glow-cyan);
}

.hero-title[b-65klddgo91] {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    font-family: var(--font-deco);
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 700;
    letter-spacing: 0.12em;
    line-height: 1;
    margin-bottom: 1rem;
}

.hero-title-rune[b-65klddgo91] {
    color: var(--purple-bright);
    text-shadow: 0 0 30px var(--glow-purple), 0 0 60px rgba(139,92,246,0.3);
    font-size: 0.85em;
}

.hero-title-text[b-65klddgo91] {
    background: linear-gradient(135deg, #fff 0%, var(--purple-bright) 50%, var(--cyan) 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 6s linear infinite;
    text-shadow: none;
}

.hero-subtitle[b-65klddgo91] {
    font-family: var(--font-heading);
    font-size: clamp(1rem, 2.5vw, 1.35rem);
    font-weight: 400;
    letter-spacing: 0.08em;
    color: var(--text-secondary);
    margin-bottom: 1.25rem;
}

.hero-description[b-65klddgo91] {
    font-size: 1.05rem;
    color: var(--text-muted);
    max-width: 480px;
    margin: 0 auto 2.5rem;
    line-height: 1.7;
}

.break-desktop[b-65klddgo91] { display: none; }
@media (min-width: 640px) { .break-desktop[b-65klddgo91] { display: block; } }

.hero-ctas[b-65klddgo91] {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Scroll hint */
.hero-scroll-hint[b-65klddgo91] {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 1;
}

.scroll-line[b-65klddgo91] {
    width: 1px;
    height: 50px;
    background: linear-gradient(180deg, transparent, var(--purple-bright), transparent);
    animation: scroll-bounce 2.5s ease-in-out infinite;
}

/* ── Software Grid ──────────────────────────────────────── */
.software-grid[b-65klddgo91] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 1.75rem;
}

.software-card[b-65klddgo91] {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.card-top[b-65klddgo91] {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
}

.card-icon-wrap[b-65klddgo91] {
    position: relative;
    width: 56px;
    height: 56px;
    flex-shrink: 0;
}

.card-icon[b-65klddgo91] {
    width: 56px;
    height: 56px;
    border-radius: var(--radius);
    border: 1px solid var(--border-subtle);
    object-fit: cover;
}

.card-icon-glow[b-65klddgo91] {
    position: absolute;
    inset: -4px;
    border-radius: calc(var(--radius) + 2px);
    background: radial-gradient(circle, rgba(139,92,246,0.3), transparent 70%);
    pointer-events: none;
    filter: blur(6px);
}

.card-icon-glow-cyan[b-65klddgo91] {
    background: radial-gradient(circle, rgba(34,211,238,0.25), transparent 70%);
}

.card-tags[b-65klddgo91] {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    justify-content: flex-end;
}

.card-title[b-65klddgo91] {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    color: var(--text-primary);
    text-shadow: 0 0 20px var(--glow-purple-sm);
    margin: 0;
}

.card-desc[b-65klddgo91] {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin: 0;
    flex: 1;
}

.card-features[b-65klddgo91] {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding: 1rem;
    background: rgba(139, 92, 246, 0.04);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius);
}

.feature-item[b-65klddgo91] {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.82rem;
    color: var(--text-secondary);
}

.feature-dot[b-65klddgo91] {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--purple-bright);
    box-shadow: 0 0 6px var(--glow-purple);
    flex-shrink: 0;
}

.feature-dot-cyan[b-65klddgo91] {
    background: var(--cyan);
    box-shadow: 0 0 6px var(--glow-cyan);
}

.card-footer-actions[b-65klddgo91] {
    margin-top: auto;
    padding-top: 0.5rem;
}

/* ── About ──────────────────────────────────────────────── */
.about-layout[b-65klddgo91] {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 3rem;
    align-items: start;
}

.about-sigil[b-65klddgo91] {
    position: relative;
    width: 120px;
    height: 120px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sigil-ring[b-65klddgo91] {
    position: absolute;
    border-radius: 50%;
    border: 1px solid var(--border-glow);
}

.sigil-ring-outer[b-65klddgo91] {
    inset: 0;
    animation: spin-slow 30s linear infinite;
    border-style: dashed;
    border-color: rgba(139, 92, 246, 0.3);
}

.sigil-ring-inner[b-65klddgo91] {
    inset: 16px;
    animation: spin-slow 20s linear infinite reverse;
    border-color: rgba(34, 211, 238, 0.2);
}

.sigil-rune[b-65klddgo91] {
    font-family: serif;
    font-size: 3rem;
    color: var(--purple-bright);
    text-shadow: 0 0 20px var(--glow-purple);
    z-index: 1;
}

.about-body[b-65klddgo91] {
    display: flex;
    flex-direction: column;
    gap: 1.1rem;
}

.about-body p[b-65klddgo91] {
    font-size: 1rem;
    color: var(--text-secondary);
    margin: 0;
}

.about-body strong[b-65klddgo91] {
    color: var(--purple-bright);
    font-weight: 600;
}

.about-stack[b-65klddgo91] {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 0.25rem;
}

.about-cta[b-65klddgo91] {
    align-self: flex-start;
}

/* ── Responsive ─────────────────────────────────────────── */
@media (max-width: 640px) {
    .software-grid[b-65klddgo91] {
        grid-template-columns: 1fr;
    }

    .about-layout[b-65klddgo91] {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-sigil[b-65klddgo91] {
        margin: 0 auto;
    }

    .card-top[b-65klddgo91] {
        flex-direction: column-reverse;
    }

    .card-tags[b-65klddgo91] { justify-content: flex-start; }
}
/* /Components/Pages/Software.razor.rz.scp.css */
/* ── Page header ────────────────────────────────────────── */
.sw-page[b-nmni4q1ky4] {
    padding-top: 0;
}

.sw-header[b-nmni4q1ky4] {
    padding: 5rem 0 4rem;
    text-align: center;
    background: radial-gradient(ellipse 70% 50% at 50% 0%, rgba(91,33,182,0.15) 0%, transparent 60%),
                var(--bg-deep);
    border-bottom: 1px solid var(--border-subtle);
}

.sw-header-eyebrow[b-nmni4q1ky4] {
    font-family: var(--font-heading);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--cyan);
    margin-bottom: 1rem;
    text-shadow: 0 0 14px var(--glow-cyan);
}

.sw-header-title[b-nmni4q1ky4] {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    letter-spacing: 0.06em;
    color: var(--text-primary);
    text-shadow: 0 0 30px var(--glow-purple);
    margin-bottom: 0.75rem;
}

.sw-header-subtitle[b-nmni4q1ky4] {
    font-size: 1rem;
    color: var(--text-secondary);
    max-width: 400px;
    margin: 0 auto;
}

/* ── Project cards ──────────────────────────────────────── */
.sw-project-card[b-nmni4q1ky4] {
    margin-bottom: 2rem;
}

.sw-card-cyan[b-nmni4q1ky4] {
    border-color: rgba(34, 211, 238, 0.12);
}

.sw-card-cyan:hover[b-nmni4q1ky4] {
    border-color: rgba(34, 211, 238, 0.4);
    box-shadow: 0 0 40px rgba(34,211,238,0.08), 0 20px 40px rgba(0,0,0,0.4);
}

.sw-card-body[b-nmni4q1ky4] {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.sw-card-info[b-nmni4q1ky4] {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.sw-card-meta[b-nmni4q1ky4] {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.sw-card-icon-wrap[b-nmni4q1ky4] {
    position: relative;
    width: 72px;
    height: 72px;
    flex-shrink: 0;
}

.sw-card-icon[b-nmni4q1ky4] {
    width: 72px;
    height: 72px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-subtle);
    object-fit: cover;
}

.sw-card-icon-glow[b-nmni4q1ky4] {
    position: absolute;
    inset: -6px;
    border-radius: calc(var(--radius-lg) + 4px);
    background: radial-gradient(circle, rgba(139,92,246,0.3), transparent 70%);
    pointer-events: none;
    filter: blur(8px);
}

.sw-card-icon-glow-cyan[b-nmni4q1ky4] {
    background: radial-gradient(circle, rgba(34,211,238,0.25), transparent 70%);
}

.sw-card-type[b-nmni4q1ky4] {
    font-family: var(--font-heading);
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--purple-bright);
    margin-bottom: 0.35rem;
}

.sw-card-type-gold[b-nmni4q1ky4] { color: var(--gold); }

.sw-card-title[b-nmni4q1ky4] {
    font-family: var(--font-heading);
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 700;
    letter-spacing: 0.06em;
    color: var(--text-primary);
    margin: 0;
    text-shadow: 0 0 20px var(--glow-purple-sm);
}

.sw-card-desc[b-nmni4q1ky4] {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.75;
    margin: 0;
}

/* Features grid */
.sw-features-grid[b-nmni4q1ky4] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1rem;
    padding: 1.25rem;
    background: rgba(0, 0, 0, 0.25);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius);
}

.sw-feature[b-nmni4q1ky4] {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.sw-feature-title[b-nmni4q1ky4] {
    font-family: var(--font-heading);
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--purple-bright);
}

.sw-feature-value[b-nmni4q1ky4] {
    font-size: 0.82rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

.sw-card-tags[b-nmni4q1ky4] {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
}

.sw-card-actions[b-nmni4q1ky4] {
    padding-top: 0.25rem;
}

/* ── Coming soon ────────────────────────────────────────── */
.sw-coming-soon[b-nmni4q1ky4] {
    padding: 4rem 0 6rem;
}

.coming-soon-card[b-nmni4q1ky4] {
    text-align: center;
    max-width: 500px;
    margin: 0 auto;
    padding: 3rem 2rem;
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-xl);
    position: relative;
    overflow: hidden;
}

.coming-soon-card[b-nmni4q1ky4]::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 0%, rgba(139,92,246,0.08), transparent 60%);
    pointer-events: none;
}

.coming-soon-rune[b-nmni4q1ky4] {
    font-size: 3rem;
    color: var(--purple-bright);
    text-shadow: 0 0 20px var(--glow-purple);
    display: block;
    margin-bottom: 1rem;
    animation: float-rune 6s ease-in-out infinite;
}

.coming-soon-title[b-nmni4q1ky4] {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
}

.coming-soon-text[b-nmni4q1ky4] {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1.75rem;
}

/* ── Responsive ─────────────────────────────────────────── */
@media (max-width: 640px) {
    .sw-card-meta[b-nmni4q1ky4] { flex-direction: column; align-items: flex-start; }
    .sw-features-grid[b-nmni4q1ky4] { grid-template-columns: 1fr; }
}
