@import url('https://fonts.googleapis.com/css2?family=Cabinet+Grotesk:wght@500;700;800&family=Plus+Jakarta+Sans:wght@300;400;500;600;700&display=swap');

:root {
    --bg-color: #060606;
    --card-bg: rgba(255, 255, 255, 0.02);
    --card-bg-hover: rgba(255, 255, 255, 0.05);
    --border-color: rgba(255, 255, 255, 0.07);
    --border-color-hover: rgba(255, 255, 255, 0.15);
    --text-primary: #ffffff;
    --text-secondary: #94a3b8;
    --text-muted: #64748b;
    
    --accent-primary: #3b82f6; /* Electric Blue */
    --accent-secondary: #22d3ee; /* Cyan */
    --accent-tertiary: #818cf8; /* Indigo */
    --accent-gradient: linear-gradient(135deg, var(--accent-primary) 0%, var(--accent-secondary) 50%, var(--accent-tertiary) 100%);
    --button-gradient-hover: linear-gradient(135deg, var(--accent-tertiary) 0%, var(--accent-secondary) 50%, var(--accent-primary) 100%);
    
    --navbar-bg: rgba(13, 15, 22, 0.65);
    --navbar-scrolled-bg: rgba(8, 9, 13, 0.85);
    --navbar-blur: 16px;
    
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-bounce: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #08090d;
}
::-webkit-scrollbar-thumb {
    background: #1f2937;
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: #374151;
}

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

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-color);
    color: var(--text-primary);
    font-family: 'Plus Jakarta Sans', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

/* Typography headers */
h1, h2, h3, h4 {
    font-family: 'Cabinet Grotesk', 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    letter-spacing: -0.02em;
}

/* Glow Background Effects */
.bg-glow-1 {
    position: absolute;
    top: -10%;
    left: -10%;
    width: 60vw;
    height: 60vw;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.1) 0%, transparent 70%);
    z-index: -2;
    pointer-events: none;
}

.bg-glow-2 {
    position: absolute;
    top: 40%;
    right: -10%;
    width: 50vw;
    height: 50vw;
    background: radial-gradient(circle, rgba(129, 140, 248, 0.06) 0%, transparent 70%);
    z-index: -2;
    pointer-events: none;
}

.bg-glow-3 {
    position: absolute;
    bottom: 5%;
    left: 10%;
    width: 45vw;
    height: 45vw;
    background: radial-gradient(circle, rgba(34, 211, 238, 0.05) 0%, transparent 70%);
    z-index: -2;
    pointer-events: none;
}

/* Navbar Wrapper */
.header-container {
    position: fixed;
    top: 24px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 48px);
    max-width: 1200px;
    z-index: 1000;
    transition: var(--transition-smooth);
}

.navbar {
    background: var(--navbar-bg);
    backdrop-filter: blur(var(--navbar-blur));
    -webkit-backdrop-filter: blur(var(--navbar-blur));
    border: 1px solid var(--border-color);
    border-radius: 100px;
    padding: 8px 16px 8px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), 
                inset 0 1px 1px rgba(255, 255, 255, 0.05);
    transition: var(--transition-smooth);
    width: 100%;
}

/* Scrolled/Sticky state */
.header-container.scrolled {
    top: 12px;
    max-width: 1100px;
}

.header-container.scrolled .navbar {
    background: var(--navbar-scrolled-bg);
    padding: 6px 12px 6px 20px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4), 
                inset 0 1px 0 rgba(255, 255, 255, 0.02);
    border-color: rgba(255, 255, 255, 0.04);
}

/* Brand / Logo */
.nav-brand {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.nav-logo {
    height: 34px;
    width: auto;
    object-fit: contain;
    transition: var(--transition-bounce);
}

.nav-brand:hover .nav-logo {
    transform: scale(1.08) rotate(-2deg);
}

/* Navigation Menu */
.nav-collapse {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-grow: 1;
    margin-left: 48px;
}

.nav-menu {
    display: flex;
    align-items: center;
    list-style: none;
    gap: 4px;
}

.nav-item {
    position: relative;
}

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    padding: 10px 18px;
    border-radius: 50px;
    transition: var(--transition-smooth);
    display: inline-block;
    position: relative;
}

.nav-link:hover {
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.05);
}

.nav-link.active {
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.08);
    font-weight: 600;
}

/* CTA buttons */
.nav-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.btn {
    text-decoration: none;
    font-size: 13.5px;
    font-weight: 600;
    padding: 10px 20px;
    border-radius: 20px;
    transition: var(--transition-smooth);
    white-space: nowrap;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-secondary {
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.09);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.btn-primary {
    color: #000000;
    background: white;
    border: none;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--button-gradient-hover);
    opacity: 0;
    z-index: -1;
    transition: opacity 0.4s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.4);
}

.btn-primary:hover::before {
    opacity: 1;
}

/* Mobile Toggle Hamburger Icon */
.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    width: 44px;
    height: 44px;
    position: relative;
    z-index: 1001;
    border-radius: 50%;
    transition: var(--transition-smooth);
}

.nav-toggle:hover {
    background: rgba(255, 255, 255, 0.05);
}

.nav-toggle-icon {
    display: block;
    position: absolute;
    width: 20px;
    height: 2px;
    background: var(--text-primary);
    left: 12px;
    top: 21px;
    transition: var(--transition-smooth);
}

.nav-toggle-icon::before,
.nav-toggle-icon::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 2px;
    background: var(--text-primary);
    left: 0;
    transition: var(--transition-smooth);
}

.nav-toggle-icon::before {
    top: -6px;
}

.nav-toggle-icon::after {
    top: 6px;
}

/* Open Toggle Burger States */
.nav-toggle.open .nav-toggle-icon {
    background: transparent;
}

.nav-toggle.open .nav-toggle-icon::before {
    transform: rotate(45deg);
    top: 0;
}

.nav-toggle.open .nav-toggle-icon::after {
    transform: rotate(-45deg);
    top: 0;
}

/* responsive media queries */
@media (max-width: 992px) {
    .nav-toggle {
        display: block;
    }

    .navbar {
        border-radius: 30px;
        flex-wrap: wrap;
        padding: 10px 16px;
    }

    .nav-collapse {
        margin-left: 0;
        width: 100%;
        max-height: 0;
        opacity: 0;
        overflow: hidden;
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.25s ease;
    }

    .navbar.open {
        border-radius: 24px;
        background: rgba(10, 11, 15, 0.98);
        box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6);
        border-color: rgba(255, 255, 255, 0.12);
    }

    .navbar.open .nav-collapse {
        max-height: 480px;
        opacity: 1;
        margin-top: 16px;
        padding-bottom: 8px;
    }

    .nav-menu {
        flex-direction: column;
        align-items: stretch;
        gap: 6px;
        width: 100%;
    }

    .nav-link {
        width: 100%;
        padding: 12px 20px;
        font-size: 15px;
        border-radius: 12px;
    }

    .nav-actions {
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
        width: 100%;
        border-top: 1px solid var(--border-color);
        padding-top: 16px;
        margin-top: 10px;
    }

    .btn {
        width: 100%;
        text-align: center;
        padding: 12px;
    }
}

/* Beautiful Hero & Section Styling to Show Scrolling & Floating Nav */
.section {
    padding: 120px 24px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.hero-section {
    padding: 180px 24px 100px 24px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    min-height: 100vh;
}

/* Decorative Hero Grid */
.hero-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(to right, rgba(255,255,255,0.03) 1px, transparent 1px),
                      linear-gradient(to bottom, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 40px 40px;
    background-position: center;
    mask-image: radial-gradient(ellipse 60% 60% at 50% 50%, #000 40%, transparent 100%);
    -webkit-mask-image: radial-gradient(ellipse 60% 60% at 50% 50%, #000 40%, transparent 100%);
    z-index: -1;
    pointer-events: none;
}

.hero-badge {
    background: rgba(59, 130, 246, 0.08);
    border: 1px solid rgba(59, 130, 246, 0.2);
    color: #22d3ee;
    padding: 6px 16px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.05em;
    margin-bottom: 24px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.05);
}

.hero-title {
    font-size: clamp(3rem, 7vw, 4.8rem);
    line-height: 1.1;
    margin-bottom: 24px;
    max-width: 900px;
    background: linear-gradient(180deg, #ffffff 0%, #cbd5e1 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-gradient-text {
    background: white;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    color: var(--text-secondary);
    font-size: clamp(1rem, 2.5vw, 1.25rem);
    max-width: 650px;
    margin-bottom: 40px;
    font-weight: 400;
}

.hero-ctas {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
    flex-wrap: wrap;
    justify-content: center;
}

.hero-btn {
    padding: 14px 28px;
    font-size: 15px;
}

.hero-store-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
}

/* Hero 2-Column Layout: text + CTAs | flying mobiles + store badges */
.hero-flex {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    width: 100%;
    max-width: 1400px;
}

.hero-side {
    flex: 1;
    min-width: 0;
    text-align: left;
}

.hero-side-left .hero-title {
    font-size: clamp(2.8rem, 4.6vw, 4.4rem);
    max-width: none;
}

.hero-side-left .hero-subtitle {
    max-width: 560px;
    font-size: 18px;
    margin-bottom: 36px;
}

.hero-side-left .hero-ctas {
    justify-content: flex-start;
    margin-bottom: 0;
}

.hero-side-left .hero-btn {
    padding: 16px 32px;
    font-size: 16px;
}

.hero-side-right {
    flex: 1;
    width: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.hero-flying-mobiles {
    width: 100%;
    height: auto;
    display: block;
    opacity: 0;
    transform: translateY(140px);
    transition: opacity 1.1s cubic-bezier(0.16, 1, 0.3, 1), transform 1.1s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-flying-mobiles.in-view {
    opacity: 1;
    transform: translateY(0);
}

.hero-side-right .hero-store-buttons {
    justify-content: center;
    margin-bottom: 0;
}

@media (max-width: 1100px) {
    .hero-flex {
        flex-direction: column;
        text-align: center;
    }
    .hero-side {
        text-align: center;
    }
    .hero-side-left .hero-title {
        max-width: 650px;
        margin-left: auto;
        margin-right: auto;
    }
    .hero-side-left .hero-subtitle {
        max-width: 550px;
        margin-left: auto;
        margin-right: auto;
    }
    .hero-side-left .hero-ctas {
        justify-content: center;
    }
    .hero-side-right {
        width: 380px;
    }
}

/* Live Forex Rate Ticker */
.ticker-bar {
    width: 100%;
    align-self: stretch;
    margin-top: 56px;
    overflow: hidden;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    padding: 20px 0;
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
    mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
}

.ticker-track-wrap {
    display: flex;
    width: max-content;
    animation: ticker-scroll 38s linear infinite;
}

.ticker-bar:hover .ticker-track-wrap {
    animation-play-state: paused;
}

@keyframes ticker-scroll {
    from { transform: translateX(-50%); }
    to { transform: translateX(0); }
}

.ticker-track {
    display: flex;
    gap: 40px;
    padding-right: 40px;
}

.ticker-item {
    display: flex;
    align-items: center;
    gap: 12px;
    white-space: nowrap;
}

.ticker-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.2);
    color: var(--accent-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    flex-shrink: 0;
}

.ticker-info {
    display: flex;
    flex-direction: column;
    line-height: 1.35;
}

.ticker-symbol {
    font-size: 11px;
    color: var(--text-muted);
    font-weight: 600;
    letter-spacing: 0.04em;
}

.ticker-price {
    font-size: 15px;
    font-weight: 700;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 4px;
}

.ticker-price.up {
    color: var(--accent-primary);
}

.ticker-price.down {
    color: #ef4444;
}

@media (prefers-reduced-motion: reduce) {
    .ticker-track-wrap {
        animation: none;
    }
}

/* Trust Bar */
.trust-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px 48px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 28px 24px;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-secondary);
    font-size: 14px;
    font-weight: 500;
}

.trust-item i {
    color: var(--accent-primary);
    font-size: 13px;
}

/* Sections Base Styling */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-tag {
    color: white;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 12px;
    display: block;
}

.section-title {
    font-size: clamp(2rem, 4vw, 2.75rem);
    margin-bottom: 16px;
}

.section-desc {
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
    font-size: 16px;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}

@media (max-width: 640px) {
    .features-grid {
        grid-template-columns: 1fr;
    }
}

.feature-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 32px;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(255,255,255,0.02) 0%, transparent 100%);
    opacity: 0;
    transition: var(--transition-smooth);
}

.feature-card:hover {
    transform: translateY(-5px);
    background: var(--card-bg-hover);
    border-color: var(--border-color-hover);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-icon-wrapper {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: rgba(59, 130, 246, 0.05);
    border: 1px solid rgba(59, 130, 246, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-primary);
    margin-bottom: 24px;
    transition: var(--transition-smooth);
}

.feature-card:hover .feature-icon-wrapper {
    background: rgba(59, 130, 246, 0.15);
    border-color: rgba(59, 130, 246, 0.3);
    color: #ffffff;
    box-shadow: 0 0 15px rgba(59, 130, 246, 0.15);
}

.feature-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
}

.feature-card p {
    color: var(--text-secondary);
    font-size: 14.5px;
}

/* Step Cards (How It Works) */
.step-number {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(59, 130, 246, 0.08);
    border: 1px solid rgba(59, 130, 246, 0.2);
    color: var(--accent-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
    margin-bottom: 24px;
}

/* Why Metafix Grid */
.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.why-item {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 24px;
    transition: var(--transition-smooth);
}

.why-item:hover {
    background: var(--card-bg-hover);
    border-color: var(--border-color-hover);
}

.why-item-head {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 15px;
    margin-bottom: 8px;
}

.why-item-head i {
    color: var(--accent-primary);
    font-size: 14px;
}

.why-item p {
    color: var(--text-secondary);
    font-size: 13.5px;
}

@media (max-width: 900px) {
    .why-grid {
        grid-template-columns: 1fr;
    }
}

.candlestick-chart {
    position: absolute;
    bottom: 20%;
    left: 10%;
    right: 10%;
    height: 60%;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    padding: 0 10px;
}

.candle-bar {
    width: 12%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.candle-wick {
    width: 2px;
    height: 100%;
    background: var(--text-muted);
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}

.candle-body {
    width: 100%;
    border-radius: 4px;
    position: absolute;
    transition: var(--transition-smooth);
}

.candle-body.up {
    background: linear-gradient(180deg, #3b82f6 0%, #2563eb 100%);
    border: 1px solid #3b82f6;
}

.candle-body.down {
    background: linear-gradient(180deg, #ef4444 0%, #dc2626 100%);
    border: 1px solid #ef4444;
}

.candle-indicator-line {
    position: absolute;
    width: 100%;
    height: 2px;
    background: var(--accent-primary);
    top: 40%;
    opacity: 0.7;
    filter: drop-shadow(0 0 8px var(--accent-primary));
}

/* Platform Deep-Dive Rows */
.deepdive-row {
    margin-bottom: 24px;
}

.deepdive-row.reverse {
    flex-direction: row-reverse;
}

.deepdive-row .section-tag {
    margin-bottom: 4px;
}

.deepdive-row h3 {
    font-size: 26px;
    margin-bottom: 12px;
}

.deepdive-graphic {
    aspect-ratio: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 20px;
    padding: 32px;
}

.mini-stats {
    position: relative;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.mini-stat-box {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 14px;
    padding: 16px;
    text-align: center;
}

.mini-stat-num {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.mini-stat-num.accent {
    color: var(--accent-primary);
}

@media (max-width: 700px) {
    .mini-stats {
        gap: 8px;
    }
    .mini-stat-box {
        padding: 10px 6px;
    }
    .mini-stat-num {
        font-size: 14px;
    }
    .mini-stat-lbl {
        font-size: 9.5px;
    }
}

.mini-stat-lbl {
    font-size: 11px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.mini-order-list, .mini-alert-list {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.mini-order-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 14px;
    padding: 14px 18px;
}

.mini-order-symbol {
    font-weight: 700;
    font-size: 14px;
}

.mini-order-detail {
    font-size: 12px;
    color: var(--text-muted);
    margin-top: 2px;
}

.mini-order-pnl {
    font-weight: 700;
    font-size: 15px;
}

.mini-order-pnl.up {
    color: var(--accent-primary);
}

.mini-order-pnl.down {
    color: #ef4444;
}

.mini-equity {
    position: relative;
    text-align: center;
}

.mini-equity-lbl {
    font-size: 12px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 8px;
}

.mini-equity-num {
    font-size: 34px;
    font-weight: 800;
    color: var(--text-primary);
}

.mini-equity-num span {
    color: var(--text-muted);
    font-size: 22px;
}

.mini-equity-delta {
    color: var(--accent-primary);
    font-size: 13px;
    font-weight: 600;
    margin-top: 6px;
}

.mini-alert-row {
    display: flex;
    align-items: center;
    gap: 14px;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 14px;
    padding: 14px 18px;
}

.mini-alert-icon {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(59, 130, 246, 0.1);
    color: var(--accent-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 13px;
}

.mini-alert-title {
    font-size: 13.5px;
    font-weight: 600;
}

.mini-alert-time {
    font-size: 12px;
    color: var(--text-muted);
    margin-top: 2px;
}

@media (max-width: 992px) {
    .deepdive-row.reverse {
        flex-direction: column;
    }
}

/* Cinematic Scroll-Pinned Reveal */
.cinematic-section {
    position: relative;
    height: 100vh;
    background: #000;
    overflow: hidden;
}

.cinematic-pin {
    position: relative;
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.cinematic-caption {
    position: absolute;
    z-index: 3;
    text-align: center;
    color: var(--text-primary);
    pointer-events: none;
    padding: 0 24px;
    max-width: 700px;
}

.cinematic-caption-in h2 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    margin-top: 16px;
    background: linear-gradient(180deg, #ffffff 0%, #94a3b8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.cinematic-caption-out {
    opacity: 0;
}

.cinematic-caption-out h3 {
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    color: var(--text-primary);
}

.cinematic-frame {
    position: relative;
    width: min(1000px, 86vw);
    height: min(560px, 56vw);
    border-radius: 32px;
    overflow: hidden;
    z-index: 2;
    box-shadow: 0 40px 120px rgba(0, 0, 0, 0.6),
                0 0 140px rgba(59, 130, 246, 0.1);
    background: #0d0e12;
}

.cinematic-yt-wrap {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.cinematic-yt {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    min-width: 177.78vh;
    min-height: 56.25vw;
    transform: translate(-50%, -50%);
    border: none;
}

.cinematic-vignette {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, transparent 40%, rgba(0, 0, 0, 0.55) 100%);
    pointer-events: none;
}

@media (max-width: 900px) {
    .cinematic-section {
        display: none;
    }
}

/* Showcase Gallery Section */
.showcase-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    perspective: 1200px;
}

.showcase-card {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    aspect-ratio: 4/5;
    border: 1px solid var(--border-color);
    background: #0d0e12;
    transform-style: preserve-3d;
    will-change: transform;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
    transition: border-color 0.4s ease, box-shadow 0.4s ease;
}

.showcase-card:hover {
    border-color: var(--border-color-hover);
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.5), 0 0 60px rgba(59, 130, 246, 0.12);
}

.showcase-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.showcase-card-overlay {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 24px;
    background: linear-gradient(0deg, rgba(5, 6, 9, 0.92) 0%, rgba(5, 6, 9, 0.35) 60%, transparent 100%);
}

.showcase-card-overlay h4 {
    font-size: 17px;
    margin-bottom: 4px;
}

.showcase-card-overlay p {
    font-size: 13px;
    color: var(--text-secondary);
}

@media (max-width: 900px) {
    .showcase-grid {
        grid-template-columns: 1fr;
    }
}

/* About Section */
.about-container {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.about-stat-box {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    padding: 32px 24px;
    border-radius: 20px;
    text-align: center;
    transition: var(--transition-smooth);
}

.about-stat-box:hover {
    background: var(--card-bg-hover);
    border-color: var(--border-color-hover);
    transform: translateY(-4px);
}

.about-stat-num {
    font-size: 38px;
    font-weight: 800;
    margin-bottom: 6px;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.about-stat-lbl {
    color: var(--text-secondary);
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

@media (max-width: 768px) {
    .about-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

/* Broker Dashboard Section */
.dashboard-panel {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 28px;
    padding: 40px;
}

.dashboard-panel-head {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 8px;
    font-size: 13px;
    color: var(--text-secondary);
    margin-bottom: 24px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border-color);
}

.dashboard-stat-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

@media (max-width: 768px) {
    .dashboard-stat-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Closing CTA Banner */
.cta-banner {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1) 0%, rgba(8, 9, 13, 0.4) 60%);
    border: 1px solid var(--border-color);
    border-radius: 28px;
    padding: 64px 24px;
    text-align: center;
}

.cta-banner h2 {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    margin-bottom: 12px;
}

.cta-banner p {
    color: var(--text-secondary);
    font-size: 16px;
    margin-bottom: 32px;
}

.cta-banner-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Contact Section & Form */
.contact-container {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 48px;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 28px;
    padding: 48px;
    position: relative;
    overflow: hidden;
}

.contact-info {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 28px;
    margin: 40px 0;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 16px;
}

.contact-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-primary);
    font-size: 18px;
}

.contact-lbl {
    font-size: 12px;
    color: var(--text-secondary);
}

.contact-val {
    font-size: 15px;
    font-weight: 500;
}

.contact-form {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.form-group-full {
    grid-column: span 2;
}

.form-label {
    display: block;
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 8px;
    color: var(--text-secondary);
}

.form-input {
    width: 100%;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 14px 16px;
    color: var(--text-primary);
    font-family: inherit;
    font-size: 14px;
    outline: none;
    transition: var(--transition-smooth);
}

.form-input:focus {
    border-color: var(--accent-primary);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.15);
    background: rgba(255, 255, 255, 0.04);
}

textarea.form-input {
    resize: none;
}

select.form-input {
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%2394a3b8' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}

select.form-input option {
    background: #0a0a0f;
    color: var(--text-primary);
}

.phone-input-group {
    display: flex;
    align-items: stretch;
    gap: 8px;
}

.phone-input-group .phone-code-select {
    flex: 0 0 86px;
    padding-left: 12px;
    padding-right: 28px;
    background-position: right 8px center;
}

.phone-input-group input.form-input {
    flex: 1;
    min-width: 0;
}

.combo-select {
    position: relative;
}

.combo-input {
    cursor: pointer;
    padding-right: 40px;
}

.combo-arrow {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 11px;
    color: var(--text-muted);
    pointer-events: none;
    transition: transform 0.2s ease;
}

.combo-select.open .combo-arrow {
    transform: translateY(-50%) rotate(180deg);
}

.phone-input-group .combo-select-code {
    flex: 0 0 108px;
}

.combo-select-code .combo-input {
    padding-left: 12px;
    padding-right: 30px;
}

.combo-select-code .combo-arrow {
    right: 10px;
    font-size: 10px;
}

.combo-dropdown {
    display: none;
    position: absolute;
    top: calc(100% + 6px);
    left: 0;
    right: 0;
    max-height: 240px;
    overflow-y: auto;
    background: #0a0a0f;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 6px;
    z-index: 50;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.45);
}

.combo-select-code .combo-dropdown {
    left: 0;
    right: auto;
    width: 220px;
}

.combo-select.open .combo-dropdown {
    display: block;
}

.combo-option {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 10px 12px;
    border-radius: 8px;
    font-size: 14px;
    color: var(--text-primary);
    cursor: pointer;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.combo-option:hover,
.combo-option.highlighted {
    background: rgba(255, 255, 255, 0.06);
}

.combo-option-code {
    color: var(--text-muted);
    font-size: 12.5px;
    flex-shrink: 0;
}

.combo-option-empty {
    padding: 10px 12px;
    font-size: 13.5px;
    color: var(--text-muted);
    cursor: default;
}

.contact-form-feedback {
    grid-column: span 2;
    font-size: 14px;
    display: none;
}

.contact-form-feedback.visible {
    display: block;
}

.contact-form-feedback.success {
    color: #34d399;
}

.contact-form-feedback.error {
    color: #f87171;
}

.contact-form-btn {
    grid-column: span 2;
    padding: 14px;
    margin-top: 10px;
}

.contact-form-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

@media (max-width: 768px) {
    .contact-container {
        grid-template-columns: 1fr;
        padding: 32px;
    }
    .contact-form {
        grid-template-columns: 1fr;
    }
    .form-group-full, .contact-form-btn, .contact-form-feedback {
        grid-column: span 1;
    }
}

/* Footer Styling */
.footer {
    background: #000000;
    border-top: 1px solid var(--border-color);
    padding: 60px 24px 32px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1fr;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding-bottom: 40px;
}

.footer-logo {
    height: 32px;
    margin-bottom: 16px;
}

.footer-brand p {
    color: var(--text-secondary);
    font-size: 13.5px;
    max-width: 320px;
    margin-bottom: 20px;
}

.footer-social {
    display: flex;
    gap: 10px;
}

.footer-social a {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: var(--transition-smooth);
}

.footer-social a:hover {
    color: var(--text-primary);
    border-color: var(--border-color-hover);
    background: var(--card-bg-hover);
}

.footer-col h4 {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--text-primary);
    margin-bottom: 18px;
}

.footer-col {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-col a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 14px;
    transition: var(--transition-smooth);
}

.footer-col a:hover {
    color: var(--text-primary);
}

.footer-stores {
    max-width: 1200px;
    margin: 0 auto;
    padding: 28px 0;
    border-top: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-stores-label {
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--text-secondary);
}

.footer-stores-badges {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.footer-risk {
    max-width: 1200px;
    margin: 0 auto;
    padding: 24px 0;
    border-top: 1px solid var(--border-color);
    color: var(--text-muted);
    font-size: 12.5px;
    line-height: 1.6;
}

.footer-risk strong {
    color: var(--text-secondary);
}

.footer-risk a {
    color: var(--text-secondary);
    text-decoration: underline;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
    color: var(--text-muted);
    font-size: 12.5px;
}

.footer-legal-links {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-legal-links a {
    color: var(--text-muted);
    text-decoration: none;
    transition: var(--transition-smooth);
}

.footer-legal-links a:hover {
    color: var(--text-primary);
}

@media (max-width: 900px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
    .footer-brand {
        grid-column: span 2;
    }
}

@media (max-width: 560px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        row-gap: 32px;
    }
    .footer-brand {
        grid-column: span 2;
    }
    .footer-col:last-child {
        grid-column: span 2;
    }
    .footer-bottom {
        flex-direction: column;
    }
    .footer {
        padding-bottom: 100px;
    }
}

/* Mobile App Showcase Section */
.download-container {
    display: grid;
    grid-template-columns: 1fr;
    max-width: 720px;
    margin: 0 auto;
}

.video-tabs {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin: 32px 0;
}

.video-tab-btn {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 16px 20px;
    text-align: left;
    color: var(--text-secondary);
    cursor: pointer;
    transition: var(--transition-smooth);
    display: flex;
    align-items: center;
    gap: 16px;
    width: 100%;
    font-family: inherit;
}

.video-tab-btn:hover {
    background: var(--card-bg-hover);
    color: var(--text-primary);
    border-color: var(--border-color-hover);
}

.video-tab-btn.active {
    background: rgba(59, 130, 246, 0.06);
    border-color: rgba(59, 130, 246, 0.25);
    color: var(--text-primary);
}

.video-tab-btn.active .tab-icon {
    background: rgba(59, 130, 246, 0.15);
    color: var(--accent-primary);
}

.tab-icon {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.03);
    color: var(--text-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    transition: var(--transition-smooth);
    flex-shrink: 0;
}

.tab-content h4 {
    font-size: 15px;
    margin-bottom: 2px;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.tab-content p {
    font-size: 13px;
    color: var(--text-muted);
}

.video-tab-btn.active .tab-content p {
    color: var(--text-secondary);
}

/* App download buttons */
.store-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.store-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #000;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 10px 20px;
    color: #fff;
    text-decoration: none;
    transition: var(--transition-smooth);
}

.store-btn:hover {
    border-color: var(--accent-primary);
    background: #0d0e12;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(59, 130, 246, 0.1);
}

.store-btn i {
    font-size: 24px;
}

.store-btn-text {
    display: flex;
    flex-direction: column;
}

.store-btn-lbl {
    font-size: 10px;
    color: var(--text-muted);
    text-transform: uppercase;
}

.store-btn-val {
    font-size: 14px;
    font-weight: 700;
}

@media (max-width: 992px) {
    .download-container {
        max-width: 100%;
    }
}