@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Sora:wght@400;500;600;700&display=swap');

:root {
    --bg-main: #05080b;
    --bg-panel: #101b20;
    --bg-panel-soft: #14242a;
    --border-soft: rgba(120, 255, 214, 0.16);
    --text-main: #f5fbff;
    --text-muted: #91a3ad;
    --text-soft: #c8d5dc;
    --v-green: #35f3b2;
    --v-green-soft: rgba(53, 243, 178, 0.14);
    --v-cyan: #54d7ff;
    --v-amber: #f3c86b;
    --shadow-green: 0 0 24px rgba(53, 243, 178, 0.14);
    --radius-xl: 28px;
    --radius-lg: 22px;
    --radius-md: 16px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    background: var(--bg-main);
}

body {
    min-height: 100vh;

    background:
        radial-gradient(circle at top, rgba(53, 243, 178, 0.075), transparent 34%),
        linear-gradient(180deg, #071014 0%, #05080b 100%);

    color: var(--text-main);

    font-family:
        "Inter",
        "Segoe UI",
        system-ui,
        -apple-system,
        BlinkMacSystemFont,
        sans-serif;
}

button {
    font: inherit;
}

.app-shell {
    position: relative;
    width: 100%;
    max-width: 460px;
    min-height: 100vh;
    margin: 0 auto;
    padding: 18px 16px 106px;
    overflow-x: hidden;
    overflow-y: visible;
}

.app-shell::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(rgba(255,255,255,0.014) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.014) 1px, transparent 1px);
    background-size: 34px 34px;
    mask-image: linear-gradient(to bottom, black 0%, transparent 68%);
}

/* HEADER */

.app-header {
    position: relative;
    z-index: 2;
    min-height: 96px;

    display: flex;
    align-items: flex-start;
    justify-content: space-between;

    padding-top: 4px;
    margin-bottom: 18px;
}

.brand-logo {
    width: 124px;
    height: auto;
    filter: drop-shadow(0 0 14px rgba(53, 243, 178, 0.24));
}

.brand-stack {
    display: flex;
    flex-direction: column;
    align-items: center;

    gap: 8px;
}

.brand-subtitle {
    font-family: "Sora", sans-serif;

    font-size: 13px;
    font-weight: 600;

    letter-spacing: 0.28em;
    text-transform: uppercase;

    color: var(--v-green);

    text-shadow:
        0 0 10px rgba(53, 243, 178, 0.34),
        0 0 22px rgba(53, 243, 178, 0.16);

    opacity: 0.95;

    transform: translateY(-4px);
}

.icon-button {
    width: 42px;
    height: 42px;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 999px;
    background: rgba(255,255,255,0.04);
    color: var(--text-soft);
    display: grid;
    place-items: center;
    cursor: pointer;
}

/* SCREENS */

.screen {
    position: relative;
    z-index: 2;
}

.screen-section {
    display: none;
}

.app-screen {
    display: none;
    position: relative;
    z-index: 2;
    width: 100%;
}

.app-screen.active-screen {
    display: block;
}

/* BALANCE CARD */

.balance-card {
    position: relative;
    padding: 30px 28px 26px;
    border-radius: 34px;
    background:
        linear-gradient(180deg, rgba(20, 36, 44, 0.98), rgba(10, 17, 24, 0.99));
    border: 1px solid rgba(120, 255, 214, 0.18);
    box-shadow:
        0 0 24px rgba(53, 243, 178, 0.13),
        inset 0 1px 0 rgba(255,255,255,0.045);
    margin-bottom: 16px;
    overflow: hidden;
}

.balance-card::after {
    content: "";
    position: absolute;
    right: -70px;
    top: -90px;
    width: 190px;
    height: 190px;
    border-radius: 999px;
    background: radial-gradient(circle, rgba(53, 243, 178, 0.16), transparent 66%);
}

.balance-emblem {
    position: absolute;
    top: 20px;
    right: 14px;
    width: 84px;
    height: 84px;
    object-fit: contain;
    opacity: 0.11;
    pointer-events: none;
    filter:
        drop-shadow(0 0 14px rgba(53, 243, 178, 0.12));
}

.balance-label {
    position: relative;
    z-index: 1;

    display: flex;
    align-items: center;
    gap: 8px;

    color: rgba(225, 242, 248, 0.78);

    font-size: 13px;
    font-weight: 500;

    letter-spacing: 0.06em;
    text-transform: uppercase;

    margin-bottom: 14px;
}

.balance-eye {
    width: 16px;
    height: 16px;

    stroke: currentColor;
    stroke-width: 1.8;

    fill: none;

    stroke-linecap: round;
    stroke-linejoin: round;

    opacity: 0.82;
}

.balance-value {
    position: relative;
    z-index: 1;
    color: var(--text-main);
    font-family: "Sora", sans-serif;
    font-size: 34px;
    line-height: 1.05;
    font-weight: 600;
    letter-spacing: -0.045em;
}

.balance-energy {
    position: relative;
    z-index: 1;

    color: var(--v-green);

    font-family: "Sora", sans-serif;

    font-size: 26px;
    font-weight: 500;

    letter-spacing: -0.035em;

    margin-top: 8px;

    text-shadow: 0 0 14px rgba(53, 243, 178, 0.16);
}

.balance-subvalue {
    position: relative;
    z-index: 1;
    color: var(--text-muted);
    margin-top: 8px;
    font-size: 14px;
}

.status-row {
    position: relative;
    z-index: 1;
    display: flex;
    flex-wrap: nowrap;
    gap: 8px;
    margin-top: 20px;
}

.status-chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
    padding: 7px 9px;
    border-radius: 999px;

    background:
        linear-gradient(
            180deg,
            rgba(255,255,255,0.075),
            rgba(255,255,255,0.04)
        );

    border: 1px solid rgba(255,255,255,0.065);

    color: var(--text-soft);

    font-size: 11px;
    letter-spacing: 0.02em;
}

.status-chip.green {
    background:
        linear-gradient(
            180deg,
            rgba(53, 243, 178, 0.18),
            rgba(53, 243, 178, 0.10)
        );

    border-color: rgba(53, 243, 178, 0.22);

    color: var(--v-green);
}

.status-chip.vip {
    background:
        linear-gradient(
            180deg,
            rgba(84, 215, 255, 0.16),
            rgba(84, 215, 255, 0.08)
        );

    border-color: rgba(84, 215, 255, 0.20);

    color: var(--v-cyan);
}

.chip-svg {
    width: 15px;
    height: 15px;

    flex-shrink: 0;

    stroke: currentColor;
    stroke-width: 1.8;

    fill: none;

    stroke-linecap: round;
    stroke-linejoin: round;
}

/* SIGNAL STRIP */

.section-heading-row {
    display: flex;
    align-items: center;
    justify-content: space-between;

    margin: 18px 0 10px;
}

.section-heading-row h2 {
    margin: 0;

    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;

    color: var(--text-main);
}

.view-all-btn {
    border: none;
    background: transparent;

    color: var(--v-green);

    font-size: 13px;
    font-weight: 500;

    display: flex;
    align-items: center;
    gap: 6px;

    cursor: pointer;
}

.signal-strip {
    display: flex;
    gap: 12px;

    overflow-x: auto;
    overflow-y: hidden;
    scrollbar-width: none;

    padding: 0 4px 4px;
    margin-bottom: 24px;

    border: none;
    border-radius: 0;

    background: transparent;
}

.signal-strip::-webkit-scrollbar {
    display: none;
}

.signal-strip::after {
    content: "";
    position: sticky;
    right: 0;
    min-width: 34px;
    pointer-events: none;
    background: linear-gradient(90deg, rgba(8, 13, 16, 0), rgba(8, 13, 16, 0.9));
}

.signal-card {
    position: relative;

    flex: 0 0 240px;
    min-height: 92px;
    padding: 18px 18px;

    display: flex;
    align-items: center;
    gap: 14px;

    border: 1px solid rgba(120, 255, 214, 0.16);
    border-radius: 22px;

    background:
        linear-gradient(
            180deg,
            rgba(18, 32, 37, 0.94),
            rgba(9, 15, 19, 0.96)
        );

    box-shadow:
        inset 0 1px 0 rgba(255,255,255,0.04),
        0 0 18px rgba(53, 243, 178, 0.08);
}

.signal-icon {
    width: 34px;
    height: 34px;

    border-radius: 50%;
    border: 1px solid rgba(53, 243, 178, 0.45);

    display: flex;
    align-items: center;
    justify-content: center;

    color: var(--v-green);
    font-size: 22px;
}

.signal-card strong {
    display: block;

    color: var(--text-main);

    font-size: 14px;
    font-weight: 600;

    margin-bottom: 4px;
}

.signal-card span {
    display: block;

    color: var(--text-muted);

    font-size: 12px;
}

.signal-card i {
    width: 7px;
    height: 7px;

    border-radius: 50%;
    background: var(--v-green);

    margin-left: auto;

    box-shadow: 0 0 10px rgba(53, 243, 178, 0.65);
}

.signal-card.amber .signal-icon {
    border-color: rgba(243, 200, 107, 0.6);
    color: var(--v-amber);
}

.signal-card.amber i {
    background: var(--v-amber);
    box-shadow: 0 0 10px rgba(243, 200, 107, 0.55);
}

@media (max-width: 1100px) {
    .signal-strip {
        display: flex;
        overflow-x: auto;
        scrollbar-width: none;
    }

    .signal-strip::-webkit-scrollbar {
        display: none;
    }

    .signal-card {
        flex: 0 0 285px;
    }
}

/* QUICK ACTIONS */

.quick-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    margin-bottom: 14px;
}

.quick-action {
    height: 132px;
    border-radius: 24px;
    border: 1px solid rgba(120, 255, 214, 0.14);
    background:
        linear-gradient(
            180deg,
            rgba(18, 31, 36, 0.94),
            rgba(9, 15, 19, 0.96)
        );
    color: var(--text-main);
    cursor: pointer;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 18px;

    box-shadow:
        inset 0 1px 0 rgba(255,255,255,0.04),
        0 0 16px rgba(53, 243, 178, 0.07);

    transition:
        transform 0.2s ease,
        border-color 0.2s ease,
        background 0.2s ease;
}

.quick-action:hover {
    transform: translateY(-2px);

    background:
        linear-gradient(
            180deg,
            rgba(22, 38, 43, 0.98),
            rgba(10, 17, 21, 0.98)
        );

    border-color: rgba(53, 243, 178, 0.2);
}

.quick-icon-wrap {
    width: 44px;
    height: 44px;

    display: flex;
    align-items: center;
    justify-content: center;
}

.quick-svg {
    width: 34px;
    height: 34px;

    stroke: #58f5c8;
    stroke-width: 1.6;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;

    opacity: 0.95;
}

.quick-label {
    font-family: "Sora", sans-serif;

    font-size: 15px;
    font-weight: 500;

    letter-spacing: 0.02em;
    text-transform: uppercase;

    color: #eef7fb;
}

/* PANEL CARDS */

.panel-card {
    padding: 20px;
    border-radius: 26px;
    background:
        linear-gradient(180deg, rgba(16, 27, 32, 0.94), rgba(9, 15, 19, 0.96));
    border: 1px solid rgba(120, 255, 214, 0.12);
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,0.035),
        0 0 16px rgba(53, 243, 178, 0.055);
    margin-bottom: 14px;
}

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

.panel-header h2 {
    font-family: "Sora", sans-serif;

    font-size: 16px;
    font-weight: 600;

    letter-spacing: -0.03em;
    color: var(--text-main);
}

.panel-status {
    padding: 7px 10px;
    border-radius: 999px;
    font-size: 11px;
    background: rgba(255,255,255,0.065);
    color: var(--text-soft);
}

.panel-status.online,
.panel-status.building {
    background: var(--v-green-soft);
    color: var(--v-green);
}

/* MINI STATS */

.mini-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
}

.mini-stat {
    padding: 14px;
    border-radius: 18px;
    background: rgba(255,255,255,0.045);
}

.mini-stat span,
.swap-label {
    display: block;
    color: var(--text-muted);
    font-size: 12px;
    margin-bottom: 6px;
}

.mini-stat strong {
    color: var(--text-main);
    font-size: 16px;
    font-weight: 650;
}

.node-snapshot-card {
    position: relative;
    overflow: hidden;
}

.node-snapshot-card::after {
    content: "";
    position: absolute;
    right: -55px;
    bottom: -70px;
    width: 170px;
    height: 170px;
    border-radius: 999px;
    background: radial-gradient(circle, rgba(53, 243, 178, 0.105), transparent 68%);
    pointer-events: none;
}

.node-snapshot-card .eyebrow {
    display: block;
    margin-bottom: 4px;
    color: var(--v-green);
    font-family: "Sora", sans-serif;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.16em;
}

.node-snapshot-grid {
    gap: 10px;
}

.node-snapshot-grid .mini-stat {
    border: 1px solid rgba(120, 255, 214, 0.08);
    background:
        linear-gradient(180deg, rgba(255,255,255,0.055), rgba(255,255,255,0.025));
}

.node-details-btn {
    position: relative;
    z-index: 2;
    width: 100%;
    margin-top: 14px;
    padding: 13px 16px;
    border: 0;
    border-radius: 18px;
    background:
        linear-gradient(135deg, rgba(53, 243, 178, 0.18), rgba(53, 243, 178, 0.08));
    color: var(--v-green);
    font-family: "Sora", sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: -0.01em;
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,0.06),
        0 0 18px rgba(53, 243, 178, 0.08);
}

/* SMART SWAP */

.swap-block {
    display: grid;
    grid-template-columns: repeat(2, 1fr);

    gap: 14px;

    margin-bottom: 18px;
}

.swap-block div {
    position: relative;

    overflow: hidden;

    padding: 18px 16px;

    border-radius: 22px;

    background:
        linear-gradient(
            180deg,
            rgba(22, 36, 41, 0.94),
            rgba(11, 18, 22, 0.96)
        );

    border: 1px solid rgba(120, 255, 214, 0.10);

    box-shadow:
        inset 0 1px 0 rgba(255,255,255,0.03),
        0 0 16px rgba(53, 243, 178, 0.05);
}

.swap-block div::after {
    content: "";

    position: absolute;

    right: -30px;
    top: -30px;

    width: 90px;
    height: 90px;

    border-radius: 999px;

    background:
        radial-gradient(
            circle,
            rgba(53, 243, 178, 0.12),
            transparent 68%
        );
}

.swap-block strong {
    position: relative;
    z-index: 2;

    display: block;

    margin-top: 6px;

    color: var(--v-green);

    font-family: "Sora", sans-serif;

    font-size: 22px;
    font-weight: 600;

    letter-spacing: -0.04em;

    text-shadow:
        0 0 16px rgba(53, 243, 178, 0.14);
}

.panel-copy {
    color: var(--text-soft);

    font-size: 13px;
    line-height: 1.65;
}

/* BOTTOM NAV */

.bottom-nav {
    position: fixed;
    z-index: 20;
    left: 50%;
    bottom: 16px;
    transform: translateX(-50%);
    width: min(calc(100% - 24px), 420px);
    height: 72px;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    align-items: center;
    gap: 4px;
    padding: 8px;
    border-radius: 26px;
    background: rgba(8, 12, 15, 0.92);
    border: 1px solid rgba(255,255,255,0.07);
    backdrop-filter: blur(18px);
    box-shadow: 0 18px 48px rgba(0,0,0,0.44);
}

.nav-item {
    height: 56px;

    border: none;
    border-radius: 22px;

    background: transparent;

    color: #7e8f99;

    cursor: pointer;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;

    transition:
        background 0.2s ease,
        color 0.2s ease,
        transform 0.2s ease;
}

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

.nav-item span {
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.01em;
}

.nav-svg {
    width: 27px;
    height: 27px;

    stroke: currentColor;
    fill: none;

    stroke-width: 1.85;
    stroke-linecap: round;
    stroke-linejoin: round;

    opacity: 0.92;
}

.crown-svg {
    width: 30px;
}

.nav-item.active {
    background: linear-gradient(
        180deg,
        rgba(53, 243, 178, 0.16) 0%,
        rgba(53, 243, 178, 0.10) 100%
    );

    color: var(--v-green);

    border: 1px solid rgba(53, 243, 178, 0.14);

    box-shadow:
        inset 0 1px 0 rgba(255,255,255,0.04),
        0 0 18px rgba(53, 243, 178, 0.08);
}

/* NODE */

.node-overview-card {
    position: relative;
    overflow: hidden;
    padding: 20px;
    border-radius: 28px;
    background:
        linear-gradient(180deg, rgba(18, 32, 37, 0.94), rgba(9, 15, 19, 0.96));
    border: 1px solid rgba(120, 255, 214, 0.16);
    box-shadow:
        0 0 22px rgba(53, 243, 178, 0.10),
        0 24px 60px rgba(0, 0, 0, 0.45),
        inset 0 1px 0 rgba(255,255,255,0.04);
}

.node-overview-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at top right,
        rgba(53, 243, 178, 0.13),
        transparent 44%);
    pointer-events: none;
}

.node-overview-top {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    align-items: flex-start;
}

.section-eyebrow {
    margin: 0 0 10px;
    font-size: 0.66rem;
    letter-spacing: 0.24em;
    color: rgba(148, 163, 184, 0.7);
}

.node-title-row {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.node-title-row h1 {
    margin: 0;
    font-size: 1.6rem;
    font-weight: 700;
    letter-spacing: -0.04em;
}

.node-status-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(16, 185, 129, 0.12);
    color: #6ee7b7;
    font-size: 0.7rem;
    letter-spacing: 0.12em;
}

.node-status-pill span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #34d399;
    box-shadow: 0 0 12px #34d399;
}

.node-id-row {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 12px;
    color: rgba(203, 213, 225, 0.72);
    font-size: 0.78rem;
}

.heartbeat-ring {
    width: 104px;
    height: 104px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2px;
    flex-shrink: 0;
    position: relative;

    background:
        radial-gradient(circle at center,
        rgba(45, 212, 191, 0.14),
        rgba(8, 15, 24, 0.98));

    border:
        1px solid rgba(110, 231, 183, 0.08);

    box-shadow:
        inset 0 0 30px rgba(45,212,191,0.05),
        0 0 30px rgba(45,212,191,0.08);
}

.heartbeat-ring::before {
    content: "";
    position: absolute;
    inset: 10px;
    border-radius: 50%;
    border: 4px solid rgba(45,212,191,0.88);
    border-left-color: rgba(45,212,191,0.15);
    border-bottom-color: rgba(45,212,191,0.15);
    transform: rotate(-18deg);
    box-shadow:
        0 0 16px rgba(45,212,191,0.22);
}

.heartbeat-ring svg {
    width: 22px;
    height: 22px;
    color: #5eead4;
    stroke-width: 2.2;
    margin-bottom: 2px;

    filter:
        drop-shadow(0 0 8px rgba(45,212,191,0.45));
}

.heartbeat-ring strong {
    margin-top: 6px;
    font-size: 0.58rem;
    letter-spacing: 0.16em;
    color: rgba(255,255,255,0.88);
}

.heartbeat-ring span {
    font-size: 0.72rem;
    color: rgba(203, 213, 225, 0.72);
}

.node-device-preview {
    display: flex;
    justify-content: center;
    margin-top: 18px;
    margin-bottom: 6px;
    position: relative;
    z-index: 2;
}

.node-device-preview img {
    width: 145px;
    opacity: 0.94;
    transform: translateY(4px);

    filter:
        drop-shadow(0 0 18px rgba(45,212,191,0.18));
}

.node-stat-strip {
    display: grid;
    grid-template-columns: repeat(4, 1fr);

    margin-top: 22px;

    border-radius: 24px;

    background:
        linear-gradient(180deg,
        rgba(255,255,255,0.025),
        rgba(255,255,255,0.018));

    border: 1px solid rgba(148,163,184,0.08);

    overflow: hidden;
}

.node-stat-strip div {
    position: relative;

    padding: 16px 12px 14px;

    min-height: 96px;

    display: grid;
    grid-template-rows: 24px 28px 20px;
    align-items: center;
}

.node-stat-strip div:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 22px;
    right: 0;

    width: 1px;
    height: calc(100% - 44px);

    background:
        linear-gradient(to bottom,
        transparent,
        rgba(148,163,184,0.16),
        transparent);
}

.node-stat-strip span {
    display: block;

    margin: 0;

    min-height: 24px;

    font-size: 0.53rem;
    line-height: 1.15;
    letter-spacing: 0.17em;

    color: rgba(203,213,225,0.64);
}

.node-stat-strip strong {
    display: block;

    font-size: 0.82rem;
    font-weight: 700;

    line-height: 1.05;

    letter-spacing: -0.04em;

    color: rgba(255,255,255,0.96);
}

.node-stat-strip small {
    margin-top: 7px;

    color: rgba(203,213,225,0.58);

    font-size: 0.66rem;
    line-height: 1.25;
}

.node-full-details-btn {
    width: 100%;
    margin-top: 16px;
    height: 48px;
    border: none;
    border-radius: 15px;
    background:
        linear-gradient(135deg,
        rgba(45,212,191,0.18),
        rgba(16,185,129,0.1));
    color: #d1fae5;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 18px;
    font-size: 0.84rem;
    font-weight: 600;
}

.node-section-label {
    margin: 28px 0 14px;
    font-size: 0.72rem;
    letter-spacing: 0.18em;
    color: rgba(148, 163, 184, 0.72);
}

.node-progress-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.node-progress-card {
    position: relative;

    padding: 20px 18px 0;

    border-radius: 26px;

    background:
        linear-gradient(
            180deg,
            rgba(18, 32, 37, 0.94),
            rgba(9, 15, 19, 0.96)
        );

    border: 1px solid rgba(120, 255, 214, 0.14);

    overflow: hidden;

    min-height: 238px;

    display: flex;
    flex-direction: column;

    box-shadow:
        inset 0 1px 0 rgba(255,255,255,0.04),
        0 0 18px rgba(53, 243, 178, 0.08);
}

.node-progress-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.node-progress-icon {
    width: 54px;
    height: 54px;

    border-radius: 50%;

    background:
        radial-gradient(circle at center,
        rgba(45,212,191,0.24),
        rgba(8,15,24,0.96));

    border: 1px solid rgba(110,231,183,0.18);

    display: flex;
    align-items: center;
    justify-content: center;

    box-shadow:
        inset 0 0 20px rgba(45,212,191,0.14),
        0 0 24px rgba(45,212,191,0.12);
}

.node-progress-icon svg {
    width: 29px;
    height: 29px;
    color: #6ee7b7;
    stroke-width: 1.9;
}

.node-info-icon {
    width: 17px;
    height: 17px;
    color: rgba(203,213,225,0.72);
    stroke-width: 2;
}

.node-progress-card h3 {
    margin: 18px 0 8px;

    min-height: 48px;

    font-size: 1rem;
    line-height: 1.18;
    font-weight: 500;

    color: rgba(255,255,255,0.94);
}

.node-progress-card strong {
    display: block;

    font-size: 2.35rem;

    line-height: 1;

    letter-spacing: -0.06em;

    color: #6ee7b7;
}

.node-progress-bar {
    height: 7px;

    margin-top: 18px;

    border-radius: 999px;

    background: rgba(255,255,255,0.06);

    overflow: hidden;

    flex-shrink: 0;
}

.node-progress-bar span {
    display: block;
    height: 100%;
    border-radius: inherit;

    background:
        linear-gradient(90deg,
        #34d399,
        #2dd4bf);

    box-shadow:
        0 0 12px rgba(45,212,191,0.28);
}

.node-progress-card p {
    margin-top: 14px;
    margin-bottom: 0;

    min-height: 36px;

    color: rgba(203,213,225,0.74);

    font-size: 0.82rem;
    line-height: 1.35;
}

.node-progress-card button {
    width: calc(100% + 36px);
    margin-top: auto;
    margin-left: -18px;
    margin-bottom: 0;

    height: 52px;

    border: none;
    border-top: 1px solid rgba(148,163,184,0.08);

    border-radius: 0 0 26px 26px;

    background:
        linear-gradient(180deg,
        rgba(255,255,255,0.02),
        rgba(255,255,255,0.035));

    color: rgba(255,255,255,0.92);

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 0 18px;

    font-size: 0.82rem;
    font-weight: 600;
}

.node-strength-score {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.node-score-ring {
    position: relative;

    width: 154px;
    height: 154px;

    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;

    background:
        radial-gradient(circle at center,
        rgba(45,212,191,0.18),
        rgba(10,15,24,0.98));

    border: 1px solid rgba(110,231,183,0.12);

    box-shadow:
        0 0 34px rgba(45,212,191,0.10),
        inset 0 0 26px rgba(255,255,255,0.03);
}

.node-score-ring::before {
    content: "";

    position: absolute;
    inset: -10px;

    border-radius: 50%;

    border: 1px solid rgba(45,212,191,0.08);

    box-shadow:
        0 0 24px rgba(45,212,191,0.08);

    pointer-events: none;
}

.node-score-ring strong {
    font-size: 2.75rem;
    line-height: 1;
    letter-spacing: -0.05em;
}

.node-score-ring span {
    margin-top: 4px;
    color: rgba(203,213,225,0.74);
    font-size: 0.9rem;
}

.node-strength-score p {
    margin-top: 14px;
    color: #6ee7b7;
    font-weight: 650;
    letter-spacing: -0.01em;
    text-shadow: 0 0 12px rgba(45,212,191,0.16);
}

.node-strength-factors {
    margin-top: 30px;
}

.node-health-card,
.node-alert-card {
    padding: 22px;
    border-radius: 28px;
    background:
        linear-gradient(
            180deg,
            rgba(18, 32, 37, 0.94),
            rgba(9, 15, 19, 0.96)
        );
    border: 1px solid rgba(120, 255, 214, 0.13);
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,0.035),
        0 0 16px rgba(53, 243, 178, 0.065);
}

.node-strength-card {
    padding: 26px 24px 24px;
    border-radius: 30px;

    background:
        radial-gradient(
            circle at top,
            rgba(53, 243, 178, 0.12),
            transparent 40%
        ),
        linear-gradient(
            180deg,
            rgba(18, 32, 37, 0.94),
            rgba(9, 15, 19, 0.96)
        );

    border: 1px solid rgba(120, 255, 214, 0.14);

    box-shadow:
        inset 0 1px 0 rgba(255,255,255,0.04),
        0 0 22px rgba(53, 243, 178, 0.08);
}

.node-health-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    padding: 15px 2px;
    border-bottom: 1px solid rgba(148,163,184,0.075);
}

.node-health-row:last-of-type {
    border-bottom: none;
}

.node-health-left,
.node-health-right {
    display: flex;
    align-items: center;
    gap: 12px;
}

.node-health-right {
    margin-left: auto;
    color: rgba(255,255,255,0.92);
    font-size: 0.92rem;
    font-weight: 600;
}

.node-health-right i,
.node-health-right svg {
    width: 18px;
    height: 18px;
    color: rgba(203,213,225,0.62);
}

.node-check-icon {
    width: 36px;
    height: 36px;
    border-radius: 999px;
    background:
        radial-gradient(circle at center,
        rgba(110,231,183,0.22),
        rgba(16,185,129,0.08));
    border: 1px solid rgba(110,231,183,0.16);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6ee7b7;
    box-shadow: 0 0 18px rgba(16,185,129,0.13);
}

.node-check-icon i,
.node-check-icon svg {
    width: 18px;
    height: 18px;
}

.node-health-left strong {
    display: block;
    font-size: 0.91rem;
    font-weight: 600;
    letter-spacing: -0.01em;
}

.node-health-left small {
    display: block;
    margin-top: 3px;
    color: #6ee7b7;
    font-size: 0.75rem;
    font-weight: 500;
}

.node-health-summary {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 14px;
    padding: 16px 16px;
    border-radius: 18px;

    background:
        linear-gradient(
            180deg,
            rgba(18, 32, 37, 0.78),
            rgba(9, 15, 19, 0.90)
        );

    border: 1px solid rgba(120,255,214,0.12);

    box-shadow:
        inset 0 1px 0 rgba(255,255,255,0.035),
        0 0 14px rgba(53,243,178,0.05);
}

.node-health-summary strong {
    display: block;
    color: #6ee7b7;
    font-size: 0.92rem;
    font-weight: 600;
}

.node-health-summary small {
    display: block;
    margin-top: 4px;
    color: rgba(203,213,225,0.70);
    font-size: 0.75rem;
}

.node-shield-icon {
    width: 42px;
    height: 42px;
    border-radius: 999px;
    background:
        radial-gradient(circle at center,
        rgba(110,231,183,0.22),
        rgba(16,185,129,0.08));
    border: 1px solid rgba(110,231,183,0.16);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6ee7b7;
    box-shadow: 0 0 20px rgba(16,185,129,0.14);
}

.node-shield-icon i,
.node-shield-icon svg {
    width: 21px;
    height: 21px;
}

.node-strength-score {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.node-score-ring {
    position: relative;

    width: 154px;
    height: 154px;

    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;

    background:
        radial-gradient(circle at center,
        rgba(45,212,191,0.18),
        rgba(10,15,24,0.98));

    border: 1px solid rgba(110,231,183,0.12);

    box-shadow:
        0 0 34px rgba(45,212,191,0.10),
        inset 0 0 26px rgba(255,255,255,0.03);
}

.node-score-ring::before {
    content: "";

    position: absolute;
    inset: -10px;

    border-radius: 50%;

    border: 1px solid rgba(45,212,191,0.08);

    box-shadow:
        0 0 24px rgba(45,212,191,0.08);

    pointer-events: none;
}

.node-score-ring strong {
    font-size: 2.75rem;
    line-height: 1;
    letter-spacing: -0.05em;
}

.node-score-ring span {
    margin-top: 4px;
    color: rgba(203,213,225,0.74);
    font-size: 0.9rem;
}

.node-strength-score p {
    margin-top: 14px;
    color: #6ee7b7;
    font-weight: 650;
    letter-spacing: -0.01em;
    text-shadow: 0 0 12px rgba(45,212,191,0.16);
}

.node-strength-factors {
    margin-top: 30px;
}

.node-strength-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 18px;
}

.node-strength-title strong {
    font-size: 0.95rem;
    font-weight: 650;
    letter-spacing: -0.02em;
}

.node-factor-row {
    display: grid;
    grid-template-columns: 1.28fr 1fr auto;
    gap: 12px;
    align-items: center;
    margin-bottom: 15px;
}

.node-factor-row span {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(226,232,240,0.78);
    font-size: 0.8rem;
    line-height: 1.15;
}

.node-factor-row span i,
.node-factor-row span svg {
    width: 15px;
    height: 15px;
    color: #6ee7b7;
}

.node-factor-row div {
    height: 6px;
    border-radius: 999px;
    background: rgba(148,163,184,0.15);
    overflow: hidden;
}

.node-factor-row em {
    display: block;
    height: 100%;
    border-radius: inherit;
    background:
        linear-gradient(90deg,
        #6ee7b7,
        #34d399,
        #2dd4bf);
    box-shadow: 0 0 12px rgba(16,185,129,0.28);
}

.node-factor-row b {
    color: rgba(255,255,255,0.92);
    font-size: 0.82rem;
    font-weight: 650;
}

.node-alert-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 14px;

    padding: 20px 22px;
    border-radius: 26px;

    background:
        linear-gradient(
            180deg,
            rgba(18, 32, 37, 0.94),
            rgba(9, 15, 19, 0.96)
        );

    border: 1px solid rgba(120, 255, 214, 0.14);

    box-shadow:
        inset 0 1px 0 rgba(255,255,255,0.04),
        0 0 18px rgba(53, 243, 178, 0.07);
}

.node-alerts-title-row button {
    border: none;
    background: transparent;
    color: #6ee7b7;
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.76rem;
    font-weight: 600;
    letter-spacing: -0.01em;
    padding: 0;
}

.node-alerts-title-row button i,
.node-alerts-title-row button svg {
    width: 16px;
    height: 16px;
}

.node-alert-card .node-health-left {
    gap: 12px;
}

.node-alert-card .node-check-icon {
    width: 38px;
    height: 38px;
}

.node-alert-card .node-health-left strong {
    font-size: 0.9rem;
}

.node-alert-card .node-health-left small {
    margin-top: 4px;
    color: rgba(203,213,225,0.66);
    font-size: 0.73rem;
}

.node-health-right.resolved {
    gap: 10px;
}

.node-health-right.resolved span {
    display: flex;
    align-items: center;
    justify-content: center;

    min-width: 88px;
    height: 34px;
    padding: 0 14px;
    border-radius: 999px;

    background: rgba(16,185,129,0.10);
    border: 1px solid rgba(110,231,183,0.14);

    color: #6ee7b7;
    font-size: 0.8rem;
    font-weight: 650;
    letter-spacing: -0.01em;

    box-shadow:
        inset 0 1px 0 rgba(255,255,255,0.03),
        0 0 16px rgba(45,212,191,0.08);
}

.node-health-right.resolved i,
.node-health-right.resolved svg {
    width: 17px;
    height: 17px;
    color: rgba(203,213,225,0.66);
}

.progress-block {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.progress-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: var(--text-soft);
    font-size: 13px;
}

.progress-top strong {
    color: var(--v-green);
}

.progress-track {
    width: 100%;
    height: 10px;
    border-radius: 999px;
    background: rgba(255,255,255,0.06);
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--v-green), var(--v-cyan));
    box-shadow: 0 0 16px rgba(53, 243, 178, 0.24);
}

/* WALLET */

.wallet-hero-card {
    position: relative;
    overflow: hidden;
    margin-bottom: 16px;
    padding: 22px;
    border-radius: 30px;
    background:
        linear-gradient(180deg, rgba(16, 28, 34, 0.96), rgba(8, 15, 20, 0.98));
    border: 1px solid rgba(120, 255, 214, 0.12);
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,0.04),
        0 0 22px rgba(53, 243, 178, 0.07);
}

.wallet-hero-card::after {
    content: "";
    position: absolute;
    right: -90px;
    top: -90px;
    width: 220px;
    height: 220px;
    border-radius: 999px;
    background:
        radial-gradient(circle, rgba(53, 243, 178, 0.12), transparent 68%);
    pointer-events: none;
}

.wallet-hero-top {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 22px;
}

.wallet-total {
    margin-top: 8px;
    color: var(--text-main);
    font-family: "Sora", sans-serif;
    font-size: 34px;
    font-weight: 700;
    letter-spacing: -0.05em;
    line-height: 1;
}

.wallet-subtotal {
    margin-top: 10px;
    color: var(--text-muted);
    font-size: 13px;
}

.wallet-ring-wrap {
    flex-shrink: 0;
}

.wallet-ring {
    position: relative;

    width: 118px;
    height: 118px;

    border-radius: 999px;

    display: flex;
    align-items: center;
    justify-content: center;

    text-align: center;

    background:
        conic-gradient(
            from 210deg,
            rgba(53,243,178,0.12) 0deg,
            rgba(53,243,178,0.92) 58deg,
            rgba(120,255,214,0.35) 112deg,
            rgba(18,26,32,0.92) 150deg,
            rgba(10,16,20,0.98) 220deg,
            rgba(53,243,178,0.45) 290deg,
            rgba(53,243,178,0.12) 360deg
        );

    box-shadow:
        inset 0 0 34px rgba(53,243,178,0.10),
        0 0 24px rgba(53,243,178,0.10);
}

.wallet-ring::before {
    content: "";

    position: absolute;
    inset: 12px;

    border-radius: 999px;

    background:
        radial-gradient(
            circle at center,
            rgba(7,14,18,0.98),
            rgba(4,10,14,1)
        );

    border: 1px solid rgba(120,255,214,0.08);
}

.wallet-ring span {
    color: var(--v-green);
    font-family: "Sora", sans-serif;
    font-size: 11px;
    font-weight: 700;
    line-height: 1.35;
    letter-spacing: 0.08em;

    position: relative;
    z-index: 2;
}

.wallet-mini-assets {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.wallet-mini-card {
    padding: 16px;
    border-radius: 20px;
    border: 1px solid rgba(120, 255, 214, 0.12);
    background:
        linear-gradient(
            180deg,
            rgba(18, 32, 37, 0.90),
            rgba(9, 15, 19, 0.94)
        );
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,0.035),
        0 0 14px rgba(53, 243, 178, 0.045);
}

.wallet-mini-icon {
    width: 30px;
    height: 30px;
    margin-bottom: 10px;
    object-fit: contain;
    border-radius: 999px;
}

.wallet-mini-card span {
    display: block;
    margin-bottom: 10px;
    color: var(--text-muted);
    font-size: 12px;
}

.wallet-mini-card strong {
    display: block;
    color: var(--text-main);
    font-family: "Sora", sans-serif;
    font-size: 20px;
    font-weight: 650;
    letter-spacing: -0.04em;
}

.wallet-mini-card small {
    display: block;
    margin-top: 8px;
    color: var(--v-green);
    font-size: 11px;
    letter-spacing: 0.03em;
}

.wallet-actions {
    margin-bottom: 14px;
}

.asset-list,
.activity-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.asset-row,
.activity-row {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 16px 18px;
    border-radius: 22px;
    border: 1px solid rgba(120, 255, 214, 0.11);
    background:
        linear-gradient(
            180deg,
            rgba(18, 32, 37, 0.90),
            rgba(9, 15, 19, 0.94)
        );
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,0.035),
        0 0 14px rgba(53, 243, 178, 0.045);
    overflow: hidden;
}

.asset-row::after,
.activity-row::after {
    content: "›";
    position: absolute;
    right: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--v-green);
    font-size: 24px;
    font-weight: 300;
    opacity: 0.85;
}

.asset-row div,
.activity-row div {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.asset-left {
    flex-direction: row !important;
    align-items: center;
    gap: 12px !important;
}

.asset-icon {
    width: 34px;
    height: 34px;
    border-radius: 999px;
    object-fit: contain;
    flex-shrink: 0;
}

.asset-row div:last-child {
    padding-right: 22px;
    text-align: right;
}

.asset-row strong,
.activity-row strong {
    color: var(--text-main);
    font-family: "Sora", sans-serif;
    font-size: 15px;
    font-weight: 650;
    letter-spacing: -0.03em;
}

.asset-row span,
.activity-row span {
    color: var(--text-muted);
    font-size: 12px;
    line-height: 1.35;
}

.transaction-row::after {
    display: none;
}

.transaction-left {
    display: flex !important;
    flex-direction: row !important;
    align-items: center;
    gap: 14px !important;
}

.transaction-icon {
    width: 42px;
    height: 42px;
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--v-green);
    font-size: 18px;
    font-weight: 300;
    line-height: 1;
    background:
        radial-gradient(circle, rgba(53, 243, 178, 0.14), rgba(255,255,255,0.02));
    border: 1px solid rgba(120, 255, 214, 0.10);
}

.transaction-amount {
    text-align: right;
}

.transaction-amount strong {
    display: block;
}

.transaction-amount span {
    display: block;
    margin-top: 6px;
}

.transaction-row small {
    display: block;
    margin-top: 4px;
    color: var(--text-muted);
    font-size: 11px;
}

.wallet-bottom-actions {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    margin: 14px 0 18px;
}

.wallet-bottom-btn {
    min-height: 48px;
    border: 1px solid rgba(120, 255, 214, 0.14);
    border-radius: 16px;
    background:
        linear-gradient(180deg, rgba(16, 28, 34, 0.96), rgba(8, 15, 20, 0.98));
    color: var(--v-green);
    font-family: "Sora", sans-serif;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.03em;
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,0.04),
        0 0 12px rgba(53, 243, 178, 0.06);
}

.wallet-bottom-btn span {
    margin-right: 10px;
    font-size: 22px;
    line-height: 1;
}

/* RESPONSIVE */

@media (max-width: 390px) {
    .app-shell {
        padding-left: 12px;
        padding-right: 12px;
    }

    .balance-value {
        font-size: 30px;
    }

    .brand-logo {
        width: 132px;
    }

    .quick-grid {
        gap: 8px;
    }

    .quick-action {
        height: 112px;
    }

    .bottom-nav {
        width: calc(100% - 18px);
    }

    .nav-item {
        font-size: 10px;
    }
}

/* INTELLIGENCE TAB */

.intelligence-hero-card {
    position: relative;
    overflow: hidden;

    padding: 28px 24px 24px;

    border-radius: 34px;

    background:
        radial-gradient(
            circle at top right,
            rgba(53, 243, 178, 0.12),
            transparent 46%
        ),
        linear-gradient(
            180deg,
            rgba(14, 24, 30, 0.97),
            rgba(6, 12, 18, 0.99)
        );

    border: 1px solid rgba(120, 255, 214, 0.10);

    box-shadow:
        inset 0 1px 0 rgba(255,255,255,0.04),
        0 0 34px rgba(53, 243, 178, 0.06);

    margin-bottom: 22px;
}

.intelligence-hero-card::after {
    content: "";
    position: absolute;
    right: -90px;
    top: -90px;
    width: 220px;
    height: 220px;
    border-radius: 999px;

    background:
        radial-gradient(circle,
        rgba(53, 243, 178, 0.13),
        transparent 68%);

    pointer-events: none;
}

.intel-tab-strip {
    display: grid;
    grid-template-columns: repeat(4, 1fr);

    margin-bottom: 20px;

    border-radius: 22px;

    overflow: hidden;

    border: 1px solid rgba(120, 255, 214, 0.10);
    width: 100%;

    background:
        linear-gradient(
            180deg,
            rgba(18, 32, 37, 0.84),
            rgba(9, 15, 19, 0.96)
        );

    box-shadow:
        inset 0 1px 0 rgba(255,255,255,0.035),
        0 0 18px rgba(53, 243, 178, 0.045);
}

.intel-tab {
    position: relative;

    height: 54px;

    border: none;
    border-right: 1px solid rgba(255,255,255,0.045);

    background: transparent;

    color: rgba(210, 225, 222, 0.66);

    font-size: 13px;
    font-weight: 500;

    letter-spacing: -0.01em;

    transition:
        color 180ms ease,
        background 180ms ease,
        box-shadow 180ms ease,
        transform 180ms ease;
}

.intel-tab:last-child {
    border-right: none;
}

.intel-tab.active {
    color: #35f3b2;

    background:
        linear-gradient(
            180deg,
            rgba(53, 243, 178, 0.18),
            rgba(53, 243, 178, 0.055)
        );

    box-shadow:
        inset 0 0 22px rgba(53, 243, 178, 0.10),
        0 0 14px rgba(53, 243, 178, 0.06);
}

.intel-tab {
    transition:
        color 180ms ease,
        background 180ms ease,
        box-shadow 180ms ease,
        transform 180ms ease;
}

.intel-tab:hover {
    color: #35f3b2;
    background: rgba(53,243,178,0.06);
}

.intel-tab:active {
    transform: scale(0.98);
}

.intel-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 120px;
    gap: 28px;
    align-items: center;

    margin-top: 24px;
}

.intel-main-signal {
    display: flex;
    flex-direction: column;
    gap: 13px;

    min-width: 0;

    justify-content: center;
}

.intel-signal {
    color: var(--v-green);

    font-family: "Sora", sans-serif;

    font-size: 48px;
    font-weight: 700;

    line-height: 0.95;
    letter-spacing: -0.06em;

    text-shadow:
        0 0 24px rgba(53, 243, 178, 0.18);
}

.intel-confidence-ring {
    width: 120px;
    height: 120px;

    margin-top: 18px;
    border-radius: 999px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(120, 255, 214, 0.22);

    background:
        radial-gradient(circle at center,
        rgba(53, 243, 178, 0.16),
        rgba(255,255,255,0.015));

    box-shadow:
        inset 0 0 40px rgba(53, 243, 178, 0.08),
        0 0 34px rgba(53, 243, 178, 0.12);

    animation: intelRingPulse 4.4s ease-in-out infinite;
}

.intel-ring-pulse {
    width: 72px;
    height: 28px;

    margin-top: 8px;

    animation: intelWavePulse 3.6s ease-in-out infinite;
}

.intel-ring-pulse path {
    fill: none;

    stroke: var(--v-green);
    stroke-width: 2.4;
    stroke-linecap: round;
    stroke-linejoin: round;

    filter:
        drop-shadow(0 0 6px rgba(53, 243, 178, 0.45));
}

@keyframes intelRingPulse {
    0%, 100% {
        box-shadow:
            inset 0 0 34px rgba(53, 243, 178, 0.07),
            0 0 24px rgba(53, 243, 178, 0.10);
    }

    50% {
        box-shadow:
            inset 0 0 46px rgba(53, 243, 178, 0.14),
            0 0 42px rgba(53, 243, 178, 0.18);
    }
}

@keyframes intelWavePulse {
    0%, 100% {
        opacity: 0.72;
        transform: scaleX(0.96);
    }

    50% {
        opacity: 1;
        transform: scaleX(1.04);
    }
}

.intel-ring-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.intel-ring-inner strong {
    color: var(--v-green);

    font-family: "Sora", sans-serif;

    font-size: 38px;
    font-weight: 700;

    letter-spacing: -0.06em;
}

.intel-ring-inner span {
    color: var(--text-soft);

    font-size: 13px;
    letter-spacing: 0.02em;
}

.intel-ring-pulse {
    width: 72px;
    height: 28px;

    margin-top: 8px;
}

.intel-ring-pulse svg {
    display: block;

    width: 100%;
    height: 100%;

    overflow: visible;
}

.intel-ring-pulse path {
    fill: none;

    stroke: var(--v-green);
    stroke-width: 2.4;
    stroke-linecap: round;
    stroke-linejoin: round;

    filter:
        drop-shadow(0 0 6px rgba(53, 243, 178, 0.45));
}

.intel-momentum-grid {
    display: grid;
    grid-template-columns: 1.45fr 0.85fr;
    gap: 18px;

    margin-top: 20px;
}

.intel-momentum-chart {
    display: flex;
    flex-direction: column;
    gap: 14px;

    padding: 18px 18px 14px;

    border-radius: 24px;

    background:
        linear-gradient(
            180deg,
            rgba(10, 20, 26, 0.62),
            rgba(6, 12, 18, 0.90)
        );

    border: 1px solid rgba(120, 255, 214, 0.05);

    position: relative;
    overflow: hidden;

    animation: intelPanelPulse 6s ease-in-out infinite;
}

.intel-chart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.intel-chart-header span {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: rgba(220,255,245,0.82);
}

.intel-chart-header small {
    font-size: 0.62rem;
    letter-spacing: 0.08em;
    color: rgba(120,255,214,0.42);
}

.intel-chart-visual {
    position: relative;

    height: 168px;

    margin-top: 2px;

    border-radius: 22px;

    background:
        linear-gradient(
            rgba(255,255,255,0.025) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255,255,255,0.025) 1px,
            transparent 1px
        ),
        linear-gradient(
            180deg,
            rgba(18, 34, 40, 0.26),
            rgba(7, 14, 18, 0.04)
        );

    background-size:
        100% 28px,
        28px 100%,
        100% 100%;

    overflow: hidden;

    isolation: isolate;
}

.intel-chart-visual::after {
    content: "";

    position: absolute;
    top: 0;
    bottom: 0;
    left: -45%;

    width: 35%;

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(53,243,178,0.10),
            transparent
        );

    animation: intelChartSweep 4.8s ease-in-out infinite;
    z-index: 1;
    pointer-events: none;
}

@keyframes intelChartSweep {
    0% {
        transform: translateX(0);
        opacity: 0;
    }

    20% {
        opacity: 1;
    }

    65% {
        opacity: 0.7;
    }

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

.intel-chart-svg {
    width: 100%;
    height: 100%;
}

.intel-chart-line {
    fill: none;
    stroke: #35f3b2;
    stroke-width: 4.5;
    stroke-linecap: round;
    stroke-linejoin: round;

    filter:
        drop-shadow(0 0 10px rgba(53,243,178,0.72));

    animation: intelChartGlow 3.8s ease-in-out infinite;
}

.intel-chart-area {
    fill: rgba(53,243,178,0.12);
}

@keyframes intelChartGlow {
    0%, 100% {
        filter:
            drop-shadow(0 0 8px rgba(53,243,178,0.52));
        opacity: 0.86;
    }

    50% {
        filter:
            drop-shadow(0 0 22px rgba(53,243,178,1));
        opacity: 1;
    }
}

@keyframes intelPanelPulse {
    0%, 100% {
        box-shadow:
            inset 0 0 0 rgba(53,243,178,0),
            0 0 0 rgba(53,243,178,0);
    }

    50% {
        box-shadow:
            inset 0 0 24px rgba(53,243,178,0.025),
            0 0 18px rgba(53,243,178,0.05);
    }
}

.intel-chart-labels {
    display: flex;
    justify-content: space-between;
}

.intel-chart-labels span {
    font-size: 0.60rem;
    letter-spacing: 0.08em;
    color: rgba(210,255,245,0.40);
}

.intel-momentum-side {
    display: flex;
    flex-direction: column;
    justify-content: space-between;

    gap: 14px;
}

.intel-score-panel,
.intel-trend-panel {
    display: flex;
    flex-direction: column;
    justify-content: center;

    gap: 10px;

    padding: 18px;

    border-radius: 22px;

    background:
        linear-gradient(
            180deg,
            rgba(10, 18, 24, 0.58),
            rgba(6, 12, 18, 0.92)
        );

    border: 1px solid rgba(120,255,214,0.05);
}

.intel-score-panel span,
.intel-trend-panel span {
    font-size: 0.70rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;

    color: rgba(220,255,245,0.60);
}

.intel-score-panel,
.intel-trend-panel,
.intel-factor-row,
.intel-alert-list .node-alert-card {
    transition:
        transform 180ms ease,
        border-color 180ms ease,
        background 180ms ease,
        box-shadow 180ms ease;
}

.intel-score-panel:hover,
.intel-trend-panel:hover,
.intel-alert-list .node-alert-card:hover {
    transform: translateY(-1px);
    border-color: rgba(53,243,178,0.14);
    box-shadow: 0 0 18px rgba(53,243,178,0.055);
}

.intel-factor-row:hover {
    background: rgba(53,243,178,0.025);
}

.intel-score-main {
    display: flex;
    align-items: flex-end;
    gap: 4px;
}

.intel-score-main strong {
    font-size: 2.3rem;
    line-height: 1;
    color: #dffff5;
}

.intel-score-main small {
    font-size: 0.92rem;
    margin-bottom: 4px;

    color: rgba(220,255,245,0.52);
}

.intel-score-panel em {
    font-style: normal;
    font-size: 0.78rem;

    color: #35f3b2;
}

.intel-trend-panel strong {
    font-size: 1.4rem;
    line-height: 1.1;

    color: #35f3b2;
}

.intel-trend-panel small {
    font-size: 0.72rem;
    line-height: 1.5;

    color: rgba(210,255,245,0.58);
}

.intel-factor-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.intel-factor-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;

    padding: 15px 0;

    border-radius: 0;
    border: none;
    border-bottom: 1px solid rgba(120, 255, 214, 0.08);

    background: transparent;
    box-shadow: none;
}

.intel-factor-row:last-child {
    border-bottom: none;
}

.intel-factor-row span {
    color: var(--text-soft);

    font-size: 13px;
}

.intel-factor-row strong {
    color: var(--v-green);

    font-size: 12px;
    font-weight: 700;

    letter-spacing: 0.05em;
}

.intel-alert-list {
    display: flex;
    flex-direction: column;
}

.intel-alert-row {
    display: flex;
    align-items: center;
    gap: 14px;

    padding: 15px 0;

    border-bottom: 1px solid rgba(120,255,214,0.07);

    background: transparent;
    border-radius: 0;

    transition:
        background 180ms ease,
        transform 180ms ease;
}

.intel-alert-row:last-child {
    border-bottom: none;
}

.intel-alert-row:hover {
    background: rgba(53,243,178,0.025);
}

.intel-alert-dot {
    width: 10px;
    height: 10px;

    border-radius: 999px;

    flex-shrink: 0;
}

.intel-alert-dot.green {
    background: #35f3b2;

    box-shadow:
        0 0 10px rgba(53,243,178,0.72);
}

.intel-alert-dot.yellow {
    background: #ffc857;

    box-shadow:
        0 0 10px rgba(255,200,87,0.55);
}

.intel-alert-copy {
    display: flex;
    flex-direction: column;
    gap: 3px;

    flex: 1;
}

.intel-alert-copy strong {
    font-size: 0.90rem;
    font-weight: 600;

    color: rgba(240,255,250,0.94);
}

.intel-alert-copy small {
    font-size: 0.74rem;

    color: rgba(180,220,210,0.52);
}

.intel-alert-time {
    font-size: 0.72rem;

    color: rgba(180,220,210,0.42);

    flex-shrink: 0;
}

/* COMPACT LIVE INTELLIGENCE STRIP */

.compact-signal-strip {
    display: grid;
    grid-template-columns: repeat(3, 1fr);

    gap: 0;

    padding: 0;

    overflow: hidden;

    border-radius: 26px;

    border: 1px solid rgba(120, 255, 214, 0.14);

    background:
        linear-gradient(
            180deg,
            rgba(16, 28, 33, 0.96),
            rgba(9, 15, 19, 0.98)
        );

    box-shadow:
        inset 0 1px 0 rgba(255,255,255,0.03),
        0 0 18px rgba(53, 243, 178, 0.06);

    margin-bottom: 24px;
}

.compact-signal-strip::after {
    display: none;
}

.compact-signal-card {
    min-height: 66px;

    border: none;
    border-radius: 0;

    background: transparent;
    box-shadow: none;

    padding: 10px 8px;

    position: relative;

    gap: 8px;
}

.compact-signal-card:not(:last-child)::after {
    content: "";

    position: absolute;

    top: 22px;
    right: 0;

    width: 1px;
    height: calc(100% - 44px);

    background: rgba(255,255,255,0.08);
}

.compact-signal-card .signal-icon {
    width: 28px;
    height: 28px;

    font-size: 17px;

    flex-shrink: 0;
}

.compact-signal-card strong {
    font-size: 10px;
    line-height: 1.12;
    letter-spacing: -0.02em;
}

.compact-signal-card span {
    font-size: 9px;
    line-height: 1.25;
}

.compact-signal-card i {
    width: 9px;
    height: 9px;

    margin-left: auto;
}

/* SMART SWAP PREMIUM CARD */

.smart-swap-card {
    position: relative;
    overflow: hidden;
}

.smart-swap-body {
    display: grid;
    grid-template-columns: 1fr 132px;
    gap: 18px;

    align-items: center;

    margin-bottom: 18px;
}

.smart-swap-copy {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.swap-signal {
    color: var(--v-green);

    font-family: "Sora", sans-serif;

    font-size: 28px;
    font-weight: 600;

    letter-spacing: -0.045em;

    text-shadow: 0 0 16px rgba(53, 243, 178, 0.16);
}

.swap-confidence {
    color: var(--v-green);

    font-family: "Sora", sans-serif;

    font-size: 25px;
    font-weight: 500;

    letter-spacing: -0.04em;
}

.swap-gauge {
    width: 118px;
    height: 118px;

    border-radius: 50%;

    display: grid;
    place-items: center;

    background:
        conic-gradient(
            from 210deg,
            rgba(53, 243, 178, 0.95) 0deg,
            rgba(53, 243, 178, 0.95) 280deg,
            rgba(255,255,255,0.12) 280deg,
            rgba(255,255,255,0.12) 360deg
        );

    box-shadow:
        0 0 22px rgba(53, 243, 178, 0.18),
        inset 0 0 16px rgba(53, 243, 178, 0.08);
}

.swap-gauge-inner {
    width: 88px;
    height: 88px;

    border-radius: 50%;

    display: grid;
    place-items: center;

    background:
        linear-gradient(
            180deg,
            rgba(13, 22, 26, 0.98),
            rgba(7, 12, 15, 0.98)
        );

    color: var(--v-green);

    font-size: 44px;
    line-height: 1;

    text-shadow: 0 0 18px rgba(53, 243, 178, 0.32);
}

.analysis-btn {
    width: 100%;

    margin-top: 4px;
    padding: 14px 16px;

    border: 1px solid rgba(120, 255, 214, 0.12);
    border-radius: 16px;

    background:
        linear-gradient(
            180deg,
            rgba(255,255,255,0.055),
            rgba(255,255,255,0.025)
        );

    color: var(--v-green);

    display: flex;
    align-items: center;
    justify-content: space-between;

    cursor: pointer;
}

.analysis-btn span {
    font-size: 22px;
}

/* ================================
   VIP SCREEN
================================ */
#vip-screen {
    width: 100%;
    max-width: 460px;
    margin: 0 auto;
    padding-top: 0;
}

.vip-hero-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 14px;

    margin-top: 0;
    margin-bottom: 18px;
}

.vip-hero-header h1 {
    margin: 0;
    font-size: 24px;
    line-height: 1.08;
    letter-spacing: -0.03em;
    color: #f4fff9;
}

.vip-hero-header p {
    margin: 0;
    font-size: 15px;
    line-height: 1.45;
    color: rgba(255, 255, 255, 0.68);
}

.vip-learn-btn,
.vip-wide-btn,
.vip-history-btn {
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.025));
    color: rgba(255, 255, 255, 0.84);
    border-radius: 14px;
    font-family: "Inter", sans-serif;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.vip-learn-btn {
    min-width: 116px;
    height: 42px;
    margin-top: 10px;
}

.vip-learn-btn svg,
.vip-wide-btn svg,
.vip-history-btn svg,
.vip-claim-btn svg {
    width: 17px;
    height: 17px;
}

.vip-status-card,
.vip-overview-card,
.vip-rewards-card {
    border: 1px solid rgba(95, 255, 184, 0.1);
    border-radius: 22px;
    background:
        radial-gradient(circle at 50% 0%, rgba(76, 255, 184, 0.075), transparent 34%),
        linear-gradient(180deg, rgba(8, 22, 26, 0.9), rgba(5, 13, 16, 0.94));
    box-shadow:
        0 22px 70px rgba(0, 0, 0, 0.34),
        inset 0 1px 0 rgba(255, 255, 255, 0.035);
}

.vip-status-card {
    padding: 24px;
    margin-bottom: 22px;
}

.vip-status-top {
    display: grid;
    grid-template-columns: 102px 1fr 0.78fr;
    align-items: center;
    gap: 20px;
}

.vip-crown-badge {
    width: 80px;
    height: 80px;
    border-radius: 26px;
    display: grid;
    place-items: center;
    color: #5dffb4;
    border: 2px solid rgba(93, 255, 180, 0.72);
    background: rgba(93, 255, 180, 0.05);
    clip-path: polygon(50% 0%, 92% 25%, 92% 75%, 50% 100%, 8% 75%, 8% 25%);
    box-shadow: 0 0 28px rgba(93, 255, 180, 0.10);
}

.vip-crown-badge svg {
    width: 38px;
    height: 38px;
    stroke-width: 2.15;
    fill: rgba(93, 255, 180, 0.18);
}

.vip-status-copy,
.vip-tier-copy {
    min-width: 0;
}

.vip-status-copy span,
.vip-tier-copy span,
.vip-overview-panel span,
.vip-reward-panel span {
    display: block;
    margin-bottom: 8px;
    font-size: 12px;
    line-height: 1;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: rgba(255, 255, 255, 0.52);
}

.vip-status-copy strong {
    display: block;
    margin-bottom: 10px;
    font-family: "Sora", sans-serif;
    font-size: 28px;
    line-height: 1;
    font-weight: 600;
    letter-spacing: -0.045em;
    color: #5dffb4;
}

.vip-status-copy p,
.vip-reward-panel p {
    margin: 0;
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 13px;
    line-height: 1.35;
    color: rgba(255, 255, 255, 0.7);
}

.vip-status-copy p svg {
    width: 15px;
    height: 15px;
    color: rgba(255, 255, 255, 0.66);
}

.vip-tier-copy {
    padding-left: 24px;
    border-left: 1px solid rgba(255, 255, 255, 0.08);
}

.vip-tier-copy strong {
    display: block;
    margin-bottom: 10px;
    font-family: "Sora", sans-serif;
    font-size: 28px;
    line-height: 1;
    font-weight: 500;
    letter-spacing: -0.045em;
    color: rgba(255, 255, 255, 0.96);
}

.vip-tier-copy em {
    display: inline-flex;
    padding: 7px 12px;
    border-radius: 9px;
    background: rgba(93, 255, 180, 0.12);
    color: #5dffb4;
    font-size: 13px;
    font-style: normal;
    box-shadow: 0 0 22px rgba(93, 255, 180, 0.08);
}

.vip-metric-strip {
    margin-top: 24px;
    padding-top: 22px;
    border-top: 1px solid rgba(255, 255, 255, 0.085);
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.vip-metric-item {
    min-width: 0;
    padding: 0 18px;
    text-align: center;
    border-right: 1px solid rgba(255, 255, 255, 0.095);
}

.vip-metric-item:first-child {
    padding-left: 0;
}

.vip-metric-item:last-child {
    padding-right: 0;
    border-right: 0;
}

.vip-metric-item svg {
    width: 27px;
    height: 27px;
    margin-bottom: 10px;
    color: #5dffb4;
    stroke-width: 1.75;
    filter: drop-shadow(0 0 10px rgba(93, 255, 180, 0.16));
}

.vip-metric-item span {
    display: block;
    margin-bottom: 8px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
}

.vip-metric-item strong {
    display: block;
    margin-bottom: 4px;
    font-family: "Sora", sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.94);
}

.vip-metric-item small {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.58);
}

.vip-wide-btn {
    width: 100%;
    height: 54px;
    margin-top: 24px;
    padding: 0 18px;
    justify-content: center;
    position: relative;
    font-size: 16px;
}

.vip-wide-btn svg {
    position: absolute;
    right: 20px;
    color: #7bffd0;
}

.vip-section-label {
    margin: 0 0 12px 8px;
    font-size: 15px;
    line-height: 1;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    color: rgba(255, 255, 255, 0.72);
}

.vip-overview-card {
    padding: 26px;
    margin-bottom: 26px;
}

.vip-overview-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
}

.vip-overview-panel {
    min-width: 0;
    display: grid;
    grid-template-columns: 72px 1fr;
    column-gap: 16px;
    align-items: start;
}

.vip-overview-panel + .vip-overview-panel {
    padding-left: 28px;
    border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.vip-overview-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    margin-top: 2px;
}

.vip-overview-icon svg {
    width: 27px;
    height: 27px;
}

.vip-overview-icon.green {
    color: #5dffb4;
    border: 1px solid rgba(93, 255, 180, 0.62);
    background: rgba(93, 255, 180, 0.06);
}

.vip-overview-icon.blue {
    color: #8b9dff;
    border: 1px solid rgba(139, 157, 255, 0.72);
    background: rgba(139, 157, 255, 0.07);
}

.vip-overview-panel strong {
    display: block;
    margin-bottom: 6px;
    font-family: "Sora", sans-serif;
    font-size: 30px;
    line-height: 1;
    font-weight: 500;
    letter-spacing: -0.05em;
    color: rgba(255, 255, 255, 0.96);
}

.vip-overview-panel p,
.vip-overview-panel small {
    margin: 0 0 12px;
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.68);
}

.vip-overview-panel p svg {
    width: 14px;
    height: 14px;
}

.vip-overview-panel small {
    margin-bottom: 0;
}

.vip-progress-track {
    grid-column: 1 / -1;
    height: 7px;
    margin: 20px 0 14px;
    border-radius: 99px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.1);
}

.vip-progress-fill {
    height: 100%;
    border-radius: inherit;
}

.vip-progress-fill.green {
    width: 72%;
    background: linear-gradient(90deg, #55f0aa, #8dffd1);
}

.vip-progress-fill.blue {
    width: 82%;
    background: linear-gradient(90deg, #8a9cff, #b6c1ff);
}

.vip-overview-panel em {
    grid-column: 1 / -1;
    font-size: 14px;
    font-style: normal;
    color: rgba(255, 255, 255, 0.66);
}

.vip-rewards-card {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 26px;
    padding: 26px;
    margin-bottom: 26px;
}

.vip-reward-panel + .vip-reward-panel {
    padding-left: 26px;
    border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.vip-reward-panel strong {
    display: block;
    margin-bottom: 8px;
    font-family: "Sora", sans-serif;
    font-size: 28px;
    line-height: 1;
    font-weight: 500;
    letter-spacing: -0.045em;
    color: #5dffb4;
}

.vip-reward-panel:nth-child(2) strong {
    color: rgba(255, 255, 255, 0.96);
}

.vip-reward-panel p {
    margin-bottom: 18px;
}

.vip-claim-btn {
    width: 100%;
    height: 48px;
    border: 0;
    border-radius: 12px;
    background: linear-gradient(135deg, #5dffb4, #75f4c5);
    color: rgba(0, 20, 18, 0.96);
    font-family: "Inter", sans-serif;
    font-size: 15px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    box-shadow: 0 0 28px rgba(93, 255, 180, 0.16);
}

.vip-history-btn {
    width: 100%;
    height: 48px;
    position: relative;
}

.vip-history-btn svg {
    position: absolute;
    right: 16px;
    color: #7bffd0;
}

.vip-benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2px;
    margin-bottom: 18px;
}

.vip-benefit-card {
    min-height: 130px;
    padding: 22px 12px 18px;
    border: 1px solid rgba(95, 255, 184, 0.1);
    background:
        radial-gradient(circle at 50% 0%, rgba(93, 255, 180, 0.06), transparent 42%),
        linear-gradient(180deg, rgba(8, 22, 26, 0.86), rgba(4, 12, 15, 0.94));
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}

.vip-benefit-card:first-child {
    border-radius: 16px 0 0 16px;
}

.vip-benefit-card:last-child {
    border-radius: 0 16px 16px 0;
}

.vip-benefit-card svg {
    width: 30px;
    height: 30px;
    margin-bottom: 14px;
    color: #5dffb4;
    stroke-width: 1.8;
}

.vip-benefit-card strong {
    margin-bottom: 10px;
    font-family: "Inter", sans-serif;
    font-size: 13px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.86);
}

.vip-benefit-card p {
    margin: 0;
    font-size: 12px;
    line-height: 1.45;
    color: rgba(255, 255, 255, 0.66);
}

@media (max-width: 520px) {

    .vip-hero-header {
        gap: 14px;
        margin-bottom: 20px;
    }

    .vip-hero-header h1 {
        font-size: 30px;
        letter-spacing: -0.04em;
    }

    .vip-learn-btn {
        min-width: 108px;
        height: 40px;
        font-size: 13px;
    }

    .vip-status-card,
    .vip-overview-card,
    .vip-rewards-card {
        border-radius: 22px;
        padding: 20px;
    }

    .vip-status-top {
        grid-template-columns: 82px 1fr;
        gap: 14px;
    }

    .vip-tier-copy {
        grid-column: 2;
        padding-left: 0;
        border-left: 0;
        margin-top: -8px;
    }

    .vip-crown-badge {
        width: 78px;
        height: 78px;
    }

    .vip-status-copy strong,
    .vip-tier-copy strong {
        font-size: 26px;
    }

    .vip-metric-strip {
        grid-template-columns: repeat(2, 1fr);
        row-gap: 18px;
    }

    .vip-metric-item:nth-child(2) {
        border-right: 0;
    }

    .vip-metric-item:nth-child(3),
    .vip-metric-item:nth-child(4) {
        padding-top: 22px;
        border-top: 1px solid rgba(255, 255, 255, 0.095);
    }

    .vip-overview-grid,
    .vip-rewards-card {
        grid-template-columns: 1fr;
    }

    .vip-overview-panel + .vip-overview-panel,
    .vip-reward-panel + .vip-reward-panel {
        padding-left: 0;
        padding-top: 24px;
        border-left: 0;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

    .vip-benefits-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }

    .vip-benefit-card,
    .vip-benefit-card:first-child,
    .vip-benefit-card:last-child {
        border-radius: 16px;
    }
}

/* VIP MOBILE-FIRST LOCK */

#vip-screen {
    width: 100%;
    max-width: 460px;
    margin: 0 auto;
}

.vip-status-top {
    grid-template-columns: 82px 1fr;
    gap: 14px;
}

.vip-tier-copy {
    grid-column: 2;
    padding-left: 0;
    border-left: 0;
    margin-top: -8px;
}

.vip-metric-strip {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 18px;
}

.vip-metric-item:nth-child(2) {
    border-right: 0;
}

.vip-metric-item:nth-child(3),
.vip-metric-item:nth-child(4) {
    padding-top: 22px;
    border-top: 1px solid rgba(255, 255, 255, 0.095);
}

.vip-overview-grid,
.vip-rewards-card {
    grid-template-columns: 1fr;
}

.vip-overview-panel + .vip-overview-panel,
.vip-reward-panel + .vip-reward-panel {
    padding-left: 0;
    padding-top: 24px;
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.vip-benefits-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
}

.vip-benefit-card,
.vip-benefit-card:first-child,
.vip-benefit-card:last-child {
    border-radius: 16px;
}
