/* ==========================================================================
   HYPERION AI QUANT LABS - LUXURY CYBERPUNK NEON GLASSMORPISM STYLESHEET
   Version: 8.40.0
   Colors: Deep Obsidian (#070913, #0A0E1A), Electric Cyan (#00f0ff), 
           Cyber Purple (#8b5cf6, #d946ef), Gold (#f59e0b), Neon Orange (#ff5500)
   ========================================================================== */

/* --- CSS Variables & Design Tokens --- */
:root {
    --bg-dark-obsidian: #070913;
    --bg-dark-surface: #0A0E1A;
    --bg-card-glass: rgba(13, 18, 37, 0.72);
    --bg-card-glass-hover: rgba(20, 27, 54, 0.90);
    --bg-glass-inner: rgba(10, 14, 28, 0.80);

    --border-glass: rgba(255, 255, 255, 0.08);
    --border-glass-bright: rgba(255, 255, 255, 0.20);
    --border-cyan-neon: rgba(0, 240, 255, 0.45);
    --border-purple-neon: rgba(217, 70, 239, 0.45);
    --border-gold-neon: rgba(245, 158, 11, 0.45);
    --border-orange-neon: rgba(255, 85, 0, 0.50);

    --color-cyan: #00f0ff;
    --color-cyan-glow: rgba(0, 240, 255, 0.35);
    --color-orange: #ff5500;
    --color-orange-glow: rgba(255, 85, 0, 0.40);
    --color-purple: #8b5cf6;
    --color-magenta: #d946ef;
    --color-purple-glow: rgba(217, 70, 239, 0.35);
    --color-gold: #f59e0b;
    --color-gold-bright: #fbbf24;
    --color-gold-glow: rgba(245, 158, 11, 0.35);
    --color-green: #10b981;
    --color-green-glow: rgba(16, 185, 129, 0.35);
    --color-red: #f43f5e;

    --text-primary: #ffffff;
    --text-secondary: #e2e8f0;
    --text-muted: #94a3b8;
    --text-dim: #64748b;

    --font-primary: 'Geist', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-mono: 'JetBrains Mono', monospace;

    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 20px;
    --radius-full: 9999px;

    --shadow-glass: 0 14px 36px -10px rgba(0, 0, 0, 0.6);
    --shadow-cyan-glow: 0 0 30px rgba(0, 240, 255, 0.28);
    --shadow-purple-glow: 0 0 30px rgba(217, 70, 239, 0.28);
    --shadow-gold-glow: 0 0 30px rgba(245, 158, 11, 0.28);
    
    --transition-smooth: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

/* --- Base & Reset with Strict Korean Word-break Rules --- */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    background-color: var(--bg-dark-obsidian);
    color: var(--text-secondary);
    font-family: var(--font-primary);
    line-height: 1.85 !important;
    overflow-x: hidden;
    position: relative;
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
}

body, h1, h2, h3, h4, h5, h6, p, span, a, li, button, input {
    word-break: keep-all !important;
    overflow-wrap: break-word;
}

p, span, li {
    line-height: 1.85 !important;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-smooth);
}

ul {
    list-style: none;
}

button, input {
    font-family: inherit;
    border: none;
    outline: none;
    background: none;
}

.container {
    width: 100%;
    max-width: 1440px !important;
    margin: 0 auto;
    padding: 0 32px;
}

/* --- Generous Breathing Room (쾌적한 덩어리 호흡 여백) --- */
.section-padding {
    padding: 160px 0 !important;
}

/* --- Utility Typography & Colors --- */
.font-mono { font-family: var(--font-mono); }
.text-cyan { color: var(--color-cyan) !important; }
.text-orange { color: var(--color-orange) !important; }
.text-purple { color: var(--color-magenta) !important; }
.text-gold { color: var(--color-gold-bright) !important; }
.text-green { color: var(--color-green) !important; }
.text-red { color: var(--color-red) !important; }
.text-center { text-align: center; }
.w-100 { width: 100%; }

.gradient-text {
    background: linear-gradient(135deg, var(--color-cyan) 0%, #c084fc 50%, var(--color-magenta) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

/* --- Aurora Animated Particle Background --- */
.aurora-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
    overflow: hidden;
    pointer-events: none;
}

.aurora-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(140px);
    opacity: 0.35;
    animation: auroraFloat 22s infinite alternate ease-in-out;
}

.aurora-cyan {
    width: 650px;
    height: 650px;
    background: radial-gradient(circle, var(--color-cyan) 0%, rgba(0, 240, 255, 0) 70%);
    top: -120px;
    left: -120px;
}

.aurora-purple {
    width: 750px;
    height: 750px;
    background: radial-gradient(circle, var(--color-magenta) 0%, rgba(139, 92, 246, 0) 70%);
    top: 30%;
    right: -180px;
    animation-delay: -7s;
    animation-duration: 26s;
}

.aurora-gold {
    width: 550px;
    height: 550px;
    background: radial-gradient(circle, var(--color-gold) 0%, rgba(245, 158, 11, 0) 70%);
    bottom: -120px;
    left: 25%;
    animation-delay: -14s;
    animation-duration: 20s;
}

.cyber-grid-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(to right, rgba(255, 255, 255, 0.025) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
    background-size: 44px 44px;
    mask-image: radial-gradient(circle at 50% 40%, rgba(0, 0, 0, 1) 40%, rgba(0, 0, 0, 0.1) 90%);
}

@keyframes auroraFloat {
    0% { transform: translate(0, 0) scale(1) rotate(0deg); }
    50% { transform: translate(70px, 90px) scale(1.15) rotate(90deg); }
    100% { transform: translate(-60px, -50px) scale(0.9) rotate(180deg); }
}

/* --- Glassmorphism Base Cards with Expanded Padding --- */
.glass-card {
    background: var(--bg-card-glass);
    backdrop-filter: blur(28px);
    -webkit-backdrop-filter: blur(28px);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-glass);
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
    padding: 44px 38px !important;
}

.glass-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent);
}

.glass-card:hover {
    background: var(--bg-card-glass-hover);
    border-color: var(--border-glass-bright);
    box-shadow: 0 20px 50px -10px rgba(0, 0, 0, 0.75), var(--shadow-cyan-glow);
}

.glass-inner {
    background: var(--bg-glass-inner);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-md);
    padding: 20px;
}

/* --- Badges & Pills --- */
.pill-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 18px;
    background: rgba(0, 240, 255, 0.08);
    border: 1px solid var(--border-cyan-neon);
    border-radius: var(--radius-full);
    font-size: 0.84rem;
    font-weight: 600;
    color: var(--color-cyan);
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 20px;
    white-space: nowrap !important;
    flex-shrink: 0;
}

.pill-badge.gold {
    background: rgba(245, 158, 11, 0.1);
    border-color: var(--border-gold-neon);
    color: var(--color-gold-bright);
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background-color: var(--color-cyan);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--color-cyan);
    animation: pulseGlow 1.8s infinite;
    flex-shrink: 0;
}

@keyframes pulseGlow {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.4); opacity: 0.5; }
}

/* --- Buttons & CTAs --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 24px;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: var(--transition-smooth);
    text-align: center;
    white-space: nowrap !important;
    flex-shrink: 0;
}

.btn span {
    white-space: nowrap !important;
    flex-shrink: 0;
}

.btn-primary-neon {
    background: linear-gradient(135deg, var(--color-cyan) 0%, #00b4d8 100%);
    color: #070913;
    font-weight: 700;
    box-shadow: 0 4px 20px rgba(0, 240, 255, 0.35);
}

.btn-primary-neon:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 240, 255, 0.6);
    background: linear-gradient(135deg, #38f8ff 0%, #00d2ff 100%);
}

.btn-bitget {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.15) 0%, rgba(217, 70, 239, 0.15) 100%);
    border: 1px solid var(--border-gold-neon);
    color: var(--color-gold-bright);
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.15);
}

.btn-bitget:hover {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.3) 0%, rgba(217, 70, 239, 0.3) 100%);
    border-color: var(--color-gold-bright);
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold-glow);
    color: #ffffff;
}

.btn-hero-download {
    background: linear-gradient(135deg, #00f0ff 0%, #0284c7 100%);
    color: #070913;
    padding: 16px 30px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    gap: 16px;
    box-shadow: 0 6px 25px rgba(0, 240, 255, 0.4);
    text-align: left;
}

.btn-hero-download:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 35px rgba(0, 240, 255, 0.7);
    color: #000;
}

.btn-hero-bitget {
    background: rgba(13, 18, 37, 0.85);
    border: 1px solid var(--border-gold-neon);
    color: var(--color-gold-bright);
    padding: 16px 30px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    gap: 16px;
    text-align: left;
    backdrop-filter: blur(12px);
}

.btn-hero-bitget:hover {
    border-color: var(--color-gold-bright);
    background: rgba(245, 158, 11, 0.18);
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: var(--shadow-gold-glow);
}

.btn-icon-box {
    font-size: 1.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-text-box {
    display: flex;
    flex-direction: column;
}

.btn-top-label {
    font-size: 0.75rem;
    opacity: 0.85;
    font-weight: 500;
    text-transform: uppercase;
}

.btn-main-label {
    font-size: 1.05rem;
    font-weight: 700;
}

/* --- Section Headers with Expanded Margin & Line Heights --- */
.section-header {
    margin-bottom: 90px !important;
}

.section-title {
    font-size: 2.6rem !important;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 24px !important;
    line-height: 1.35 !important;
    letter-spacing: -0.5px;
}

.section-subtitle {
    font-size: 1.18rem !important;
    color: var(--text-muted);
    max-width: 740px;
    margin: 0 auto;
    line-height: 1.85 !important;
}

/* ==========================================================================
   Navigation Bar (1줄 완벽 고정 & 2줄 쪼개짐 100% 박멸)
   ========================================================================== */
.navbar-wrapper {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(7, 9, 19, 0.85);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-bottom: 1px solid var(--border-glass);
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 76px;
    max-width: 1440px !important;
    width: 100%;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
    font-size: 1.25rem;
    color: var(--text-primary);
    white-space: nowrap !important;
    flex-shrink: 0;
}

.logo-crown {
    font-size: 1.4rem;
    filter: drop-shadow(0 0 8px var(--color-gold));
}

.accent-cyan {
    color: var(--color-cyan);
}

.nav-version-badge {
    background: rgba(0, 240, 255, 0.12);
    border: 1px solid var(--border-cyan-neon);
    color: var(--color-cyan);
    font-family: var(--font-mono);
    font-size: 0.68rem;
    padding: 2px 8px;
    border-radius: var(--radius-full);
    font-weight: 700;
    white-space: nowrap !important;
    flex-shrink: 0;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 20px !important;
    font-size: 0.92rem;
    font-weight: 600;
    white-space: nowrap !important;
    flex-shrink: 0;
}

.nav-link {
    color: var(--text-muted);
    font-size: 0.92rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap !important;
    flex-shrink: 0;
}

.nav-link:hover, .nav-link.active {
    color: var(--color-cyan);
    text-shadow: 0 0 12px var(--color-cyan-glow);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    white-space: nowrap !important;
    flex-shrink: 0;
}

.nav-actions .btn-bitget,
.nav-actions .btn-primary-neon {
    padding: 9px 18px !important;
    font-size: 0.88rem !important;
    font-weight: 600;
    white-space: nowrap !important;
    flex-shrink: 0;
}

.mobile-toggle {
    display: none;
    font-size: 1.3rem;
    color: var(--text-primary);
    cursor: pointer;
    padding: 8px;
}

/* ==========================================================================
   1. Dragonfly.xyz Style Monumental Full-Width Seamless ASCII Matrix Hero (v8.42.0)
   ========================================================================== */
.df-hero-section {
    position: relative;
    padding: 40px 0 100px 0 !important;
    overflow: hidden;
    width: 100%;
}

/* --- Full-Width Seamless Interactive ASCII Matrix Background Layer (Upper Zone Clamped) --- */
.df-hero-full-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 500px;
    max-height: 520px;
    z-index: 1;
    overflow: hidden;
    pointer-events: auto;
}

.df-hero-full-canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    display: block;
    cursor: crosshair;
}

.df-hero-bg-vignette {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(to bottom, rgba(6, 8, 18, 0.15) 0%, rgba(6, 8, 18, 0.45) 55%, rgba(6, 8, 18, 0.92) 85%, #060812 100%);
}

.df-hero-container {
    position: relative;
    z-index: 2;
    pointer-events: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 28px;
    width: 100%;
    max-width: 1440px !important;
    margin: 0 auto;
}

/* --- Dragonfly Monospace System HUD Meta Bar --- */
.df-meta-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
    padding: 10px 20px;
    width: 100%;
    max-width: 1100px;
    background: rgba(10, 14, 28, 0.75);
    border-top: 1px solid var(--border-glass-bright);
    border-bottom: 1px solid var(--border-glass-bright);
    border-radius: var(--radius-sm);
    font-family: var(--font-mono);
    font-size: 0.82rem;
    color: var(--text-dim);
    letter-spacing: 0.5px;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.df-meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap !important;
    flex-shrink: 0;
}

.df-meta-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--color-cyan);
    box-shadow: 0 0 10px var(--color-cyan);
    animation: pulseGlow 1.8s infinite;
    flex-shrink: 0;
}

.df-meta-highlight {
    color: var(--color-orange);
    font-weight: 700;
    text-shadow: 0 0 12px var(--color-orange-glow);
}

/* --- Monumental Dual Typography --- */
.hero-title-group {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    width: 100%;
}

.hero-mega-title-1 {
    font-size: clamp(56px, 11vw, 175px);
    font-weight: 900;
    color: #ffffff;
    letter-spacing: -2px;
    line-height: 0.92;
    text-transform: uppercase;
    margin: 0;
    text-shadow: 0 0 40px rgba(255, 255, 255, 0.2);
    word-break: keep-all !important;
}

.hero-mega-title-2 {
    font-size: clamp(56px, 11vw, 175px);
    font-weight: 900;
    background: linear-gradient(110deg, #00f0ff 0%, #2ee59d 32%, #f59e0b 68%, #ff5500 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -2px;
    line-height: 0.92;
    text-transform: uppercase;
    margin: 0;
    filter: drop-shadow(0 0 30px rgba(0, 240, 255, 0.3)) drop-shadow(0 0 40px rgba(255, 85, 0, 0.3));
    word-break: keep-all !important;
}

.hero-sub-desc {
    font-size: clamp(1.05rem, 1.6vw, 1.35rem) !important;
    line-height: 1.8 !important;
    color: var(--text-secondary);
    max-width: 860px;
    margin: 0 auto;
    word-break: keep-all !important;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.9);
}

/* --- [2] Clean Dark CTA Action Buttons --- */
.hero-action-buttons,
.df-hero-action-clean {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    z-index: 5;
}

.hero-action-buttons a,
.hero-action-buttons .df-cta-btn,
.df-hero-action-clean a,
.df-hero-action-clean .df-cta-btn {
    pointer-events: auto !important;
}

/* --- Wide Brutalist Dual CTA Gateway Bar --- */
.df-cta-strip {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    width: 100%;
}

.df-cta-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 22px 28px;
    border-radius: var(--radius-md);
    text-decoration: none;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.df-cta-bitget {
    background: linear-gradient(135deg, rgba(255, 85, 0, 0.16) 0%, rgba(245, 158, 11, 0.16) 100%);
    border: 1px solid var(--border-orange-neon);
    color: #ffffff;
    box-shadow: 0 8px 30px rgba(255, 85, 0, 0.22);
}

.df-cta-bitget:hover {
    background: linear-gradient(135deg, rgba(255, 85, 0, 0.3) 0%, rgba(245, 158, 11, 0.3) 100%);
    border-color: var(--color-orange);
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(255, 85, 0, 0.45);
    color: #ffffff;
}

.df-cta-download {
    background: linear-gradient(135deg, rgba(0, 240, 255, 0.16) 0%, rgba(14, 165, 233, 0.16) 100%);
    border: 1px solid var(--border-cyan-neon);
    color: #ffffff;
    box-shadow: 0 8px 30px rgba(0, 240, 255, 0.22);
}

.df-cta-download:hover {
    background: linear-gradient(135deg, rgba(0, 240, 255, 0.3) 0%, rgba(14, 165, 233, 0.3) 100%);
    border-color: var(--color-cyan);
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(0, 240, 255, 0.45);
    color: #ffffff;
}

.df-cta-icon {
    font-size: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.08);
    flex-shrink: 0;
}

.df-cta-bitget .df-cta-icon {
    color: var(--color-orange);
}

.df-cta-download .df-cta-icon {
    color: var(--color-cyan);
}

.df-cta-info {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    margin: 0 20px;
    text-align: left;
}

.df-cta-sub {
    font-size: 0.78rem;
    color: var(--text-muted);
    font-weight: 500;
    letter-spacing: 0.2px;
}

.df-cta-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.35;
}

.df-cta-arrow {
    font-size: 1.3rem;
    opacity: 0.85;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.df-cta-btn:hover .df-cta-arrow {
    transform: translateX(6px);
    opacity: 1;
}

/* --- Monumental Brutalist 4 KPI Metric Strip --- */
.df-stat-strip {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    width: 100%;
}

.df-stat-card {
    background: rgba(13, 18, 37, 0.65);
    border: 1px solid var(--border-glass-bright);
    border-radius: var(--radius-md);
    padding: 26px 20px;
    text-align: center;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 8px;
}

.df-stat-card:hover {
    border-color: var(--border-cyan-neon);
    transform: translateY(-3px);
    background: rgba(18, 25, 52, 0.85);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.df-stat-num {
    font-size: clamp(2.4rem, 3.8vw, 3.6rem) !important;
    font-weight: 900 !important;
    line-height: 1 !important;
    letter-spacing: -1px;
}

.df-stat-label {
    font-size: 0.88rem;
    color: var(--text-muted);
    font-weight: 500;
    line-height: 1.45;
}

.df-trust-badges {
    justify-content: center !important;
    border-top: 1px solid var(--border-glass);
    padding-top: 24px;
}

@keyframes floatSlow {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-8px); }
}

@keyframes floatSlowCenter {
    0%, 100% { transform: translateY(-50%); }
    50% { transform: translateY(calc(-50% - 8px)); }
}

.holo-chip-icon {
    font-size: 1.4rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.holo-chip-content {
    display: flex;
    flex-direction: column;
    gap: 2px;
    text-align: left;
}

.holo-chip-label {
    font-size: 0.68rem;
    color: var(--text-dim);
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.holo-chip-val {
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--text-primary);
}

.chip-change {
    font-size: 0.75rem;
    color: var(--color-green);
    background: rgba(16, 185, 129, 0.15);
    padding: 2px 6px;
    border-radius: var(--radius-sm);
    margin-left: 4px;
}

.live-pulse-dot {
    width: 8px;
    height: 8px;
    background: var(--color-green);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--color-green);
    animation: pulseGlow 1.5s infinite;
    flex-shrink: 0;
}

.live-status-pill {
    font-size: 0.65rem;
    font-weight: 800;
    color: var(--color-cyan);
    background: rgba(0, 240, 255, 0.15);
    border: 1px solid var(--border-cyan-neon);
    padding: 2px 8px;
    border-radius: var(--radius-full);
    font-family: var(--font-mono);
}

.chip-check {
    font-size: 0.9rem;
    margin-left: 6px;
}

/* --- Terminal Mockup Showcase --- */
.hero-mockup-wrapper {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    perspective: 1200px;
}

.terminal-mockup-card {
    border-radius: var(--radius-lg);
    border: 1px solid rgba(0, 240, 255, 0.25);
    background: rgba(10, 14, 26, 0.92);
    box-shadow: 0 25px 60px -15px rgba(0, 0, 0, 0.8), 0 0 35px rgba(0, 240, 255, 0.15);
    padding: 0 !important;
}

.terminal-header {
    background: rgba(7, 9, 19, 0.95);
    padding: 14px 24px;
    border-bottom: 1px solid var(--border-glass);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.terminal-controls {
    display: flex;
    gap: 8px;
}

.control-dot {
    width: 11px;
    height: 11px;
    border-radius: 50%;
}

.dot-red { background: #ef4444; }
.dot-yellow { background: #f59e0b; }
.dot-green { background: #10b981; }

.terminal-title {
    font-family: var(--font-mono);
    font-size: 0.82rem;
    color: var(--text-muted);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

.terminal-status-badge {
    background: rgba(16, 185, 129, 0.15);
    border: 1px solid rgba(16, 185, 129, 0.4);
    color: var(--color-green);
    font-family: var(--font-mono);
    font-size: 0.72rem;
    padding: 4px 12px;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 700;
}

.status-live-pulse {
    width: 6px;
    height: 6px;
    background-color: var(--color-green);
    border-radius: 50%;
    box-shadow: 0 0 8px var(--color-green);
    animation: pulseGlow 1.5s infinite;
}

.terminal-body {
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.mockup-top-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.stat-pill {
    background: rgba(13, 18, 37, 0.85);
    border: 1px solid var(--border-glass);
    padding: 10px 18px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.88rem;
}

.stat-pill .label {
    color: var(--text-dim);
    font-weight: 600;
    font-size: 0.75rem;
}

.price-change-pill {
    background: rgba(16, 185, 129, 0.2);
    color: var(--color-green);
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 0.75rem;
    margin-left: 4px;
}

.mockup-chart-container {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 20px;
    min-height: 300px;
}

.mockup-grid-visual {
    background: rgba(7, 9, 19, 0.8);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-md);
    position: relative;
    overflow: hidden;
}

.grid-line {
    position: absolute;
    left: 0;
    width: 100%;
    height: 1px;
    display: flex;
    align-items: center;
    padding: 0 14px;
    font-size: 0.75rem;
    gap: 10px;
}

.grid-line.sell-tp {
    border-top: 1px dashed rgba(217, 70, 239, 0.5);
    color: var(--color-magenta);
}

.grid-line.sell-tp .tag-label {
    background: rgba(217, 70, 239, 0.25);
    padding: 1px 6px;
    border-radius: 3px;
    font-weight: 700;
}

.grid-line.buy-dca {
    border-top: 1px dashed rgba(0, 240, 255, 0.5);
    color: var(--color-cyan);
}

.grid-line.buy-dca .tag-label {
    background: rgba(0, 240, 255, 0.25);
    padding: 1px 6px;
    border-radius: 3px;
    font-weight: 700;
}

.grid-line.current-price {
    border-top: 2px solid #ffffff;
    box-shadow: 0 0 10px #ffffff;
    color: #ffffff;
    z-index: 5;
}

.grid-line.current-price .live-tag {
    background: #ffffff;
    color: #000;
    padding: 2px 6px;
    border-radius: 3px;
    font-weight: 800;
}

.price-pulse-marker {
    width: 8px;
    height: 8px;
    background: #ffffff;
    border-radius: 50%;
    box-shadow: 0 0 12px #ffffff;
    animation: pulseGlow 1.2s infinite;
}

.tag-desc {
    opacity: 0.6;
    font-size: 0.7rem;
    margin-left: auto;
}

.mockup-candles {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
}

.candle {
    position: absolute;
    width: 12px;
    border-radius: 2px;
    opacity: 0.45;
}

.candle.green {
    background: var(--color-green);
    box-shadow: 0 0 8px rgba(16, 185, 129, 0.4);
}

.candle.red {
    background: var(--color-red);
    box-shadow: 0 0 8px rgba(244, 63, 94, 0.4);
}

.mockup-side-summary {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.side-card-item {
    background: rgba(13, 18, 37, 0.75);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-sm);
    padding: 14px 16px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    text-align: left;
}

.side-card-item .card-label {
    font-size: 0.75rem;
    color: var(--text-dim);
    display: flex;
    align-items: center;
    gap: 6px;
}

.side-card-item .card-value {
    font-size: 1.18rem;
    font-weight: 700;
}

.side-card-item .unit {
    font-size: 0.75rem;
    font-weight: normal;
    color: var(--text-muted);
}

.badge-roi {
    font-size: 0.75rem;
    background: rgba(16, 185, 129, 0.2);
    padding: 2px 6px;
    border-radius: 4px;
}

.mockup-ticker-bar {
    background: rgba(7, 9, 19, 0.95);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-sm);
    padding: 10px 18px;
    display: flex;
    align-items: center;
    gap: 16px;
    overflow: hidden;
}

.ticker-badge {
    background: rgba(0, 240, 255, 0.15);
    color: var(--color-cyan);
    font-family: var(--font-mono);
    font-size: 0.72rem;
    font-weight: 700;
    padding: 4px 8px;
    border-radius: 4px;
    white-space: nowrap !important;
    display: flex;
    align-items: center;
    gap: 6px;
}

.ticker-scroll-content {
    display: flex;
    gap: 28px;
    white-space: nowrap !important;
    font-family: var(--font-mono);
    font-size: 0.82rem;
    color: var(--text-secondary);
    animation: tickerRoll 24s linear infinite;
}

@keyframes tickerRoll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.ticker-item.success { color: var(--color-green); }
.ticker-item.buy { color: var(--color-cyan); }
.ticker-item.pulse { color: var(--color-gold-bright); }

/* ==========================================================================
   2. Live Performance Metrics Section (40px Gap & 44px Padding)
   ========================================================================== */
.metrics-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px !important;
}

.metric-card {
    padding: 44px 34px !important;
    display: flex;
    flex-direction: column;
    text-align: left;
    gap: 24px;
}

.metric-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.metric-badge {
    font-size: 0.82rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap !important;
}

.metric-badge.cyan { background: rgba(0, 240, 255, 0.12); color: var(--color-cyan); border: 1px solid var(--border-cyan-neon); }
.metric-badge.purple { background: rgba(217, 70, 239, 0.12); color: var(--color-magenta); border: 1px solid var(--border-purple-neon); }
.metric-badge.green { background: rgba(16, 185, 129, 0.12); color: var(--color-green); border: 1px solid rgba(16, 185, 129, 0.4); }
.metric-badge.gold { background: rgba(245, 158, 11, 0.12); color: var(--color-gold-bright); border: 1px solid var(--border-gold-neon); }

.metric-trend {
    font-size: 0.78rem;
    color: var(--color-cyan);
    font-weight: 600;
}

.gauge-wrapper {
    position: relative;
    width: 120px;
    height: 120px;
    margin: 0 auto;
}

.donut-gauge {
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
}

.gauge-bg {
    fill: none;
    stroke: rgba(255, 255, 255, 0.08);
    stroke-width: 10;
}

.gauge-progress {
    fill: none;
    stroke-width: 10;
    stroke-linecap: round;
    transition: stroke-dashoffset 1.5s ease-out;
}

.gauge-cyan {
    stroke: var(--color-cyan);
    filter: drop-shadow(0 0 6px var(--color-cyan));
}

.gauge-value {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--text-primary);
}

.gauge-value .percent {
    font-size: 0.9rem;
    color: var(--color-cyan);
}

.sparkline-wrapper {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.metric-big-number {
    font-size: 2.2rem;
    font-weight: 800;
    line-height: 1.1;
}

.metric-big-number .unit {
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-muted);
    margin-left: 4px;
}

.sparkline-svg {
    width: 100%;
    height: 48px;
}

.neon-progress-bar {
    width: 100%;
    height: 8px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-full);
    overflow: hidden;
}

.progress-fill.green-glow {
    height: 100%;
    background: var(--color-green);
    box-shadow: 0 0 10px var(--color-green);
    border-radius: var(--radius-full);
}

.shield-indicator-box {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(245, 158, 11, 0.1);
    border: 1px solid var(--border-gold-neon);
    padding: 8px 12px;
    border-radius: var(--radius-sm);
    font-size: 0.78rem;
    color: var(--color-gold-bright);
}

.metric-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.metric-desc {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.7;
}

/* ==========================================================================
   3. 3-Pillar Quant Technology Section (40px Gap & 44px Padding)
   ========================================================================== */
.tech-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px !important;
}

.tech-card {
    padding: 44px 38px !important;
    display: flex;
    flex-direction: column;
    text-align: left;
    gap: 20px;
}

.tech-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.tech-step-pill {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--text-dim);
    letter-spacing: 1px;
}

.tech-icon-circle {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.tech-icon-circle.cyan { background: rgba(0, 240, 255, 0.12); color: var(--color-cyan); border: 1px solid var(--border-cyan-neon); }
.tech-icon-circle.purple { background: rgba(217, 70, 239, 0.12); color: var(--color-magenta); border: 1px solid var(--border-purple-neon); }
.tech-icon-circle.gold { background: rgba(245, 158, 11, 0.12); color: var(--color-gold-bright); border: 1px solid var(--border-gold-neon); }

.tech-title {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--text-primary);
    line-height: 1.35;
}

.tech-tag {
    font-family: var(--font-mono);
    font-size: 0.82rem;
    font-weight: 600;
}

.tech-desc {
    font-size: 0.94rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

.tech-feature-list {
    margin-top: 10px;
    padding-top: 18px;
    border-top: 1px solid var(--border-glass);
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.feat-item {
    font-size: 0.88rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 10px;
}

/* ==========================================================================
   4. Interactive ROI / Profit Calculator (44px Padding)
   ========================================================================== */
.calc-card-wrapper {
    padding: 50px 44px !important;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.calc-inputs-col {
    display: flex;
    flex-direction: column;
    gap: 32px;
    text-align: left;
}

.calc-input-group {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.calc-input-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.98rem;
    font-weight: 600;
}

.calc-val-badge {
    background: rgba(13, 18, 37, 0.85);
    border: 1px solid var(--border-glass-bright);
    padding: 5px 14px;
    border-radius: var(--radius-sm);
    font-size: 1.08rem;
    font-weight: 700;
}

/* Custom Cyber Range Slider */
.cyber-slider {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 8px;
    border-radius: var(--radius-full);
    background: rgba(255, 255, 255, 0.1);
    outline: none;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.cyber-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--color-cyan);
    box-shadow: 0 0 15px var(--color-cyan);
    cursor: pointer;
    border: 2px solid #ffffff;
    transition: transform 0.15s ease;
}

.cyber-slider::-webkit-slider-thumb:hover {
    transform: scale(1.2);
}

.slider-marks {
    display: flex;
    justify-content: space-between;
    font-size: 0.75rem;
    color: var(--text-dim);
}

.leverage-btn-group {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.lev-btn {
    background: var(--bg-glass-inner);
    border: 1px solid var(--border-glass);
    color: var(--text-muted);
    padding: 12px;
    border-radius: var(--radius-sm);
    font-size: 0.88rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.lev-btn:hover {
    border-color: var(--border-glass-bright);
    color: var(--text-primary);
}

.lev-btn.active {
    background: rgba(245, 158, 11, 0.15);
    border-color: var(--color-gold-bright);
    color: var(--color-gold-bright);
    box-shadow: 0 0 15px rgba(245, 158, 11, 0.2);
}

.calc-results-col {
    display: flex;
    flex-direction: column;
    gap: 24px;
    text-align: left;
}

.results-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    border-bottom: 1px solid var(--border-glass);
    padding-bottom: 14px;
}

.res-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-primary);
}

.res-sub {
    font-size: 0.8rem;
    color: var(--text-dim);
}

.result-cards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.res-card {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 24px 20px !important;
}

.res-card.highlight {
    background: rgba(16, 185, 129, 0.08);
    border-color: rgba(16, 185, 129, 0.35);
}

.res-card-label {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.res-card-val {
    font-size: 1.65rem;
    font-weight: 800;
}

.res-card-sub {
    font-size: 0.78rem;
    color: var(--text-dim);
}

/* ==========================================================================
   5. 3-Step Quick Start Guide (40px Gap & 44px Padding)
   ========================================================================== */
.steps-timeline {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px !important;
}

.step-card {
    padding: 44px 34px !important;
    display: flex;
    flex-direction: column;
    text-align: left;
    gap: 20px;
    position: relative;
}

.step-num-box {
    font-size: 3rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.06);
    line-height: 1;
    position: absolute;
    top: 24px;
    right: 24px;
}

.step-icon-wrap {
    width: 60px;
    height: 60px;
    background: rgba(13, 18, 37, 0.9);
    border: 1px solid var(--border-glass-bright);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
}

.step-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.4;
}

.step-desc {
    font-size: 0.92rem;
    color: var(--text-secondary);
    line-height: 1.75;
}

.step-link {
    font-size: 0.9rem;
    font-weight: 600;
    margin-top: auto;
    display: flex;
    align-items: center;
    gap: 6px;
}

.step-link:hover {
    gap: 10px;
}

/* ==========================================================================
   6. Full Features Grid (40px Gap & 44px Padding)
   ========================================================================== */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px !important;
}

.feat-box {
    padding: 44px 34px !important;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.feat-icon {
    font-size: 1.8rem;
    margin-bottom: 6px;
}

.feat-box h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-primary);
}

.feat-box p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.75;
}

/* ==========================================================================
   7. Giant CTA Download Banner
   ========================================================================== */
.cta-banner-card {
    padding: 90px 48px !important;
    background: linear-gradient(135deg, rgba(13, 18, 37, 0.92) 0%, rgba(20, 27, 54, 0.92) 100%);
    border: 1px solid var(--border-cyan-neon);
    box-shadow: 0 20px 60px -10px rgba(0, 0, 0, 0.8), 0 0 40px rgba(0, 240, 255, 0.2);
    text-align: center;
}

.cta-banner-content {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.cta-title {
    font-size: 2.8rem;
    font-weight: 900;
    color: var(--text-primary);
    line-height: 1.3;
    margin-bottom: 24px;
}

.cta-subtitle {
    font-size: 1.18rem;
    color: var(--text-secondary);
    margin-bottom: 40px;
    line-height: 1.85;
}

.cta-buttons-wrapper {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 34px;
}

.cta-specs-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 28px;
    font-size: 0.88rem;
    color: var(--text-muted);
}

/* ==========================================================================
   8. Official Channels & FAQ Section (40px Gap)
   ========================================================================== */
.channels-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px !important;
    margin-bottom: 90px;
}

.channel-card {
    padding: 34px 28px !important;
    display: flex;
    align-items: center;
    gap: 20px;
    text-align: left;
}

.channel-icon-wrap {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.7rem;
    flex-shrink: 0;
}

.channel-icon-wrap.telegram { background: rgba(0, 136, 204, 0.15); color: #0088cc; }
.channel-icon-wrap.youtube { background: rgba(255, 0, 0, 0.15); color: #ff0000; }
.channel-icon-wrap.github { background: rgba(255, 255, 255, 0.12); color: #ffffff; }

.channel-info h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.channel-info p {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.channel-arrow {
    margin-left: auto;
    font-size: 0.95rem;
    color: var(--text-dim);
    transition: var(--transition-smooth);
}

.channel-card:hover .channel-arrow {
    color: var(--color-cyan);
    transform: translate(4px, -4px);
}

.faq-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 20px !important;
}

.faq-item {
    border-radius: var(--radius-md);
    padding: 0 !important;
}

.faq-question {
    width: 100%;
    padding: 24px 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    text-align: left;
    font-size: 1.08rem;
    font-weight: 600;
    color: var(--text-primary);
    cursor: pointer;
}

.faq-chevron {
    font-size: 0.9rem;
    color: var(--text-dim);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-chevron {
    transform: rotate(180deg);
    color: var(--color-cyan);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.35s ease;
    padding: 0 28px;
    text-align: left;
}

.faq-item.active .faq-answer {
    max-height: 280px;
    padding: 0 28px 24px 28px;
}

.faq-answer p {
    font-size: 0.94rem;
    color: var(--text-secondary);
    line-height: 1.8;
    border-top: 1px solid var(--border-glass);
    padding-top: 16px;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.cyber-footer {
    background: #04060d;
    border-top: 1px solid var(--border-glass);
    padding: 90px 0 40px 0;
}

.footer-top {
    display: grid;
    grid-template-columns: 1.4fr 2fr;
    gap: 70px;
    margin-bottom: 50px;
}

.footer-brand {
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--text-primary);
}

.footer-brand-desc {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.75;
}

.footer-links-group {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 36px;
    text-align: left;
}

.footer-col h5 {
    font-size: 0.98rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 18px;
}

.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-col a {
    font-size: 0.88rem;
    color: var(--text-muted);
}

.footer-col a:hover {
    color: var(--color-cyan);
    padding-left: 4px;
}

.footer-disclaimer {
    background: rgba(13, 18, 37, 0.6);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-sm);
    padding: 20px 24px;
    margin-bottom: 36px;
    text-align: left;
    font-size: 0.82rem;
    color: var(--text-dim);
    line-height: 1.7;
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 28px;
    border-top: 1px solid var(--border-glass);
    font-size: 0.84rem;
    color: var(--text-dim);
}

.footer-legal-tags {
    display: flex;
    gap: 18px;
    font-size: 0.74rem;
    color: var(--text-dim);
}

/* ==========================================================================
   Responsive Breakpoints (Mobile 375px, Tablet 768px, Desktop 1440px)
   ========================================================================== */
@media (max-width: 1200px) {
    .hero-grid-2col {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    .hero-content {
        align-items: center;
        text-align: center;
    }
    .hero-subtitle {
        text-align: center;
    }
    .hero-cta-group {
        justify-content: center;
    }
    .hero-trust-badges {
        justify-content: center;
    }
}

@media (max-width: 1024px) {
    .section-padding { padding: 120px 0 !important; }
    .hero-title { font-size: 2.7rem; }
    .df-stat-strip { grid-template-columns: repeat(2, 1fr); }
    .metrics-grid { grid-template-columns: repeat(2, 1fr); }
    .tech-grid { grid-template-columns: 1fr; }
    .calc-card-wrapper { grid-template-columns: 1fr; }
    .steps-timeline { grid-template-columns: 1fr; }
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .channels-grid { grid-template-columns: 1fr; }
    .footer-top { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 768px) {
    .section-padding { padding: 90px 0 !important; }
    .hero-section { padding: 40px 0 70px 0 !important; }
    
    .navbar .nav-menu {
        display: none;
        position: absolute;
        top: 76px;
        left: 0;
        width: 100%;
        background: rgba(7, 9, 19, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 24px;
        gap: 18px;
        border-bottom: 1px solid var(--border-glass);
    }

    .navbar .nav-menu.open {
        display: flex;
    }

    .mobile-toggle {
        display: block;
    }

    .nav-actions .btn-bitget {
        display: none;
    }

    .df-hero-interactive-box {
        min-height: 420px;
        margin-bottom: 20px;
    }

    .df-hero-box-content {
        padding: 20px 14px 30px;
        gap: 18px;
    }

    .hero-mega-title-1,
    .hero-mega-title-2 {
        font-size: clamp(38px, 11vw, 76px);
        line-height: 0.96;
    }

    .hero-action-buttons,
    .df-hero-action-clean {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .df-cta-strip { grid-template-columns: 1fr; }
    .df-meta-bar { justify-content: center; }
    .df-meta-hide-mobile { display: none !important; }

    .hero-title { font-size: 2.1rem; }
    .hero-subtitle { font-size: 1rem; }
    .hero-neural-wrapper { height: 420px; }
    
    .mockup-chart-container {
        grid-template-columns: 1fr;
    }

    .metrics-grid { grid-template-columns: 1fr; }
    .features-grid { grid-template-columns: 1fr; }
    .result-cards-grid { grid-template-columns: 1fr; }
    .footer-links-group { grid-template-columns: 1fr; gap: 24px; }
    .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
}

@media (max-width: 480px) {
    .df-stat-strip { grid-template-columns: 1fr; }
    .df-hero-interactive-box {
        min-height: 380px;
    }
    .df-hero-box-content {
        padding: 16px 8px 24px;
        gap: 14px;
    }
    .hero-mega-title-1,
    .hero-mega-title-2 {
        font-size: clamp(32px, 10vw, 54px);
    }
    .df-cta-btn { padding: 16px 18px; }
    .df-cta-icon { width: 42px; height: 42px; font-size: 1.5rem; }
    .df-cta-title { font-size: 0.95rem; }

    .hero-title { font-size: 1.75rem; }
    .hero-neural-wrapper { height: 360px; }
    .btn-hero-download, .btn-hero-bitget { width: 100%; }
    .calc-card-wrapper { padding: 24px 20px !important; }
    .cta-banner-card { padding: 50px 24px !important; }
    .cta-title { font-size: 1.8rem; }
    .floating-holo-chip { padding: 8px 12px !important; }
    .holo-chip-val { font-size: 0.75rem; }
    .chip-price { top: 12px; left: 12px; }
    .chip-grid { right: 12px; }
    .chip-shield { bottom: 12px; left: 12px; }
}
