/* Astrofinex Premium Landing Page */

:root {
    --primary: #8B5CF6;
    --primary-light: #A78BFA;
    --primary-dark: #7C3AED;
    --secondary: #06B6D4;
    --accent: #14B8A6;
    --bg-dark: #0a0a1a;
    --bg-card: rgba(139, 92, 246, 0.06);
    --glass: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.08);
    --text: #F1F5F9;
    --text-muted: #94A3B8;
    --glow-primary: rgba(139, 92, 246, 0.4);
    --glow-secondary: rgba(6, 182, 212, 0.3);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--bg-dark);
    color: var(--text);
    line-height: 1.7;
    overflow-x: hidden;
}

/* ===== BACKGROUND EFFECTS ===== */
.bg-effects {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: -1;
    overflow: hidden;
}

.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.5;
    animation: float 20s ease-in-out infinite;
}

.orb-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--primary) 0%, transparent 70%);
    top: -200px;
    left: -200px;
    animation-delay: 0s;
}

.orb-2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--secondary) 0%, transparent 70%);
    bottom: -150px;
    right: -150px;
    animation-delay: -7s;
    animation-duration: 25s;
}

.orb-3 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, var(--accent) 0%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: -14s;
    animation-duration: 30s;
    opacity: 0.3;
}

.stars {
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(2px 2px at 20px 30px, rgba(255,255,255,0.3), transparent),
        radial-gradient(2px 2px at 40px 70px, rgba(255,255,255,0.2), transparent),
        radial-gradient(1px 1px at 90px 40px, rgba(255,255,255,0.4), transparent),
        radial-gradient(2px 2px at 160px 120px, rgba(255,255,255,0.3), transparent),
        radial-gradient(1px 1px at 230px 80px, rgba(255,255,255,0.2), transparent),
        radial-gradient(2px 2px at 300px 150px, rgba(255,255,255,0.3), transparent);
    background-size: 350px 200px;
    animation: twinkle 4s ease-in-out infinite alternate;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -30px) scale(1.05); }
    66% { transform: translate(-20px, 20px) scale(0.95); }
}

@keyframes twinkle {
    0% { opacity: 0.3; }
    100% { opacity: 0.6; }
}

/* ===== CONTAINER ===== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ===== NAVBAR ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    background: rgba(10, 10, 26, 0.7);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
}

.navbar-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--text);
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 1.4rem;
}

.logo-img {
    width: 40px;
    height: 40px;
    max-width: 40px;
    max-height: 40px;
    border-radius: 12px;
    object-fit: contain;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 40px;
}

.nav-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.3s;
}

.nav-links a:hover {
    color: var(--text);
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: 14px;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    cursor: pointer;
}

.btn-glow {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    box-shadow: 0 4px 24px var(--glow-primary);
}

.btn-glow:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px var(--glow-primary);
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), #6366F1);
    color: white;
    box-shadow: 0 4px 24px var(--glow-primary);
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 40px var(--glow-primary);
}

.btn-ghost {
    background: var(--glass);
    color: var(--text);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(10px);
}

.btn-ghost:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.15);
}

.btn-lg {
    padding: 18px 36px;
    font-size: 1.05rem;
}

.btn-cta {
    background: linear-gradient(135deg, var(--accent), #0D9488);
    color: white;
    padding: 18px 48px;
    font-size: 1.1rem;
    box-shadow: 0 4px 24px var(--glow-secondary);
}

.btn-cta:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 40px var(--glow-secondary);
}

.pulse-glow {
    animation: pulse-glow 2s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% { box-shadow: 0 4px 24px var(--glow-primary); }
    50% { box-shadow: 0 8px 40px var(--glow-primary), 0 0 60px var(--glow-primary); }
}

/* ===== GLASS EFFECT ===== */
.glass {
    background: var(--glass);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
}

/* ===== HERO SECTION ===== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    background: rgba(139, 92, 246, 0.15);
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: 100px;
    font-size: 0.9rem;
    color: var(--primary-light);
    margin-bottom: 32px;
}

.badge-icon {
    font-size: 1.1rem;
}

.hero-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(2.8rem, 5vw, 4.2rem);
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 28px;
}

.title-line {
    display: block;
}

.gradient-text {
    background: linear-gradient(135deg, var(--secondary), var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% 200%;
    animation: gradient-shift 5s ease infinite;
}

@keyframes gradient-shift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.hero-description {
    font-size: 1.15rem;
    color: var(--text-muted);
    margin-bottom: 40px;
    max-width: 500px;
    line-height: 1.8;
}

.hero-description strong {
    color: var(--text);
}

.hero-buttons {
    display: flex;
    gap: 16px;
    margin-bottom: 48px;
}

/* Trust Row */
.trust-row {
    display: flex;
    align-items: center;
    gap: 24px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.trust-icon {
    font-size: 1.2rem;
}

.trust-divider {
    width: 1px;
    height: 24px;
    background: var(--glass-border);
}

/* Hero Visual */
.hero-visual {
    position: relative;
}

.preview-container {
    position: relative;
}

.preview-glow {
    position: absolute;
    inset: -50px;
    background: radial-gradient(circle at center, var(--glow-primary) 0%, transparent 70%);
    filter: blur(60px);
    opacity: 0.5;
}

.preview-frame {
    position: relative;
    background: rgba(20, 20, 40, 0.8);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.5);
}

.preview-header {
    display: flex;
    gap: 8px;
    padding: 12px 16px;
    background: rgba(0, 0, 0, 0.3);
    border-bottom: 1px solid var(--glass-border);
}

.preview-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.preview-dot.red { background: #EF4444; }
.preview-dot.yellow { background: #F59E0B; }
.preview-dot.green { background: #10B981; }

.preview-image {
    width: 100%;
    display: block;
}

/* Floating Cards */
.floating-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 20px;
    background: rgba(20, 20, 40, 0.9);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 14px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.card-1 {
    top: 20%;
    right: -30px;
}

.card-2 {
    bottom: 15%;
    left: -40px;
}

.card-icon {
    font-size: 1.5rem;
}

.card-label {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.card-value {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
}

.card-value.positive {
    color: #10B981;
}

/* Animations */
.animate-float {
    animation: float-sm 3s ease-in-out infinite;
}

.animate-float-slow {
    animation: float-sm 4s ease-in-out infinite;
}

.animate-float-delayed {
    animation: float-sm 4s ease-in-out infinite;
    animation-delay: -2s;
}

@keyframes float-sm {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* ===== FEATURES SECTION ===== */
.features {
    padding: 120px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 72px;
}

.section-badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(139, 92, 246, 0.1);
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: 100px;
    font-size: 0.85rem;
    color: var(--primary-light);
    margin-bottom: 20px;
}

.section-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.feature-card {
    padding: 36px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.feature-card:hover {
    transform: translateY(-8px);
    border-color: rgba(139, 92, 246, 0.3);
    box-shadow: 0 20px 60px rgba(139, 92, 246, 0.15);
}

.feature-card.featured {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1), rgba(6, 182, 212, 0.05));
    border-color: rgba(139, 92, 246, 0.3);
}

.featured-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    padding: 6px 16px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 600;
    color: white;
}

.feature-icon-wrap {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(139, 92, 246, 0.1);
    border-radius: 16px;
    margin-bottom: 24px;
}

.feature-icon {
    font-size: 1.8rem;
}

.feature-card h3 {
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.feature-card p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.7;
}

/* ===== STATS SECTION ===== */
.stats-section {
    padding: 80px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.stat-card {
    padding: 40px 32px;
    text-align: center;
    transition: all 0.3s;
}

.stat-card:hover {
    transform: translateY(-4px);
    border-color: rgba(139, 92, 246, 0.3);
}

.stat-number {
    display: block;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.8rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 0.95rem;
    color: var(--text-muted);
}

/* ===== HOW IT WORKS ===== */
.how-it-works {
    padding: 120px 0;
}

.steps-container {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
}

.step-card {
    flex: 1;
    max-width: 340px;
    padding: 40px 32px;
    text-align: center;
}

.step-number {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 24px;
}

.step-content h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.step-content p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.7;
}

.step-connector {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 60px;
}

.connector-line {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    opacity: 0.5;
}

.connector-dot {
    width: 8px;
    height: 8px;
    background: var(--primary);
    border-radius: 50%;
    margin-top: -5px;
}

/* ===== CTA SECTION ===== */
.cta-section {
    padding: 80px 0 120px;
}

.cta-card {
    padding: 80px 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top right, rgba(139, 92, 246, 0.15) 0%, transparent 50%),
                radial-gradient(circle at bottom left, rgba(6, 182, 212, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.cta-stars {
    font-size: 2.5rem;
    margin-bottom: 24px;
}

.cta-card h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    font-weight: 700;
    margin-bottom: 16px;
}

.cta-card p {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 500px;
    margin: 0 auto 32px;
}

/* ===== FOOTER ===== */
.footer {
    padding: 48px 0;
    border-top: 1px solid var(--glass-border);
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 28px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 1.3rem;
}

.footer-links {
    display: flex;
    gap: 40px;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--text);
}

.footer-copyright {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-content {
        order: 1;
    }

    .hero-visual {
        order: 2;
        margin-top: 40px;
    }

    .hero-description {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-buttons {
        justify-content: center;
    }

    .trust-row {
        justify-content: center;
    }

    .floating-card {
        display: none;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .steps-container {
        flex-direction: column;
        align-items: center;
    }

    .step-connector {
        transform: rotate(90deg);
        padding: 20px 0;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: 1fr 1fr;
    }

    .cta-card {
        padding: 48px 24px;
    }

    .footer-links {
        gap: 24px;
    }
}

/* ===== MOCK DASHBOARD ===== */
.preview-title {
    margin-left: auto;
    font-size: 0.75rem;
    color: var(--text-muted);
    font-weight: 500;
}

.mock-dashboard {
    display: flex;
    height: 380px;
    background: linear-gradient(135deg, #0f0d1a 0%, #1a1525 100%);
}

.mock-sidebar {
    width: 56px;
    background: rgba(0, 0, 0, 0.3);
    border-right: 1px solid var(--glass-border);
    padding: 12px 8px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.mock-logo-area {
    padding: 8px 0;
    margin-bottom: 8px;
}

.mock-logo-icon {
    width: 32px;
    height: 32px;
    margin: 0 auto;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 8px;
}

.mock-nav-item {
    width: 36px;
    height: 36px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    transition: all 0.3s;
}

.mock-nav-item.active {
    background: rgba(139, 92, 246, 0.3);
    box-shadow: 0 0 15px rgba(139, 92, 246, 0.3);
}

.mock-main {
    flex: 1;
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    overflow: hidden;
}

/* Stats Row */
.mock-stats-row {
    display: flex;
    gap: 12px;
}

.mock-stat-card {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 14px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
}

.mock-stat-card.highlight {
    background: rgba(139, 92, 246, 0.1);
    border-color: rgba(139, 92, 246, 0.3);
}

.mock-stat-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mock-stat-icon.moon {
    background: linear-gradient(135deg, #1e1b4b, #312e81);
    box-shadow: 0 0 15px rgba(99, 102, 241, 0.3);
}

.mock-stat-icon.moon::after {
    content: '🌙';
    font-size: 18px;
}

.mock-stat-icon.score {
    background: linear-gradient(135deg, #064e3b, #047857);
    box-shadow: 0 0 15px rgba(16, 185, 129, 0.3);
}

.mock-stat-icon.score::after {
    content: '📈';
    font-size: 18px;
}

.mock-stat-icon.trend {
    background: linear-gradient(135deg, #1e3a5f, #0369a1);
    box-shadow: 0 0 15px rgba(6, 182, 212, 0.3);
}

.mock-stat-icon.trend::after {
    content: '⬆️';
    font-size: 18px;
}

.mock-stat-info {
    display: flex;
    flex-direction: column;
}

.mock-stat-label {
    font-size: 0.65rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.mock-stat-value {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
}

.mock-stat-value.green {
    color: #10B981;
}

/* Assets Grid */
.mock-assets-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}

.mock-asset-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    padding: 14px;
    transition: all 0.3s;
}

.mock-asset-card:hover {
    border-color: rgba(139, 92, 246, 0.3);
    transform: translateY(-2px);
}

.mock-asset-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
}

.mock-asset-icon {
    width: 28px;
    height: 28px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    font-weight: 700;
}

.mock-asset-icon.btc {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: white;
}

.mock-asset-icon.eth {
    background: linear-gradient(135deg, #6366f1, #4f46e5);
    color: white;
}

.mock-asset-icon.gold {
    background: linear-gradient(135deg, #eab308, #ca8a04);
    color: #422006;
}

.mock-asset-icon.sol {
    background: linear-gradient(135deg, #14b8a6, #0d9488);
    color: white;
}

.mock-asset-name {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.mock-asset-price {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 8px;
    transition: color 0.3s;
}

.mock-chart {
    height: 32px;
    margin-bottom: 6px;
}

.mock-chart svg {
    width: 100%;
    height: 100%;
}

.chart-line {
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    animation: draw-line 2s ease-out forwards;
}

.chart-line.green { stroke: #10B981; filter: drop-shadow(0 0 4px rgba(16, 185, 129, 0.5)); }
.chart-line.purple { stroke: #8B5CF6; filter: drop-shadow(0 0 4px rgba(139, 92, 246, 0.5)); }
.chart-line.gold { stroke: #F59E0B; filter: drop-shadow(0 0 4px rgba(245, 158, 11, 0.5)); }
.chart-line.cyan { stroke: #06B6D4; filter: drop-shadow(0 0 4px rgba(6, 182, 212, 0.5)); }

@keyframes draw-line {
    from { stroke-dasharray: 200; stroke-dashoffset: 200; }
    to { stroke-dasharray: 200; stroke-dashoffset: 0; }
}

.mock-change {
    font-size: 0.7rem;
    font-weight: 600;
}

.mock-change.positive {
    color: #10B981;
}

.mock-change.negative {
    color: #EF4444;
}

/* Transit Bar */
.mock-transit-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
    background: rgba(245, 158, 11, 0.1);
    border: 1px solid rgba(245, 158, 11, 0.2);
    border-radius: 12px;
    margin-top: auto;
}

.mock-transit-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.planet-icon {
    font-size: 1.2rem;
    color: #F59E0B;
}

.transit-text {
    font-size: 0.8rem;
    color: var(--text);
}

.mock-transit-badge {
    padding: 4px 12px;
    border-radius: 6px;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.mock-transit-badge.warning {
    background: rgba(245, 158, 11, 0.2);
    color: #F59E0B;
}

/* Floating Card Updates */
.floating-card .card-text {
    display: flex;
    flex-direction: column;
}

.floating-card .card-label {
    font-size: 0.7rem;
    color: var(--text-muted);
}

.floating-card .card-value {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
}

.floating-card .card-value.positive {
    color: #10B981;
}

/* CTA Icon */
.cta-icon {
    margin-bottom: 24px;
}

/* Trust item svg */
.trust-item svg {
    stroke: var(--primary-light);
}

/* Feature icon wrap svg */
.feature-icon-wrap svg {
    stroke: var(--primary-light);
}

/* Mobile adjustments for mock dashboard */
@media (max-width: 1024px) {
    .mock-dashboard {
        height: 300px;
    }
    
    .mock-assets-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .mock-stats-row {
        display: none;
    }
}

@media (max-width: 768px) {
    .mock-dashboard {
        display: none;
    }
    
    .preview-frame {
        background: linear-gradient(135deg, #0f0d1a 0%, #1a1525 100%);
        min-height: 200px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .preview-frame::after {
        content: 'Dashboard Preview';
        color: var(--text-muted);
        font-size: 0.9rem;
    }
}
