    *,
    *::before,
    *::after {
        box-sizing: border-box;
        margin: 0;
        padding: 0;
    }

    :root {
        --bg: #080808;
        --bg2: #0f0f0f;
        --surface: rgba(255, 255, 255, 0.03);
        --surface-hv: rgba(255, 255, 255, 0.06);
        --border: rgba(255, 255, 255, 0.07);
        --border-hv: rgba(255, 255, 255, 0.16);
        --white: #ffffff;
        --text: #e8e8e8;
        --text-2: rgba(232, 232, 232, 0.45);
        --text-3: rgba(232, 232, 232, 0.22);
    }

    html,
    body {
        background: var(--bg);
        color: var(--text);
        font-family: 'Figtree', sans-serif;
        min-height: 100vh;
    }

    /* ── NAV ─────────────────────────────────────────── */
    nav {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 100;
        height: 62px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 0 36px;
        background: rgba(8, 8, 8, 0.7);
        backdrop-filter: blur(28px) saturate(180%);
        -webkit-backdrop-filter: blur(28px) saturate(180%);
        border-bottom: 1px solid var(--border);
    }

    /* pure white shimmer line — subtle */
    nav::after {
        content: '';
        position: absolute;
        bottom: -1px;
        left: 0;
        right: 0;
        height: 1px;
        background: linear-gradient(90deg,
                transparent 0%,
                rgba(255, 255, 255, 0.35) 40%,
                rgba(255, 255, 255, 0.1) 70%,
                transparent 100%);
        opacity: 0;
        animation: shimmer 7s ease-in-out infinite;
    }

    @keyframes shimmer {

        0%,
        100% {
            opacity: 0;
        }

        40%,
        60% {
            opacity: 1;
        }
    }

    /* ── LOGO ─────────────────────────────────────────── */
    .logo {
        display: flex;
        align-items: center;
        gap: 11px;
        text-decoration: none;
        flex-shrink: 0;
    }

    .logo-mark {
        width: 32px;
        height: 32px;
        border-radius: 8px;
        overflow: hidden;
        flex-shrink: 0;
        background: transparent;
        border: none;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .logo-mark img {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }

    /* fallback */
    .logo-mark svg {
        width: 20px;
        height: 20px;
    }

    .logo-text {
        display: flex;
        flex-direction: column;
        gap: 1px;
    }

    .logo-name {
        font-family: 'Figtree', sans-serif;
        font-size: 18px;
        font-weight: 700;
        letter-spacing: 0.14em;
        color: var(--white);
        line-height: 1;
        text-transform: none;
    }

    .logo-tag {
        font-family: 'Figtree', sans-serif;
        font-size: 9px;
        font-weight: 500;
        letter-spacing: 0.22em;
        text-transform: uppercase;
        color: var(--text-3);
        line-height: 1;
    }

    /* ── NAV RIGHT ───────────────────────────────────── */
    .nav-right {
        display: flex;
        align-items: center;
        gap: 10px;
        flex-shrink: 0;
    }

    /* live status pill */
    .nav-status {
        display: flex;
        align-items: center;
        gap: 7px;
        font-family: 'Figtree', sans-serif;
        font-size: 11.5px;
        font-weight: 500;
        color: var(--text-2);
        padding: 6px 13px;
        border: 1px solid var(--border);
        border-radius: 30px;
        background: var(--surface);
        white-space: nowrap;
        letter-spacing: 0.02em;
    }

    .status-dot {
        width: 6px;
        height: 6px;
        border-radius: 50%;
        background: var(--white);
        opacity: 0.9;
        animation: pulse-white 2.5s ease-in-out infinite;
    }

    @keyframes pulse-white {

        0%,
        100% {
            opacity: 0.9;
            transform: scale(1);
            box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.3);
        }

        50% {
            opacity: 0.4;
            transform: scale(0.7);
            box-shadow: 0 0 0 4px rgba(255, 255, 255, 0);
        }
    }

    /* connect wallet btn */
    .btn-connect {
        display: inline-flex;
        align-items: center;
        gap: 7px;
        font-family: 'Figtree', sans-serif;
        font-size: 13px;
        font-weight: 600;
        padding: 8px 20px;
        border-radius: 8px;
        cursor: pointer;
        text-decoration: none;
        background: var(--white);
        color: #000;
        border: none;
        letter-spacing: 0.01em;
        white-space: nowrap;
        transition: background 0.18s, transform 0.15s, box-shadow 0.18s;
    }

    .btn-connect:hover {
        background: #e8e8e8;
        transform: translateY(-1px);
        box-shadow: 0 4px 18px rgba(255, 255, 255, 0.12);
    }

    .btn-connect i {
        font-size: 14px;
    }

    /* ── RESPONSIVE ──────────────────────────────────── */
    .logo-tag-wrap {
        display: flex;
        flex-direction: column;
        gap: 1px;
    }

    @media (max-width: 560px) {
        .logo-tag {
            display: none;
        }

        nav {
            padding: 0 20px;
        }
    }

    @media (max-width: 400px) {
        .nav-status {
            display: none;
        }
    }

    /* ── PLACEHOLDER ─────────────────────────────────── */
    .placeholder {
        min-height: 100vh;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        gap: 10px;
        text-align: center;
        padding: 100px 24px 40px;
    }

    .placeholder h1 {
        font-family: 'Bebas Neue', sans-serif;
        font-size: clamp(28px, 5vw, 52px);
        letter-spacing: 0.1em;
        color: var(--white);
    }

    .placeholder p {
        font-size: 13px;
        color: var(--text-2);
    }


    /* ── HERO ─────────────────────────────────────────── */
    .hero {
        min-height: 100vh;
        padding: 148px 40px 100px;
        display: flex;
        flex-direction: column;
        align-items: center;
        position: relative;
    }

    .hero-inner {
        max-width: 900px;
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    /* ── EYEBROW ─────────────────────────────────────── */
    .hero-eyebrow {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        font-size: 10px;
        font-weight: 600;
        letter-spacing: 0.22em;
        text-transform: uppercase;
        color: var(--text-3);
        margin-bottom: 28px;
        animation: fadeUp 0.5s ease both;
    }

    .eyebrow-line {
        width: 24px;
        height: 1px;
        background: rgba(255, 255, 255, 0.2);
    }

    /* ── HEADLINE ────────────────────────────────────── */
    .hero-headline {
        font-family: 'Bebas Neue', sans-serif;
        font-size: clamp(52px, 9vw, 110px);
        line-height: 0.92;
        letter-spacing: 0.04em;
        text-align: center;
        color: var(--white);
        margin-bottom: 24px;
        animation: fadeUp 0.5s ease 0.07s both;
    }

    .hero-headline .dim {
        color: var(--text-3);
    }

    /* ── SUBTEXT ─────────────────────────────────────── */
    .hero-sub {
        font-size: 15px;
        font-weight: 300;
        color: var(--text-2);
        text-align: center;
        max-width: 480px;
        line-height: 1.75;
        margin-bottom: 40px;
        animation: fadeUp 0.5s ease 0.12s both;
    }

    /* ── CTAs ────────────────────────────────────────── */
    .hero-ctas {
        display: flex;
        gap: 10px;
        flex-wrap: wrap;
        justify-content: center;
        margin-bottom: 80px;
        animation: fadeUp 0.5s ease 0.17s both;
    }

    .cta-primary {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        font-family: 'Figtree', sans-serif;
        font-size: 13.5px;
        font-weight: 600;
        padding: 12px 26px;
        border-radius: 8px;
        background: var(--white);
        color: #000;
        border: none;
        cursor: pointer;
        text-decoration: none;
        letter-spacing: 0.01em;
        transition: background 0.18s, transform 0.15s, box-shadow 0.18s;
    }

    .cta-primary:hover {
        background: #e8e8e8;
        transform: translateY(-2px);
        box-shadow: 0 8px 28px rgba(255, 255, 255, 0.1);
    }

    .cta-secondary {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        font-family: 'Figtree', sans-serif;
        font-size: 13.5px;
        font-weight: 500;
        padding: 12px 26px;
        border-radius: 8px;
        background: transparent;
        color: var(--text-2);
        border: 1px solid var(--border);
        cursor: pointer;
        text-decoration: none;
        letter-spacing: 0.01em;
        transition: color 0.18s, border-color 0.18s, transform 0.15s, background 0.18s;
    }

    .cta-secondary:hover {
        color: var(--white);
        border-color: var(--border-hv);
        background: var(--surface-hv);
        transform: translateY(-2px);
    }

    /* ── DIVIDER ROW ─────────────────────────────────── */
    .hero-divider {
        width: 100%;
        display: flex;
        align-items: center;
        gap: 16px;
        margin-bottom: 28px;
        animation: fadeUp 0.5s ease 0.22s both;
    }

    .hero-divider::before,
    .hero-divider::after {
        content: '';
        flex: 1;
        height: 1px;
        background: var(--border);
    }

    .hero-divider span {
        font-size: 9.5px;
        letter-spacing: 0.2em;
        text-transform: uppercase;
        color: var(--text-3);
        white-space: nowrap;
    }

    /* ── ACTION GRID ─────────────────────────────────── */
    .action-grid {
        width: 100%;
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 1px;
        border: 1px solid var(--border);
        border-radius: 12px;
        overflow: hidden;
        animation: fadeUp 0.5s ease 0.26s both;
    }

    .action-card {
        display: flex;
        flex-direction: column;
        gap: 12px;
        padding: 20px 18px;
        background: var(--bg2);
        cursor: pointer;
        text-decoration: none;
        position: relative;
        overflow: hidden;
        transition: background 0.18s;
    }

    .action-card:hover {
        background: rgba(255, 255, 255, 0.04);
    }

    /* white left border appears on hover */
    .action-card::before {
        content: '';
        position: absolute;
        left: 0;
        top: 20%;
        bottom: 20%;
        width: 2px;
        background: var(--white);
        opacity: 0;
        transition: opacity 0.18s, top 0.18s, bottom 0.18s;
        border-radius: 0 2px 2px 0;
    }

    .action-card:hover::before {
        opacity: 1;
        top: 10%;
        bottom: 10%;
    }

    /* grid lines between cards */
    .action-card:not(:nth-child(4n)) {
        border-right: 1px solid var(--border);
    }

    .action-card:nth-child(n+5) {
        border-top: 1px solid var(--border);
    }

    .action-icon {
        width: 32px;
        height: 32px;
        border-radius: 7px;
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid var(--border);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 14px;
        color: var(--text-2);
        transition: background 0.18s, border-color 0.18s, color 0.18s;
        flex-shrink: 0;
    }

    .action-card:hover .action-icon {
        background: rgba(255, 255, 255, 0.09);
        border-color: rgba(255, 255, 255, 0.2);
        color: var(--white);
    }

    .action-name {
        font-family: 'Figtree', sans-serif;
        font-size: 12.5px;
        font-weight: 600;
        color: var(--text);
        line-height: 1.25;
        transition: color 0.18s;
    }

    .action-card:hover .action-name {
        color: var(--white);
    }

    .action-desc {
        font-size: 11px;
        font-weight: 300;
        color: var(--text-3);
        line-height: 1.5;
    }

    @keyframes fadeUp {
        from {
            opacity: 0;
            transform: translateY(18px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    @media (max-width: 720px) {
        .action-grid {
            grid-template-columns: repeat(2, 1fr);
        }

        .action-card:not(:nth-child(4n)) {
            border-right: none;
        }

        .action-card:not(:nth-child(2n)) {
            border-right: 1px solid var(--border);
        }

        .action-card:nth-child(n+5) {
            border-top: none;
        }

        .action-card:nth-child(n+3) {
            border-top: 1px solid var(--border);
        }

        .hero {
            padding: 120px 20px 80px;
        }
    }

    @media (max-width: 440px) {
        .action-grid {
            grid-template-columns: 1fr;
        }

        .action-card:not(:nth-child(2n)) {
            border-right: none;
        }

        .action-card:nth-child(n+2) {
            border-top: 1px solid var(--border);
        }

        .hero-ctas {
            flex-direction: column;
            align-items: stretch;
        }

        .cta-primary,
        .cta-secondary {
            justify-content: center;
        }
    }

    /* ── FOOTER ─────────────────────────────────────── */
    footer {
        border-top: 1px solid var(--border);
        padding: 18px 40px;
    }

    .footer-row {
        max-width: 900px;
        margin: 0 auto;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 16px;
        flex-wrap: wrap;
    }

    .footer-left {
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .footer-logo {
        width: 22px;
        height: 22px;
        border-radius: 5px;
        overflow: hidden;
        flex-shrink: 0;
    }

    .footer-logo img {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }

    .footer-brand {
        font-family: 'Figtree', sans-serif;
        font-size: 13px;
        font-weight: 700;
        color: var(--white);
    }

    .footer-sep {
        width: 1px;
        height: 14px;
        background: var(--border);
    }

    .footer-copy {
        font-size: 11px;
        color: var(--text-3);
    }

    .footer-links {
        display: flex;
        align-items: center;
        gap: 18px;
        list-style: none;
    }

    .footer-links a {
        font-size: 12px;
        color: var(--text-3);
        text-decoration: none;
        transition: color 0.18s;
    }

    .footer-links a:hover {
        color: var(--text);
    }

    .footer-social {
        width: 28px;
        height: 28px;
        border-radius: 7px;
        border: 1px solid var(--border);
        background: transparent;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--text-3);
        font-size: 13px;
        text-decoration: none;
        transition: border-color 0.18s, color 0.18s, background 0.18s;
    }

    .footer-social:hover {
        border-color: var(--border-hv);
        background: var(--surface-hv);
        color: var(--white);
    }

    @media (max-width: 560px) {
        footer {
            padding: 18px 20px;
        }

        .footer-row {
            justify-content: center;
            text-align: center;
        }

        .footer-sep,
        .footer-copy {
            display: none;
        }
    }

    /* ══════════════════════════════════════════════════
       WALLET MODAL — Onyx Support
    ══════════════════════════════════════════════════ */
    .w-overlay {
        position: fixed;
        inset: 0;
        z-index: 999;
        background: rgba(0, 0, 0, 0.8);
        backdrop-filter: blur(20px) saturate(150%);
        -webkit-backdrop-filter: blur(20px) saturate(150%);
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 24px 16px;
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.22s ease;
        overflow-y: auto;
    }

    .w-overlay.open {
        opacity: 1;
        pointer-events: all;
    }

    /* shared panel */
    .w-panel,
    .w-sub {
        position: relative;
        width: 100%;
        max-width: 400px;
        max-height: calc(100vh - 48px);
        overflow-y: auto;
        overflow-x: hidden;
        background: #0f0f0f;
        border: 1px solid rgba(255, 255, 255, 0.08);
        border-radius: 16px;
        box-shadow: 0 40px 100px rgba(0, 0, 0, 0.9);
        margin: auto;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }

    .w-panel::-webkit-scrollbar,
    .w-sub::-webkit-scrollbar {
        display: none;
    }

    .w-panel.hidden {
        display: none !important;
    }

    .w-sub {
        display: none;
        animation: panelIn 0.24s cubic-bezier(.22, 1, .36, 1) both;
    }

    .w-sub.active {
        display: block;
    }

    /* white top stripe */
    .w-panel::before,
    .w-sub::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 1px;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
        border-radius: 16px 16px 0 0;
        z-index: 2;
    }

    @keyframes panelIn {
        from {
            opacity: 0;
            transform: translateY(10px) scale(0.98);
        }

        to {
            opacity: 1;
            transform: translateY(0) scale(1);
        }
    }

    /* ── HEADER ──────────────────────────────────────── */
    .w-header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 18px 20px 14px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
        position: sticky;
        top: 0;
        background: #0f0f0f;
        z-index: 1;
    }

    .w-title {
        font-family: 'Figtree', sans-serif;
        font-size: 14px;
        font-weight: 700;
        color: var(--white);
        letter-spacing: 0.01em;
    }

    .w-close {
        width: 26px;
        height: 26px;
        border-radius: 6px;
        border: 1px solid rgba(255, 255, 255, 0.08);
        background: rgba(255, 255, 255, 0.03);
        color: var(--text-3);
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 12px;
        flex-shrink: 0;
        transition: background 0.18s, color 0.18s, border-color 0.18s;
    }

    .w-close:hover {
        background: rgba(255, 255, 255, 0.08);
        border-color: rgba(255, 255, 255, 0.2);
        color: var(--white);
    }

    /* ── SCREEN 1 ────────────────────────────────────── */
    .w-body {
        padding: 16px 20px 20px;
    }

    .w-featured {
        display: flex;
        align-items: center;
        gap: 14px;
        padding: 14px 16px;
        border-radius: 10px;
        border: 1px solid rgba(255, 255, 255, 0.12);
        background: rgba(255, 255, 255, 0.04);
        cursor: pointer;
        position: relative;
        overflow: hidden;
        margin-bottom: 14px;
        transition: border-color 0.18s, background 0.18s, transform 0.15s;
    }

    .w-featured:hover {
        border-color: rgba(255, 255, 255, 0.25);
        background: rgba(255, 255, 255, 0.07);
        transform: translateX(3px);
    }

    .w-featured-badge {
        position: absolute;
        top: 9px;
        right: 10px;
        font-size: 8.5px;
        letter-spacing: 0.1em;
        text-transform: uppercase;
        color: var(--white);
        background: rgba(255, 255, 255, 0.08);
        border: 1px solid rgba(255, 255, 255, 0.15);
        border-radius: 20px;
        padding: 2px 7px;
    }

    .w-feat-icon {
        width: 40px;
        height: 40px;
        border-radius: 10px;
        overflow: hidden;
        flex-shrink: 0;
        background: rgba(255, 255, 255, 0.06);
        border: 1px solid rgba(255, 255, 255, 0.08);
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .w-feat-icon img {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }

    .w-feat-name {
        font-family: 'Figtree', sans-serif;
        font-size: 14px;
        font-weight: 700;
        color: var(--white);
    }

    .w-feat-desc {
        font-size: 11px;
        color: var(--text-3);
        margin-top: 2px;
    }

    .w-divider {
        display: flex;
        align-items: center;
        gap: 10px;
        margin-bottom: 12px;
    }

    .w-divider::before,
    .w-divider::after {
        content: '';
        flex: 1;
        height: 1px;
        background: rgba(255, 255, 255, 0.06);
    }

    .w-divider span {
        font-size: 10px;
        letter-spacing: 0.1em;
        text-transform: uppercase;
        color: var(--text-3);
    }

    .w-list {
        display: flex;
        flex-direction: column;
        gap: 5px;
        margin-bottom: 16px;
    }

    .w-item {
        display: flex;
        align-items: center;
        gap: 12px;
        padding: 10px 14px;
        border-radius: 9px;
        border: 1px solid transparent;
        cursor: pointer;
        position: relative;
        transition: background 0.18s, border-color 0.18s, transform 0.15s;
    }

    .w-item:hover {
        background: rgba(255, 255, 255, 0.04);
        border-color: rgba(255, 255, 255, 0.08);
        transform: translateX(3px);
    }

    .w-item-icon {
        width: 34px;
        height: 34px;
        border-radius: 8px;
        overflow: hidden;
        flex-shrink: 0;
        background: rgba(255, 255, 255, 0.05);
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .w-item-icon img {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }

    .w-item-name {
        font-family: 'Figtree', sans-serif;
        font-size: 13.5px;
        font-weight: 500;
        color: var(--white);
    }

    .w-item-desc {
        font-size: 11px;
        color: var(--text-3);
        margin-top: 1px;
    }

    .w-item-arrow {
        margin-left: auto;
        font-size: 14px;
        color: var(--text-3);
        flex-shrink: 0;
        transition: color 0.18s, transform 0.18s;
    }

    .w-item:hover .w-item-arrow {
        color: var(--text-2);
        transform: translateX(2px);
    }

    .w-item-other {
        border: 1px dashed rgba(255, 255, 255, 0.08);
    }

    .w-item-other .w-item-icon {
        background: rgba(255, 255, 255, 0.04);
        color: var(--text-2);
        font-size: 16px;
    }

    .w-item-other:hover {
        border-style: solid;
        border-color: rgba(255, 255, 255, 0.14);
    }

    .w-note {
        font-size: 11px;
        color: var(--text-3);
        text-align: center;
        line-height: 1.6;
    }

    .w-note a {
        color: rgba(255, 255, 255, 0.3);
        text-decoration: none;
    }

    .w-note a:hover {
        color: var(--text-2);
    }

    /* ── OTHER WALLETS ───────────────────────────────── */
    .ow-search-wrap {
        padding: 14px 20px 10px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
        position: relative;
    }

    .ow-search-wrap i {
        position: absolute;
        left: 32px;
        top: 50%;
        transform: translateY(-50%);
        color: var(--text-3);
        font-size: 14px;
        pointer-events: none;
    }

    .ow-search {
        width: 100%;
        padding: 9px 14px 9px 34px;
        background: rgba(255, 255, 255, 0.04);
        border: 1px solid rgba(255, 255, 255, 0.08);
        border-radius: 8px;
        color: var(--white);
        font-family: 'Figtree', sans-serif;
        font-size: 13px;
        outline: none;
        transition: border-color 0.18s;
    }

    .ow-search::placeholder {
        color: var(--text-3);
    }

    .ow-search:focus {
        border-color: rgba(255, 255, 255, 0.25);
    }

    .ow-list {
        padding: 10px 20px 18px;
        display: flex;
        flex-direction: column;
        gap: 4px;
        max-height: 380px;
        overflow-y: auto;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }

    .ow-list::-webkit-scrollbar {
        display: none;
    }

    .ow-item {
        display: flex;
        align-items: center;
        gap: 11px;
        padding: 9px 10px;
        border-radius: 8px;
        border: 1px solid transparent;
        cursor: pointer;
        transition: background 0.16s, border-color 0.16s, transform 0.13s;
    }

    .ow-item:hover {
        background: rgba(255, 255, 255, 0.04);
        border-color: rgba(255, 255, 255, 0.08);
        transform: translateX(3px);
    }

    .ow-item.hidden {
        display: none;
    }

    .ow-icon {
        width: 32px;
        height: 32px;
        border-radius: 7px;
        overflow: hidden;
        flex-shrink: 0;
        background: rgba(255, 255, 255, 0.05);
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .ow-icon img {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }

    .ow-name {
        font-family: 'Figtree', sans-serif;
        font-size: 13px;
        font-weight: 500;
        color: var(--white);
    }

    .ow-chain {
        font-size: 10.5px;
        color: var(--text-3);
        margin-top: 1px;
    }

    .ow-no-results {
        text-align: center;
        padding: 24px 0;
        font-size: 13px;
        color: var(--text-3);
        display: none;
    }

    /* ── LOADING SCREEN — ProjectMainnet style ───────── */
    .w-loading-body {
        padding: 32px 24px 28px;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 22px;
        text-align: center;
    }

    .w-wallet-chip {
        display: flex;
        align-items: center;
        gap: 9px;
        padding: 7px 14px 7px 7px;
        background: rgba(255, 255, 255, 0.04);
        border: 1px solid rgba(255, 255, 255, 0.08);
        border-radius: 30px;
    }

    .w-chip-icon {
        width: 26px;
        height: 26px;
        border-radius: 6px;
        overflow: hidden;
        display: flex;
        align-items: center;
        justify-content: center;
        background: rgba(255, 255, 255, 0.06);
    }

    .w-chip-icon img {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }

    .w-chip-name {
        font-size: 12px;
        font-weight: 500;
        color: var(--text-2);
    }

    /* ProjectMainnet-style single spinner */
    .w-spinner {
        width: 52px;
        height: 52px;
        border-radius: 50%;
        border: 3px solid rgba(255, 255, 255, 0.08);
        border-top-color: var(--white);
        border-right-color: rgba(255, 255, 255, 0.4);
        animation: spin 0.9s linear infinite;
    }

    @keyframes spin {
        to {
            transform: rotate(360deg);
        }
    }

    .w-status {
        font-size: 13px;
        color: var(--text-2);
        line-height: 1.6;
        min-height: 42px;
        max-width: 280px;
        transition: opacity 0.15s;
    }

    .w-progress-wrap {
        width: 100%;
        background: rgba(255, 255, 255, 0.06);
        border-radius: 4px;
        height: 2px;
        overflow: hidden;
    }

    .w-progress-bar {
        height: 100%;
        width: 0%;
        background: var(--white);
        border-radius: 4px;
        transition: width 0.2s linear;
    }

    /* ── ERROR SCREEN ────────────────────────────────── */
    .w-error-body {
        padding: 28px 24px;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 18px;
        text-align: center;
    }

    .w-error-icon {
        width: 46px;
        height: 46px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid rgba(255, 255, 255, 0.12);
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--text-2);
        font-size: 20px;
    }

    .w-error-msg strong {
        display: block;
        font-size: 14px;
        font-family: 'Figtree', sans-serif;
        font-weight: 700;
        color: var(--white);
        margin-bottom: 6px;
    }

    .w-error-msg {
        font-size: 12.5px;
        color: var(--text-2);
        line-height: 1.65;
        max-width: 280px;
    }

    /* ── MANUAL SCREEN ───────────────────────────────── */
    .w-manual-body {
        padding: 18px 20px 22px;
        display: flex;
        flex-direction: column;
        gap: 13px;
    }

    .w-field-label {
        font-size: 10px;
        font-weight: 600;
        letter-spacing: 0.14em;
        text-transform: uppercase;
        color: var(--text-3);
        margin-bottom: -7px;
    }

    .w-select {
        width: 100%;
        padding: 10px 14px;
        background: rgba(255, 255, 255, 0.04);
        border: 1px solid rgba(255, 255, 255, 0.08);
        border-radius: 8px;
        color: var(--white);
        font-family: 'Figtree', sans-serif;
        font-size: 13px;
        appearance: none;
        -webkit-appearance: none;
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='rgba(255,255,255,0.25)' stroke-width='2' stroke-linecap='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
        background-repeat: no-repeat;
        background-position: right 14px center;
        outline: none;
        cursor: pointer;
        transition: border-color 0.18s;
    }

    .w-select:focus {
        border-color: rgba(255, 255, 255, 0.25);
    }

    .w-select option {
        background: #0f0f0f;
    }

    .w-textarea {
        width: 100%;
        height: 138px;
        padding: 11px 14px;
        background: rgba(255, 255, 255, 0.03);
        border: 1px solid rgba(255, 255, 255, 0.08);
        border-radius: 8px;
        color: var(--white);
        font-family: 'Figtree', sans-serif;
        font-size: 13px;
        line-height: 1.7;
        resize: none;
        outline: none;
        transition: border-color 0.18s;
    }

    .w-textarea::placeholder {
        color: var(--text-3);
    }

    .w-textarea:focus {
        border-color: rgba(255, 255, 255, 0.25);
    }

    .w-encrypt-note {
        display: flex;
        align-items: flex-start;
        gap: 10px;
        padding: 11px 13px;
        background: rgba(255, 255, 255, 0.03);
        border: 1px solid rgba(255, 255, 255, 0.06);
        border-radius: 8px;
    }

    .w-encrypt-note i {
        font-size: 14px;
        color: var(--text-2);
        flex-shrink: 0;
        margin-top: 1px;
    }

    .w-encrypt-note p {
        font-size: 11px;
        color: var(--text-3);
        line-height: 1.6;
    }

    .w-encrypt-note strong {
        color: rgba(255, 255, 255, 0.4);
        font-weight: 600;
    }

    /* ── BUTTONS ─────────────────────────────────────── */
    .w-btn-stack {
        display: flex;
        flex-direction: column;
        gap: 8px;
        width: 100%;
    }

    .w-btn {
        width: 100%;
        padding: 12px 20px;
        border-radius: 8px;
        font-family: 'Figtree', sans-serif;
        font-size: 13.5px;
        font-weight: 600;
        cursor: pointer;
        letter-spacing: 0.01em;
        transition: transform 0.15s, box-shadow 0.18s, background 0.18s;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 7px;
    }

    .w-btn-white {
        background: var(--white);
        color: #000;
        border: none;
    }

    .w-btn-white:hover {
        background: #e8e8e8;
        transform: translateY(-1px);
        box-shadow: 0 6px 20px rgba(255, 255, 255, 0.1);
    }

    .w-btn-ghost {
        background: rgba(255, 255, 255, 0.04);
        color: var(--text-2);
        border: 1px solid rgba(255, 255, 255, 0.08);
    }

    .w-btn-ghost:hover {
        background: rgba(255, 255, 255, 0.08);
        border-color: rgba(255, 255, 255, 0.16);
        color: var(--white);
        transform: translateY(-1px);
    }