:root {
    --quantum-blue: #71717a;
    --quantum-blue-light: #f4f4f5;
    --quantum-bg: #06070b;
    --quantum-dark: #0a0b10;
    --quantum-gray: #11131a;
    --quantum-gray-glass: rgba(10, 11, 16, 0.45);
    --quantum-white: #ffffff;
    --accent-gold: #e4e4e7;
    --accent-gold-light: #ffffff;
    --success-green: #00e676;
    --danger-red: #ff1744;
    --bitcoin-orange: #f7931a;
}

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

body {
    font-family: 'Inter', sans-serif;
    background: var(--quantum-bg);
    color: var(--quantum-white);
    overflow-x: hidden;
    position: relative;
}

/* Ambient Futuristic Metallic Spotlight Glow at Top Right */
body::before {
    content: '';
    position: fixed;
    top: 0;
    right: 0;
    width: 70vw;
    height: 70vh;
    background: radial-gradient(circle at 85% 15%, rgba(244, 244, 245, 0.15) 0%, rgba(255, 255, 255, 0.03) 45%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

/* Stars Background Simulation */
.stars-bg {
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(1.5px 1.5px at 15% 10%, rgba(255, 255, 255, 0.15) 0%, transparent 100%), 
        radial-gradient(1px 1px at 45% 65%, rgba(255, 255, 255, 0.1) 0%, transparent 100%), 
        radial-gradient(2px 2px at 80% 30%, rgba(255, 255, 255, 0.08) 0%, transparent 100%), 
        radial-gradient(1px 1px at 60% 85%, rgba(255, 255, 255, 0.09) 0%, transparent 100%), 
        radial-gradient(1.5px 1.5px at 90% 75%, rgba(255, 255, 255, 0.08) 0%, transparent 100%);
    opacity: 0.6;
    z-index: 1;
    pointer-events: none;
}

.font-space {
    font-family: 'Space Grotesk', sans-serif;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}
::-webkit-scrollbar-track {
    background: var(--quantum-bg);
}
::-webkit-scrollbar-thumb {
    background: rgba(244, 244, 245, 0.2);
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--quantum-blue-light);
}

@keyframes rotateLogo {
    to { transform: rotate(360deg); }
}

/* ── PAGE SYSTEM ── */
.page {
    display: none;
    position: relative;
    z-index: 2;
}
.page.active {
    display: block;
}

/* ── LAUNCH BANNER ── */
.launch-banner {
    background: linear-gradient(90deg, #090b11 0%, #1c1f2b 50%, #090b11 100%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--quantum-white);
    padding: 8px 0;
    position: relative;
    overflow: hidden;
    font-weight: 500;
    font-size: 0.8rem;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}
.launch-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    animation: shimmer 4s infinite linear;
}
@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}
.launch-banner i {
    color: var(--quantum-blue-light);
    animation: pulse 2s infinite;
}
@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.15); opacity: 0.7; }
}

/* ── NAVBAR ── */
.navbar-custom {
    background: rgba(6, 7, 11, 0.75);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    padding: 18px 0;
    transition: all 0.4s ease;
}
.navbar-custom.scrolled {
    padding: 12px 0;
    background: rgba(6, 7, 11, 0.9);
    border-bottom-color: rgba(255, 255, 255, 0.08);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}
.navbar-brand {
    display: flex;
    align-items: center;
    gap: 10px;
}
.nav-link {
    color: rgba(255, 255, 255, 0.6) !important;
    font-weight: 500;
    font-size: 0.85rem;
    margin: 0 6px;
    transition: all 0.3s ease;
    padding: 6px 12px !important;
    border-radius: 20px;
}
.nav-link:hover, .nav-link.active {
    color: var(--quantum-white) !important;
    background: rgba(255, 255, 255, 0.04);
}
.navbar-toggler {
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 6px 8px;
    border-radius: 8px;
}
.navbar-toggler-icon {
    filter: invert(1);
}

/* ── BUTTONS (Sleek Metallic Silver & Charcoal style) ── */
.btn-gold {
    background: linear-gradient(135deg, #e4e4e7 0%, #a1a1aa 100%);
    color: #0c0d12 !important;
    border: 1px solid rgba(255, 255, 255, 0.4);
    padding: 10px 24px;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    border-radius: 12px;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(255, 255, 255, 0.08);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}
.btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.6);
}

.btn-outline-gold {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.8) !important;
    padding: 10px 24px;
    font-weight: 500;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    border-radius: 12px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}
.btn-outline-gold:hover {
    background: rgba(255, 255, 255, 0.07);
    color: var(--quantum-white) !important;
    border-color: rgba(255, 255, 255, 0.25);
    transform: translateY(-1px);
}

.btn-bitcoin {
    background: linear-gradient(135deg, var(--bitcoin-orange) 0%, #cc7507 100%);
    color: #000000;
    border: none;
    padding: 14px 28px;
    font-weight: 700;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border-radius: 12px;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(247, 147, 26, 0.3);
}
.btn-bitcoin:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(247, 147, 26, 0.5);
}

.btn-bitcoin-outline {
    background: transparent;
    border: 1.5px solid var(--bitcoin-orange);
    color: var(--bitcoin-orange);
    padding: 12px 26px;
    font-weight: 600;
    font-size: 0.88rem;
    transition: all 0.3s ease;
    border-radius: 12px;
    cursor: pointer;
}
.btn-bitcoin-outline:hover {
    background: rgba(247, 147, 26, 0.08);
}

.btn-danger-outline {
    background: rgba(255, 23, 68, 0.02);
    border: 1px solid rgba(255, 23, 68, 0.2);
    color: #ff5252;
    padding: 8px 16px;
    font-weight: 500;
    font-size: 0.8rem;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
}
.btn-danger-outline:hover {
    background: rgba(255, 23, 68, 0.08);
    border-color: rgba(255, 23, 68, 0.4);
}

/* ── HERO ── */
.hero-section {
    min-height: 100vh;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding-top: 100px;
}
.hero-content {
    position: relative;
    z-index: 2;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 6px 16px;
    border-radius: 30px;
    font-size: 0.8rem;
    color: var(--quantum-blue-light);
    margin-bottom: 24px;
}
.live-dot {
    width: 6px;
    height: 6px;
    background: var(--success-green);
    border-radius: 50%;
    animation: blink 1.2s infinite;
}
@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.2; }
}
.hero-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(2.2rem, 5vw, 4.4rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 22px;
    letter-spacing: -1.5px;
}
.hero-title .highlight {
    background: linear-gradient(135deg, var(--quantum-blue-light), #8e9196);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hero-subtitle {
    font-size: 0.98rem;
    color: rgba(255, 255, 255, 0.55);
    max-width: 520px;
    margin-bottom: 36px;
    line-height: 1.7;
}
.hero-cta-group {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
}
.hero-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-top: 50px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 30px;
}
.stat-item {
    text-align: left;
}
.stat-value {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--quantum-white);
}
.stat-label {
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.4);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-top: 2px;
}

/* Interactive floating elements */
.rocket-container {
    position: relative;
    height: 480px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}
.quantum-orb-art {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0.01) 70%);
    position: absolute;
    animation: float 8s ease-in-out infinite;
    box-shadow: 0 0 60px rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.05);
}
.quantum-logo-large {
    width: 190px;
    height: 190px;
    animation: rotateLogo 30s linear infinite;
    filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.15));
}
@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(3deg); }
}

/* ── COUNTDOWN ── */
.countdown-section {
    background: rgba(6, 7, 11, 0.6);
    backdrop-filter: blur(10px);
    padding: 60px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.countdown-box {
    background: rgba(255, 255, 255, 0.01);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 24px 16px;
    text-align: center;
}
.countdown-value {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--quantum-white);
}
.countdown-label {
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.4);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 6px;
}

/* ── SECTIONS ── */
.section-padding {
    padding: 100px 0;
}
.section-label {
    color: var(--quantum-blue-light);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    margin-bottom: 12px;
}
.section-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(1.8rem, 3.5vw, 3rem);
    font-weight: 700;
    margin-bottom: 18px;
    line-height: 1.25;
}
.section-subtitle {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.95rem;
    max-width: 600px;
    line-height: 1.7;
}

/* ── SHARE CARDS (eswue glassmorphism) ── */
.share-card {
    background: var(--quantum-gray-glass);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 24px;
    padding: 36px 30px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    height: 100%;
    position: relative;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.35);
}
.share-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}
.share-card:hover::before {
    transform: scaleX(1);
}
.share-card:hover {
    transform: translateY(-6px);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 
        0 30px 60px rgba(0, 0, 0, 0.5),
        0 0 30px rgba(255, 255, 255, 0.06);
}
.share-card.featured {
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: linear-gradient(135deg, rgba(13, 17, 32, 0.6) 0%, rgba(255, 255, 255, 0.02) 100%);
}
.featured-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: var(--quantum-white);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.5px;
}
.company-logo {
    width: 52px;
    height: 52px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    margin-bottom: 20px;
}
.share-price {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 4px;
}
.price-change {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 0.85rem;
    font-weight: 600;
}
.price-change.positive { color: var(--success-green); }
.price-change.negative { color: var(--danger-red); }
.share-details {
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}
.detail-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
    font-size: 0.85rem;
}
.detail-label {
    color: rgba(255, 255, 255, 0.4);
}
.detail-value {
    color: var(--quantum-white);
    font-weight: 600;
}

/* ── FEATURES ── */
.feature-card {
    background: var(--quantum-gray-glass);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 36px 28px;
    transition: all 0.3s ease;
    height: 100%;
}
.feature-card:hover {
    border-color: rgba(255, 255, 255, 0.12);
    transform: translateY(-4px);
}
.feature-icon {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    color: var(--quantum-blue-light);
    margin-bottom: 22px;
}
.feature-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 10px;
}
.feature-desc {
    color: rgba(255, 255, 255, 0.45);
    font-size: 0.88rem;
    line-height: 1.6;
}

/* ── CLIENT SIDEBAR (Futuristic Capsule Sidebar) ── */
.dash-wrapper {
    min-height: 100vh;
    background: var(--quantum-bg);
    padding-top: 88px;
}
.dash-sidebar {
    background: rgba(6, 7, 11, 0.4);
    backdrop-filter: blur(20px);
    border-right: 1px solid rgba(255, 255, 255, 0.04);
    min-height: calc(100vh - 88px);
    padding: 30px 15px;
    position: sticky;
    top: 88px;
}
.dash-nav-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    color: rgba(255, 255, 255, 0.45);
    font-size: 0.88rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.25s ease;
    border-radius: 12px;
    margin-bottom: 6px;
    text-decoration: none;
}
.dash-nav-item:hover {
    color: var(--quantum-white);
    background: rgba(255, 255, 255, 0.02);
}
.dash-nav-item.active {
    color: var(--quantum-white);
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    font-weight: 600;
}

.dash-content {
    padding: 40px 35px;
}

/* ── STAT CARDS ── */
.dash-stat-card {
    background: var(--quantum-gray-glass);
    backdrop-filter: blur(24px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 24px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
    transition: all 0.3s ease;
}
.dash-stat-card:hover {
    border-color: rgba(255, 255, 255, 0.15);
}
.dash-stat-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    margin-bottom: 16px;
}
.dash-stat-val {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 4px;
}
.dash-stat-label {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.76rem;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

/* ── GENERAL CARDS ── */
.dash-section-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--quantum-white);
}
.dash-card {
    background: var(--quantum-gray-glass);
    backdrop-filter: blur(24px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 28px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.dash-share-row {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}
.dash-share-row:last-child {
    border-bottom: none;
}
.dash-share-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
}
.dash-share-info {
    flex: 1;
    min-width: 0;
}
.dash-share-name {
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 2px;
}
.dash-share-sub {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.35);
}
.dash-share-price {
    text-align: right;
    flex-shrink: 0;
}
.dash-share-val {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 1rem;
}
.dash-share-change {
    font-size: 0.76rem;
    font-weight: 600;
}
.positive-text { color: var(--success-green); }
.negative-text { color: var(--danger-red); }

/* ── LEDGER TABLE ── */
.portfolio-card {
    background: var(--quantum-gray-glass);
    backdrop-filter: blur(24px);
    border-radius: 20px;
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}
.portfolio-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
    flex-wrap: wrap;
    gap: 12px;
}
.portfolio-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
}
.portfolio-table {
    width: 100%;
}
.portfolio-table th {
    color: rgba(255, 255, 255, 0.35);
    font-weight: 500;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 12px 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    white-space: nowrap;
}
.portfolio-table td {
    padding: 16px 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    vertical-align: middle;
    font-size: 0.88rem;
}
.portfolio-table tr:hover td {
    background: rgba(255, 255, 255, 0.01);
}
.company-cell {
    display: flex;
    align-items: center;
    gap: 12px;
}
.company-icon {
    width: 38px;
    height: 38px;
    min-width: 38px;
    background: rgba(255, 255, 255, 0.01);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
}
.company-name {
    font-weight: 600;
    font-size: 0.9rem;
}
.company-ticker {
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.35);
}
.table-responsive {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

/* ── ACTIVITY LIST ── */
.activity-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 14px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}
.activity-item:last-child {
    border-bottom: none;
}
.activity-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    margin-top: 6px;
    flex-shrink: 0;
}
.activity-text {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.5;
}
.activity-time {
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.35);
    margin-top: 2px;
}
.user-avatar {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, #a1a1aa, #52525b);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 0.9rem;
    color: #000;
    flex-shrink: 0;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.1);
}

/* ── MOBILE DASH TABS ── */
.dash-mobile-nav {
    display: none;
    background: var(--quantum-dark);
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    padding: 0 10px;
    overflow-x: auto;
    white-space: nowrap;
}
.dash-mobile-nav-item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 14px 16px;
    color: rgba(255, 255, 255, 0.45);
    font-size: 0.8rem;
    font-weight: 500;
    cursor: pointer;
    border-bottom: 2px solid transparent;
    transition: all 0.25s ease;
}
.dash-mobile-nav-item.active {
    color: var(--quantum-white);
    border-bottom-color: var(--quantum-blue-light);
}

.dash-tab {
    display: none;
}
.dash-tab.active {
    display: block;
}

/* ── MODALS (FUTURISTIC GLASS MODAL) ── */
.modal-content {
    background: rgba(6, 7, 11, 0.85);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 
        0 25px 60px rgba(0, 0, 0, 0.6),
        0 0 40px rgba(255, 255, 255, 0.05);
}
.auth-tab-bar {
    display: flex;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    background: rgba(255, 255, 255, 0.01);
}
.auth-tab-btn {
    flex: 1;
    padding: 16px;
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.4);
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    border-bottom: 2px solid transparent;
    cursor: pointer;
    transition: all 0.3s ease;
}
.auth-tab-btn.active {
    color: var(--quantum-white);
    border-bottom-color: var(--quantum-blue-light);
    background: rgba(255, 255, 255, 0.01);
}
.auth-input {
    width: 100%;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 10px;
    padding: 12px 14px;
    color: white;
    font-size: 0.9rem;
    outline: none;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
}
.auth-input:focus {
    border-color: var(--quantum-blue-light);
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.15);
}
.auth-input::placeholder {
    color: rgba(255, 255, 255, 0.3);
}
.auth-label {
    display: block;
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.45);
    margin-bottom: 6px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.password-wrap {
    position: relative;
}
.password-wrap .auth-input {
    padding-right: 44px;
}
.pass-eye {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    font-size: 0.9rem;
    padding: 4px;
}

/* ── CHECKOUT PAGE ── */
.checkout-wrapper {
    min-height: 100vh;
    background: var(--quantum-bg);
    padding: 110px 0 60px;
}
.checkout-card {
    background: var(--quantum-gray-glass);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 24px;
    padding: 36px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}
.checkout-company-icon {
    width: 68px;
    height: 68px;
    background: rgba(255, 255, 255, 0.01);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 16px;
}
.order-summary {
    background: rgba(255, 255, 255, 0.01);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 16px;
    padding: 22px;
    margin-bottom: 24px;
}
.summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}
.summary-row:last-child {
    border-bottom: none;
}
.summary-label {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.88rem;
}
.summary-value {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 500;
    font-size: 0.92rem;
}
.summary-value.highlight {
    color: var(--quantum-white);
    font-size: 1.2rem;
    font-weight: 700;
}
.summary-value.bitcoin-val {
    color: var(--bitcoin-orange);
    font-size: 1.2rem;
    font-weight: 700;
}
.bitcoin-payment-box {
    background: linear-gradient(135deg, rgba(247, 147, 26, 0.07), rgba(247, 147, 26, 0.02));
    border: 1px solid rgba(247, 147, 26, 0.2);
    border-radius: 18px;
    padding: 28px 24px;
    text-align: center;
    margin-bottom: 24px;
}
.bitcoin-icon {
    width: 48px;
    height: 48px;
    background: var(--bitcoin-orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #000000;
    margin: 0 auto 12px;
    box-shadow: 0 0 15px rgba(247, 147, 26, 0.3);
}
.qr-code {
    width: 170px;
    height: 170px;
    background: white;
    border-radius: 12px;
    margin: 20px auto;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 10px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}
.wallet-address {
    background: rgba(255, 255, 255, 0.01);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 12px 90px 12px 14px;
    font-family: monospace;
    font-size: 0.8rem;
    color: var(--quantum-blue-light);
    word-break: break-all;
    margin: 16px 0;
    position: relative;
    text-align: left;
}
.copy-btn {
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: var(--quantum-white);
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 0.72rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}
.copy-btn:hover {
    background: var(--quantum-blue-light);
    color: #000;
}
.payment-status {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 230, 118, 0.06);
    border: 1px solid rgba(0, 230, 118, 0.2);
    padding: 6px 16px;
    border-radius: 30px;
    font-size: 0.8rem;
    color: var(--success-green);
    margin-top: 10px;
}
.status-dot {
    width: 6px;
    height: 6px;
    background: var(--success-green);
    border-radius: 50%;
    animation: blink 1s infinite;
}
.timer-box {
    background: rgba(255, 23, 68, 0.04);
    border: 1px solid rgba(255, 23, 68, 0.12);
    border-radius: 12px;
    padding: 12px;
    text-align: center;
    margin-bottom: 20px;
}
.timer-label {
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.35);
    margin-bottom: 2px;
}
.timer-value {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--danger-red);
}
.transaction-history {
    background: rgba(255, 255, 255, 0.01);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 16px;
    padding: 22px;
    margin-top: 24px;
}
.tx-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}
.tx-item:last-child {
    border-bottom: none;
}
.tx-status {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 0.72rem;
    font-weight: 600;
}
.tx-status.confirmed { background: rgba(0, 230, 118, 0.08); color: var(--success-green); }
.tx-status.pending, .tx-status.confirming { background: rgba(247, 147, 26, 0.08); color: var(--bitcoin-orange); }

/* ── QUANTITY CONTROL ── */
.qty-control {
    display: flex;
    align-items: center;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.01);
}
.qty-btn {
    background: rgba(255, 255, 255, 0.01);
    border: none;
    color: var(--quantum-white);
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1rem;
    transition: background 0.2s;
}
.qty-btn:hover {
    background: rgba(255, 255, 255, 0.06);
}
.qty-input {
    background: transparent;
    border: none;
    color: white;
    text-align: center;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    width: 60px;
    padding: 4px;
    outline: none;
}

/* ── TOAST ── */
.toast-container {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 9999;
    max-width: calc(100vw - 48px);
}
.toast-custom {
    background: rgba(6, 7, 11, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 14px;
    padding: 16px 20px;
    color: var(--quantum-white);
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
    animation: slideIn 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    margin-top: 10px;
}
@keyframes slideIn {
    from { transform: translateX(110%); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}
.toast-icon {
    width: 32px;
    height: 32px;
    min-width: 32px;
    background: rgba(0, 230, 118, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--success-green);
    font-size: 1rem;
}
.toast-icon.error { background: rgba(255, 23, 68, 0.08); color: var(--danger-red); }
.toast-icon.info { background: rgba(255, 255, 255, 0.05); color: var(--quantum-blue-light); }
.toast-icon.bitcoin { background: rgba(247, 147, 26, 0.08); color: var(--bitcoin-orange); }
.toast-title {
    font-weight: 600;
    font-size: 0.88rem;
    margin-bottom: 2px;
}
.toast-message {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.5);
}

/* ── SPINNERS ── */
.spinner-gold {
    width: 16px;
    height: 16px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-top-color: var(--quantum-white);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    display: inline-block;
    vertical-align: middle;
}
.spinner-bitcoin {
    width: 16px;
    height: 16px;
    border: 2px solid rgba(247, 147, 26, 0.2);
    border-top-color: var(--bitcoin-orange);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    display: inline-block;
    vertical-align: middle;
}
@keyframes spin {
    to { transform: rotate(360deg); }
}
.slide-up {
    animation: slideUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    opacity: 0;
    transform: translateY(20px);
}
@keyframes slideUp {
    to { opacity: 1; transform: translateY(0); }
}

/* ── FOOTER ── */
.footer {
    background: rgba(6, 7, 11, 0.8);
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    padding: 60px 0 30px;
    position: relative;
    z-index: 2;
}
.footer-brand {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
}
.footer-desc {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.85rem;
    line-height: 1.6;
    max-width: 280px;
}
.footer-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--quantum-white);
    margin-bottom: 18px;
}
.footer-links {
    list-style: none;
    padding: 0;
}
.footer-links li {
    margin-bottom: 10px;
}
.footer-links a {
    color: rgba(255, 255, 255, 0.4);
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.2s;
}
.footer-links a:hover {
    color: var(--quantum-white);
}
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    margin-top: 40px;
    padding-top: 24px;
    text-align: center;
    color: rgba(255, 255, 255, 0.25);
    font-size: 0.8rem;
}

/* ── RESPONSIVE OVERRIDES ── */
@media (max-width: 991px) {
    .dash-sidebar { display: none; }
    .dash-mobile-nav { display: block; }
    .dash-content { padding: 30px 20px; }
    .checkout-wrapper { padding: 90px 0 50px; }
    .checkout-card { padding: 28px 20px; }
}
@media (max-width: 767px) {
    .hero-section { padding: 100px 0 50px; }
    .rocket-container { height: 200px; }
    .quantum-orb-art { width: 140px; height: 140px; }
    .quantum-logo-large { width: 90px; height: 90px; }
    .hero-stats { gap: 20px; }
    .stat-value { font-size: 1.5rem; }
    .hero-cta-group .btn-gold, .hero-cta-group .btn-bitcoin-outline { width: 100%; }
    .countdown-section { padding: 40px 0; }
    .section-padding { padding: 60px 0; }
    .share-card { padding: 28px 20px; }
    .portfolio-table th, .portfolio-table td { padding: 10px; font-size: 0.78rem; }
    .footer { padding: 40px 0 20px; }
    .toast-container { bottom: 16px; right: 16px; left: 16px; max-width: 100%; }
    .dash-stat-val { font-size: 1.4rem; }
}
@media (max-width: 480px) {
    .hero-title { font-size: 1.85rem; }
    .hero-badge { font-size: 0.72rem; padding: 4px 12px; }
    .checkout-card { padding: 20px 14px; }
    .wallet-address { font-size: 0.72rem; padding-right: 75px; }
    .qr-code { width: 140px; height: 140px; }
}