/* ==========================================================================
   CryptoSail — Official Platform Stylesheet (aicryptosail.com)
   ========================================================================== */

:root {
    /* Color Palette */
    --color-bg-dark: #070D1E;
    --color-bg-navy: #0B132B;
    --color-bg-card: rgba(15, 23, 42, 0.78);
    --color-bg-glass: rgba(255, 255, 255, 0.04);
    
    --color-cyan: #00F2FE;
    --color-cyan-light: #38BDF8;
    --color-cyan-deep: #0284C7;
    
    --color-emerald: #10B981;
    --color-red: #EF4444;
    --color-amber: #F59E0B;
    --color-purple: #8B5CF6;
    --color-indigo: #6366F1;
    
    --color-text-main: #F8FAFC;
    --color-text-muted: #94A3B8;
    --color-border: rgba(56, 189, 248, 0.22);
    --color-border-glow: rgba(0, 242, 254, 0.4);

    /* Fonts */
    --font-display: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;

    /* Transitions & Shadows */
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-smooth: 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    --shadow-glow: 0 0 25px rgba(0, 242, 254, 0.25);
}

/* Global Reset */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-family: var(--font-body);
    background-color: var(--color-bg-dark);
    color: var(--color-text-main);
    line-height: 1.6;
}

body {
    overflow-x: hidden;
    position: relative;
    background: radial-gradient(circle at 50% 0%, #111E3D 0%, #070D1E 80%);
}

/* Ambient Canvas */
#bgCanvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    pointer-events: none;
    z-index: 0;
    opacity: 0.6;
}

.container {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 2;
}

/* Scroll Reveal Base */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s var(--transition-smooth), transform 0.7s var(--transition-smooth);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Typography & Badges */
h1, h2, h3, h4 {
    font-family: var(--font-display);
    font-weight: 700;
    line-height: 1.25;
}

.gradient-text {
    background: linear-gradient(135deg, var(--color-cyan) 0%, var(--color-cyan-light) 50%, #60A5FA 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.accent-text { color: var(--color-cyan); }
.text-center { text-align: center; }
.text-green { color: var(--color-emerald); }
.text-red { color: var(--color-red); }
.text-cyan { color: var(--color-cyan); }

.section-badge {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: var(--color-cyan);
    background: rgba(0, 242, 254, 0.08);
    border: 1px solid rgba(0, 242, 254, 0.25);
    padding: 6px 14px;
    border-radius: 30px;
    margin-bottom: 12px;
    text-transform: uppercase;
}

.section-header {
    margin-bottom: 54px;
}

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

.section-subtitle {
    font-size: 1.1rem;
    color: var(--color-text-muted);
    max-width: 680px;
    margin: 0 auto;
}

.section-padding {
    padding: 96px 0;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 24px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition-smooth);
    border: none;
    outline: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--color-cyan) 0%, var(--color-cyan-deep) 100%);
    color: #041021;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(0, 242, 254, 0.45);
}

.btn-glow {
    box-shadow: 0 0 20px rgba(0, 242, 254, 0.35);
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--color-border);
    color: var(--color-text-main);
}

.btn-outline:hover {
    background: var(--color-bg-glass);
    border-color: var(--color-cyan);
    color: #FFF;
}

.btn-glass {
    background: rgba(255, 255, 255, 0.06);
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.14);
    color: var(--color-text-main);
}

.btn-glass:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-2px);
    border-color: rgba(255, 255, 255, 0.25);
}

.btn-xl {
    padding: 16px 32px;
    font-size: 16px;
    border-radius: 14px;
}

.btn-sm {
    padding: 8px 16px;
    font-size: 13px;
    border-radius: 8px;
}

.btn-block {
    width: 100%;
}

/* Glassmorphism Card Base */
.glass-card {
    background: var(--color-bg-card);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--color-border);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.glass-card:hover {
    border-color: var(--color-border-glow);
}

/* Live Market Ticker */
.ticker-wrap {
    background: rgba(7, 13, 30, 0.95);
    border-bottom: 1px solid var(--color-border);
    display: flex;
    align-items: center;
    overflow: hidden;
    height: 40px;
    position: relative;
    z-index: 100;
}

.ticker-badge {
    background: var(--color-bg-navy);
    padding: 0 16px;
    height: 100%;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--color-cyan);
    border-right: 1px solid var(--color-border);
    white-space: nowrap;
    z-index: 2;
}

.pulse-ring {
    width: 8px;
    height: 8px;
    background-color: var(--color-emerald);
    border-radius: 50%;
    box-shadow: 0 0 0 rgba(16, 185, 129, 0.4);
    animation: pulseGlow 2s infinite;
}

@keyframes pulseGlow {
    0% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7); }
    70% { box-shadow: 0 0 0 8px rgba(16, 185, 129, 0); }
    100% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

.ticker-scroll {
    display: flex;
    align-items: center;
    gap: 36px;
    white-space: nowrap;
    animation: tickerSlide 35s linear infinite;
    padding-left: 20px;
}

.ticker-scroll:hover {
    animation-play-state: paused;
}

@keyframes tickerSlide {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.ticker-item {
    font-size: 13px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.ticker-item .symbol { font-weight: 600; color: #CBD5E1; }
.ticker-item .price { font-weight: 700; }
.ticker-item .change { font-size: 12px; font-weight: 600; padding: 2px 6px; border-radius: 4px; }
.ticker-item .change.positive { color: var(--color-emerald); background: rgba(16, 185, 129, 0.12); }
.ticker-item .change.negative { color: var(--color-red); background: rgba(239, 68, 68, 0.12); }

/* Navigation Bar */
.navbar {
    position: sticky;
    top: 0;
    z-index: 90;
    background: rgba(7, 13, 30, 0.85);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    transition: var(--transition-fast);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.brand-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.brand-title {
    display: flex;
    flex-direction: column;
}

.brand-text {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 800;
    color: #FFF;
    letter-spacing: -0.5px;
}

.domain-badge {
    font-size: 10px;
    font-weight: 600;
    color: var(--color-cyan-light);
    letter-spacing: 0.5px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 28px;
}

.nav-links a {
    color: var(--color-text-muted);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: var(--transition-fast);
}

.nav-links a:hover {
    color: var(--color-cyan);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 14px;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
    padding: 6px;
}

.menu-toggle span {
    width: 24px;
    height: 2px;
    background: #FFF;
    border-radius: 2px;
    transition: var(--transition-fast);
}

/* Mobile Drawer */
.mobile-drawer {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background: var(--color-bg-navy);
    z-index: 200;
    padding: 24px;
    display: flex;
    flex-direction: column;
    transition: right 0.35s ease;
    border-left: 1px solid var(--color-border);
    box-shadow: -10px 0 30px rgba(0,0,0,0.5);
}

.mobile-drawer.open {
    right: 0;
}

.drawer-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 32px;
}

.drawer-close {
    background: none;
    border: none;
    color: #FFF;
    font-size: 28px;
    cursor: pointer;
}

.drawer-links {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-bottom: 32px;
}

.drawer-links a {
    color: #CBD5E1;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
}

.drawer-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* Hero Section */
.hero-section {
    position: relative;
    padding: 80px 0 110px 0;
    overflow: hidden;
}

.hero-bg-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -60%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 242, 254, 0.15) 0%, rgba(2, 132, 199, 0.05) 50%, transparent 70%);
    pointer-events: none;
    z-index: 1;
}

.hero-container {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 54px;
    align-items: center;
}

.badge-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 242, 254, 0.08);
    border: 1px solid rgba(0, 242, 254, 0.25);
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 600;
    color: var(--color-cyan);
    margin-bottom: 24px;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--color-cyan);
    border-radius: 50%;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 3.6rem);
    letter-spacing: -1px;
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--color-text-muted);
    margin-bottom: 36px;
    line-height: 1.7;
}

.hero-cta-group {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.hero-trust-badges {
    display: flex;
    align-items: center;
    gap: 20px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.trust-item {
    display: flex;
    flex-direction: column;
}

.trust-number {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 800;
    color: #FFF;
}

.trust-label {
    font-size: 12px;
    color: var(--color-text-muted);
}

.trust-divider {
    width: 1px;
    height: 28px;
    background: rgba(255, 255, 255, 0.12);
}

/* Floating Card Animation */
.floating-card {
    animation: floatAnim 6s ease-in-out infinite;
}

@keyframes floatAnim {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* Hero Trading Card */
.trading-card {
    padding: 28px;
    border-color: rgba(0, 242, 254, 0.3);
}

.trading-card .card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.user-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.avatar-badge {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--color-cyan), var(--color-cyan-deep));
    color: #041021;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 16px;
}

.avatar-badge.sm {
    width: 32px;
    height: 32px;
    font-size: 13px;
}

.user-name { font-weight: 700; font-size: 15px; color: #FFF; }
.user-sub { font-size: 12px; color: var(--color-text-muted); }

.signal-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.long-badge {
    background: rgba(16, 185, 129, 0.15);
    color: var(--color-emerald);
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.short-badge {
    background: rgba(239, 68, 68, 0.15);
    color: var(--color-red);
    border: 1px solid rgba(239, 68, 68, 0.3);
}

.live-dot {
    width: 6px;
    height: 6px;
    background: currentColor;
    border-radius: 50%;
}

.card-trade-body {
    background: rgba(7, 13, 30, 0.6);
    border-radius: 14px;
    padding: 20px;
    margin-bottom: 20px;
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.trade-pair {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.symbol-name {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 800;
}

.trade-pnl {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 800;
}

.signal-confidence-bar {
    margin-bottom: 20px;
}

.confidence-info {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: var(--color-text-muted);
    margin-bottom: 6px;
}

.confidence-info strong { color: var(--color-cyan); }

.progress-track {
    width: 100%;
    height: 6px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 6px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--color-cyan), var(--color-emerald));
    border-radius: 6px;
    transition: width 0.8s ease;
}

.trade-stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.stat-box {
    background: rgba(255, 255, 255, 0.03);
    padding: 10px 14px;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
}

.stat-label { font-size: 11px; color: var(--color-text-muted); }
.stat-value { font-size: 14px; font-weight: 700; margin-top: 2px; }

.trading-card .card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    color: var(--color-text-muted);
}

.status-chip {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--color-cyan);
    font-weight: 600;
}

.chip-dot {
    width: 6px;
    height: 6px;
    background: var(--color-cyan);
    border-radius: 50%;
}

/* Features & 6-Dimension AI Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 28px;
}

.feature-card {
    padding: 32px;
    display: flex;
    flex-direction: column;
}

.feature-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.bg-cyan { background: rgba(0, 242, 254, 0.12); color: var(--color-cyan); }
.bg-blue { background: rgba(56, 189, 248, 0.12); color: var(--color-cyan-light); }
.bg-emerald { background: rgba(16, 185, 129, 0.12); color: var(--color-emerald); }
.bg-amber { background: rgba(245, 158, 11, 0.12); color: var(--color-amber); }
.bg-indigo { background: rgba(99, 102, 241, 0.12); color: var(--color-indigo); }
.bg-purple { background: rgba(139, 92, 246, 0.12); color: var(--color-purple); }

.dim-tag {
    font-size: 11px;
    font-weight: 700;
    color: var(--color-cyan);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 6px;
}

.feature-card h3 {
    font-size: 1.25rem;
    margin-bottom: 10px;
    color: #FFF;
}

.feature-card p {
    color: var(--color-text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* SMC Strategy Showcase */
.smc-section {
    background: rgba(11, 19, 43, 0.4);
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
}

.smc-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 54px;
    align-items: center;
}

.smc-content h2 {
    font-size: 2.3rem;
    margin-bottom: 18px;
}

.smc-content p {
    color: var(--color-text-muted);
    font-size: 1.05rem;
    margin-bottom: 32px;
}

.smc-feature-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.smc-item {
    display: flex;
    gap: 16px;
}

.smc-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: rgba(0, 242, 254, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.smc-item h4 { font-size: 1.05rem; margin-bottom: 4px; color: #FFF; }
.smc-item p { font-size: 0.9rem; margin-bottom: 0; }

.smc-chart-card {
    padding: 24px;
}

.chart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    font-size: 14px;
}

.chart-title { font-weight: 700; color: #FFF; }

.chart-badge {
    font-size: 11px;
    font-weight: 700;
    color: var(--color-cyan);
    background: rgba(0, 242, 254, 0.1);
    padding: 4px 10px;
    border-radius: 6px;
}

.mock-chart-container {
    background: rgba(7, 13, 30, 0.8);
    border-radius: 12px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.chart-ob-box {
    padding: 10px 14px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 700;
}

.bear-ob {
    background: rgba(239, 68, 68, 0.15);
    color: var(--color-red);
    border: 1px dashed rgba(239, 68, 68, 0.4);
}

.bull-ob {
    background: rgba(16, 185, 129, 0.15);
    color: var(--color-emerald);
    border: 1px dashed rgba(16, 185, 129, 0.4);
}

.chart-fvg-box {
    background: rgba(245, 158, 11, 0.12);
    color: var(--color-amber);
    border: 1px dotted rgba(245, 158, 11, 0.3);
    padding: 8px 14px;
    border-radius: 8px;
    font-size: 11px;
    font-weight: 600;
}

.chart-candles {
    display: flex;
    align-items: flex-end;
    justify-content: space-around;
    height: 140px;
    padding: 10px 0;
}

.candle {
    width: 14px;
    border-radius: 3px;
    position: relative;
}

.candle::before {
    content: '';
    position: absolute;
    left: 50%;
    top: -10px;
    bottom: -10px;
    width: 2px;
    transform: translateX(-50%);
    background: inherit;
}

.candle.red { background: var(--color-red); }
.candle.green { background: var(--color-emerald); }

/* Live Signals Scanner Demo */
.signals-filter-tabs {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 36px;
}

.tab-btn {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--color-border);
    color: var(--color-text-muted);
    padding: 10px 24px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-fast);
}

.tab-btn:hover, .tab-btn.active {
    background: var(--color-cyan);
    color: #041021;
    border-color: var(--color-cyan);
    box-shadow: 0 0 16px rgba(0, 242, 254, 0.3);
}

.signals-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
}

.signal-card {
    padding: 24px;
    display: flex;
    flex-direction: column;
}

.sig-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 18px;
}

.sig-pair {
    display: flex;
    flex-direction: column;
}

.pair-title {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 800;
    color: #FFF;
}

.timeframe-tag {
    font-size: 11px;
    color: var(--color-text-muted);
}

.sig-metrics {
    background: rgba(7, 13, 30, 0.6);
    border-radius: 12px;
    padding: 14px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 18px;
}

.sig-metric {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
}

.sig-metric .lbl { color: var(--color-text-muted); }
.sig-metric .val { font-weight: 700; }

.sig-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.sig-prob {
    font-size: 13px;
    color: var(--color-text-muted);
}

.sig-prob strong { color: var(--color-cyan); }

/* Profit Calculator */
.calculator-card {
    padding: 42px;
    border-color: rgba(0, 242, 254, 0.3);
}

.calculator-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 48px;
    align-items: center;
}

.calc-title {
    font-size: 2.1rem;
    margin-bottom: 10px;
}

.calc-desc {
    color: var(--color-text-muted);
    margin-bottom: 32px;
}

.slider-group {
    margin-bottom: 24px;
}

.slider-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
    font-size: 14px;
    font-weight: 600;
}

.slider-value {
    color: var(--color-cyan);
    font-weight: 700;
    font-size: 16px;
}

input[type=range] {
    width: 100%;
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    outline: none;
    accent-color: var(--color-cyan);
    cursor: pointer;
}

.calc-results {
    background: rgba(7, 13, 30, 0.7);
    border: 1px solid var(--color-border);
    border-radius: 16px;
    padding: 32px;
    display: flex;
    flex-direction: column;
}

.results-box {
    margin-bottom: 24px;
    display: flex;
    flex-direction: column;
}

.results-label {
    font-size: 13px;
    color: var(--color-text-muted);
    margin-bottom: 4px;
}

.results-amount {
    font-family: var(--font-display);
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--color-cyan);
    line-height: 1.1;
}

.results-roi {
    font-size: 14px;
    font-weight: 700;
    color: var(--color-emerald);
    margin-top: 6px;
}

.results-breakdown {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 18px;
    margin-bottom: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.breakdown-item {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    color: var(--color-text-muted);
}

.breakdown-item strong { color: #FFF; }

/* Mobile App Showcase */
.app-showcase-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 54px;
    align-items: center;
}

.app-info h2 {
    font-size: 2.3rem;
    margin-bottom: 16px;
}

.app-info p {
    color: var(--color-text-muted);
    font-size: 1.05rem;
    margin-bottom: 28px;
}

.feature-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 36px;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
    color: #E2E8F0;
}

.app-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.app-btn {
    padding: 12px 20px;
    border-radius: 12px;
}

.sticker-preview-card {
    padding: 28px;
    background: linear-gradient(145deg, rgba(15, 23, 42, 0.9), rgba(11, 19, 43, 0.95));
    border-color: rgba(0, 242, 254, 0.35);
}

.sticker-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.sticker-user {
    display: flex;
    align-items: center;
    gap: 10px;
}

.sticker-name { font-weight: 700; font-size: 14px; }
.sticker-time { font-size: 12px; color: var(--color-text-muted); }

.sticker-body {
    background: rgba(7, 13, 30, 0.7);
    border-radius: 14px;
    padding: 24px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.08);
    margin-bottom: 20px;
}

.sticker-badge {
    display: inline-block;
    font-size: 11px;
    font-weight: 800;
    padding: 4px 10px;
    border-radius: 6px;
    margin-bottom: 12px;
}

.sticker-badge.long {
    background: rgba(16, 185, 129, 0.15);
    color: var(--color-emerald);
}

.sticker-pair {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 800;
}

.sticker-lev { font-size: 12px; color: var(--color-text-muted); margin-bottom: 12px; }

.sticker-roi {
    font-family: var(--font-display);
    font-size: 2.8rem;
    font-weight: 900;
    color: var(--color-emerald);
    line-height: 1;
}

.sticker-pnl { font-size: 14px; color: #FFF; font-weight: 600; margin-top: 4px; }

.sticker-footer {
    display: flex;
    align-items: center;
    gap: 16px;
}

.qr-mock {
    width: 48px;
    height: 48px;
    background: #FFF;
    color: #041021;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sticker-ref {
    display: flex;
    flex-direction: column;
    font-size: 12px;
}

.sticker-ref span { color: var(--color-text-muted); }
.sticker-ref strong { color: var(--color-cyan); font-weight: 700; }

/* Security & Exchange Logos */
.exchanges-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 28px;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

.exchange-card {
    background: rgba(15, 23, 42, 0.6);
    border: 1px solid var(--color-border);
    padding: 16px 28px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
    font-size: 15px;
    transition: var(--transition-fast);
}

.exchange-card:hover {
    border-color: var(--color-cyan);
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 242, 254, 0.2);
}

.security-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.sec-box {
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: 16px;
    padding: 28px;
    display: flex;
    flex-direction: column;
}

.sec-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(0, 242, 254, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.sec-box h4 { font-size: 1.1rem; margin-bottom: 8px; color: #FFF; }
.sec-box p { font-size: 0.9rem; color: var(--color-text-muted); }

/* FAQ Accordion */
.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: 14px;
    overflow: hidden;
    transition: var(--transition-fast);
}

.faq-question {
    width: 100%;
    padding: 20px 24px;
    background: none;
    border: none;
    color: #FFF;
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 600;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.faq-icon {
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.35s ease;
    padding: 0 24px;
    color: var(--color-text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding: 0 24px 20px 24px;
}

/* Footer */
.footer {
    background: #04091A;
    border-top: 1px solid var(--color-border);
    padding: 64px 0 32px 0;
}

.footer-container {
    display: grid;
    grid-template-columns: 1.2fr 2fr;
    gap: 48px;
    margin-bottom: 48px;
}

.footer-brand p {
    color: var(--color-text-muted);
    font-size: 0.9rem;
    margin: 14px 0;
}

.domain-tag {
    font-size: 12px;
    color: var(--color-cyan);
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.footer-col h4 {
    font-size: 15px;
    color: #FFF;
    margin-bottom: 16px;
}

.footer-col a {
    display: block;
    color: var(--color-text-muted);
    text-decoration: none;
    font-size: 14px;
    margin-bottom: 10px;
    transition: var(--transition-fast);
}

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

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding-top: 24px;
    color: var(--color-text-muted);
    font-size: 13px;
}

/* Responsive Layout Breakpoints */
@media (max-width: 1024px) {
    .hero-container, .smc-grid, .calculator-grid, .app-showcase-grid {
        grid-template-columns: 1fr;
        gap: 42px;
    }

    .nav-links {
        display: none;
    }

    .menu-toggle {
        display: flex;
    }
}

@media (max-width: 768px) {
    .section-padding { padding: 64px 0; }
    .hero-title { font-size: 2.2rem; }
    .footer-container { grid-template-columns: 1fr; gap: 36px; }
    .footer-links { grid-template-columns: 1fr 1fr; }
    .hero-cta-group { flex-direction: column; width: 100%; }
    .hero-cta-group .btn { width: 100%; }
}

@media (max-width: 480px) {
    .hero-trust-badges { grid-template-columns: 1fr 1fr; display: grid; gap: 12px; }
    .trust-divider { display: none; }
    .footer-links { grid-template-columns: 1fr; }
}
