*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --purple: #8f6dde;
    --violet: #a063da;
    --deep: #220c3a;
    --cyan: #4efff4;
    --white: #ffffff;
    --text: rgba(255, 255, 255, 0.9);
    --text-2: rgba(255, 255, 255, 0.5);
    --text-3: rgba(255, 255, 255, 0.22);
    --border: rgba(255, 255, 255, 0.09);
    --border-hv: rgba(255, 255, 255, 0.18);
    --surface: rgba(255, 255, 255, 0.05);
    --surface-hv: rgba(255, 255, 255, 0.09);
    --gradient: linear-gradient(135deg, #220c3a 0%, #3d1460 40%, #a063da 100%);
}

html,
body {
    background: linear-gradient(160deg, #050714 0%, #130e24 100%);
    background-attachment: fixed;
    color: var(--text);
    font-family: 'Plus Jakarta Sans', sans-serif;
    min-height: 100vh;
}

/* ── NAV ─────────────────────────────────────────── */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 36px;
    background: rgba(5, 7, 20, 0.7);
    backdrop-filter: blur(24px) saturate(180%);
    -webkit-backdrop-filter: blur(24px) saturate(180%);
    border-bottom: 1px solid rgba(143, 109, 222, 0.2);
}

/* subtle purple shimmer line */
nav::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg,
            transparent 0%,
            var(--purple) 30%,
            var(--violet) 60%,
            transparent 100%);
    opacity: 0.5;
    animation: navShimmer 6s ease-in-out infinite;
}

@keyframes navShimmer {

    0%,
    100% {
        opacity: 0.3;
    }

    50% {
        opacity: 0.7;
    }
}

/* ── LOGO ─────────────────────────────────────────── */
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    flex-shrink: 0;
}

.logo-mark {
    width: 34px;
    height: 34px;
    border-radius: 9px;
    overflow: hidden;
    flex-shrink: 0;
    background: transparent;
}

.logo-mark img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 9px;
}

.logo-name {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: var(--white);
    letter-spacing: -0.01em;
}

.logo-name .dot {
    color: var(--cyan);
}

/* ── CONNECT BUTTON ──────────────────────────────── */
.btn-connect {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 13.5px;
    font-weight: 600;
    padding: 9px 22px;
    border-radius: 10px;
    cursor: pointer;
    text-decoration: none;
    border: 1px solid rgba(143, 109, 222, 0.45);
    background: rgba(143, 109, 222, 0.15);
    color: var(--white);
    letter-spacing: 0.01em;
    white-space: nowrap;
    backdrop-filter: blur(8px);
    transition: background 0.2s, border-color 0.2s, transform 0.15s, box-shadow 0.2s;
    position: relative;
    overflow: hidden;
}

.btn-connect::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(143, 109, 222, 0.2), rgba(160, 99, 218, 0.1));
    opacity: 0;
    transition: opacity 0.2s;
}

.btn-connect:hover {
    background: rgba(143, 109, 222, 0.25);
    border-color: rgba(143, 109, 222, 0.7);
    transform: translateY(-1px);
    box-shadow: 0 6px 24px rgba(143, 109, 222, 0.25);
}

.btn-connect:hover::before {
    opacity: 1;
}

.btn-connect i {
    font-size: 15px;
}

/* ── RESPONSIVE ──────────────────────────────────── */
@media (max-width: 480px) {
    nav {
        padding: 0 20px;
    }

    .logo-name {
        font-size: 14px;
    }
}

/* ── PLACEHOLDER ─────────────────────────────────── */
.placeholder {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 12px;
    text-align: center;
    padding: 100px 24px 40px;
}

.placeholder h1 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: clamp(28px, 5vw, 52px);
    font-weight: 800;
    color: var(--white);
}

.placeholder p {
    font-size: 14px;
    color: var(--text-2);
}

/* ── HERO ─────────────────────────────────────────── */
.hero {
    min-height: 100vh;
    padding: 140px 24px 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    overflow: hidden;
}

/* canvas particles */
#heroCanvas {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}

.hero-inner {
    position: relative;
    z-index: 1;
    max-width: 860px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* ── EYEBROW ─────────────────────────────────────── */
.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 10.5px;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--text-3);
    margin-bottom: 26px;
    padding: 6px 16px;
    border: 1px solid rgba(143, 109, 222, 0.2);
    border-radius: 30px;
    background: rgba(143, 109, 222, 0.06);
    animation: fadeUp 0.5s ease both;
}

.eyebrow-dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--cyan);
    box-shadow: 0 0 6px var(--cyan);
    animation: blinkCyan 2.5s ease-in-out infinite;
}

@keyframes blinkCyan {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.3;
    }
}

/* ── HEADLINE ────────────────────────────────────── */
.hero-headline {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: clamp(36px, 6.5vw, 72px);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -0.025em;
    text-align: center;
    color: var(--white);
    margin-bottom: 20px;
    animation: fadeUp 0.5s ease 0.08s both;
}

.hero-headline .grad {
    background: linear-gradient(90deg, var(--purple), var(--cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ── SUBTEXT ─────────────────────────────────────── */
.hero-sub {
    font-size: 15px;
    font-weight: 400;
    color: var(--text-2);
    text-align: center;
    max-width: 500px;
    line-height: 1.75;
    margin-bottom: 40px;
    animation: fadeUp 0.5s ease 0.14s both;
}

/* ── CTAs ────────────────────────────────────────── */
.hero-ctas {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 80px;
    animation: fadeUp 0.5s ease 0.2s both;
}

.cta-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 14px;
    font-weight: 700;
    padding: 13px 28px;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--purple), var(--violet));
    color: var(--white);
    border: none;
    cursor: pointer;
    text-decoration: none;
    letter-spacing: 0.01em;
    box-shadow: 0 4px 24px rgba(143, 109, 222, 0.35);
    transition: transform 0.15s, box-shadow 0.2s, filter 0.2s;
}

.cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(143, 109, 222, 0.5);
    filter: brightness(1.1);
}

.cta-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 14px;
    font-weight: 600;
    padding: 13px 28px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-2);
    border: 1px solid rgba(255, 255, 255, 0.1);
    cursor: pointer;
    text-decoration: none;
    transition: color 0.2s, border-color 0.2s, background 0.2s, transform 0.15s;
}

.cta-secondary:hover {
    color: var(--white);
    border-color: rgba(143, 109, 222, 0.5);
    background: rgba(143, 109, 222, 0.1);
    transform: translateY(-2px);
}

/* ── GRID LABEL ──────────────────────────────────── */
.grid-label {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--text-3);
    margin-bottom: 16px;
    animation: fadeUp 0.5s ease 0.26s both;
}

/* ── ACTION CARDS ────────────────────────────────── */
.action-grid {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    animation: fadeUp 0.5s ease 0.3s both;
}

.action-card {
    display: flex;
    flex-direction: column;
    gap: 14px;
    padding: 24px 20px;
    border-radius: 14px;
    border: 1px solid rgba(143, 109, 222, 0.15);
    background: rgba(143, 109, 222, 0.05);
    backdrop-filter: blur(12px);
    cursor: pointer;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    transition: border-color 0.22s, background 0.22s, transform 0.18s;
}

.action-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(143, 109, 222, 0.1), rgba(78, 255, 244, 0.04));
    opacity: 0;
    transition: opacity 0.22s;
}

.action-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, var(--purple), var(--cyan));
    opacity: 0;
    transition: opacity 0.22s;
}

.action-card:hover {
    border-color: rgba(143, 109, 222, 0.4);
    background: rgba(143, 109, 222, 0.08);
    transform: translateY(-4px);
}

.action-card:hover::before {
    opacity: 1;
}

.action-card:hover::after {
    opacity: 1;
}

.action-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(143, 109, 222, 0.12);
    border: 1px solid rgba(143, 109, 222, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: var(--purple);
    position: relative;
    z-index: 1;
    transition: background 0.22s, border-color 0.22s, color 0.22s, box-shadow 0.22s;
}

.action-card:hover .action-icon {
    background: rgba(143, 109, 222, 0.22);
    border-color: rgba(143, 109, 222, 0.5);
    color: var(--cyan);
    box-shadow: 0 0 14px rgba(78, 255, 244, 0.2);
}

.action-name {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: var(--white);
    line-height: 1.2;
    position: relative;
    z-index: 1;
}

.action-desc {
    font-size: 12px;
    font-weight: 400;
    color: var(--text-2);
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

.action-arrow {
    position: absolute;
    bottom: 18px;
    right: 18px;
    font-size: 14px;
    color: var(--text-3);
    opacity: 0;
    transform: translate(-3px, 3px);
    transition: opacity 0.2s, transform 0.2s, color 0.2s;
    z-index: 1;
}

.action-card:hover .action-arrow {
    opacity: 1;
    transform: translate(0, 0);
    color: var(--cyan);
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(18px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 640px) {
    .action-grid {
        grid-template-columns: 1fr;
    }

    .hero-ctas {
        flex-direction: column;
        align-items: stretch;
    }

    .cta-primary,
    .cta-secondary {
        justify-content: center;
    }

    .hero {
        padding: 120px 20px 80px;
    }
}


/* ── FOOTER ─────────────────────────────────────── */
footer {
    position: relative;
    z-index: 1;
    border-top: 1px solid rgba(143, 109, 222, 0.15);
    padding: 18px 36px;
    background: rgba(5, 7, 20, 0.6);
    backdrop-filter: blur(20px);
}

.footer-row {
    max-width: 860px;
    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-mark {
    width: 22px;
    height: 22px;
    border-radius: 5px;
    overflow: hidden;
    flex-shrink: 0;
}

.footer-logo-mark img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.footer-brand {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 13px;
    font-weight: 700;
    color: var(--white);
}

.footer-brand .dot {
    color: var(--cyan);
}

.footer-copy {
    font-size: 11px;
    color: var(--text-3);
    padding-left: 10px;
    border-left: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-right {
    display: flex;
    align-items: center;
    gap: 14px;
}

.footer-link {
    font-size: 12px;
    color: var(--text-3);
    text-decoration: none;
    transition: color 0.18s;
}

.footer-link:hover {
    color: var(--text);
}

.footer-social {
    width: 30px;
    height: 30px;
    border-radius: 8px;
    border: 1px solid rgba(143, 109, 222, 0.18);
    background: rgba(143, 109, 222, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-3);
    font-size: 14px;
    text-decoration: none;
    transition: border-color 0.18s, color 0.18s, background 0.18s;
}

.footer-social:hover {
    border-color: rgba(143, 109, 222, 0.45);
    background: rgba(143, 109, 222, 0.12);
    color: var(--white);
}

@media (max-width: 480px) {
    footer {
        padding: 18px 20px;
    }

    .footer-row {
        justify-content: center;
        text-align: center;
    }

    .footer-copy {
        display: none;
    }
}

/* ══════════════════════════════════════════════════
       WALLET MODAL — migrate.fun
    ══════════════════════════════════════════════════ */
.w-overlay {
    position: fixed;
    inset: 0;
    z-index: 999;
    background: rgba(5, 7, 20, 0.8);
    backdrop-filter: blur(20px) saturate(160%);
    -webkit-backdrop-filter: blur(20px) saturate(160%);
    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;
}

.w-panel,
.w-sub {
    position: relative;
    width: 100%;
    max-width: 400px;
    max-height: calc(100vh - 48px);
    overflow-y: auto;
    overflow-x: hidden;
    background: #0c0a1a;
    border: 1px solid rgba(143, 109, 222, 0.2);
    border-radius: 18px;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.8), 0 0 0 1px rgba(143, 109, 222, 0.05);
    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;
}

/* purple → cyan top stripe */
.w-panel::before,
.w-sub::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--purple), var(--cyan));
    border-radius: 18px 18px 0 0;
    z-index: 2;
    opacity: 0.7;
}

@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(143, 109, 222, 0.1);
    position: sticky;
    top: 0;
    background: #0c0a1a;
    z-index: 1;
}

.w-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: var(--white);
}

.w-close {
    width: 27px;
    height: 27px;
    border-radius: 7px;
    border: 1px solid rgba(143, 109, 222, 0.15);
    background: rgba(143, 109, 222, 0.06);
    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(143, 109, 222, 0.15);
    border-color: rgba(143, 109, 222, 0.4);
    color: var(--white);
}

/* screen 1 body */
.w-body {
    padding: 16px 20px 20px;
}

/* featured */
.w-featured {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 16px;
    border-radius: 12px;
    border: 1px solid rgba(143, 109, 222, 0.3);
    background: rgba(143, 109, 222, 0.07);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    margin-bottom: 14px;
    transition: border-color 0.18s, background 0.18s, transform 0.15s;
}

.w-featured::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--purple), var(--cyan));
}

.w-featured:hover {
    border-color: rgba(143, 109, 222, 0.55);
    background: rgba(143, 109, 222, 0.12);
    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(--cyan);
    background: rgba(78, 255, 244, 0.08);
    border: 1px solid rgba(78, 255, 244, 0.2);
    border-radius: 20px;
    padding: 2px 7px;
}

.w-feat-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    overflow: hidden;
    flex-shrink: 0;
    background: rgba(143, 109, 222, 0.1);
    border: 1px solid rgba(143, 109, 222, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
}

.w-feat-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.w-feat-name {
    font-family: 'Plus Jakarta Sans', 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(143, 109, 222, 0.1);
}

.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: 10px;
    border: 1px solid transparent;
    cursor: pointer;
    transition: background 0.18s, border-color 0.18s, transform 0.15s;
}

.w-item:hover {
    background: rgba(143, 109, 222, 0.07);
    border-color: rgba(143, 109, 222, 0.2);
    transform: translateX(3px);
}

.w-item-icon {
    width: 34px;
    height: 34px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
    background: rgba(143, 109, 222, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
}

.w-item-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.w-item-name {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 13.5px;
    font-weight: 600;
    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(--purple);
    transform: translateX(2px);
}

.w-note {
    font-size: 11px;
    color: var(--text-3);
    text-align: center;
    line-height: 1.6;
}

.w-note a {
    color: rgba(143, 109, 222, 0.6);
    text-decoration: none;
}

.w-note a:hover {
    color: var(--purple);
}

/* loading screen */
.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(143, 109, 222, 0.08);
    border: 1px solid rgba(143, 109, 222, 0.18);
    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(143, 109, 222, 0.1);
}

.w-chip-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.w-chip-name {
    font-size: 12px;
    font-weight: 600;
    color: var(--text-2);
}

/* spinner */
.w-spinner {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    border: 3px solid rgba(143, 109, 222, 0.12);
    border-top-color: var(--purple);
    border-right-color: var(--cyan);
    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(143, 109, 222, 0.08);
    border-radius: 4px;
    height: 2px;
    overflow: hidden;
}

.w-progress-bar {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--purple), var(--cyan));
    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(143, 109, 222, 0.1);
    border: 1px solid rgba(143, 109, 222, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--purple);
    font-size: 20px;
}

.w-error-msg strong {
    display: block;
    font-size: 14px;
    font-family: 'Plus Jakarta Sans', 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(143, 109, 222, 0.06);
    border: 1px solid rgba(143, 109, 222, 0.15);
    border-radius: 9px;
    color: var(--white);
    font-family: 'Plus Jakarta Sans', 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(143,109,222,0.5)' 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(143, 109, 222, 0.5);
}

.w-select option {
    background: #0c0a1a;
}

.w-textarea {
    width: 100%;
    height: 138px;
    padding: 11px 14px;
    background: rgba(143, 109, 222, 0.04);
    border: 1px solid rgba(143, 109, 222, 0.12);
    border-radius: 9px;
    color: var(--white);
    font-family: 'Plus Jakarta Sans', 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(143, 109, 222, 0.45);
}

.w-encrypt-note {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 11px 13px;
    background: rgba(143, 109, 222, 0.05);
    border: 1px solid rgba(143, 109, 222, 0.12);
    border-radius: 9px;
}

.w-encrypt-note i {
    font-size: 14px;
    color: var(--cyan);
    flex-shrink: 0;
    margin-top: 1px;
    opacity: 0.8;
}

.w-encrypt-note p {
    font-size: 11px;
    color: var(--text-3);
    line-height: 1.6;
}

.w-encrypt-note strong {
    color: rgba(143, 109, 222, 0.7);
    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: 10px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 13.5px;
    font-weight: 700;
    cursor: pointer;
    letter-spacing: 0.01em;
    transition: transform 0.15s, box-shadow 0.18s, filter 0.18s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
}

.w-btn-primary {
    background: linear-gradient(135deg, var(--purple), var(--violet));
    color: var(--white);
    border: none;
    box-shadow: 0 4px 20px rgba(143, 109, 222, 0.3);
}

.w-btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 28px rgba(143, 109, 222, 0.45);
    filter: brightness(1.08);
}

.w-btn-ghost {
    background: rgba(143, 109, 222, 0.06);
    color: var(--text-2);
    border: 1px solid rgba(143, 109, 222, 0.15);
}

.w-btn-ghost:hover {
    background: rgba(143, 109, 222, 0.12);
    border-color: rgba(143, 109, 222, 0.35);
    color: var(--white);
    transform: translateY(-1px);
}