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

:root {
    --cyan: #00F0FF;
    --purple: #7B61FF;
    --green: #00E68A;
    --red: #FF4D4D;
    --bg: #06080D;
    --bg-card: rgba(12, 15, 25, 0.6);
    --bg-glass: rgba(12, 15, 25, 0.4);
    --bg-elevated: rgba(20, 24, 40, 0.8);
    --text: #E8ECF4;
    --text-muted: #8892A4;
    --text-dim: #4A5568;
    --border: rgba(255, 255, 255, 0.06);
    --border-light: rgba(255, 255, 255, 0.1);
    --gradient-main: linear-gradient(135deg, #00F0FF, #7B61FF);
    --gradient-warm: linear-gradient(135deg, #7B61FF, #FF6B9D);
    --radius: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.6);
    --font: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --mono: 'JetBrains Mono', monospace;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font);
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ===== Grid Background ===== */
.grid-bg {
    position: fixed;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.015) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.015) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
    z-index: 0;
}

/* ===== Particles ===== */
.particles {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

.particle {
    position: absolute;
    background: var(--cyan);
    border-radius: 50%;
    opacity: 0;
    animation: particleFloat linear infinite;
}

@keyframes particleFloat {
    0% { opacity: 0; transform: translateY(0) scale(0); }
    10% { opacity: 0.6; }
    90% { opacity: 0.6; }
    100% { opacity: 0; transform: translateY(-100vh) scale(1); }
}

/* ===== Container ===== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ===== Glass Card ===== */
.glass-card {
    background: var(--bg-glass);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
}

/* ===== Buttons ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    white-space: nowrap;
}

.btn-primary {
    background: var(--gradient-main);
    color: #06080D;
    box-shadow: 0 4px 24px rgba(0, 240, 255, 0.25);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(0, 240, 255, 0.35);
}

.btn-outline {
    background: transparent;
    color: var(--text);
    border: 1px solid var(--border-light);
    backdrop-filter: blur(10px);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--cyan);
    color: var(--cyan);
}

.btn-outline-light {
    background: transparent;
    color: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.1);
}

.btn-ghost {
    background: transparent;
    color: var(--text-muted);
}

.btn-ghost:hover {
    color: var(--text);
}

.btn-lg {
    padding: 16px 32px;
    font-size: 1rem;
    border-radius: var(--radius-lg);
}

.btn-buy {
    background: var(--green);
    color: #06080D;
    font-weight: 700;
    width: 100%;
    padding: 12px;
    border-radius: var(--radius);
    border: none;
    cursor: pointer;
    font-size: 0.95rem;
    transition: all 0.3s;
}

.btn-buy:hover {
    filter: brightness(1.1);
    transform: translateY(-1px);
}

/* ===== Navbar ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    background: rgba(6, 8, 13, 0.6);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-bottom: 1px solid var(--border);
    transition: all 0.3s;
}

.navbar.scrolled {
    background: rgba(6, 8, 13, 0.9);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.3rem;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.logo-svg { flex-shrink: 0; }

.nav-links {
    display: flex;
    gap: 36px;
}

.nav-links a {
    color: var(--text-muted);
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.2s;
}

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

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

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

.mobile-menu-btn span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: all 0.3s;
}

/* ===== Hero ===== */
.hero {
    position: relative;
    padding: 160px 0 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
    z-index: 0;
}

.glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(140px);
    opacity: 0.3;
}

.glow-1 {
    width: 700px;
    height: 700px;
    background: var(--cyan);
    top: -300px;
    right: -200px;
    animation: glowFloat 10s ease-in-out infinite;
}

.glow-2 {
    width: 500px;
    height: 500px;
    background: var(--purple);
    bottom: -200px;
    left: -200px;
    animation: glowFloat 12s ease-in-out infinite reverse;
}

.glow-3 {
    width: 300px;
    height: 300px;
    background: #FF6B9D;
    top: 40%;
    left: 50%;
    animation: glowFloat 14s ease-in-out infinite;
}

@keyframes glowFloat {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(40px, -40px); }
}

.hero-container {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 820px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    border-radius: 100px;
    background: rgba(0, 240, 255, 0.06);
    border: 1px solid rgba(0, 240, 255, 0.15);
    color: var(--cyan);
    font-size: 0.82rem;
    font-weight: 600;
    margin-bottom: 28px;
    animation: fadeInUp 0.6s ease-out;
    backdrop-filter: blur(10px);
}

.badge-dot {
    width: 7px;
    height: 7px;
    background: var(--green);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(0, 230, 138, 0.4); }
    50% { opacity: 0.7; box-shadow: 0 0 0 6px rgba(0, 230, 138, 0); }
}

.hero-title {
    font-size: clamp(2.8rem, 6.5vw, 4.8rem);
    font-weight: 900;
    line-height: 1.08;
    letter-spacing: -0.03em;
    margin-bottom: 24px;
    animation: fadeInUp 0.6s ease-out 0.1s backwards;
}

.gradient-text {
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--text-muted);
    max-width: 620px;
    margin: 0 auto 36px;
    line-height: 1.7;
    animation: fadeInUp 0.6s ease-out 0.2s backwards;
}

.hero-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 48px;
    animation: fadeInUp 0.6s ease-out 0.3s backwards;
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ===== Ticker Bar ===== */
.ticker-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    padding: 16px 32px;
    background: var(--bg-glass);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border);
    border-radius: 100px;
    margin-bottom: 40px;
    animation: fadeInUp 0.6s ease-out 0.35s backwards;
    overflow-x: auto;
}

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

.ticker-symbol {
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--text);
}

.ticker-price {
    font-family: var(--mono);
    font-weight: 500;
    font-size: 0.9rem;
}

.ticker-change {
    font-family: var(--mono);
    font-weight: 600;
    font-size: 0.8rem;
    padding: 2px 8px;
    border-radius: 6px;
}

.ticker-change.positive {
    color: var(--green);
    background: rgba(0, 230, 138, 0.1);
}

.ticker-change.negative {
    color: var(--red);
    background: rgba(255, 77, 77, 0.1);
}

.ticker-divider {
    width: 1px;
    height: 24px;
    background: var(--border-light);
    flex-shrink: 0;
}

/* ===== Hero Stats ===== */
.hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    animation: fadeInUp 0.6s ease-out 0.4s backwards;
}

.stat { text-align: center; }

.stat-number {
    display: block;
    font-family: var(--mono);
    font-size: 1.6rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    color: var(--text-dim);
    font-size: 0.82rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.stat-divider {
    width: 1px;
    height: 36px;
    background: var(--border-light);
}

/* ===== Trading Dashboard ===== */
.hero-visual {
    position: relative;
    z-index: 2;
    max-width: 960px;
    width: 100%;
    margin: 60px auto 0;
    animation: fadeInUp 0.8s ease-out 0.5s backwards;
    padding: 0 24px;
}

.trading-dashboard {
    padding: 0;
    overflow: hidden;
    box-shadow: 0 0 80px rgba(0, 240, 255, 0.06), 0 40px 80px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(0, 240, 255, 0.08);
}

.dashboard-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 24px;
    border-bottom: 1px solid var(--border);
}

.dash-tabs {
    display: flex;
    gap: 8px;
}

.dash-tab {
    padding: 6px 16px;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-dim);
    cursor: pointer;
    transition: all 0.2s;
}

.dash-tab.active {
    background: rgba(0, 240, 255, 0.1);
    color: var(--cyan);
}

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

.current-price {
    font-family: var(--mono);
    font-size: 1.4rem;
    font-weight: 700;
}

.price-badge {
    font-family: var(--mono);
    font-size: 0.8rem;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 6px;
}

.price-badge.positive {
    color: var(--green);
    background: rgba(0, 230, 138, 0.1);
}

/* Chart */
.chart-container {
    padding: 20px 24px 8px;
}

.price-chart {
    width: 100%;
    height: 200px;
}

.chart-line {
    stroke: url(#lineGrad);
    stroke-width: 2.5;
    filter: drop-shadow(0 0 6px rgba(0, 240, 255, 0.4));
}

.chart-area {
    fill: url(#chartGrad);
}

.chart-dot {
    fill: var(--cyan);
    filter: drop-shadow(0 0 4px var(--cyan));
}

.chart-dot-glow {
    fill: rgba(0, 240, 255, 0.2);
    animation: dotPulse 2s ease-in-out infinite;
}

@keyframes dotPulse {
    0%, 100% { r: 10; opacity: 0.2; }
    50% { r: 16; opacity: 0; }
}

.chart-labels {
    display: flex;
    gap: 8px;
    margin-top: 12px;
}

.chart-labels span {
    padding: 4px 12px;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-dim);
    cursor: pointer;
    transition: all 0.2s;
}

.chart-labels span.active {
    background: rgba(0, 240, 255, 0.1);
    color: var(--cyan);
}

.chart-labels span:hover {
    color: var(--text-muted);
}

/* Dashboard Bottom */
.dashboard-bottom {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-top: 1px solid var(--border);
}

.order-book {
    padding: 16px 20px;
    border-right: 1px solid var(--border);
}

.ob-header {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-dim);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 10px;
}

.ob-row {
    display: flex;
    justify-content: space-between;
    padding: 4px 0;
    font-family: var(--mono);
    font-size: 0.8rem;
}

.ob-row.ask span:first-child { color: var(--red); }
.ob-row.bid span:first-child { color: var(--green); }
.ob-row span:last-child { color: var(--text-dim); }

.ob-spread {
    text-align: center;
    font-size: 0.7rem;
    color: var(--text-dim);
    padding: 6px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    margin: 4px 0;
}

.trade-panel {
    padding: 16px 20px;
}

.trade-tabs {
    display: flex;
    gap: 4px;
    margin-bottom: 14px;
}

.trade-tab {
    flex: 1;
    text-align: center;
    padding: 8px;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-dim);
    cursor: pointer;
    transition: all 0.2s;
}

.trade-tab.active {
    background: rgba(0, 230, 138, 0.1);
    color: var(--green);
}

.trade-input {
    margin-bottom: 10px;
}

.trade-input label {
    display: block;
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--text-dim);
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.input-row {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 8px 12px;
}

.input-row input {
    flex: 1;
    background: none;
    border: none;
    color: var(--text);
    font-family: var(--mono);
    font-size: 0.9rem;
    font-weight: 500;
    outline: none;
}

.input-suffix {
    font-family: var(--mono);
    font-size: 0.75rem;
    color: var(--text-dim);
    font-weight: 500;
}

.trade-total {
    display: flex;
    justify-content: space-between;
    padding: 8px 0 12px;
    font-size: 0.82rem;
    color: var(--text-muted);
}

.trade-total span:last-child {
    font-family: var(--mono);
    font-weight: 600;
    color: var(--text);
}

/* ===== Trust Section ===== */
.trust-section {
    padding: 80px 0;
    position: relative;
    z-index: 1;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
}

.trust-card {
    padding: 24px 20px;
    display: flex;
    align-items: center;
    gap: 14px;
    transition: all 0.3s;
}

.trust-card:hover {
    border-color: rgba(0, 240, 255, 0.15);
    transform: translateY(-2px);
}

.trust-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(0, 240, 255, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--cyan);
}

.trust-info h4 {
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 2px;
}

.trust-info p {
    font-size: 0.75rem;
    color: var(--text-dim);
}

/* ===== Section Common ===== */
.section-header {
    text-align: center;
    max-width: 650px;
    margin: 0 auto 64px;
}

.section-badge {
    display: inline-block;
    padding: 6px 16px;
    border-radius: 100px;
    background: rgba(0, 240, 255, 0.06);
    border: 1px solid rgba(0, 240, 255, 0.12);
    color: var(--cyan);
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 20px;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 1.05rem;
    color: var(--text-muted);
    line-height: 1.7;
}

/* ===== Markets Section ===== */
.markets-section {
    padding: 120px 0;
    position: relative;
    z-index: 1;
}

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

.market-card {
    padding: 24px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.market-card:hover {
    border-color: rgba(0, 240, 255, 0.2);
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), 0 0 30px rgba(0, 240, 255, 0.05);
}

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

.market-coin {
    display: flex;
    align-items: center;
    gap: 12px;
}

.coin-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.1rem;
}

.coin-icon.btc { background: rgba(247, 147, 26, 0.15); color: #F7931A; }
.coin-icon.eth { background: rgba(98, 126, 234, 0.15); color: #627EEA; }
.coin-icon.sol { background: rgba(0, 240, 255, 0.1); color: var(--cyan); }
.coin-icon.avax { background: rgba(232, 65, 66, 0.15); color: #E84142; }
.coin-icon.link { background: rgba(41, 128, 185, 0.15); color: #2980B9; }
.coin-icon.dot { background: rgba(230, 0, 122, 0.15); color: #E6007A; }

.market-coin h4 {
    font-size: 1rem;
    font-weight: 700;
}

.coin-ticker {
    font-size: 0.78rem;
    color: var(--text-dim);
    font-weight: 500;
}

.market-change {
    font-family: var(--mono);
    font-size: 0.85rem;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 6px;
}

.market-change.positive { color: var(--green); background: rgba(0, 230, 138, 0.1); }
.market-change.negative { color: var(--red); background: rgba(255, 77, 77, 0.1); }

.market-chart {
    margin: 12px 0;
    height: 50px;
}

.market-chart svg {
    width: 100%;
    height: 100%;
}

.market-bottom {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
}

.market-price {
    font-family: var(--mono);
    font-size: 1.2rem;
    font-weight: 700;
}

.market-vol {
    font-size: 0.78rem;
    color: var(--text-dim);
}

/* ===== Security Section ===== */
.security-section {
    padding: 120px 0;
    position: relative;
    z-index: 1;
}

.security-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 20px;
}

.security-card {
    padding: 36px;
    transition: all 0.3s;
}

.security-card:hover {
    border-color: rgba(0, 240, 255, 0.15);
}

.security-card.large {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 40px;
    align-items: center;
    padding: 48px;
    border: 1px solid rgba(0, 240, 255, 0.08);
    background: linear-gradient(135deg, rgba(0, 240, 255, 0.03), rgba(123, 97, 255, 0.03));
}

.sec-visual {
    display: flex;
    align-items: center;
    justify-content: center;
}

.shield-animation {
    position: relative;
    width: 200px;
    height: 240px;
}

.shield-svg {
    width: 100%;
    height: 100%;
}

.shield-pulse {
    animation: shieldPulse 3s ease-in-out infinite;
}

.shield-pulse-2 {
    animation: shieldPulse 3s ease-in-out infinite 1s;
}

@keyframes shieldPulse {
    0%, 100% { opacity: 0.3; transform: scale(1); }
    50% { opacity: 0.8; transform: scale(1.02); }
}

.shield-check {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: checkBounce 2s ease-in-out infinite;
}

@keyframes checkBounce {
    0%, 100% { transform: translate(-50%, -50%) scale(1); }
    50% { transform: translate(-50%, -50%) scale(1.1); }
}

.sec-content h3 {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 12px;
}

.sec-content p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

.sec-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.sec-tags span {
    padding: 5px 14px;
    border-radius: 8px;
    background: rgba(0, 240, 255, 0.06);
    border: 1px solid rgba(0, 240, 255, 0.1);
    color: var(--cyan);
    font-family: var(--mono);
    font-size: 0.75rem;
    font-weight: 600;
}

.sec-icon-wrap {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: rgba(0, 240, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.security-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.security-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.7;
}

/* ===== Wallets Section ===== */
.wallets-section {
    padding: 120px 0;
    position: relative;
    z-index: 1;
}

.wallets-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    align-items: start;
}

.wallet-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.wallet-card {
    padding: 24px 16px;
    text-align: center;
    transition: all 0.3s;
    cursor: pointer;
}

.wallet-card:hover {
    border-color: rgba(0, 240, 255, 0.2);
    transform: translateY(-4px);
}

.wallet-logo {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: var(--gradient-main);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.2rem;
    color: #06080D;
    margin: 0 auto 12px;
}

.wallet-card h4 {
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.wallet-status {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-dim);
    padding: 3px 10px;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.04);
}

.wallet-status.connected {
    color: var(--green);
    background: rgba(0, 230, 138, 0.1);
}

/* Wallet Visual */
.wallet-visual {
    padding: 32px;
    border: 1px solid rgba(0, 240, 255, 0.08);
}

.wv-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--text-muted);
}

.wv-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.wv-dot.green {
    background: var(--green);
    box-shadow: 0 0 8px rgba(0, 230, 138, 0.4);
}

.wv-address {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border);
    border-radius: 10px;
    margin-bottom: 24px;
}

.wv-addr {
    font-family: var(--mono);
    font-size: 0.85rem;
    color: var(--text-muted);
    flex: 1;
}

.wv-address svg {
    color: var(--text-dim);
    cursor: pointer;
}

.wv-balance {
    padding-bottom: 24px;
    border-bottom: 1px solid var(--border);
    margin-bottom: 20px;
}

.wv-label {
    display: block;
    font-size: 0.75rem;
    color: var(--text-dim);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 4px;
}

.wv-amount {
    display: block;
    font-family: var(--mono);
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 4px;
}

.wv-change {
    font-family: var(--mono);
    font-size: 0.82rem;
    font-weight: 600;
}

.wv-change.positive { color: var(--green); }

.wv-asset {
    display: grid;
    grid-template-columns: 36px 1fr auto auto;
    gap: 12px;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
}

.wv-asset:last-child { border-bottom: none; }

.wv-coin {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 0.85rem;
}

.wv-coin.btc { background: rgba(247, 147, 26, 0.15); color: #F7931A; }
.wv-coin.eth { background: rgba(98, 126, 234, 0.15); color: #627EEA; }
.wv-coin.sol { background: rgba(0, 240, 255, 0.1); color: var(--cyan); }

.wv-name {
    font-weight: 600;
    font-size: 0.9rem;
}

.wv-amt {
    font-family: var(--mono);
    font-size: 0.82rem;
    color: var(--text-dim);
}

.wv-val {
    font-family: var(--mono);
    font-weight: 600;
    font-size: 0.9rem;
}

/* ===== Features Section ===== */
.features-section {
    padding: 120px 0;
    position: relative;
    z-index: 1;
}

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

.feature-card {
    padding: 36px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-card:hover {
    border-color: rgba(0, 240, 255, 0.15);
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.feature-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: rgba(0, 240, 255, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--cyan);
}

.feature-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 8px;
}

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

/* ===== CTA Section ===== */
.cta-section {
    padding: 100px 0;
    position: relative;
    z-index: 1;
}

.cta-card {
    position: relative;
    padding: 80px 40px;
    text-align: center;
    overflow: hidden;
    border: 1px solid rgba(0, 240, 255, 0.08);
}

.cta-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.cta-bg .glow-1 {
    width: 400px;
    height: 400px;
    background: var(--purple);
    top: -150px;
    right: -100px;
    opacity: 0.2;
}

.cta-bg .glow-2 {
    width: 300px;
    height: 300px;
    background: var(--cyan);
    bottom: -150px;
    left: -100px;
    opacity: 0.2;
}

.cta-card h2 {
    position: relative;
    z-index: 2;
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 16px;
}

.cta-card > p {
    position: relative;
    z-index: 2;
    color: var(--text-muted);
    font-size: 1.05rem;
    margin-bottom: 36px;
}

.cta-actions {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 32px;
}

.cta-trust {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
}

.cta-trust span {
    font-size: 0.82rem;
    color: var(--text-dim);
}

/* ===== Contact Section ===== */
.contact-section {
    padding: 120px 0;
    position: relative;
    z-index: 1;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 32px;
    align-items: start;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 24px;
    transition: all 0.3s;
}

.contact-card:hover {
    border-color: rgba(0, 240, 255, 0.15);
    transform: translateY(-2px);
}

.contact-icon {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    background: rgba(0, 240, 255, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--cyan);
}

.contact-card h4 {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text);
}

.contact-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-family: var(--mono);
}

.contact-note {
    padding: 20px 24px;
    font-size: 0.85rem;
    line-height: 1.7;
    color: var(--text-muted);
}

.contact-note strong {
    color: var(--text);
}

.contact-form-wrap {
    padding: 40px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 8px;
}

.form-group label span {
    color: var(--cyan);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border);
    border-radius: 10px;
    color: var(--text);
    font-family: var(--font);
    font-size: 0.95rem;
    transition: all 0.3s;
    outline: none;
    resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: rgba(0, 240, 255, 0.4);
    box-shadow: 0 0 0 3px rgba(0, 240, 255, 0.08);
    background: rgba(255, 255, 255, 0.05);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-dim);
}

.submit-btn {
    align-self: flex-start;
}

.form-status {
    padding: 14px 16px;
    border-radius: 10px;
    font-size: 0.9rem;
    font-weight: 500;
}

.form-status.success {
    background: rgba(0, 230, 138, 0.1);
    border: 1px solid rgba(0, 230, 138, 0.3);
    color: var(--green);
}

.form-status.error {
    background: rgba(255, 77, 77, 0.1);
    border: 1px solid rgba(255, 77, 77, 0.3);
    color: var(--red);
}

/* ===== Footer ===== */
.footer {
    padding: 80px 0 40px;
    border-top: 1px solid var(--border);
    position: relative;
    z-index: 1;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-brand p {
    color: var(--text-dim);
    margin-top: 16px;
    font-size: 0.9rem;
    line-height: 1.6;
}

.footer-badges {
    display: flex;
    gap: 8px;
    margin-top: 16px;
}

.footer-badges span {
    padding: 4px 12px;
    border-radius: 6px;
    background: rgba(0, 240, 255, 0.06);
    border: 1px solid rgba(0, 240, 255, 0.08);
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--cyan);
    font-family: var(--mono);
}

.footer-links h4 {
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--text);
}

.footer-links a {
    display: block;
    color: var(--text-dim);
    font-size: 0.88rem;
    padding: 4px 0;
    transition: color 0.2s;
}

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

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 32px;
    border-top: 1px solid var(--border);
}

.footer-bottom p {
    color: var(--text-dim);
    font-size: 0.82rem;
}

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

.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-dim);
    transition: all 0.2s;
}

.footer-social a:hover {
    background: rgba(0, 240, 255, 0.08);
    border-color: rgba(0, 240, 255, 0.15);
    color: var(--cyan);
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
    .trust-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .markets-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .security-grid {
        grid-template-columns: 1fr;
    }

    .security-card.large {
        grid-template-columns: 1fr;
    }

    .wallets-showcase {
        grid-template-columns: 1fr;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .footer-brand {
        grid-column: span 3;
    }
}

@media (max-width: 768px) {
    .nav-links,
    .nav-actions {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .nav-links.show,
    .nav-actions.show {
        display: flex;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(6, 8, 13, 0.95);
        backdrop-filter: blur(20px);
        padding: 20px;
        flex-direction: column;
        border-bottom: 1px solid var(--border);
    }

    .nav-actions.show {
        padding: 0 20px 20px;
    }

    .mobile-menu-btn.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .mobile-menu-btn.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-btn.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }

    .hero {
        padding: 140px 0 40px;
    }

    .hero-title {
        font-size: 2.4rem;
    }

    .hero-cta {
        flex-direction: column;
    }

    .ticker-bar {
        border-radius: 16px;
        gap: 16px;
        padding: 12px 20px;
    }

    .hero-stats {
        gap: 20px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .stat-number {
        font-size: 1.3rem;
    }

    .dashboard-bottom {
        grid-template-columns: 1fr;
    }

    .order-book {
        border-right: none;
        border-bottom: 1px solid var(--border);
    }

    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .markets-grid {
        grid-template-columns: 1fr;
    }

    .wallet-cards {
        grid-template-columns: repeat(2, 1fr);
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .contact-form-wrap {
        padding: 28px 24px;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .footer-brand {
        grid-column: span 2;
    }

    .cta-card {
        padding: 60px 24px;
    }

    .cta-actions {
        flex-direction: column;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .ticker-bar {
        flex-wrap: nowrap;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scroll-snap-type: x mandatory;
    }

    .ticker-item { scroll-snap-align: center; }

    .trust-grid {
        grid-template-columns: 1fr;
    }

    .wallet-cards {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-brand {
        grid-column: span 1;
    }

    .sec-tags {
        gap: 6px;
    }

    .sec-tags span {
        font-size: 0.7rem;
        padding: 4px 10px;
    }
}

/* ===== Admin / Data Table ===== */
.admin-section {
    padding: 140px 24px 100px;
    position: relative;
    z-index: 1;
    min-height: 100vh;
}

.admin-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto 28px;
    flex-wrap: wrap;
}

.admin-title {
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    margin: 0 0 8px;
}

.admin-subtitle {
    color: var(--text-muted);
    font-size: 1rem;
}

.admin-actions .btn {
    white-space: nowrap;
}

.admin-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    max-width: 1200px;
    margin: 0 auto 20px;
    padding: 14px 20px;
    flex-wrap: wrap;
}

.admin-search {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 1;
    min-width: 220px;
    color: var(--text-dim);
}

.admin-search input {
    flex: 1;
    background: none;
    border: none;
    outline: none;
    color: var(--text);
    font-family: var(--font);
    font-size: 0.95rem;
}

.admin-search input::placeholder {
    color: var(--text-dim);
}

.admin-count {
    font-family: var(--mono);
    font-size: 0.85rem;
    color: var(--text-muted);
    white-space: nowrap;
}

.table-wrap {
    max-width: 1200px;
    margin: 0 auto;
    overflow: auto;
    padding: 0;
}

.data-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 820px;
}

.data-table thead th {
    text-align: left;
    padding: 14px 18px;
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--text-dim);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    border-bottom: 1px solid var(--border);
    white-space: nowrap;
    background: rgba(255, 255, 255, 0.02);
}

.data-table tbody td {
    padding: 13px 18px;
    font-size: 0.88rem;
    color: var(--text);
    border-bottom: 1px solid var(--border);
    vertical-align: top;
}

.data-table tbody tr:hover {
    background: rgba(0, 240, 255, 0.03);
}

.data-table td.mono {
    font-family: var(--mono);
    font-size: 0.82rem;
}

.data-table td.muted {
    color: var(--text-dim);
}

.data-table td.msg-cell {
    max-width: 320px;
    color: var(--text-muted);
    word-break: break-word;
}

.loading-row td,
.empty-row {
    text-align: center;
    color: var(--text-dim);
    padding: 40px 18px !important;
}

.table-loading {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    color: var(--text-muted);
    font-size: 0.95rem;
}

.spinner {
    width: 18px;
    height: 18px;
    border: 2px solid var(--border-light);
    border-top-color: var(--cyan);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

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

.admin-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    max-width: 1200px;
    margin: 24px auto 0;
    flex-wrap: wrap;
}

.page-btn {
    padding: 8px 14px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border);
    color: var(--text-muted);
    font-family: var(--mono);
    font-size: 0.82rem;
    cursor: pointer;
    transition: all 0.2s;
}

.page-btn:hover:not(:disabled) {
    border-color: var(--cyan);
    color: var(--cyan);
}

.page-btn.active {
    background: rgba(0, 240, 255, 0.1);
    border-color: rgba(0, 240, 255, 0.3);
    color: var(--cyan);
}

.page-btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}
