*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
a{
    text-decoration:none
}
:root {
    --black: #050505;
    --red: #FF1A1A;
    --red2: #FF3D3D;
    --red3: #CC0000;
    --red-dim: rgba(255,26,26,0.15);
    --red-glow: rgba(255,26,26,0.4);
    --white: #FFFFFF;
    --silver: #C0C0C0;
    --gray: #888888;
    --dark1: #0A0A0A;
    --dark2: #111111;
    --dark3: #181818;
    --border: rgba(255,26,26,0.2);
    --border-light: rgba(255,255,255,0.06);
    --font-display: 'Orbitron', monospace;
    --font-title: 'Rajdhani', sans-serif;
    --font-body: 'Inter', sans-serif;
    --font-mono: 'JetBrains Mono', monospace;
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--black);
    color: var(--white);
    font-family: var(--font-body);
    overflow-x: hidden;
    line-height: 1.6;
}

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

    .grid-bg::after {
        content: '';
        position: absolute;
        inset: 0;
        background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(255,26,26,0.08) 0%, transparent 70%);
    }

/* ===== NAV ===== */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 0 48px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(5,5,5,0.85);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
}

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

.nav-logo-icon {
    width: 38px;
    height: 38px;
    background: var(--red);
    clip-path: polygon(50% 0%, 100% 100%, 0% 100%);
    position: relative;
    flex-shrink: 0;
}

.nav-logo-text {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: var(--white);
}

    .nav-logo-text span {
        color: var(--red);
    }

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

    .nav-links a {
        font-family: var(--font-title);
        font-size: 15px;
        font-weight: 500;
        letter-spacing: 0.08em;
        color: var(--silver);
        text-decoration: none;
        text-transform: uppercase;
        transition: color 0.2s;
    }

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

.nav-cta {
    font-family: var(--font-title);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--white);
    background: var(--red);
    border: none;
    padding: 10px 24px;
    cursor: pointer;
    transition: background 0.2s, box-shadow 0.2s;
}

    .nav-cta:hover {
        background: var(--red2);
        box-shadow: 0 0 20px rgba(255,26,26,0.5);
    }

/* ===== SECTION WRAPPER ===== */
section {
    position: relative;
    z-index: 1;
}

/* ===== HERO ===== */
.hero {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    padding: 120px 80px 80px;
    gap: 60px;
    overflow: hidden;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,26,26,0.1);
    border: 1px solid rgba(255,26,26,0.3);
    padding: 6px 16px;
    margin-bottom: 24px;
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 0.15em;
    color: var(--red);
    text-transform: uppercase;
}

    .hero-badge::before {
        content: '';
        width: 6px;
        height: 6px;
        background: var(--red);
        border-radius: 50%;
        animation: pulse-dot 2s ease-in-out infinite;
    }

@keyframes pulse-dot {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.5;
        transform: scale(0.8);
    }
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(36px, 4.5vw, 64px);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: 0.02em;
    margin-bottom: 8px;
    color: var(--white);
    text-shadow: 0 0 40px rgba(255,26,26,0.2);
}

.hero-title-red {
    font-family: var(--font-display);
    font-size: clamp(36px, 4.5vw, 64px);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: 0.02em;
    margin-bottom: 28px;
    color: var(--red);
    text-shadow: 0 0 40px rgba(255,26,26,0.5);
}

.hero-sub {
    font-family: var(--font-title);
    font-size: 18px;
    font-weight: 400;
    letter-spacing: 0.04em;
    color: var(--silver);
    margin-bottom: 12px;
    line-height: 1.6;
}

.hero-desc {
    font-size: 15px;
    color: rgba(192,192,192,0.7);
    line-height: 1.7;
    margin-bottom: 40px;
    max-width: 480px;
}

.hero-btns {
    display: flex;
    gap: 16px;
    margin-bottom: 56px;
    flex-wrap: wrap;
}

.btn-primary {
    font-family: var(--font-title);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--white);
    background: var(--red);
    border: none;
    padding: 14px 32px;
    cursor: pointer;
    transition: all 0.25s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}

    .btn-primary:hover {
        background: var(--red2);
        box-shadow: 0 0 30px rgba(255,26,26,0.5), 0 0 60px rgba(255,26,26,0.2);
        transform: translateY(-1px);
    }

.btn-outline {
    font-family: var(--font-title);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--white);
    background: transparent;
    border: 1px solid rgba(255,255,255,0.25);
    padding: 14px 32px;
    cursor: pointer;
    transition: all 0.25s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}

    .btn-outline:hover {
        border-color: var(--red);
        color: var(--red);
        box-shadow: 0 0 20px rgba(255,26,26,0.2);
    }

.hero-metrics {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
}

.metric-item {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.metric-value {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 700;
    color: var(--red);
    letter-spacing: 0.04em;
}

.metric-label {
    font-size: 11px;
    font-family: var(--font-mono);
    color: var(--gray);
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

/* ===== ENGINE VISUAL ===== */
.engine-container {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 560px;
}

.engine-core {
    position: relative;
    width: 420px;
    height: 420px;
    display: flex;
    align-items: center;
    justify-content: center;
}
/* Outer ring */
.ring {
    position: absolute;
    border-radius: 50%;
    border: 2px solid;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ring-1 {
    width: 420px;
    height: 420px;
    border-color: rgba(255,26,26,0.15);
    animation: spin 30s linear infinite;
    background: radial-gradient(circle, transparent 45%, rgba(255,26,26,0.03) 100%);
}

.ring-2 {
    width: 340px;
    height: 340px;
    border-color: rgba(255,26,26,0.25);
    animation: spin-reverse 20s linear infinite;
    border-style: dashed;
}

.ring-3 {
    width: 260px;
    height: 260px;
    border-color: rgba(255,26,26,0.45);
    animation: spin 12s linear infinite;
}

.ring-4 {
    width: 180px;
    height: 180px;
    border-color: rgba(255,26,26,0.7);
    animation: spin-reverse 8s linear infinite;
    box-shadow: 0 0 30px rgba(255,26,26,0.3), inset 0 0 30px rgba(255,26,26,0.1);
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes spin-reverse {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(-360deg);
    }
}

/* Ring tick marks */
.ring-1::before, .ring-2::before, .ring-3::before {
    content: '';
    position: absolute;
    top: -4px;
    width: 8px;
    height: 8px;
    background: var(--red);
    border-radius: 50%;
    box-shadow: 0 0 12px var(--red);
}

/* Engine center */
.engine-center {
    position: relative;
    z-index: 10;
    width: 140px;
    height: 140px;
    background: radial-gradient(circle, rgba(255,26,26,0.25) 0%, rgba(255,26,26,0.05) 60%, transparent 100%);
    border: 2px solid rgba(255,26,26,0.6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 60px rgba(255,26,26,0.4), 0 0 120px rgba(255,26,26,0.15), inset 0 0 40px rgba(255,26,26,0.1);
    animation: core-pulse 3s ease-in-out infinite;
}

@keyframes core-pulse {
    0%, 100% {
        box-shadow: 0 0 60px rgba(255,26,26,0.4), 0 0 120px rgba(255,26,26,0.15), inset 0 0 40px rgba(255,26,26,0.1);
    }

    50% {
        box-shadow: 0 0 80px rgba(255,26,26,0.6), 0 0 160px rgba(255,26,26,0.25), inset 0 0 60px rgba(255,26,26,0.2);
    }
}

/* Avalanche triangle logo */
.avax-logo {
    width: 60px;
    height: 52px;
}

/* Vault door spokes */
.spokes {
    position: absolute;
    width: 420px;
    height: 420px;
    animation: spin 30s linear infinite;
}

.spoke {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 160px;
    height: 2px;
    background: linear-gradient(to right, rgba(255,26,26,0.6), transparent);
    transform-origin: 0 50%;
}

/* Data nodes on ring */
.data-node {
    position: absolute;
    width: 10px;
    height: 10px;
    background: var(--red);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--red);
    animation: node-blink 2s ease-in-out infinite;
}

    .data-node:nth-child(2) {
        animation-delay: 0.5s;
    }

    .data-node:nth-child(3) {
        animation-delay: 1s;
    }

    .data-node:nth-child(4) {
        animation-delay: 1.5s;
    }

@keyframes node-blink {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.4;
        transform: scale(0.6);
    }
}

/* Floating info panels */
.float-card {
    position: absolute;
    background: rgba(10,10,10,0.9);
    border: 1px solid rgba(255,26,26,0.25);
    padding: 12px 16px;
    min-width: 160px;
    backdrop-filter: blur(10px);
    animation: float 4s ease-in-out infinite;
}

    .float-card:nth-child(2) {
        animation-delay: 1s;
    }

    .float-card:nth-child(3) {
        animation-delay: 2s;
    }

    .float-card:nth-child(4) {
        animation-delay: 3s;
    }

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-6px);
    }
}

.float-card-label {
    font-family: var(--font-mono);
    font-size: 9px;
    letter-spacing: 0.12em;
    color: var(--red);
    text-transform: uppercase;
    margin-bottom: 4px;
}

.float-card-value {
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 700;
    color: var(--white);
}

.float-card-sub {
    font-size: 10px;
    color: var(--gray);
    margin-top: 2px;
}

.fc-topleft {
    top: 20px;
    left: -30px;
}

.fc-topright {
    top: 40px;
    right: -20px;
}

.fc-bottomleft {
    bottom: 50px;
    left: -40px;
}

.fc-bottomright {
    bottom: 30px;
    right: -30px;
}

/* ===== SECTION STYLES ===== */
.section-inner { 
    margin: 0 auto;
    padding: 100px 48px;
}

.section-label {
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 0.2em;
    color: var(--red);
    text-transform: uppercase;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
}

    .section-label::before {
        content: '';
        width: 30px;
        height: 1px;
        background: var(--red);
    }

.section-title {
    font-family: var(--font-display);
    font-size: clamp(28px, 3.5vw, 48px);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: 0.02em;
    color: var(--white);
    margin-bottom: 8px;
}

    .section-title span {
        color: var(--red);
    }

.section-desc {
    font-size: 16px;
    color: rgba(192,192,192,0.7);
    line-height: 1.7;
    max-width: 600px;
    margin-bottom: 60px;
}

/* ===== ABOUT SECTION ===== */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.about-visual {
    position: relative;
}

.about-img-frame {
    position: relative;
    background: var(--dark2);
    border: 1px solid var(--border);
    overflow: hidden;
}

    .about-img-frame::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 2px;
        background: linear-gradient(to right, transparent, var(--red), transparent);
    }

.arch-diagram {
    padding: 32px;
}

.arch-layer {
    background: rgba(255,26,26,0.05);
    border: 1px solid rgba(255,26,26,0.2);
    padding: 16px 20px;
    margin-bottom: 12px;
    position: relative;
}

    .arch-layer::before {
        content: '';
        position: absolute;
        left: 0;
        top: 0;
        bottom: 0;
        width: 3px;
        background: var(--red);
    }

.arch-layer-title {
    font-family: var(--font-title);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 8px;
}

.arch-layer-items {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.arch-chip {
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: 0.06em;
    color: var(--silver);
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 3px 10px;
}

.chains-row {
    display: flex;
    gap: 10px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.chain-badge {
    font-family: var(--font-title);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--white);
    background: rgba(255,26,26,0.1);
    border: 1px solid rgba(255,26,26,0.3);
    padding: 6px 14px;
    transition: all 0.2s;
    cursor: default;
}

    .chain-badge:hover {
        background: rgba(255,26,26,0.2);
        border-color: var(--red);
        box-shadow: 0 0 15px rgba(255,26,26,0.2);
    }

    .chain-badge.active {
        background: var(--red);
        border-color: var(--red);
        box-shadow: 0 0 15px rgba(255,26,26,0.4);
    }

.about-content {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.feature-list-item {
    padding: 24px;
    background: rgba(255,255,255,0.02);
    border: 1px solid var(--border-light);
    border-left: 3px solid var(--red);
    transition: all 0.2s;
}

    .feature-list-item:hover {
        background: rgba(255,26,26,0.03);
        border-left-color: var(--red2);
        transform: translateX(4px);
    }

.fli-title {
    font-family: var(--font-title);
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
}

    .fli-title::before {
        content: '⬡';
        color: var(--red);
        font-size: 12px;
    }

.fli-desc {
    font-size: 14px;
    color: rgba(192,192,192,0.65);
    line-height: 1.6;
}

/* ===== FEATURES GRID ===== */
.features-bg {
    background: var(--dark1);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: rgba(255,26,26,0.1);
    border: 1px solid rgba(255,26,26,0.1);
}

.feature-card {
    background: var(--dark1);
    padding: 36px 32px;
    position: relative;
    overflow: hidden;
    transition: background 0.25s;
    cursor: default;
}

    .feature-card::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        height: 2px;
        background: var(--red);
        transform: scaleX(0);
        transition: transform 0.3s;
    }

    .feature-card:hover {
        background: rgba(255,26,26,0.04);
    }

        .feature-card:hover::after {
            transform: scaleX(1);
        }

.feature-icon {
    width: 48px;
    height: 48px;
    background: rgba(255,26,26,0.1);
    border: 1px solid rgba(255,26,26,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 22px;
}

.feature-card-title {
    font-family: var(--font-title);
    font-size: 17px;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 12px;
    line-height: 1.3;
}

.feature-card-desc {
    font-size: 13px;
    color: rgba(192,192,192,0.6);
    line-height: 1.65;
}

/* ===== DASHBOARD SECTION ===== */
.dashboard-bg {
    background: linear-gradient(180deg, var(--black) 0%, rgba(10,0,0,0.8) 100%);
}

.dashboard-frame {
    background: var(--dark2);
    border: 1px solid var(--border);
    overflow: hidden;
    position: relative;
}

    .dashboard-frame::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 2px;
        background: linear-gradient(to right, transparent, var(--red), var(--red2), transparent);
    }

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

.dashboard-title-bar {
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 0.12em;
    color: var(--red);
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 8px;
}

.live-dot {
    width: 6px;
    height: 6px;
    background: #00FF88;
    border-radius: 50%;
    animation: pulse-dot 1.5s infinite;
    box-shadow: 0 0 8px #00FF88;
}

.dashboard-stats {
    display: flex;
    gap: 32px;
    font-family: var(--font-mono);
    font-size: 11px;
    color: var(--gray);
}

    .dashboard-stats span {
        color: var(--white);
    }

.dashboard-table {
    width: 100%;
}

.dt-head {
    display: grid;
    grid-template-columns: 1fr 1.5fr 1fr 1fr 1.2fr 80px;
    padding: 12px 24px;
    background: rgba(255,26,26,0.05);
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: 0.12em;
    color: var(--gray);
    text-transform: uppercase;
    border-bottom: 1px solid var(--border-light);
}

.dt-row {
    display: grid;
    grid-template-columns: 1fr 1.5fr 1fr 1fr 1.2fr 80px;
    padding: 14px 24px;
    border-bottom: 1px solid rgba(255,255,255,0.03);
    align-items: center;
    font-size: 13px;
    transition: background 0.15s;
    cursor: default;
}

    .dt-row:hover {
        background: rgba(255,26,26,0.03);
    }

.dt-chain {
    font-family: var(--font-title);
    font-weight: 600;
    letter-spacing: 0.06em;
    color: var(--white);
    font-size: 13px;
}

.dt-opportunity {
    color: var(--silver);
    font-size: 12px;
}

.dt-spread {
    font-family: var(--font-mono);
    color: #00FF88;
    font-size: 12px;
}

.dt-liquidity {
    color: var(--silver);
    font-size: 12px;
    font-family: var(--font-mono);
}

.confidence-bar {
    display: flex;
    align-items: center;
    gap: 8px;
}

.confidence-track {
    flex: 1;
    height: 4px;
    background: rgba(255,255,255,0.08);
    border-radius: 2px;
    overflow: hidden;
}

.confidence-fill {
    height: 100%;
    background: var(--red);
    border-radius: 2px;
    box-shadow: 0 0 6px var(--red);
}

.confidence-val {
    font-family: var(--font-mono);
    font-size: 11px;
    color: var(--silver);
    min-width: 30px;
    text-align: right;
}

.badge-status {
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: 0.08em;
    padding: 3px 8px;
    text-transform: uppercase;
}

.badge-active {
    background: rgba(0,255,136,0.1);
    color: #00FF88;
    border: 1px solid rgba(0,255,136,0.3);
}

.badge-scan {
    background: rgba(255,165,0,0.1);
    color: #FFA500;
    border: 1px solid rgba(255,165,0,0.3);
}

/* ===== EXECUTION FLOW ===== */
.flow-section {
    background: var(--dark1);
    border-top: 1px solid var(--border);
}

.flow-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    position: relative;
}

    .flow-grid::before {
        content: '';
        position: absolute;
        top: 50%;
        left: 0;
        right: 0;
        height: 1px;
        background: linear-gradient(to right, transparent, rgba(255,26,26,0.3), rgba(255,26,26,0.5), rgba(255,26,26,0.3), transparent);
        z-index: 0;
    }

.flow-step {
    padding: 32px 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    z-index: 1;
    border: 1px solid transparent;
    transition: all 0.25s;
}

    .flow-step:hover {
        background: rgba(255,26,26,0.04);
        border-color: rgba(255,26,26,0.2);
    }

.flow-num {
    width: 56px;
    height: 56px;
    background: var(--black);
    border: 2px solid rgba(255,26,26,0.4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 700;
    color: var(--red);
    margin-bottom: 20px;
    box-shadow: 0 0 20px rgba(255,26,26,0.2);
    transition: all 0.25s;
}

.flow-step:hover .flow-num {
    background: var(--red);
    color: var(--white);
    box-shadow: 0 0 30px rgba(255,26,26,0.5);
}

.flow-step-title {
    font-family: var(--font-title);
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 10px;
}

.flow-step-desc {
    font-size: 13px;
    color: rgba(192,192,192,0.6);
    line-height: 1.6;
}

/* ===== ROADMAP ===== */
.roadmap-track {
    position: relative;
    padding: 20px 0;
    overflow-x: auto;
}

.roadmap-line {
    position: absolute;
    top: 50px;
    left: 5%;
    right: 5%;
    height: 2px;
    background: linear-gradient(to right, var(--red), var(--red2), rgba(255,26,26,0.3));
}

.roadmap-phases {
    display: flex;
    gap: 0;
    min-width: 900px;
}

.roadmap-phase {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    padding: 0 16px;
}

.phase-dot {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 2px solid var(--red);
    background: var(--black);
    position: relative;
    z-index: 2;
    margin-bottom: 24px;
    transition: all 0.25s;
    flex-shrink: 0;
}

    .phase-dot.done {
        background: var(--red);
        box-shadow: 0 0 15px rgba(255,26,26,0.6);
    }

    .phase-dot.active {
        background: var(--red);
        box-shadow: 0 0 20px rgba(255,26,26,0.8), 0 0 40px rgba(255,26,26,0.3);
        animation: core-pulse 2s ease-in-out infinite;
    }

.phase-num {
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: 0.12em;
    color: var(--red);
    text-transform: uppercase;
    margin-bottom: 6px;
}

.phase-title {
    font-family: var(--font-title);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 6px;
}

.phase-desc {
    font-size: 12px;
    color: rgba(192,192,192,0.55);
    line-height: 1.5;
}

/* ===== AVALANCHE SECTION ===== */
.avax-section {
    background: linear-gradient(180deg, var(--dark1) 0%, var(--black) 100%);
    border-top: 1px solid var(--border);
}

.avax-chains {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 48px;
}

.chain-card {
    background: rgba(255,255,255,0.02);
    border: 1px solid var(--border);
    padding: 32px;
    position: relative;
    overflow: hidden;
    transition: all 0.25s;
}

    .chain-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 3px;
        transition: opacity 0.25s;
        opacity: 0;
    }

    .chain-card:nth-child(1)::before {
        background: linear-gradient(to right, #FF1A1A, #FF6B6B);
    }

    .chain-card:nth-child(2)::before {
        background: linear-gradient(to right, #FF6B1A, #FFAA1A);
    }

    .chain-card:nth-child(3)::before {
        background: linear-gradient(to right, #1AFF6B, #1AFFAA);
    }

    .chain-card:hover {
        border-color: rgba(255,26,26,0.35);
        transform: translateY(-4px);
    }

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

.chain-card-id {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 900;
    color: var(--red);
    letter-spacing: 0.04em;
    margin-bottom: 8px;
}

.chain-card:nth-child(2) .chain-card-id {
    color: #FF8A1A;
}

.chain-card:nth-child(3) .chain-card-id {
    color: #1AFF88;
}

.chain-card-name {
    font-family: var(--font-title);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--silver);
    margin-bottom: 16px;
}

.chain-card-desc {
    font-size: 13px;
    color: rgba(192,192,192,0.6);
    line-height: 1.65;
    margin-bottom: 20px;
}

.chain-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.chain-tag {
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: 0.08em;
    color: var(--gray);
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    padding: 3px 10px;
}

/* ===== STATS BAR ===== */
.stats-bar {
    background: rgba(255,26,26,0.06);
    border-top: 1px solid rgba(255,26,26,0.2);
    border-bottom: 1px solid rgba(255,26,26,0.2);
    padding: 40px 80px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    text-align: center;
}

.stat-item-val {
    font-family: var(--font-display);
    font-size: 36px;
    font-weight: 700;
    color: var(--red);
    letter-spacing: 0.02em;
    text-shadow: 0 0 20px rgba(255,26,26,0.4);
}

.stat-item-lbl {
    font-family: var(--font-title);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gray);
    margin-top: 6px;
}

/* ===== FOOTER ===== */
footer {
    background: var(--dark1);
    border-top: 1px solid var(--border);
    padding: 64px 80px 40px;
}

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

.footer-brand-desc {
    font-size: 14px;
    color: rgba(192,192,192,0.55);
    line-height: 1.7;
    margin-top: 16px;
    margin-bottom: 24px;
}

.footer-col-title {
    font-family: var(--font-title);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--border);
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

    .footer-links a {
        font-size: 13px;
        color: rgba(192,192,192,0.55);
        text-decoration: none;
        transition: color 0.2s;
        letter-spacing: 0.02em;
    }

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

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

.footer-copy {
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 0.08em;
    color: rgba(192,192,192,0.35);
}

.footer-socials {
    display: flex;
    gap: 16px;
}

.social-btn {
    width: 36px;
    height: 36px;
    border: 1px solid rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray);
    font-size: 14px;
    cursor: pointer;
    transition: all 0.2s;
    text-decoration: none;
}

    .social-btn:hover {
        border-color: var(--red);
        color: var(--red);
        box-shadow: 0 0 15px rgba(255,26,26,0.25);
    }

/* ===== DIVIDERS ===== */
.section-divider {
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(255,26,26,0.2), transparent);
}

/* ===== TICKER ===== */
.ticker-bar {
    background: rgba(255,26,26,0.06);
    border-bottom: 1px solid var(--border);
    padding: 0;
    overflow: hidden;
    height: 36px;
    display: flex;
    align-items: center;
}

.ticker-inner {
    display: flex;
    gap: 60px;
    animation: ticker-scroll 20s linear infinite;
    white-space: nowrap;
}

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

    to {
        transform: translateX(-50%);
    }
}

.ticker-item {
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 0.08em;
    color: var(--silver);
    display: flex;
    align-items: center;
    gap: 6px;
}

    .ticker-item .up {
        color: #00FF88;
    }

    .ticker-item .dn {
        color: var(--red);
    }

/* ===== CTA SECTION ===== */
.cta-section {
    background: radial-gradient(ellipse 80% 60% at 50% 50%, rgba(255,26,26,0.12) 0%, transparent 70%), var(--black);
    text-align: center;
    padding: 120px 48px;
    border-top: 1px solid var(--border);
}

    .cta-section .section-label {
        justify-content: center;
    }

.cta-title {
    font-family: var(--font-display);
    font-size: clamp(32px, 4vw, 56px);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: 0.02em;
    color: var(--white);
    margin-bottom: 8px;
}

    .cta-title span {
        color: var(--red);
    }

.cta-desc {
    font-size: 17px;
    color: rgba(192,192,192,0.65);
    line-height: 1.7;
    max-width: 560px;
    margin: 16px auto 48px;
}

.cta-btns {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Responsive */
@media (max-width: 1024px) {
    .hero {
        grid-template-columns: 1fr;
        padding: 100px 40px 60px;
    }

    .engine-container {
        height: 400px;
    }

    .engine-core {
        width: 320px;
        height: 320px;
    }

    .ring-1 {
        width: 320px;
        height: 320px;
    }

    .ring-2 {
        width: 260px;
        height: 260px;
    }

    .ring-3 {
        width: 200px;
        height: 200px;
    }

    .ring-4 {
        width: 140px;
        height: 140px;
    }

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

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

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

    .avax-chains {
        grid-template-columns: 1fr;
    }

    .stats-bar {
        grid-template-columns: repeat(2, 1fr);
        padding: 40px;
    }
}

@media (max-width: 640px) {
    .hero {
        padding: 80px 24px 40px;
    }

    nav {
        padding: 0 24px;
    }

    .nav-links {
        display: none;
    }

    .section-inner {
        padding: 60px 24px;
    }

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

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

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

    .footer {
        padding: 48px 24px 32px;
    }

    .stats-bar {
        padding: 32px 24px;
        grid-template-columns: 1fr 1fr;
    }
}
<style >
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --black: #050505;
    --red: #FF1A1A;
    --red2: #FF3D3D;
    --red3: #CC0000;
    --red-dim: rgba(255,26,26,0.15);
    --red-glow: rgba(255,26,26,0.4);
    --white: #FFFFFF;
    --silver: #C0C0C0;
    --gray: #888888;
    --dark1: #0A0A0A;
    --dark2: #111111;
    --dark3: #181818;
    --border: rgba(255,26,26,0.2);
    --border-light: rgba(255,255,255,0.06);
    --font-display: 'Orbitron', monospace;
    --font-title: 'Rajdhani', sans-serif;
    --font-body: 'Inter', sans-serif;
    --font-mono: 'JetBrains Mono', monospace;
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--black);
    color: var(--white);
    font-family: var(--font-body);
    overflow-x: hidden;
    line-height: 1.6;
}

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

    .grid-bg::after {
        content: '';
        position: absolute;
        inset: 0;
        background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(255,26,26,0.08) 0%, transparent 70%);
    }

/* ===== NAV ===== */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 0 48px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(5,5,5,0.85);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
}

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

.nav-logo-icon {
    width: 38px;
    height: 38px;
    background: var(--red);
    clip-path: polygon(50% 0%, 100% 100%, 0% 100%);
    position: relative;
    flex-shrink: 0;
}

.nav-logo-text {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: var(--white);
}

    .nav-logo-text span {
        color: var(--red);
    }

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

    .nav-links a {
        font-family: var(--font-title);
        font-size: 15px;
        font-weight: 500;
        letter-spacing: 0.08em;
        color: var(--silver);
        text-decoration: none;
        text-transform: uppercase;
        transition: color 0.2s;
    }

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

.nav-cta {
    font-family: var(--font-title);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--white);
    background: var(--red);
    border: none;
    padding: 10px 24px;
    cursor: pointer;
    transition: background 0.2s, box-shadow 0.2s;
}

    .nav-cta:hover {
        background: var(--red2);
        box-shadow: 0 0 20px rgba(255,26,26,0.5);
    }

/* ===== SECTION WRAPPER ===== */
section {
    position: relative;
    z-index: 1;
}

/* ===== HERO ===== */
.hero {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    padding: 120px 80px 80px;
    gap: 60px;
    overflow: hidden;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,26,26,0.1);
    border: 1px solid rgba(255,26,26,0.3);
    padding: 6px 16px;
    margin-bottom: 24px;
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 0.15em;
    color: var(--red);
    text-transform: uppercase;
}

    .hero-badge::before {
        content: '';
        width: 6px;
        height: 6px;
        background: var(--red);
        border-radius: 50%;
        animation: pulse-dot 2s ease-in-out infinite;
    }

@keyframes pulse-dot {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.5;
        transform: scale(0.8);
    }
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(36px, 4.5vw, 64px);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: 0.02em;
    margin-bottom: 8px;
    color: var(--white);
    text-shadow: 0 0 40px rgba(255,26,26,0.2);
}

.hero-title-red {
    font-family: var(--font-display);
    font-size: clamp(36px, 4.5vw, 64px);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: 0.02em;
    margin-bottom: 28px;
    color: var(--red);
    text-shadow: 0 0 40px rgba(255,26,26,0.5);
}

.hero-sub {
    font-family: var(--font-title);
    font-size: 18px;
    font-weight: 400;
    letter-spacing: 0.04em;
    color: var(--silver);
    margin-bottom: 12px;
    line-height: 1.6;
}

.hero-desc {
    font-size: 15px;
    color: rgba(192,192,192,0.7);
    line-height: 1.7;
    margin-bottom: 40px;
    max-width: 480px;
}

.hero-btns {
    display: flex;
    gap: 16px;
    margin-bottom: 56px;
    flex-wrap: wrap;
}

.btn-primary {
    font-family: var(--font-title);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--white);
    background: var(--red);
    border: none;
    padding: 14px 32px;
    cursor: pointer;
    transition: all 0.25s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}

    .btn-primary:hover {
        background: var(--red2);
        box-shadow: 0 0 30px rgba(255,26,26,0.5), 0 0 60px rgba(255,26,26,0.2);
        transform: translateY(-1px);
    }

.btn-outline {
    font-family: var(--font-title);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--white);
    background: transparent;
    border: 1px solid rgba(255,255,255,0.25);
    padding: 14px 32px;
    cursor: pointer;
    transition: all 0.25s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}

    .btn-outline:hover {
        border-color: var(--red);
        color: var(--red);
        box-shadow: 0 0 20px rgba(255,26,26,0.2);
    }

.hero-metrics {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
}

.metric-item {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.metric-value {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 700;
    color: var(--red);
    letter-spacing: 0.04em;
}

.metric-label {
    font-size: 11px;
    font-family: var(--font-mono);
    color: var(--gray);
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

/* ===== ENGINE VISUAL ===== */
.engine-container {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 560px;
}

.engine-core {
    position: relative;
    width: 420px;
    height: 420px;
    display: flex;
    align-items: center;
    justify-content: center;
}
/* Outer ring */
.ring {
    position: absolute;
    border-radius: 50%;
    border: 2px solid;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ring-1 {
    width: 420px;
    height: 420px;
    border-color: rgba(255,26,26,0.15);
    animation: spin 30s linear infinite;
    background: radial-gradient(circle, transparent 45%, rgba(255,26,26,0.03) 100%);
}

.ring-2 {
    width: 340px;
    height: 340px;
    border-color: rgba(255,26,26,0.25);
    animation: spin-reverse 20s linear infinite;
    border-style: dashed;
}

.ring-3 {
    width: 260px;
    height: 260px;
    border-color: rgba(255,26,26,0.45);
    animation: spin 12s linear infinite;
}

.ring-4 {
    width: 180px;
    height: 180px;
    border-color: rgba(255,26,26,0.7);
    animation: spin-reverse 8s linear infinite;
    box-shadow: 0 0 30px rgba(255,26,26,0.3), inset 0 0 30px rgba(255,26,26,0.1);
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes spin-reverse {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(-360deg);
    }
}

/* Ring tick marks */
.ring-1::before, .ring-2::before, .ring-3::before {
    content: '';
    position: absolute;
    top: -4px;
    width: 8px;
    height: 8px;
    background: var(--red);
    border-radius: 50%;
    box-shadow: 0 0 12px var(--red);
}

/* Engine center */
.engine-center {
    position: relative;
    z-index: 10;
    width: 140px;
    height: 140px;
    background: radial-gradient(circle, rgba(255,26,26,0.25) 0%, rgba(255,26,26,0.05) 60%, transparent 100%);
    border: 2px solid rgba(255,26,26,0.6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 60px rgba(255,26,26,0.4), 0 0 120px rgba(255,26,26,0.15), inset 0 0 40px rgba(255,26,26,0.1);
    animation: core-pulse 3s ease-in-out infinite;
}

@keyframes core-pulse {
    0%, 100% {
        box-shadow: 0 0 60px rgba(255,26,26,0.4), 0 0 120px rgba(255,26,26,0.15), inset 0 0 40px rgba(255,26,26,0.1);
    }

    50% {
        box-shadow: 0 0 80px rgba(255,26,26,0.6), 0 0 160px rgba(255,26,26,0.25), inset 0 0 60px rgba(255,26,26,0.2);
    }
}

/* Avalanche triangle logo */
.avax-logo {
    width: 60px;
    height: 52px;
}

/* Vault door spokes */
.spokes {
    position: absolute;
    width: 420px;
    height: 420px;
    animation: spin 30s linear infinite;
}

.spoke {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 160px;
    height: 2px;
    background: linear-gradient(to right, rgba(255,26,26,0.6), transparent);
    transform-origin: 0 50%;
}

/* Data nodes on ring */
.data-node {
    position: absolute;
    width: 10px;
    height: 10px;
    background: var(--red);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--red);
    animation: node-blink 2s ease-in-out infinite;
}

    .data-node:nth-child(2) {
        animation-delay: 0.5s;
    }

    .data-node:nth-child(3) {
        animation-delay: 1s;
    }

    .data-node:nth-child(4) {
        animation-delay: 1.5s;
    }

@keyframes node-blink {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.4;
        transform: scale(0.6);
    }
}

/* Floating info panels */
.float-card {
    position: absolute;
    background: rgba(10,10,10,0.9);
    border: 1px solid rgba(255,26,26,0.25);
    padding: 12px 16px;
    min-width: 160px;
    backdrop-filter: blur(10px);
    animation: float 4s ease-in-out infinite;
}

    .float-card:nth-child(2) {
        animation-delay: 1s;
    }

    .float-card:nth-child(3) {
        animation-delay: 2s;
    }

    .float-card:nth-child(4) {
        animation-delay: 3s;
    }

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-6px);
    }
}

.float-card-label {
    font-family: var(--font-mono);
    font-size: 9px;
    letter-spacing: 0.12em;
    color: var(--red);
    text-transform: uppercase;
    margin-bottom: 4px;
}

.float-card-value {
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 700;
    color: var(--white);
}

.float-card-sub {
    font-size: 10px;
    color: var(--gray);
    margin-top: 2px;
}

.fc-topleft {
    top: 20px;
    left: -30px;
}

.fc-topright {
    top: 40px;
    right: -20px;
}

.fc-bottomleft {
    bottom: 50px;
    left: -40px;
}

.fc-bottomright {
    bottom: 30px;
    right: -30px;
}

/* ===== SECTION STYLES ===== */
.section-inner { 
    margin: 0 auto;
    padding: 100px 48px;
}

.section-label {
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 0.2em;
    color: var(--red);
    text-transform: uppercase;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
}

    .section-label::before {
        content: '';
        width: 30px;
        height: 1px;
        background: var(--red);
    }

.section-title {
    font-family: var(--font-display);
    font-size: clamp(28px, 3.5vw, 48px);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: 0.02em;
    color: var(--white);
    margin-bottom: 8px;
}

    .section-title span {
        color: var(--red);
    }

.section-desc {
    font-size: 16px;
    color: rgba(192,192,192,0.7);
    line-height: 1.7;
    max-width: 600px;
    margin-bottom: 60px;
}

/* ===== ABOUT SECTION ===== */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.about-visual {
    position: relative;
}

.about-img-frame {
    position: relative;
    background: var(--dark2);
    border: 1px solid var(--border);
    overflow: hidden;
}

    .about-img-frame::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 2px;
        background: linear-gradient(to right, transparent, var(--red), transparent);
    }

.arch-diagram {
    padding: 32px;
}

.arch-layer {
    background: rgba(255,26,26,0.05);
    border: 1px solid rgba(255,26,26,0.2);
    padding: 16px 20px;
    margin-bottom: 12px;
    position: relative;
}

    .arch-layer::before {
        content: '';
        position: absolute;
        left: 0;
        top: 0;
        bottom: 0;
        width: 3px;
        background: var(--red);
    }

.arch-layer-title {
    font-family: var(--font-title);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 8px;
}

.arch-layer-items {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.arch-chip {
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: 0.06em;
    color: var(--silver);
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 3px 10px;
}

.chains-row {
    display: flex;
    gap: 10px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.chain-badge {
    font-family: var(--font-title);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--white);
    background: rgba(255,26,26,0.1);
    border: 1px solid rgba(255,26,26,0.3);
    padding: 6px 14px;
    transition: all 0.2s;
    cursor: default;
}

    .chain-badge:hover {
        background: rgba(255,26,26,0.2);
        border-color: var(--red);
        box-shadow: 0 0 15px rgba(255,26,26,0.2);
    }

    .chain-badge.active {
        background: var(--red);
        border-color: var(--red);
        box-shadow: 0 0 15px rgba(255,26,26,0.4);
    }

.about-content {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.feature-list-item {
    padding: 24px;
    background: rgba(255,255,255,0.02);
    border: 1px solid var(--border-light);
    border-left: 3px solid var(--red);
    transition: all 0.2s;
}

    .feature-list-item:hover {
        background: rgba(255,26,26,0.03);
        border-left-color: var(--red2);
        transform: translateX(4px);
    }

.fli-title {
    font-family: var(--font-title);
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
}

    .fli-title::before {
        content: '⬡';
        color: var(--red);
        font-size: 12px;
    }

.fli-desc {
    font-size: 14px;
    color: rgba(192,192,192,0.65);
    line-height: 1.6;
}

/* ===== FEATURES GRID ===== */
.features-bg {
    background: var(--dark1);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: rgba(255,26,26,0.1);
    border: 1px solid rgba(255,26,26,0.1);
}

.feature-card {
    background: var(--dark1);
    padding: 36px 32px;
    position: relative;
    overflow: hidden;
    transition: background 0.25s;
    cursor: default;
}

    .feature-card::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        height: 2px;
        background: var(--red);
        transform: scaleX(0);
        transition: transform 0.3s;
    }

    .feature-card:hover {
        background: rgba(255,26,26,0.04);
    }

        .feature-card:hover::after {
            transform: scaleX(1);
        }

.feature-icon {
    width: 48px;
    height: 48px;
    background: rgba(255,26,26,0.1);
    border: 1px solid rgba(255,26,26,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 22px;
}

.feature-card-title {
    font-family: var(--font-title);
    font-size: 17px;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 12px;
    line-height: 1.3;
}

.feature-card-desc {
    font-size: 13px;
    color: rgba(192,192,192,0.6);
    line-height: 1.65;
}

/* ===== DASHBOARD SECTION ===== */
.dashboard-bg {
    background: linear-gradient(180deg, var(--black) 0%, rgba(10,0,0,0.8) 100%);
}

.dashboard-frame {
    background: var(--dark2);
    border: 1px solid var(--border);
    overflow: hidden;
    position: relative;
}

    .dashboard-frame::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 2px;
        background: linear-gradient(to right, transparent, var(--red), var(--red2), transparent);
    }

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

.dashboard-title-bar {
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 0.12em;
    color: var(--red);
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 8px;
}

.live-dot {
    width: 6px;
    height: 6px;
    background: #00FF88;
    border-radius: 50%;
    animation: pulse-dot 1.5s infinite;
    box-shadow: 0 0 8px #00FF88;
}

.dashboard-stats {
    display: flex;
    gap: 32px;
    font-family: var(--font-mono);
    font-size: 11px;
    color: var(--gray);
}

    .dashboard-stats span {
        color: var(--white);
    }

.dashboard-table {
    width: 100%;
}

.dt-head {
    display: grid;
    grid-template-columns: 1fr 1.5fr 1fr 1fr 1.2fr 80px;
    padding: 12px 24px;
    background: rgba(255,26,26,0.05);
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: 0.12em;
    color: var(--gray);
    text-transform: uppercase;
    border-bottom: 1px solid var(--border-light);
}

.dt-row {
    display: grid;
    grid-template-columns: 1fr 1.5fr 1fr 1fr 1.2fr 80px;
    padding: 14px 24px;
    border-bottom: 1px solid rgba(255,255,255,0.03);
    align-items: center;
    font-size: 13px;
    transition: background 0.15s;
    cursor: default;
}

    .dt-row:hover {
        background: rgba(255,26,26,0.03);
    }

.dt-chain {
    font-family: var(--font-title);
    font-weight: 600;
    letter-spacing: 0.06em;
    color: var(--white);
    font-size: 13px;
}

.dt-opportunity {
    color: var(--silver);
    font-size: 12px;
}

.dt-spread {
    font-family: var(--font-mono);
    color: #00FF88;
    font-size: 12px;
}

.dt-liquidity {
    color: var(--silver);
    font-size: 12px;
    font-family: var(--font-mono);
}

.confidence-bar {
    display: flex;
    align-items: center;
    gap: 8px;
}

.confidence-track {
    flex: 1;
    height: 4px;
    background: rgba(255,255,255,0.08);
    border-radius: 2px;
    overflow: hidden;
}

.confidence-fill {
    height: 100%;
    background: var(--red);
    border-radius: 2px;
    box-shadow: 0 0 6px var(--red);
}

.confidence-val {
    font-family: var(--font-mono);
    font-size: 11px;
    color: var(--silver);
    min-width: 30px;
    text-align: right;
}

.badge-status {
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: 0.08em;
    padding: 3px 8px;
    text-transform: uppercase;
}

.badge-active {
    background: rgba(0,255,136,0.1);
    color: #00FF88;
    border: 1px solid rgba(0,255,136,0.3);
}

.badge-scan {
    background: rgba(255,165,0,0.1);
    color: #FFA500;
    border: 1px solid rgba(255,165,0,0.3);
}

/* ===== EXECUTION FLOW ===== */
.flow-section {
    background: var(--dark1);
    border-top: 1px solid var(--border);
}

.flow-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    position: relative;
}

    .flow-grid::before {
        content: '';
        position: absolute;
        top: 50%;
        left: 0;
        right: 0;
        height: 1px;
        background: linear-gradient(to right, transparent, rgba(255,26,26,0.3), rgba(255,26,26,0.5), rgba(255,26,26,0.3), transparent);
        z-index: 0;
    }

.flow-step {
    padding: 32px 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    z-index: 1;
    border: 1px solid transparent;
    transition: all 0.25s;
}

    .flow-step:hover {
        background: rgba(255,26,26,0.04);
        border-color: rgba(255,26,26,0.2);
    }

.flow-num {
    width: 56px;
    height: 56px;
    background: var(--black);
    border: 2px solid rgba(255,26,26,0.4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 700;
    color: var(--red);
    margin-bottom: 20px;
    box-shadow: 0 0 20px rgba(255,26,26,0.2);
    transition: all 0.25s;
}

.flow-step:hover .flow-num {
    background: var(--red);
    color: var(--white);
    box-shadow: 0 0 30px rgba(255,26,26,0.5);
}

.flow-step-title {
    font-family: var(--font-title);
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 10px;
}

.flow-step-desc {
    font-size: 13px;
    color: rgba(192,192,192,0.6);
    line-height: 1.6;
}

/* ===== ROADMAP ===== */
.roadmap-track {
    position: relative;
    padding: 20px 0;
    overflow-x: auto;
}

.roadmap-line {
    position: absolute;
    top: 50px;
    left: 5%;
    right: 5%;
    height: 2px;
    background: linear-gradient(to right, var(--red), var(--red2), rgba(255,26,26,0.3));
}

.roadmap-phases {
    display: flex;
    gap: 0;
    min-width: 900px;
}

.roadmap-phase {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    padding: 0 16px;
}

.phase-dot {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 2px solid var(--red);
    background: var(--black);
    position: relative;
    z-index: 2;
    margin-bottom: 24px;
    transition: all 0.25s;
    flex-shrink: 0;
}

    .phase-dot.done {
        background: var(--red);
        box-shadow: 0 0 15px rgba(255,26,26,0.6);
    }

    .phase-dot.active {
        background: var(--red);
        box-shadow: 0 0 20px rgba(255,26,26,0.8), 0 0 40px rgba(255,26,26,0.3);
        animation: core-pulse 2s ease-in-out infinite;
    }

.phase-num {
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: 0.12em;
    color: var(--red);
    text-transform: uppercase;
    margin-bottom: 6px;
}

.phase-title {
    font-family: var(--font-title);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 6px;
}

.phase-desc {
    font-size: 12px;
    color: rgba(192,192,192,0.55);
    line-height: 1.5;
}

/* ===== AVALANCHE SECTION ===== */
.avax-section {
    background: linear-gradient(180deg, var(--dark1) 0%, var(--black) 100%);
    border-top: 1px solid var(--border);
}

.avax-chains {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 48px;
}

.chain-card {
    background: rgba(255,255,255,0.02);
    border: 1px solid var(--border);
    padding: 32px;
    position: relative;
    overflow: hidden;
    transition: all 0.25s;
}

    .chain-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 3px;
        transition: opacity 0.25s;
        opacity: 0;
    }

    .chain-card:nth-child(1)::before {
        background: linear-gradient(to right, #FF1A1A, #FF6B6B);
    }

    .chain-card:nth-child(2)::before {
        background: linear-gradient(to right, #FF6B1A, #FFAA1A);
    }

    .chain-card:nth-child(3)::before {
        background: linear-gradient(to right, #1AFF6B, #1AFFAA);
    }

    .chain-card:hover {
        border-color: rgba(255,26,26,0.35);
        transform: translateY(-4px);
    }

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

.chain-card-id {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 900;
    color: var(--red);
    letter-spacing: 0.04em;
    margin-bottom: 8px;
}

.chain-card:nth-child(2) .chain-card-id {
    color: #FF8A1A;
}

.chain-card:nth-child(3) .chain-card-id {
    color: #1AFF88;
}

.chain-card-name {
    font-family: var(--font-title);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--silver);
    margin-bottom: 16px;
}

.chain-card-desc {
    font-size: 13px;
    color: rgba(192,192,192,0.6);
    line-height: 1.65;
    margin-bottom: 20px;
}

.chain-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.chain-tag {
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: 0.08em;
    color: var(--gray);
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    padding: 3px 10px;
}

/* ===== STATS BAR ===== */
.stats-bar {
    background: rgba(255,26,26,0.06);
    border-top: 1px solid rgba(255,26,26,0.2);
    border-bottom: 1px solid rgba(255,26,26,0.2);
    padding: 40px 80px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    text-align: center;
}

.stat-item-val {
    font-family: var(--font-display);
    font-size: 36px;
    font-weight: 700;
    color: var(--red);
    letter-spacing: 0.02em;
    text-shadow: 0 0 20px rgba(255,26,26,0.4);
}

.stat-item-lbl {
    font-family: var(--font-title);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gray);
    margin-top: 6px;
}

/* ===== FOOTER ===== */
footer {
    background: var(--dark1);
    border-top: 1px solid var(--border);
    padding: 64px 80px 40px;
}

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

.footer-brand-desc {
    font-size: 14px;
    color: rgba(192,192,192,0.55);
    line-height: 1.7;
    margin-top: 16px;
    margin-bottom: 24px;
}

.footer-col-title {
    font-family: var(--font-title);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--border);
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

    .footer-links a {
        font-size: 13px;
        color: rgba(192,192,192,0.55);
        text-decoration: none;
        transition: color 0.2s;
        letter-spacing: 0.02em;
    }

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

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

.footer-copy {
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 0.08em;
    color: rgba(192,192,192,0.35);
}

.footer-socials {
    display: flex;
    gap: 16px;
}

.social-btn {
    width: 36px;
    height: 36px;
    border: 1px solid rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray);
    font-size: 14px;
    cursor: pointer;
    transition: all 0.2s;
    text-decoration: none;
}

    .social-btn:hover {
        border-color: var(--red);
        color: var(--red);
        box-shadow: 0 0 15px rgba(255,26,26,0.25);
    }

/* ===== DIVIDERS ===== */
.section-divider {
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(255,26,26,0.2), transparent);
}

/* ===== TICKER ===== */
.ticker-bar {
    background: rgba(255,26,26,0.06);
    border-bottom: 1px solid var(--border);
    padding: 0;
    overflow: hidden;
    height: 36px;
    display: flex;
    align-items: center;
}

.ticker-inner {
    display: flex;
    gap: 60px;
    animation: ticker-scroll 20s linear infinite;
    white-space: nowrap;
}

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

    to {
        transform: translateX(-50%);
    }
}

.ticker-item {
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 0.08em;
    color: var(--silver);
    display: flex;
    align-items: center;
    gap: 6px;
}

    .ticker-item .up {
        color: #00FF88;
    }

    .ticker-item .dn {
        color: var(--red);
    }

/* ===== CTA SECTION ===== */
.cta-section {
    background: radial-gradient(ellipse 80% 60% at 50% 50%, rgba(255,26,26,0.12) 0%, transparent 70%), var(--black);
    text-align: center;
    padding: 120px 48px;
    border-top: 1px solid var(--border);
}

    .cta-section .section-label {
        justify-content: center;
    }

.cta-title {
    font-family: var(--font-display);
    font-size: clamp(32px, 4vw, 56px);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: 0.02em;
    color: var(--white);
    margin-bottom: 8px;
}

    .cta-title span {
        color: var(--red);
    }

.cta-desc {
    font-size: 17px;
    color: rgba(192,192,192,0.65);
    line-height: 1.7;
    max-width: 560px;
    margin: 16px auto 48px;
}

.cta-btns {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Responsive */
@media (max-width: 1024px) {
    .hero {
        grid-template-columns: 1fr;
        padding: 100px 40px 60px;
    }

    .engine-container {
        height: 400px;
    }

    .engine-core {
        width: 320px;
        height: 320px;
    }

    .ring-1 {
        width: 320px;
        height: 320px;
    }

    .ring-2 {
        width: 260px;
        height: 260px;
    }

    .ring-3 {
        width: 200px;
        height: 200px;
    }

    .ring-4 {
        width: 140px;
        height: 140px;
    }

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

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

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

    .avax-chains {
        grid-template-columns: 1fr;
    }

    .stats-bar {
        grid-template-columns: repeat(2, 1fr);
        padding: 40px;
    }
}

@media (max-width: 640px) {
    .hero {
        padding: 80px 24px 40px;
    }

    nav {
        padding: 0 24px;
    }

    .nav-links {
        display: none;
    }

    .section-inner {
        padding: 60px 24px;
    }

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

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

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

    .footer {
        padding: 48px 24px 32px;
    }

    .stats-bar {
        padding: 32px 24px;
        grid-template-columns: 1fr 1fr;
    }
}

 
:root {
    --red: #e8000d;
    --red2: #ff1a26;
    --red3: #ff5555;
    --rg: rgba(232,0,13,.65);
    --rs: rgba(232,0,13,.1);
    --dark: #020104;
    --text: #f0d5d8;
    --td: #7a5060;
    --tm: #c89aa8;
    --green: #00e87a;
    --gold: #f5a623;
}
 

/* CURSOR */
#cur {
    position: fixed;
    z-index: 9999;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--red2);
    pointer-events: none;
    transform: translate(-50%,-50%);
    box-shadow: 0 0 12px var(--red2),0 0 24px var(--rg);
    transition: transform .12s
}

#cur2 {
    position: fixed;
    z-index: 9998;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 1px solid rgba(232,0,13,.38);
    pointer-events: none;
    transform: translate(-50%,-50%);
    transition: width .2s,height .2s
}

/* BG THREE.JS CANVAS */
#bgc {
    position: fixed;
    inset: 0;
    z-index: 0
}

/* GRID + FX */
.grid-bg {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(232,0,13,.03) 1px,transparent 1px),linear-gradient(90deg,rgba(232,0,13,.03) 1px,transparent 1px);
    background-size: 58px 58px;
    animation: gp 10s ease-in-out infinite
}

@keyframes gp {
    0%,100% {
        opacity: .25
    }

    50% {
        opacity: .7
    }
}

.scanlines {
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(0deg,transparent,transparent 2px,rgba(0,0,0,.1) 2px,rgba(0,0,0,.1) 4px);
    pointer-events: none;
    z-index: 14
}

.vignette {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 62% 50%,transparent 18%,rgba(0,0,0,.92) 100%);
    z-index: 7;
    pointer-events: none
}

.fog {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 90% 55% at 65% 88%,rgba(110,0,8,.28) 0%,transparent 70%);
    z-index: 3;
    animation: fb 8s ease-in-out infinite
}

@keyframes fb {
    0%,100% {
        opacity: .45
    }

    50% {
        opacity: 1
    }
}

/* LIGHT BEAMS */
.beam {
    position: absolute;
    width: 1px;
    z-index: 2;
    background: linear-gradient(to bottom,transparent,rgba(232,0,13,.5),transparent)
}

    .beam:nth-child(1) {
        height: 75%;
        top: 0;
        left: 52%;
        transform: rotate(-6deg);
        animation: bm 9s ease-in-out infinite
    }

    .beam:nth-child(2) {
        height: 60%;
        top: 0;
        left: 70%;
        transform: rotate(5deg);
        animation: bm 12s ease-in-out infinite -4s;
        opacity: .5
    }

    .beam:nth-child(3) {
        height: 68%;
        top: 0;
        left: 84%;
        transform: rotate(-3deg);
        animation: bm 10s ease-in-out infinite -6s;
        opacity: .35
    }

    .beam:nth-child(4) {
        height: 50%;
        top: 0;
        left: 41%;
        transform: rotate(7deg);
        animation: bm 13s ease-in-out infinite -2s;
        opacity: .3
    }

@keyframes bm {
    0%,100% {
        opacity: .35
    }

    50% {
        opacity: .8
    }
}

/* PARTICLE FIELD */
.pf {
    position: absolute;
    inset: 0;
    overflow: hidden;
    z-index: 2;
    pointer-events: none
}

.pt {
    position: absolute;
    border-radius: 50%;
    background: var(--red);
    animation: ptf linear infinite;
    opacity: 0
}

@keyframes ptf {
    0% {
        transform: translateY(100vh) translateX(0);
        opacity: 0
    }

    8% {
        opacity: 1
    }

    92% {
        opacity: 1
    }

    100% {
        transform: translateY(-30px) translateX(var(--d,40px));
        opacity: 0
    }
}

/* CORNER DECORATIONS */
.corner {
    position: absolute;
    width: 38px;
    height: 38px;
    z-index: 28;
    opacity: .5
}

    .corner::before, .corner::after {
        content: '';
        position: absolute;
        background: var(--red)
    }

    .corner::before {
        width: 100%;
        height: 1px
    }

    .corner::after {
        width: 1px;
        height: 100%
    }

.ctl {
    top: 20px;
    left: 20px
}

.ctr {
    top: 20px;
    right: 20px;
    transform: scaleX(-1)
}

.cbl {
    bottom: 20px;
    left: 20px;
    transform: scaleY(-1)
}

.cbr {
    bottom: 20px;
    right: 20px;
    transform: scale(-1)
}

/* HUD */
.hud {
    position: absolute;
    z-index: 28;
    font-family: 'Share Tech Mono',monospace;
    font-size: 10px;
    letter-spacing: .12em;
    color: rgba(232,0,13,.32);
    text-transform: uppercase;
    pointer-events: none
}

.hud-b {
    bottom: 22px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    padding: 0 26px
}

.hud-t {
    top: 22px;
    right: 26px
}

/* HERO LAYOUT */
#hero {
    position: relative;
    width: 100vw;
    height: 100vh;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    overflow: hidden
}

/* ══════════════════════════════
           LEFT PANEL
        ══════════════════════════════ */
#left {
    position: relative;
    z-index: 20;
    padding: 0 44px 0 62px;
    display: flex;
    flex-direction: column;
    gap: 18px
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 5px 14px;
    border: 1px solid rgba(232,0,13,.32);
    border-radius: 2px;
    background: rgba(6,1,4,.8);
    backdrop-filter: blur(14px);
    font-family: 'Share Tech Mono',monospace;
    font-size: 9.5px;
    letter-spacing: .2em;
    color: rgba(232,0,13,.8);
    text-transform: uppercase;
    opacity: 0;
    width: fit-content;
    box-shadow: 0 0 14px rgba(232,0,13,.07)
}

.bdot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--red2);
    animation: blink 1.6s ease-in-out infinite;
    box-shadow: 0 0 5px var(--red2)
}

@keyframes blink {
    0%,100% {
        opacity: 1
    }

    50% {
        opacity: .2
    }
}

.hero-title {
    font-family: 'Orbitron',monospace;
    font-size: clamp(2.2rem,3.8vw,4rem);
    font-weight: 900;
    letter-spacing: .09em;
    color: var(--text);
    text-transform: uppercase;
    line-height: 1;
    opacity: 0;
    text-shadow: 0 0 35px rgba(232,0,13,.2)
}

    .hero-title .red {
        color: var(--red2);
        display: block;
        text-shadow: 0 0 28px rgba(255,26,38,.65),0 0 70px rgba(232,0,13,.28)
    }

.divline {
    width: 88px;
    height: 1px;
    background: linear-gradient(to right,var(--red),transparent);
    box-shadow: 0 0 7px var(--rg);
    opacity: 0
}

.hero-sub {
    font-family: 'Rajdhani',sans-serif;
    font-size: clamp(.78rem,1.35vw,1rem);
    font-weight: 600;
    letter-spacing: .2em;
    color: var(--td);
    text-transform: uppercase;
    opacity: 0;
    max-width: 400px;
    line-height: 1.5
}

.hero-desc {
    font-family: 'Rajdhani',sans-serif;
    font-size: clamp(.72rem,1.1vw,.88rem);
    font-weight: 400;
    color: rgba(155,95,108,.72);
    letter-spacing: .04em;
    line-height: 1.85;
    max-width: 390px;
    opacity: 0
}

/* LIVE PROFIT TICKER (new) */
.profit-ticker {
    display: flex;
    gap: 10px;
    opacity: 0;
    overflow: hidden
}

.ptick {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 4px 10px;
    background: rgba(6,1,4,.75);
    border: 1px solid rgba(232,0,13,.18);
    border-radius: 2px;
    backdrop-filter: blur(10px)
}

.ptick-sym {
    font-family: 'Orbitron',monospace;
    font-size: 8px;
    font-weight: 700;
    color: var(--tm)
}

.ptick-val {
    font-family: 'Share Tech Mono',monospace;
    font-size: 8px
}

.up {
    color: var(--green)
}

.dn {
    color: #e85000
}

.btn-group {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    opacity: 0
}

.btn {
    position: relative;
    padding: 11px 28px;
    font-family: 'Orbitron',monospace;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .18em;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    overflow: hidden;
    transition: all .3s;
    clip-path: polygon(7px 0,100% 0,calc(100% - 7px) 100%,0 100%)
}

.bp {
    background: linear-gradient(135deg,var(--red),#8a0000);
    color: #fff;
    box-shadow: 0 0 18px rgba(232,0,13,.35),0 4px 18px rgba(0,0,0,.5)
}

    .bp::before {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(135deg,rgba(255,120,120,.22),transparent);
        opacity: 0;
        transition: opacity .3s
    }

    .bp:hover {
        box-shadow: 0 0 38px rgba(232,0,13,.7),0 4px 28px rgba(0,0,0,.6);
        transform: translateY(-2px)
    }

        .bp:hover::before {
            opacity: 1
        }

.bs {
    background: transparent;
    color: var(--red2);
    border: 1px solid rgba(232,0,13,.4);
    backdrop-filter: blur(10px)
}

    .bs:hover {
        box-shadow: 0 0 28px rgba(232,0,13,.35),inset 0 0 22px rgba(232,0,13,.08);
        transform: translateY(-2px);
        color: #fff;
        border-color: var(--red)
    }

.stats {
    display: flex;
    gap: 20px;
    opacity: 0;
    padding-top: 8px;
    border-top: 1px solid rgba(232,0,13,.1)
}

.stat {
    display: flex;
    flex-direction: column;
    gap: 2px
}

.sv {
    font-family: 'Orbitron',monospace;
    font-size: .9rem;
    font-weight: 700;
    color: var(--red2);
    text-shadow: 0 0 8px rgba(232,0,13,.4)
}

.sl {
    font-family: 'Share Tech Mono',monospace;
    font-size: .56rem;
    letter-spacing: .12em;
    color: var(--td);
    text-transform: uppercase
}

.ssep {
    width: 1px;
    background: rgba(232,0,13,.15);
    align-self: stretch
}

/* ══════════════════════════════
           RIGHT – VAULT CANVAS + PANELS
        ══════════════════════════════ */
#right {
    position: relative;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%
}

/* VAULT CANVAS */
#vault-canvas {
    position: relative;
    z-index: 15;
    cursor: crosshair
}

/* PROFIT BURST LABELS (orbiting) */
#orbit-layer {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 18
}

.orbit-label {
    position: absolute;
    font-family: 'Share Tech Mono',monospace;
    font-size: 9px;
    color: var(--green);
    text-shadow: 0 0 6px var(--green);
    white-space: nowrap;
    transform: translate(-50%,-50%);
    opacity: 0;
    pointer-events: none
}

.orbit-loss {
    color: #e85000;
    text-shadow: 0 0 6px #e85000
}

/* SIDE TRADING PANELS */
#tp-right {
    position: absolute;
    right: 1%;
    top: 50%;
    transform: translateY(-50%);
    width: 155px;
    display: flex;
    flex-direction: column;
    gap: 7px;
    z-index: 30;
    opacity: 0
}

#tp-left {
    position: absolute;
    right: 50%;
    top: 50%;
    transform: translate(50%,-50%);
    width: 140px;
    display: flex;
    flex-direction: column;
    gap: 7px;
    z-index: 30;
    opacity: 0;
    margin-right: 270px
}

.tp-card {
    background: rgba(6,1,4,.84);
    border: 1px solid rgba(232,0,13,.2);
    border-radius: 3px;
    padding: 8px 10px;
    backdrop-filter: blur(16px);
    box-shadow: 0 0 10px rgba(232,0,13,.06)
}

.tp-label {
    font-family: 'Share Tech Mono',monospace;
    font-size: 8.5px;
    letter-spacing: .14em;
    color: rgba(232,0,13,.55);
    text-transform: uppercase;
    margin-bottom: 5px
}

.tp-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 2px 0
}

.tp-sym {
    font-family: 'Orbitron',monospace;
    font-size: 8.5px;
    font-weight: 700;
    color: var(--tm)
}

.tp-val {
    font-family: 'Share Tech Mono',monospace;
    font-size: 8.5px
}

.tp-bar-wrap {
    height: 2px;
    background: rgba(232,0,13,.12);
    border-radius: 1px;
    margin: 3px 0;
    overflow: hidden
}

.tp-bar-fill {
    height: 100%;
    border-radius: 1px;
    background: linear-gradient(to right,#900,var(--red2))
}

/* ARB STREAM DOTS */
.arb-track-wrap {
    display: flex;
    align-items: center;
    gap: 5px;
    margin: 3px 0
}

.arb-ex {
    font-family: 'Share Tech Mono',monospace;
    font-size: 7.5px;
    color: rgba(200,155,160,.6);
    width: 30px
}

.arb-track {
    flex: 1;
    height: 1px;
    background: rgba(232,0,13,.12);
    position: relative;
    overflow: visible
}

.arb-dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    position: absolute;
    top: -2px;
    animation: adot 2.2s linear infinite
}

@keyframes adot {
    0% {
        left: -3%
    }

    100% {
        left: 103%
    }
}

.arb-pct {
    font-family: 'Share Tech Mono',monospace;
    font-size: 7.5px;
    color: var(--green);
    width: 30px;
    text-align: right
}

/* MINI SPARKLINE */
.spark {
    width: 100%;
    height: 32px;
    margin: 3px 0
}

    .spark svg {
        width: 100%;
        height: 100%
    }

/* FLOW LINES (canvas to panels) */
.flow-line {
    position: absolute;
    pointer-events: none;
    z-index: 8
}

/* CHAIN BADGE */
.chain-badge {
    position: absolute;
    top: 26px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 30;
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 4px 14px;
    background: rgba(6,1,4,.82);
    border: 1px solid rgba(232,0,13,.22);
    border-radius: 2px;
    backdrop-filter: blur(12px);
    opacity: 0;
    white-space: nowrap
}

.chain-dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--green);
    box-shadow: 0 0 5px var(--green);
    animation: blink 1.2s ease-in-out infinite
}

.chain-txt {
    font-family: 'Share Tech Mono',monospace;
    font-size: 8.5px;
    letter-spacing: .14em;
    color: rgba(200,155,165,.65);
    text-transform: uppercase
}

/* SCROLL HINT */
.sh {
    position: absolute;
    bottom: 38px;
    left: 28%;
    transform: translateX(-50%);
    z-index: 28;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    animation: sfade 3.5s ease-in-out 6s infinite
}

@keyframes sfade {
    0%,100% {
        opacity: 0
    }

    35%,65% {
        opacity: .4
    }
}

.shl {
    width: 1px;
    height: 30px;
    background: linear-gradient(to bottom,var(--red),transparent);
    animation: sdrop 2.2s ease-in-out infinite
}

@keyframes sdrop {
    0% {
        transform: scaleY(0);
        transform-origin: top
    }

    50% {
        transform: scaleY(1)
    }

    100% {
        transform: scaleY(0);
        transform-origin: bottom
    }
}

.sht {
    font-family: 'Share Tech Mono',monospace;
    font-size: 8px;
    letter-spacing: .28em;
    color: rgba(232,0,13,.35);
    text-transform: uppercase
}

/* FLOOR GLOW */
#floor-glow {
    position: absolute;
    z-index: 12;
    pointer-events: none;
    border-radius: 50%;
    filter: blur(14px);
    background: radial-gradient(ellipse at center,rgba(232,0,13,.35),transparent 70%)
}

/* RESPONSIVE */
@media(max-width:950px) {
    #hero {
        grid-template-columns: 1fr;
        align-content: center
    }

    #left {
        padding: 24px 22px 0;
        gap: 12px;
        align-items: center;
        text-align: center
    }

    .divline {
        display: none
    }

    #tp-right, #tp-left {
        display: none
    }

    .profit-ticker {
        justify-content: center
    }

    .stats {
        justify-content: center
    }
}

/* Your original desktop styles remain EXACTLY as they were */
nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 2rem;
    background: rgba(5, 5, 5, 0.85);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 26, 26, 0.2);
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.nav-logo-text {
    font-weight: 800;
    font-size: 1.6rem;
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, #FFFFFF 30%, #FF1A1A 80%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

    .nav-logo-text span {
        background: linear-gradient(135deg, #FF1A1A, #FF6666);
        -webkit-background-clip: text;
        background-clip: text;
        color: transparent;
    }

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

    .nav-links li a {
        text-decoration: none;
        font-weight: 500;
        font-size: 1rem;
        color: #eaeef2;
        transition: 0.2s;
    }

        .nav-links li a:hover {
            color: #FF1A1A;
        }

.nav-cta {
    background: linear-gradient(95deg, #FF1A1A, #cc0000);
    border: none;
    padding: 0.7rem 1.5rem;
    border-radius: 40px;
    font-weight: 700;
    font-size: 0.95rem;
    color: white;
    cursor: pointer;
    transition: all 0.25s;
    box-shadow: 0 4px 12px rgba(255, 26, 26, 0.3);
    white-space: nowrap;
}

    .nav-cta:hover {
        transform: translateY(-2px);
        background: linear-gradient(95deg, #ff3a3a, #e60000);
    }

/* Mobile menu button - hidden on desktop, visible on phone */
.mobile-menu-btn {
    display: none;
    background: rgba(255, 26, 26, 0.1);
    border: 1px solid rgba(255, 26, 26, 0.4);
    border-radius: 10px;
    width: 44px;
    height: 44px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    cursor: pointer;
    transition: all 0.2s;
}

    .mobile-menu-btn span {
        display: block;
        width: 22px;
        height: 2px;
        background-color: #FF1A1A;
        border-radius: 2px;
        transition: all 0.25s ease;
    }
.phone-view-show {
    display: none;
    background: #712727;
}
/* Phone view (max-width: 768px) */
@media (max-width: 768px) {
    .mobile-menu-btn {
        display: flex; /* Show button on mobile */
    }
    .phone-view-show {
        display: block
    }

    .phone-d-none {
        display: none
    }

    .nav-links {
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        background: rgba(5, 5, 5, 0.96);
        backdrop-filter: blur(16px);
        flex-direction: column;
        align-items: center;
        gap: 1.8rem;
        padding: 2rem;
        border-bottom: 1px solid rgba(255, 26, 26, 0.4);
        transform: translateY(-120%);
        opacity: 0;
        transition: transform 0.3s ease, opacity 0.2s ease;
        z-index: 999;
        pointer-events: none;
    }

        .nav-links.open {
            transform: translateY(0);
            opacity: 1;
            pointer-events: all;
        }

        .nav-links li a {
            font-size: 1.2rem;
        }

    /* Hamburger to X animation when menu is open */
    .mobile-menu-btn.open span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

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

    .mobile-menu-btn.open span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

}

