:root {
    --cyan: #35d6ff;
    --aqua: #22e6c3;
    --blue: #3a86ff;
    --violet: #7c4dff;
    --pink: #ff6bd6;

    --radius: 22px;
    --shadow: 0 24px 90px rgba(0, 0, 0, .55);
    --shadow2: 0 12px 40px rgba(0, 0, 0, .35);

    --font: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial;

    /* Dark tokens */
    --bg: #050918;
    --bg2: #071023;
    --text: rgba(255, 255, 255, .92);
    --muted: rgba(255, 255, 255, .68);
    --muted2: rgba(255, 255, 255, .54);

    --card: rgba(255, 255, 255, .06);
    --card2: rgba(255, 255, 255, .09);
    --stroke: rgba(255, 255, 255, .14);
    --stroke2: rgba(255, 255, 255, .18);

    --btnText: rgba(3, 7, 18, .95);
    /* tuned: reduce pink, more dashboard-like */
    --btnBg: linear-gradient(90deg, var(--cyan), var(--blue), var(--violet));
    --chipBg: rgba(255, 255, 255, .05);
    --chipStroke: rgba(255, 255, 255, .14);
}

[data-theme="light"] {
    --bg: #f7fbff;
    --bg2: #eef6ff;
    --text: rgba(7, 16, 35, .92);
    --muted: rgba(7, 16, 35, .70);
    --muted2: rgba(7, 16, 35, .55);

    --card: rgba(255, 255, 255, .78);
    --card2: rgba(255, 255, 255, .92);
    --stroke: rgba(7, 16, 35, .12);
    --stroke2: rgba(7, 16, 35, .16);

    --chipBg: rgba(255, 255, 255, .72);
    --chipStroke: rgba(7, 16, 35, .12);

    --shadow: 0 28px 90px rgba(7, 16, 35, .16);
    --shadow2: 0 14px 40px rgba(7, 16, 35, .10);
}

* {
    box-sizing: border-box;
}

html,
body {
    height: 100%;
}

body {
    margin: 0;
    font-family: var(--font);
    color: var(--text);
    background: radial-gradient(1200px 700px at 15% 10%, rgba(53, 214, 255, .18), transparent 60%),
        radial-gradient(1100px 780px at 85% 20%, rgba(124, 77, 255, .14), transparent 55%),
        radial-gradient(900px 700px at 55% 95%, rgba(34, 230, 195, .12), transparent 62%),
        linear-gradient(180deg, var(--bg), var(--bg2));
    overflow-x: hidden;
}

.aurora {
    position: fixed;
    inset: -20%;
    z-index: 1;
    pointer-events: none;
    opacity: 0.6;
    background:
        radial-gradient(900px 380px at 20% 20%, rgba(53, 214, 255, .26), transparent 60%),
        radial-gradient(900px 420px at 80% 30%, rgba(124, 77, 255, .18), transparent 58%),
        radial-gradient(900px 420px at 60% 85%, rgba(34, 230, 195, .16), transparent 60%),
        radial-gradient(700px 360px at 35% 70%, rgba(58, 134, 255, .14), transparent 58%);
    filter: blur(18px);
    animation: drift 16s ease-in-out infinite alternate;
    transform: translate3d(0, 0, 0);
}

@keyframes drift {
    0% {
        transform: translate(-2%, -1%) scale(1.02);
    }

    45% {
        transform: translate(2%, 1.2%) scale(1.04);
    }

    100% {
        transform: translate(1.2%, -2%) scale(1.03);
    }
}

.grid {
    position: fixed;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background-image:
        linear-gradient(to right, rgba(255, 255, 255, .06) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(255, 255, 255, .06) 1px, transparent 1px);
    background-size: 68px 68px;
    opacity: 0.08;
    mask-image: radial-gradient(circle at 50% 18%, black 0%, transparent 72%);
    -webkit-mask-image: radial-gradient(circle at 50% 18%, black 0%, transparent 72%);
}

[data-theme="light"] .grid {
    background-image:
        linear-gradient(to right, rgba(7, 16, 35, .10) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(7, 16, 35, .10) 1px, transparent 1px);
    opacity: .06;
}

.wrap {
    position: relative;
    z-index: 2;
    min-height: 100%;
    display: flex;
    flex-direction: column;
}

header {
    padding: 18px clamp(16px, 4vw, 54px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    position: sticky;
    top: 0;
    z-index: 3;
    background: linear-gradient(180deg, rgba(0, 0, 0, .35), rgba(0, 0, 0, 0));
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, .06);
}

[data-theme="light"] header {
    background: linear-gradient(180deg, rgba(255, 255, 255, .70), rgba(255, 255, 255, 0));
    border-bottom: 1px solid rgba(7, 16, 35, .08);
}

.brand {
    display: flex;
    align-items: flex-end;
    gap: 12px;
    user-select: none;
}

.soonBadge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 14px;
    border-radius: 999px;
    font-weight: 900;
    letter-spacing: .24em;
    text-transform: uppercase;
    font-size: 12px;
    line-height: 1;
    color: rgba(255, 255, 255, .96);
    background: linear-gradient(90deg, rgba(53, 214, 255, .95), rgba(124, 77, 255, .95), rgba(53, 214, 255, .95));
    background-size: 220% 100%;
    border: 1px solid rgba(255, 255, 255, .16);
    box-shadow: 0 14px 34px rgba(53, 214, 255, .18), 0 10px 26px rgba(124, 77, 255, .16);
    text-shadow: 0 1px 0 rgba(0, 0, 0, .18);
    animation: soonFlow 7s ease-in-out infinite;
    white-space: nowrap;
}

@keyframes soonFlow {
    0% {
        background-position: 0% 50%;
    }

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

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

[data-theme="light"] .soonBadge {
    color: rgba(7, 16, 35, .92);
    border: 1px solid rgba(7, 16, 35, .10);
    text-shadow: none;
    box-shadow: 0 16px 34px rgba(53, 214, 255, .18), 0 12px 28px rgba(124, 77, 255, .14);
}

/* Center the badge between logo and nav; collapse cleanly on small screens */
header {
    gap: 14px;
}

.soonBadge {
    margin: 0 auto;
}

@media (max-width: 720px) {
    header {
        flex-wrap: wrap;
        justify-content: center;
    }

    .brand {
        width: 100%;
        justify-content: center;
    }

    .soonBadge {
        order: 2;
        margin: 6px auto 0;
    }

    nav {
        width: 100%;
        justify-content: center;
    }

}

nav {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 12px;
    border-radius: 999px;
    background: var(--chipBg);
    border: 1px solid var(--chipStroke);
    color: var(--muted);
    text-decoration: none;
    font-size: 13px;
    letter-spacing: .2px;
    transition: transform .14s ease, background .14s ease;
    white-space: nowrap;
}

.chip:hover {
    transform: translateY(-1px);
    background: rgba(255, 255, 255, .08);
}

[data-theme="light"] .chip:hover {
    background: rgba(255, 255, 255, .88);
}

.chip .dot {
    width: 9px;
    height: 9px;
    border-radius: 99px;
    background: linear-gradient(90deg, var(--cyan), var(--violet));
    box-shadow: 0 0 0 6px rgba(53, 214, 255, .10);
}

main {
    flex: 1;
    width: 100%;
    max-width: 1600px;
    margin: 0 auto;
    padding: 26px clamp(16px, 4vw, 54px) 54px;
    display: grid;
    grid-template-columns: 1.2fr .8fr;
    gap: clamp(16px, 3vw, 28px);
    align-items: start;
}

@media (max-width: 980px) {
    main {
        grid-template-columns: 1fr;
        padding-top: 12px;
    }
}

.panel {
    border-radius: var(--radius);
    background: linear-gradient(180deg, var(--card2), var(--card));
    border: 1px solid var(--stroke);
    box-shadow: var(--shadow);
    overflow: hidden;
    position: relative;
}

.panel::before {
    content: "";
    position: absolute;
    inset: -2px;
    background: radial-gradient(700px 260px at 25% 0%, rgba(53, 214, 255, .18), transparent 60%),
        radial-gradient(700px 260px at 85% 40%, rgba(124, 77, 255, .14), transparent 62%),
        radial-gradient(700px 260px at 30% 100%, rgba(34, 230, 195, .10), transparent 62%);
    opacity: 0.55;
    pointer-events: none;
}

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

.hero {
    padding: clamp(18px, 3vw, 26px);
}

.kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--muted2);
    margin: 0 0 12px;
}

.kicker .spark {
    width: 10px;
    height: 10px;
    border-radius: 99px;
    background: conic-gradient(from 200deg, var(--cyan), var(--violet), var(--aqua), var(--cyan));
    box-shadow: 0 0 0 7px rgba(53, 214, 255, .10);
}

h1 {
    margin: 0 0 12px;
    font-size: clamp(34px, 4.2vw, 58px);
    line-height: 1.05;
    letter-spacing: -.02em;
}


.gradWord {
    background: linear-gradient(90deg, var(--cyan), var(--blue), var(--violet));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, .25));
}

.gradWord2 {
    background: linear-gradient(90deg, var(--aqua), var(--cyan), var(--violet));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, .25));
}

.sub {
    margin: 0 0 18px;
    max-width: 70ch;
    line-height: 1.6;
    color: var(--muted);
    font-size: 15.5px;
}

.ctaRow {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 24px;
}

.btn {
    border: 0px #FB00FD;
    cursor: pointer;
    border-radius: 50px;
    padding: 12px 16px;
    font-weight: 720;
    letter-spacing: .2px;
    background: var(--btnBg);
    color: #FFFFFF;
    box-shadow: 0 16px 45px rgba(53, 214, 255, .18);
    transition: transform .14s ease, filter .14s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    white-space: nowrap;
}

.btn:hover {
    transform: translateY(-1px);
    filter: brightness(1.02);
}

.btn:active {
    transform: translateY(0px) scale(.99);
    /* [disabled]text-decoration-color: #FFFFF; */
}

.btn.secondary {
    background: rgba(255, 255, 255, .06);
    border: 1px solid var(--stroke2);
    color: var(--text);
    box-shadow: var(--shadow2);
}

[data-theme="light"] .btn.secondary {
    /* [disabled]background: rgba(255,255,255,.85); */
}

.form {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    align-items: center;
    margin-top: 14px;
}

.input {
    flex: 1 1 280px;
    min-width: 230px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 14px;
    border-radius: 14px;
    background: rgba(0, 0, 0, .20);
    border: 1px solid var(--stroke2);
    backdrop-filter: blur(10px);
}

[data-theme="light"] .input {
    background: rgba(255, 255, 255, .75);
}

select option {
    background-color: #ffffff;
    color: rgba(7, 16, 35, .92);
}

input,
select {
    width: 100%;
    border: 0;
    outline: none;
    background: transparent;
    color: var(--text);
    font-size: 14px;
}

[data-theme="light"] input,
[data-theme="light"] select {
    color: rgba(7, 16, 35, .92);
}

input::placeholder {
    color: rgba(255, 255, 255, .45);
}

[data-theme="light"] input::placeholder {
    color: rgba(7, 16, 35, .45);
}

.hint {
    margin-top: 10px;
    font-size: 12px;
    color: var(--muted2);
}

/* Countdown chip row under hero title */
.countRow {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
    margin: 10px 0 14px;
}

.countChip {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .05);
    border: 1px solid var(--stroke);
    color: var(--muted);
    font-size: 12.5px;
    letter-spacing: .18em;
    text-transform: uppercase;
    white-space: nowrap;
}

[data-theme="light"] .countChip {
    background: rgba(255, 255, 255, .80);
}

.countChip b {
    color: var(--text);
    letter-spacing: .02em;
    text-transform: none;
    font-size: 13px;
}

.countChip .sep {
    opacity: .55;
}

/* Right column: Access window + stats */
.side {
    padding: clamp(18px, 3vw, 26px);
}

.side h2 {
    margin: 0 0 12px;
    font-size: 14px;
    letter-spacing: .20em;
    text-transform: uppercase;
    color: var(--muted2);
}

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

.stat {
    border-radius: 18px;
    background: rgba(0, 0, 0, .18);
    border: 1px solid var(--stroke);
    padding: 14px 14px;
}

[data-theme="light"] .stat {
    background: rgba(255, 255, 255, .75);
}

.stat .v {
    font-size: 22px;
    font-weight: 800;
    letter-spacing: -.02em;
    margin-bottom: 6px;
}

.stat .l {
    font-size: 12.5px;
    color: var(--muted);
    line-height: 1.35;
}

.cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 14px;
}

.card {
    border-radius: 18px;
    background: rgba(0, 0, 0, .18);
    border: 1px solid var(--stroke);
    padding: 14px 14px;
}

[data-theme="light"] .card {
    background: rgba(255, 255, 255, .75);
}

.card .t {
    font-weight: 760;
    letter-spacing: -.01em;
    margin-bottom: 39px;
}

.card .p {
    color: var(--muted);
    line-height: 1.5;
    font-size: 13.5px;
}

.miniRow {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 12px;
}

.pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 12px;
    border-radius: 999px;
    border: 1px solid var(--stroke);
    background: rgba(255, 255, 255, .05);
    color: var(--muted);
    font-size: 12.5px;
    white-space: nowrap;
    margin-bottom: 10px;
}

[data-theme="light"] .pill {
    background: rgba(255, 255, 255, .85);
}

.toast {
    position: fixed;
    left: 50%;
    bottom: 22px;
    transform: translateX(-50%);
    padding: 12px 14px;
    border-radius: 999px;
    background: rgba(0, 0, 0, .55);
    border: 1px solid rgba(255, 255, 255, .14);
    color: rgba(255, 255, 255, .86);
    backdrop-filter: blur(10px);
    box-shadow: 0 16px 50px rgba(0, 0, 0, .5);
    opacity: 0;
    pointer-events: none;
    transition: opacity .18s ease, transform .18s ease;
    z-index: 5;
    font-size: 13px;
    letter-spacing: .2px;
}

[data-theme="light"] .toast {
    background: rgba(255, 255, 255, .85);
    border: 1px solid rgba(7, 16, 35, .14);
    color: rgba(7, 16, 35, .86);
}

.toast.show {
    opacity: 1;
    transform: translateX(-50%) translateY(-2px);
}

section.full {
    grid-column: 1 / -1;
}

footer {
    padding: 18px clamp(16px, 4vw, 54px) 30px;
    max-width: 1240px;
    margin: 0 auto;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    color: var(--muted2);
    font-size: 12px;
}

@media (max-width : 861px) {
    footer {
        flex-direction: column;
        align-items: flex-start;
    }
}


/* --- Flexso interactive preview widgets (map / calendar / inventory / AI typing) --- */

/* Right column stack */
.rightStack {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

@media (max-width: 980px) {
    .rightStack {
        gap: 12px;
    }
}

/* Live map panel */
.mapPanel {
    padding: 14px;
}

.mapTop {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 10px;
}

.mapTitle {
    font-weight: 860;
    letter-spacing: -.01em;
}

.mapHint {
    font-size: 12px;
    color: var(--muted2);
}

.map {
    height: 230px;
    border-radius: 18px;
    border: 1px solid var(--stroke);
    overflow: hidden;
    background: rgba(0, 0, 0, .22);
}

@media (max-width: 980px) {
    .map {
        height: 240px;
    }
}

.mapLegend {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 10px;
    color: var(--muted);
    font-size: 12.5px;
}

.leg {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 10px;
    border-radius: 999px;
    border: 1px solid var(--stroke);
    background: rgba(255, 255, 255, .04);
}

[data-theme="light"] .leg {
    background: rgba(255, 255, 255, .74);
}

.lg {
    width: 10px;
    height: 10px;
    border-radius: 99px;
    display: inline-block;
}

.lg.live {
    background: linear-gradient(90deg, var(--cyan), var(--blue));
    box-shadow: 0 0 0 6px rgba(53, 214, 255, .12);
}

.lg.soon {
    background: linear-gradient(90deg, #ffcc66, #ff6bd6);
    box-shadow: 0 0 0 6px rgba(255, 204, 102, .12);
}

.lg.paused {
    background: linear-gradient(90deg, rgba(255, 255, 255, .40), rgba(255, 255, 255, .18));
    box-shadow: 0 0 0 6px rgba(255, 255, 255, .08);
}

/* Calendar panel */
.calendarPanel {
    padding: 14px;
}

.calTop {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 10px;
}

.calTitle {
    font-weight: 860;
    letter-spacing: -.01em;
}

.calHint {
    font-size: 12px;
    color: var(--muted2);
}

/* Test Pilot tabs */
.pilotTabs {
    margin-top: 14px;
    border-radius: var(--radius);
    border: 1px solid var(--stroke);
    background: rgba(0, 0, 0, .14);
    overflow: hidden;
}

[data-theme="light"] .pilotTabs {
    background: rgba(255, 255, 255, .62);
}

.tabBar {
    display: flex;
    gap: 10px;
    padding: 12px;
    border-bottom: 1px solid var(--stroke);
    flex-wrap: wrap;
}

.tabBtn {
    appearance: none;
    border: 1px solid var(--chipStroke);
    background: var(--chipBg);
    color: var(--muted);
    padding: 10px 12px;
    border-radius: 999px;
    cursor: pointer;
    font-size: 13px;
    letter-spacing: .2px;
    transition: transform .14s ease, background .14s ease, border-color .14s ease;
}

.tabBtn:hover {
    transform: translateY(-1px);
}

.tabBtn.active {
    color: var(--text);
    border-color: rgba(53, 214, 255, .38);
    background: linear-gradient(180deg, rgba(53, 214, 255, .12), rgba(255, 255, 255, .04));
    box-shadow: 0 12px 30px rgba(0, 0, 0, .20);
}

.tabBody {
    padding: 12px;
}

.tabPane {
    display: none;
}

.tabPane.show {
    display: block;
}

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

@media (max-width: 980px) {
    .tabGrid {
        grid-template-columns: 1fr;
    }
}

.tabCard {
    border-radius: 18px;
    border: 1px solid var(--stroke);
    background: rgba(255, 255, 255, .04);
    padding: 14px;
}

[data-theme="light"] .tabCard {
    background: rgba(255, 255, 255, .78);
}

.tabCard .t {
    font-weight: 860;
    margin-bottom: 8px;
}

.tabCard .p {
    color: var(--muted);
    line-height: 1.5;
}

.bul {
    margin: 0;
    padding-left: 18px;
    color: var(--muted);
    line-height: 1.55;
}

.steps {
    margin: 0;
    padding-left: 18px;
    color: var(--muted);
    line-height: 1.55;
}

.badgeRow {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: 10px;
}


/* Investor-grade animated background (Neuron Network) */
.netbg {
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    /*    opacity: .78;*/
}

/*
[data-theme="light"] .netbg {
    opacity: .66;
}*/

canvas.netbg {
    width: 100vw;
    height: 100vh;
    display: block;
    will-change: transform;
}

.aiRow {
    margin-top: 16px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.aiBadge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    width: fit-content;
    padding: 10px 12px;
    border-radius: 999px;
    border: 1px solid var(--stroke);
    background: rgba(255, 255, 255, .06);
    color: var(--muted);
    font-size: 12.5px;
    letter-spacing: .14em;
    text-transform: uppercase;
}

[data-theme="light"] .aiBadge {
    background: rgba(255, 255, 255, .86);
}

.aiDot {
    width: 9px;
    height: 9px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--aqua), var(--cyan), var(--violet));
    box-shadow: 0 0 0 7px rgba(53, 214, 255, .10);
}

.aiTyping {
    border-radius: 16px;
    border: 1px solid var(--stroke);
    background: rgba(0, 0, 0, .20);
    padding: 12px 14px;
    line-height: 1.5;
    color: var(--text);
    font-size: 14px;
    min-height: 46px;
    display: flex;
    align-items: center;
}

[data-theme="light"] .aiTyping {
    background: rgba(255, 255, 255, .78);
}

.aiTyping .cursor {
    width: 10px;
    height: 16px;
    margin-left: 6px;
    border-radius: 3px;
    background: currentColor;
    opacity: .65;
    animation: blink 1.05s steps(1) infinite;
}

@keyframes blink {
    50% {
        opacity: .15;
    }
}

.aiChip {
    cursor: pointer;
    user-select: none;
}

.widgets {
    margin-top: 14px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
}

.widget {
    border-radius: 18px;
    background: rgba(0, 0, 0, .18);
    border: 1px solid var(--stroke);
    overflow: hidden;
}

[data-theme="light"] .widget {
    background: rgba(255, 255, 255, .75);
}

.wHead {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 14px;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
}

[data-theme="light"] .wHead {
    border-bottom: 1px solid rgba(7, 16, 35, .10);
}

.wHead span {
    font-size: 12px;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--muted2);
}

.wHead .mini {
    letter-spacing: .02em;
    text-transform: none;
    color: var(--muted);
    font-size: 12.5px;
}

.map {
    height: 220px;
}

.leaflet-container {
    background: transparent;
}

.calendar {
    padding: 12px 14px 14px;
}


/* --- Animated chat preview (from investor interactive) --- */
.chatPanel {
    padding: 14px;
}

.chatTop {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 12px;
    margin: 2px 2px 10px;
}

.chatTitle {
    font-weight: 760;
    letter-spacing: .2px;
}

.chatHint {
    color: var(--muted);
    font-size: 13px;
}

.app-preview {
    border-radius: 20px;
    border: 1px solid var(--stroke);
    background: radial-gradient(circle at top, rgba(53, 214, 255, .18), transparent 62%), var(--card2);
    padding: 12px;
    display: flex;
    flex-direction: column;
    min-height: 320px;
    cursor: pointer;
    box-shadow: var(--shadow2);
    transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.app-preview:hover {
    transform: translate3d(4px, -4px, 0) scale(1.01);
    border-color: rgba(53, 214, 255, .55);
    box-shadow: var(--shadow);
}

.app-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.app-title {
    font-size: 13px;
    font-weight: 760;
}

.app-sub {
    font-size: 12px;
    color: var(--muted);
    margin-top: 2px;
}

.app-status {
    display: flex;
    align-items: center;
    gap: 8px;
}

.app-status-label {
    font-size: 12px;
    color: var(--muted);
}

.status-dot {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: #22c55e;
    box-shadow: 0 0 10px rgba(34, 197, 94, .75);
}

.app-tabs {
    display: flex;
    gap: 6px;
    margin-bottom: 10px;
    flex-wrap: wrap;
}

.app-tab {
    padding: 4px 10px;
    border-radius: 999px;
    border: 1px solid var(--stroke);
    background: var(--chipBg);
    font-size: 12px;
    color: var(--muted);
    user-select: none;
}

.app-tab.active {
    border-color: rgba(53, 214, 255, .55);
    color: var(--text);
    background: radial-gradient(circle at top left, rgba(53, 214, 255, .24), var(--chipBg));
    box-shadow: 0 0 0 2px rgba(53, 214, 255, .14);
}

.chat-window {
    flex: 1;
    border-radius: 16px;
    border: 1px solid var(--stroke);
    padding: 10px;
    background: rgba(255, 255, 255, .04);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 10px;
}

[data-theme="light"] .chat-window {
    background: rgba(255, 255, 255, .72);
}

.chat-msg-meta {
    font-size: 11px;
    color: var(--muted);
    margin-bottom: 3px;
}

.chat-bubble {
    max-width: 94%;
    padding: 8px 10px;
    border-radius: 16px;
    font-size: 13px;
    line-height: 1.25;
    opacity: 0;
    transform: translateY(4px);
    transition: opacity .35s ease, transform .35s ease;
}

.chat-bubble.visible {
    opacity: 1;
    transform: translateY(0);
}

.chat-bubble.user {
    margin-left: auto;
    background: var(--btnBg);
    color: var(--btnText);
}

.chat-bubble.ai {
    background: rgba(255, 255, 255, .06);
    border: 1px solid var(--stroke);
}

[data-theme="light"] .chat-bubble.ai {
    background: rgba(255, 255, 255, .92);
}

.typing-indicator {
    display: none;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: var(--muted);
    padding-left: 2px;
}

.typing-indicator.active {
    display: inline-flex;
}

.typing-dot {
    width: 5px;
    height: 5px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .55);
    animation: chatBounce 1s infinite ease-in-out;
    opacity: .6;
}

[data-theme="light"] .typing-dot {
    background: rgba(7, 16, 35, .45);
}

.typing-dot:nth-child(2) {
    animation-delay: .18s;
}

.typing-dot:nth-child(3) {
    animation-delay: .36s;
}

@keyframes chatBounce {

    0%,
    80%,
    100% {
        transform: translateY(0);
        opacity: .45;
    }

    40% {
        transform: translateY(-3px);
        opacity: 1;
    }
}

.chat-input {
    border-radius: 999px;
    border: 1px solid var(--stroke);
    background: rgba(255, 255, 255, .05);
    padding: 8px 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

[data-theme="light"] .chat-input {
    background: rgba(255, 255, 255, .8);
}

.chat-placeholder {
    color: var(--muted);
    font-size: 12px;
}

.send-dot {
    width: 18px;
    height: 18px;
    border-radius: 999px;
    background: var(--btnBg);
}

.calGrid {
    display: grid;
    grid-template-columns: repeat(7, minmax(0, 1fr));
    gap: 8px;
}

.calDow {
    font-size: 11px;
    color: var(--muted2);
    letter-spacing: .18em;
    text-transform: uppercase;
    text-align: center;
    padding: 4px 0;
}

.calCell {
    position: relative;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, .10);
    background: rgba(255, 255, 255, .04);
    height: 46px;
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
    padding: 8px 9px;
    cursor: pointer;
    transition: transform .12s ease, background .12s ease, border-color .12s ease;
}

[data-theme="light"] .calCell {
    background: rgba(7, 16, 35, .03);
    border: 1px solid rgba(7, 16, 35, .10);
}

.calCell:hover {
    transform: translateY(-1px);
}

.calCell.muted {
    opacity: .35;
    cursor: default;
}

.calCell.selected {
    border-color: rgba(53, 214, 255, .45);
    box-shadow: 0 0 0 3px rgba(53, 214, 255, .18);
}

.calNum {
    font-weight: 720;
    font-size: 12.5px;
    color: var(--text);
}

.calDot {
    position: absolute;
    left: 10px;
    bottom: 9px;
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--cyan), var(--violet));
    opacity: .85;
}

.calDot.pulse {
    animation: pulse 1.6s ease-in-out infinite;
}

@keyframes pulse {

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

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

/* Inventory preview (matches attached screenshot style) */
.inventory {
    padding: 16px;
}

.invTop {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 6px 4px 12px;
}

.invTitle {
    font-size: 16px;
    font-weight: 780;
    letter-spacing: -.01em;
}

.invTitle .dotSep {
    opacity: .65;
    margin: 0 6px;
}

.invCounts {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--muted2);
    font-size: 13px;
}

.invCounts b {
    color: var(--text);
}

.invFilters {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    padding: 0 4px 14px;
}

.filterChip {
    padding: 10px 12px;
    border-radius: 999px;
    border: 1px solid var(--chipStroke);
    background: var(--chipBg);
    color: var(--muted);
    font-size: 13px;
    cursor: pointer;
    transition: transform .12s ease, background .12s ease;
}

.filterChip:hover {
    transform: translateY(-1px);
}

.filterChip.active {
    border-color: rgba(53, 214, 255, .50);
    box-shadow: 0 0 0 3px rgba(53, 214, 255, .14);
}

.invGrid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    padding: 0 4px;
}

@media (max-width: 860px) {
    .invGrid {
        grid-template-columns: 1fr;
    }
}

.asset {
    border-radius: 18px;
    border: 1px solid var(--stroke);
    background: rgba(0, 0, 0, .18);
    padding: 14px;
    position: relative;
    overflow: hidden;
}

[data-theme="light"] .asset {
    background: rgba(255, 255, 255, .75);
}

.asset::before {
    content: "";
    position: absolute;
    inset: -2px;
    pointer-events: none;
    opacity: .35;
    background: radial-gradient(600px 220px at 15% 0%, rgba(53, 214, 255, .18), transparent 60%),
        radial-gradient(600px 220px at 90% 40%, rgba(124, 77, 255, .14), transparent 62%);
    filter: blur(14px);
}

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

.assetTop {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
}

.assetTitle {
    font-weight: 820;
    letter-spacing: -.01em;
    font-size: 18px;
}

.assetMeta {
    color: var(--muted);
    font-size: 13px;
    margin-top: 4px;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.assetMeta span {
    white-space: nowrap;
}

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

.assetLoc {
    color: var(--muted2);
    font-size: 13px;
}

.status {
    font-weight: 820;
    font-size: 13px;
}

.status.live {
    color: #48ffb5;
}

.status.soon {
    color: #ffc84a;
}

.status.paused {
    color: #ff9b4a;
}

.status.live {
    position: relative;
    animation: statusPulse 2.6s ease-in-out infinite;
}

@keyframes statusPulse {

    0%,
    100% {
        filter: brightness(1);
        opacity: 1;
    }

    50% {
        filter: brightness(1.12);
        opacity: .92;
    }
}


.bar {
    height: 8px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .10);
    overflow: hidden;
    margin-top: 10px;
}

[data-theme="light"] .bar {
    background: rgba(7, 16, 35, .06);
    border: 1px solid rgba(7, 16, 35, .10);
}

.bar>i {
    display: block;
    height: 100%;
    width: 0%;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--cyan), var(--violet));
    animation: fill 1.1s ease forwards;
}

@keyframes fill {
    from {
        width: 0%;
    }

    to {
        width: var(--w, 65%);
    }
}

.infRow {
    margin-top: 14px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    padding: 0 4px 2px;
}

@media (max-width: 980px) {
    .infRow {
        grid-template-columns: 1fr;
    }
}

.miniCard {
    border-radius: 18px;
    border: 1px solid var(--stroke);
    background: rgba(0, 0, 0, .18);
    padding: 14px;
}

[data-theme="light"] .miniCard {
    background: rgba(255, 255, 255, .75);
}

.miniCard .k {
    font-size: 12px;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--muted2);
}

.miniCard .v {
    margin-top: 8px;
    font-size: 26px;
    font-weight: 860;
    letter-spacing: -.02em;
}

.miniCard .s {
    margin-top: 6px;
    font-size: 13px;
    color: var(--muted);
    line-height: 1.35;
}

.spark {
    margin-top: 10px;
    height: 34px;
    width: 100%;
}

.spark path {
    fill: none;
    stroke: currentColor;
    stroke-width: 2.4;
    opacity: .85;
}


@media (prefers-reduced-motion: reduce) {
    .aurora {
        animation: none;
    }

    .btn,
    .chip,
    .toast {
        transition: none;
    }
}

.heroInvestor {
    margin-top: 10px;
    color: var(--muted);
    font-size: 14.5px;
    letter-spacing: .02em;
}

.statusPulse {
    position: relative;
}

.statusPulse::after {
    content: '';
    position: absolute;
    inset: -6px -10px;
    border-radius: 999px;
    border: 1px solid rgba(72, 255, 181, .25);
    opacity: 0;
    animation: pulseBadge 2.8s ease-in-out infinite;
}

@keyframes pulseBadge {
    0% {
        opacity: 0;
        transform: scale(.98);
    }

    45% {
        opacity: .22;
        transform: scale(1);
    }

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