/* ========================================
   AlbaEther - Modern Crypto Theme (Blue/Purple)
   ======================================== */

:root {
    --bg-black: #050508;
    --bg-card: #0F0F16;
    /* Restored: Purple (#7c3aed) */
    --accent-primary: #7c3aed;
    /* Cyan */
    --accent-secondary: #00d9ff;

    /* Gradient is Cyan -> Purple */
    --accent-gradient: linear-gradient(135deg, var(--accent-secondary), var(--accent-primary));
    --text-white: #ffffff;
    --text-muted: #94A3B8;
    --border-light: rgba(255, 255, 255, 0.08);
    --glass-bg: rgba(255, 255, 255, 0.03);

    /* Font */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Outfit', sans-serif;
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background-color: var(--bg-black);
    color: var(--text-white);
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.1;
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s;
}

/* ========================================
   Top Banner
   ======================================== */
.top-banner {
    background: var(--accent-gradient);
    color: #000;
    text-align: center;
    padding: 8px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.top-banner a {
    color: #000;
    text-decoration: underline;
    margin-left: 5px;
}

/* ========================================
   Navbar
   ======================================== */
/* ========================================
   Navbar (Sticky Glass Header)
   ======================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    padding: 15px 0;
    z-index: 1000;
    background: rgba(5, 5, 8, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar.scrolled {
    top: 20px;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 800;
    font-size: 20px;
    letter-spacing: 1px;
}

.nav-menu {
    display: flex;
    align-items: center;
    background: rgba(15, 15, 22, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 6px 6px 6px 30px;
    border-radius: 100px;
    border: 1px solid var(--border-light);
}

.nav-links {
    display: flex;
    gap: 32px;
    margin-right: 30px;
}

.nav-item {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-muted);
}

.nav-item:hover {
    color: var(--text-white);
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 24px;
    border-radius: 100px;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--border-light);
    color: var(--text-white);
}

.btn-outline:hover {
    border-color: var(--accent-secondary);
    background: rgba(0, 217, 255, 0.1);
}

.btn-primary {
    background: var(--accent-gradient);
    color: #000;
    border: none;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 217, 255, 0.3);
}

.btn-pill {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    color: var(--text-white);
    padding: 12px 30px;
}

.btn-pill:hover {
    background: rgba(255, 255, 255, 0.15);
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 24px;
}

/* ========================================
   Hero Section
   ======================================== */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    overflow: hidden;
    padding-top: 80px;
}

/* Improved Ring Animation */
.ring-container {
    position: absolute;
    width: 700px;
    height: 700px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 0;
    transition: transform 0.5s ease;
}

/* Layer 1: Core Ring */
.glowing-ring {
    position: absolute;
    inset: 40px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: conic-gradient(from 0deg, transparent 40%, var(--accent-primary), var(--accent-secondary), transparent 90%);
    -webkit-mask: radial-gradient(transparent 65%, black 66%);
    mask: radial-gradient(transparent 65%, black 66%);
    animation: rotate 15s linear infinite;
    opacity: 0.8;
    filter: blur(1px);
    box-shadow: 0 0 50px rgba(124, 58, 237, 0.2);
}

/* Layer 2: Outer Pulse */
.glowing-ring-pulse {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 1px solid rgba(0, 217, 255, 0.2);
    opacity: 0.3;
    animation: scalePulse 4s ease-in-out infinite alternate;
}

/* Layer 3: Soft Glow Backdrop */
.glowing-ring-blur {
    position: absolute;
    inset: 20px;
    background: conic-gradient(from 180deg, transparent 20%, var(--accent-primary), var(--accent-secondary), transparent 80%);
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
    animation: rotateReverse 20s linear infinite;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes rotateReverse {
    from {
        transform: rotate(360deg);
    }

    to {
        transform: rotate(0deg);
    }
}

@keyframes scalePulse {
    from {
        transform: scale(1);
        opacity: 0.2;
    }

    to {
        transform: scale(1.05);
        opacity: 0.4;
        border-color: var(--accent-secondary);
    }
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 1100px;
    padding: 0 20px;
    /* Hero Spotlights */
    background: radial-gradient(circle at center, rgba(124, 58, 237, 0.05) 0%, transparent 60%);
}

.hero-title {
    font-size: clamp(60px, 9vw, 130px);
    line-height: 0.85;
    text-transform: uppercase;
    font-weight: 900;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    margin-bottom: 40px;
    letter-spacing: -2px;
}

/* Text Effects */
.text-white {
    color: #fff;
    filter: drop-shadow(0 0 25px rgba(255, 255, 255, 0.4));
    z-index: 2;
}

.text-outline {
    font-size: 0.6em;
    /* Smaller "IN ANY" */
    letter-spacing: 0.2em;
    color: transparent;
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.4);
    opacity: 0.8;
    margin: 10px 0;
}

.text-gradient {
    background: linear-gradient(180deg, #fff 10%, var(--accent-secondary) 50%, var(--accent-primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 40px rgba(0, 217, 255, 0.6));
    position: relative;
    z-index: 2;
}

/* Subtle reflection below main text */
.text-gradient::after {
    content: 'CRYPTO ASSET';
    position: absolute;
    left: 0;
    top: 100%;
    transform: scaleY(-0.5);
    opacity: 0.2;
    background: inherit;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: blur(4px);
    pointer-events: none;
}

.hero-subtitle {
    font-size: 20px;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto 40px;
    font-weight: 400;
}

.hero-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 80px;
}

.btn-lg {
    padding: 16px 40px;
    font-size: 16px;
}

/* Stats */
.hero-stats {
    display: flex;
    align-items: center;
    gap: 40px;
    background: rgba(255, 255, 255, 0.03);
    padding: 20px 40px;
    border-radius: 100px;
    border: 1px solid var(--border-light);
    backdrop-filter: blur(10px);
}

.stat-item {
    text-align: center;
}

.stat-val {
    display: block;
    font-size: 24px;
    font-weight: 700;
    color: var(--text-white);
}

.stat-label {
    font-size: 12px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.stat-divider {
    width: 1px;
    height: 30px;
    background: var(--border-light);
}

/* ========================================
   Trusted By (Social Proof)
   ======================================== */
.trusted-section {
    padding: 40px 0;
    border-bottom: 1px solid var(--border-light);
    background: rgba(0, 0, 0, 0.3);
    overflow: hidden;
}

.trusted-label {
    text-align: center;
    color: var(--text-muted);
    font-size: 12px;
    letter-spacing: 2px;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.logos-slide {
    display: inline-flex;
    gap: 60px;
    animation: slide 30s linear infinite;
    white-space: nowrap;
}

.logos-container {
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    mask-image: linear-gradient(to right, transparent, black 20%, black 80%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 20%, black 80%, transparent);
}

.partner-logo {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.3);
    display: flex;
    align-items: center;
    gap: 10px;
}

@keyframes slide {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

/* ========================================
   Sections General
   ======================================== */
.section {
    padding: 120px 20px;
    position: relative;
}

.section-container {
    max-width: 1200px;
    margin: 0 auto;
}

.text-center {
    text-align: center;
}

.section-header {
    margin-bottom: 60px;
}

.badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 20px;
    background: rgba(124, 58, 237, 0.1);
    color: var(--accent-secondary);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 15px;
    border: 1px solid rgba(0, 217, 255, 0.2);
}

.section-title {
    font-size: 48px;
    margin-bottom: 20px;
}

.section-desc {
    color: var(--text-muted);
    font-size: 18px;
    max-width: 600px;
    margin: 0 auto;
}

/* ========================================
   Features Grid
   ======================================== */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.feature-card {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: 24px;
    padding: 40px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent-secondary);
}

.feature-icon {
    font-size: 40px;
    color: var(--accent-secondary);
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 24px;
    margin-bottom: 10px;
}

.feature-card p {
    color: var(--text-muted);
    line-height: 1.7;
}

/* ========================================
   Ecosystem Split Layout
   ======================================== */
.split-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.check-list {
    list-style: none;
    margin: 30px 0;
}

.check-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 18px;
}

.check-list i {
    color: var(--accent-secondary);
    font-size: 24px;
}

.btn-mt {
    margin-top: 20px;
}

/* Visual Cards Stack */
.visual-card-stack {
    position: relative;
    height: 400px;
}

.visual-card {
    position: absolute;
    width: 300px;
    padding: 20px;
    background: rgba(30, 30, 40, 0.9);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    border: 1px solid var(--border-light);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    transition: all 0.5s ease;
}

.token-row {
    display: flex;
    align-items: center;
    gap: 15px;
    font-weight: 700;
}

.token-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.eth {
    background: #627EEA;
}

.btc {
    background: #F7931A;
}

.sol {
    background: #14F195;
}

.amt {
    margin-left: auto;
    color: var(--text-muted);
}

.card-1 {
    top: 50px;
    left: 50px;
    z-index: 3;
}

.card-2 {
    top: 120px;
    left: 120px;
    z-index: 2;
    opacity: 0.8;
    transform: scale(0.95);
}

.card-3 {
    top: 190px;
    left: 190px;
    z-index: 1;
    opacity: 0.6;
    transform: scale(0.9);
}

.visual-card-stack:hover .card-1 {
    transform: translateY(-20px);
}

.visual-card-stack:hover .card-2 {
    transform: translateY(-10px) translateX(10px);
}

.visual-card-stack:hover .card-3 {
    transform: translateX(20px);
}

/* ========================================
   Section 6: Global Command Footer
   ======================================== */
.footer-section {
    background: #020203;
    border-top: 1px solid rgba(124, 58, 237, 0.3);
    padding: 80px 0 30px;
    font-size: 14px;
    position: relative;
    z-index: 10;
}

.footer-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent-primary), transparent);
    box-shadow: 0 0 10px var(--accent-primary);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 60px;
    margin-bottom: 60px;
}

/* Column 1: Brand */
.footer-brand h2 {
    font-family: var(--font-heading);
    color: var(--text-white);
    font-size: 24px;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.footer-brand p {
    color: var(--text-muted);
    line-height: 1.6;
    max-width: 300px;
    margin-bottom: 30px;
}

.footer-socials {
    display: flex;
    gap: 15px;
}

.social-icon {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    transition: all 0.3s ease;
    font-size: 16px;
    text-decoration: none;
}

.social-icon:hover {
    border-color: var(--accent-secondary);
    color: var(--accent-secondary);
    box-shadow: 0 0 15px rgba(0, 217, 255, 0.2);
    transform: translateY(-3px);
}

/* Columns 2 & 3: Links */
.footer-col-header {
    font-family: 'Space Mono', monospace;
    color: var(--text-white);
    font-size: 12px;
    margin-bottom: 25px;
    letter-spacing: 2px;
    text-transform: uppercase;
    opacity: 0.6;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-link {
    color: var(--text-muted);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-link:hover {
    color: var(--accent-secondary);
    transform: translateX(5px);
    text-shadow: 0 0 8px rgba(0, 217, 255, 0.4);
}

/* Column 4: Newsletter */
.footer-newsletter p {
    color: var(--text-muted);
    margin-bottom: 20px;
}

.newsletter-form {
    position: relative;
    display: flex;
    align-items: center;
}

.newsletter-input {
    width: 100%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 12px 15px;
    color: var(--text-white);
    font-family: 'Space Mono', monospace;
    font-size: 13px;
    transition: border-color 0.3s ease;
}

.newsletter-input:focus {
    outline: none;
    border-color: var(--accent-secondary);
}

.newsletter-bttn {
    position: absolute;
    right: 5px;
    background: var(--accent-secondary);
    border: none;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-weight: 700;
    transition: all 0.3s;
}

.newsletter-bttn:hover {
    box-shadow: 0 0 10px var(--accent-secondary);
}

/* Bottom Bar */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: rgba(255, 255, 255, 0.3);
    font-size: 12px;
    font-family: 'Space Mono', monospace;
}

.footer-legal-links {
    display: flex;
    gap: 20px;
}

.footer-legal-links a {
    color: rgba(255, 255, 255, 0.3);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-legal-links a:hover {
    color: var(--text-white);
}

/* Responsive */
/* ========================================
   Mobile Menu & Responsive
   ======================================== */
@media (max-width: 900px) {

    /* Navbar Mobile */
    .mobile-toggle {
        display: block;
        z-index: 200;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background: rgba(5, 5, 8, 0.95);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        gap: 40px;
        transform: translateY(-100%);
        transition: transform 0.5s cubic-bezier(0.77, 0, 0.175, 1);
        border-radius: 0;
        border: none;
        padding: 0;
        z-index: 150;
    }

    .nav-menu.active {
        transform: translateY(0);
    }

    .nav-links {
        flex-direction: column;
        align-items: center;
        gap: 30px;
        margin-right: 0;
    }

    .nav-item {
        font-size: 24px;
        font-weight: 700;
    }

    /* Process Pipeline - Vertical Mobile */
    .process-pipeline {
        flex-direction: column;
        gap: 40px;
        padding-left: 0;
        align-items: flex-start;
    }

    .process-pipeline::before {
        width: 2px;
        height: 100%;
        left: 15px;
        top: 0;
        transform: none;
        background: linear-gradient(180deg,
                rgba(255, 255, 255, 0.05) 0%,
                var(--accent-secondary) 50%,
                rgba(255, 255, 255, 0.05) 100%);
    }

    .pipeline-card {
        margin-left: 40px;
        /* Push card right */
        width: calc(100% - 40px);
    }

    .pipeline-connector {
        display: none;
        /* Hide horizontal connectors */
    }

    .pipeline-dot {
        left: -32px;
        /* 40px margin - half dot (6) - line width correction? */
        /* If card is 40px from left. Line is at 15px.
           Diff is 25px.
           Dot (12px) center should be at -25px.
           So left: -25px - 6px = -31px. */
    }

    /* Typography Adjustments */
    .token-giant-text {
        font-size: 80px;
        margin-bottom: 10px;
    }

    .sector-type {
        font-size: 40px;
    }

    .hero-title {
        font-size: 50px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}

/* ========================================
   Animations & Responsive
   ======================================== */
.fade-in-section {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in-section.visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 991px) {

    .nav-links,
    .nav-buttons .btn-outline {
        display: none;
    }

    .mobile-toggle {
        display: block;
    }

    .nav-menu {
        padding: 10px;
        border-radius: 12px;
    }

    .hero-title {
        font-size: 50px;
    }

    .hero-stats {
        flex-direction: column;
        width: 100%;
        gap: 20px;
    }

    .stat-divider {
        display: none;
    }

    .split-layout {
        grid-template-columns: 1fr;
    }

    .visual-card-stack {
        height: 300px;
        margin-top: 40px;
    }
}

/* ========================================
   NEW FUTURISTIC SECTIONS
   ======================================== */

/* Section 2: Ecosystem - Kinetic Typography */
.ecosystem-section {
    position: relative;
    padding-top: 100px;
    padding-bottom: 50px;
}

.eco-glow-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(124, 58, 237, 0.05) 0%, transparent 70%);
    z-index: 0;
    pointer-events: none;
}

/* Kinetic List Container */
.kinetic-list {
    display: flex;
    flex-direction: column;
    margin-top: 60px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 2;
}

/* Individual Kinetic Row */
.kinetic-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 30px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.19, 1, 0.22, 1);
    position: relative;
    overflow: hidden;
}

/* Hover Effect: Digital Scan */
.kinetic-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: var(--accent-secondary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
    z-index: 2;
}

.kinetic-item:hover::after {
    transform: scaleX(1);
    box-shadow: 0 0 10px var(--accent-secondary);
}

.kinetic-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(0, 217, 255, 0.03) 0%, transparent 100%);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
    z-index: 0;
}

.kinetic-item:hover::before {
    transform: translateX(0);
}

/* Number Index (01, 02...) */
.kinetic-num {
    font-family: 'Space Mono', monospace;
    font-size: 18px;
    color: var(--accent-secondary);
    /* Solid Cyan by default */
    opacity: 0.8;
    /* Higher visibility */
    width: 60px;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
    text-shadow: 0 0 10px rgba(0, 217, 255, 0.3);
}

.kinetic-item:hover .kinetic-num {
    opacity: 1;
    color: #fff;
    text-shadow: 0 0 15px var(--accent-secondary);
}

/* Main Huge Title */
.kinetic-title {
    flex: 1;
    font-family: var(--font-heading);
    font-size: clamp(40px, 5vw, 70px);
    font-weight: 800;
    text-transform: uppercase;
    color: var(--text-white);
    /* Solid White by default - No more Outline */
    -webkit-text-stroke: 0;
    letter-spacing: -2px;
    transition: all 0.4s ease;
    position: relative;
    z-index: 1;
    line-height: 1;
    opacity: 0.9;
}

.kinetic-item:hover .kinetic-title {
    color: #fff;
    text-shadow: 0 0 20px rgba(124, 58, 237, 0.5);
    /* Purple Glow on Hover */
    letter-spacing: 0px;
    transform: translateX(10px);
}

/* Tech Decor / Description */
.kinetic-meta {
    display: flex;
    align-items: center;
    gap: 20px;
    position: relative;
    z-index: 1;
}

.kinetic-tag {
    font-family: 'Space Mono', monospace;
    font-size: 12px;
    color: var(--accent-primary);
    background: rgba(124, 58, 237, 0.1);
    border: 1px solid rgba(124, 58, 237, 0.2);
    /* Added border */
    padding: 4px 10px;
    border-radius: 4px;
    opacity: 0.8;
    /* Visible by default */
    transform: translateX(0);
    transition: all 0.3s ease;
}

.kinetic-item:hover .kinetic-tag {
    opacity: 1;
    background: rgba(124, 58, 237, 0.2);
}

.kinetic-desc {
    font-family: var(--font-body);
    font-size: 15px;
    /* Slightly larger */
    color: #e2e8f0;
    /* Brighter grey */
    max-width: 250px;
    text-align: right;
    opacity: 0.9;
    /* High visibility */
    transition: all 0.3s ease;
}

.kinetic-item:hover .kinetic-desc {
    opacity: 1;
    color: #fff;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

/* Status Dot */
.kinetic-status {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--text-muted);
    transition: all 0.3s ease;
}

.kinetic-item:hover .kinetic-status {
    background: var(--accent-secondary);
    box-shadow: 0 0 8px var(--accent-secondary), 0 0 16px var(--accent-secondary);
}

/* Responsive */
@media (max-width: 768px) {
    .kinetic-item {
        flex-wrap: wrap;
    }

    .kinetic-num {
        display: none;
    }

    .kinetic-desc {
        text-align: left;
        max-width: 100%;
        margin-top: 10px;
        font-size: 13px;
        padding-left: 0;
    }

    .kinetic-meta {
        width: 100%;
        justify-content: space-between;
        margin-top: 10px;
    }
}

/* Section 3: Sector Nexus - Big Brand Layout */
.sector-nexus {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 60px;
}

.sector-pane {
    position: relative;
    background: rgba(255, 255, 255, 0.03);
    /* Lighter Glass */
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    /* Modern rounded corners */
    aspect-ratio: 16/9;
    display: flex;
    flex-direction: column;
    /* Stack content */
    align-items: center;
    justify-content: center;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
    cursor: pointer;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

/* Background Hover Gradient */
.sector-pane::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(124, 58, 237, 0.25), transparent 70%);
    /* Stronger Purple Glow */
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 0;
}

.sector-bg-icon {
    position: absolute;
    right: -20px;
    bottom: -20px;
    font-size: 150px;
    opacity: 0.05;
    color: #fff;
    transform: rotate(-15deg);
    transition: all 0.5s ease;
    z-index: 0;
    pointer-events: none;
}

.sector-pane:hover {
    border-color: var(--accent-secondary);
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.sector-pane:hover::before {
    opacity: 1;
}

.sector-pane:hover .sector-bg-icon {
    opacity: 0.15;
    transform: rotate(0deg) scale(1.1);
    color: var(--accent-secondary);
}

/* Massive Type */
.sector-type {
    font-family: var(--font-heading);
    font-size: clamp(32px, 5vw, 60px);
    /* Slightly smaller for mobile fit */
    font-weight: 800;
    color: var(--text-white);
    /* Solid White by Default */
    text-transform: uppercase;
    position: relative;
    z-index: 1;
    transition: all 0.5s ease;
    letter-spacing: -1px;
    text-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
    /* Shadow for contrast */
    -webkit-text-stroke: 0;
}

.sector-pane:hover .sector-type {
    color: #fff;
    text-shadow: 0 0 30px rgba(0, 217, 255, 0.6);
    transform: translateY(-10px);
    letter-spacing: 1px;
}

/* Technical HUD Overlay */
.sector-hud {
    position: relative;
    /* Not absolute anymore, stacks below title */
    margin-top: 10px;
    text-align: center;
    opacity: 0.7;
    /* Visible by default */
    transform: translateY(0);
    transition: all 0.4s ease;
    z-index: 2;
}

.sector-pane:hover .sector-hud {
    opacity: 1;
}

.hud-label {
    font-family: 'Space Mono', monospace;
    font-size: 11px;
    color: var(--accent-secondary);
    display: block;
    margin-bottom: 4px;
    letter-spacing: 2px;
    text-shadow: 0 0 5px rgba(0, 0, 0, 0.8);
}

.hud-val {
    font-family: var(--font-body);
    font-size: 13px;
    color: #cbd5e1;
    font-weight: 500;
}

/* Individual Pane Colors (Optional tweaks) */
.sector-pane:nth-child(2):hover .sector-type {
    text-shadow: 0 0 40px rgba(124, 58, 237, 0.3);
}

/* ========================================
   INDUSTRY LINKED ANIMATIONS (ALWAYS ON)
   ======================================== */

/* 1. Crypto: Digital Rain (Falling Coins) */
.sector-pane.crypto-pane .anim-crypto-rain {
    position: absolute;
    inset: 0;
    overflow: hidden;
    opacity: 1;
    /* Always visible */
    z-index: 0;
    pointer-events: none;
}

.falling-coin {
    position: absolute;
    top: -50px;
    font-size: 24px;
    color: var(--accent-secondary);
    /* Theme Cyan */
    opacity: 0;
    filter: drop-shadow(0 0 5px var(--accent-secondary));
    animation: coinFall 4s linear infinite;
}

/* Randomized Coin Positions & Speeds */
.falling-coin:nth-child(1) {
    left: 15%;
    animation-duration: 3.5s;
    animation-delay: 0s;
    font-size: 18px;
}

.falling-coin:nth-child(2) {
    left: 35%;
    animation-duration: 4.5s;
    animation-delay: 1.5s;
    font-size: 22px;
    opacity: 0.5;
}

.falling-coin:nth-child(3) {
    left: 55%;
    animation-duration: 3s;
    animation-delay: 2.5s;
    font-size: 28px;
}

.falling-coin:nth-child(4) {
    left: 75%;
    animation-duration: 4s;
    animation-delay: 0.5s;
    font-size: 20px;
}

.falling-coin:nth-child(5) {
    left: 90%;
    animation-duration: 5s;
    animation-delay: 1s;
    font-size: 24px;
}

.sector-pane.crypto-pane:hover .falling-coin {
    filter: drop-shadow(0 0 10px #fff);
    /* Brighter on hover */
}

@keyframes coinFall {
    0% {
        top: -50px;
        transform: rotate(0deg) scale(1);
        opacity: 0;
    }

    10% {
        opacity: 0.8;
        transform: rotate(45deg) scale(1.1);
    }

    50% {
        opacity: 0.8;
        transform: rotate(180deg) scale(1.2);
        /* Glint/Pulse effect */
        filter: drop-shadow(0 0 15px var(--accent-secondary));
    }

    80% {
        opacity: 0.6;
        transform: rotate(300deg) scale(1);
    }

    100% {
        top: 120%;
        transform: rotate(360deg) scale(0.8);
        opacity: 0;
    }
}

.falling-coin {
    color: var(--accent-secondary);
    position: absolute;
    top: -50px;
    opacity: 0;
    animation: coinFall 4s linear infinite;
    text-shadow: 0 0 10px var(--accent-secondary);
    /* Basic Neon Glow */
    filter: drop-shadow(0 0 10px #fff);
    /* Permanent Super Glow */
}

/* 2. Forex: Live Graph (Continuous Scroll) */
.sector-pane.forex-pane .anim-forex-chart {
    position: absolute;
    bottom: 20px;
    left: 0;
    width: 100%;
    height: 50%;
    overflow: hidden;
    z-index: 0;
    pointer-events: none;
    mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
    opacity: 1;
    /* Permanent Hi-Vis */
    transition: opacity 0.5s ease;
}

.forex-svg {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 200%;
    /* Double width for seamless scroll */
    height: 100%;
    overflow: visible;
    animation: forexScroll 8s linear infinite;
    /* Speed up */
}

.chart-line {
    fill: none;
    stroke: var(--accent-secondary);
    stroke-width: 2.5;
    /* Permanent Thickness */
    filter: drop-shadow(0 0 10px #fff);
    /* Permanent White Glow */
    vector-effect: non-scaling-stroke;
}

.sector-pane.forex-pane:hover .anim-forex-chart {
    opacity: 1;
    /* Bright on hover */
}

.sector-pane.forex-pane:hover .chart-line {
    filter: drop-shadow(0 0 10px #fff);
    stroke-width: 2.5;
}

@keyframes forexScroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* 3. Commodities: Trading Bar Graph */
.sector-pane.comm-pane .anim-refinery-drawing {
    position: absolute;
    bottom: -2px;
    left: 20px;
    right: 20px;
    height: 60%;
    overflow: hidden;
    z-index: 0;
    pointer-events: none;
    display: flex;
    align-items: flex-end;
}

.trading-bars {
    width: 100%;
    height: 100%;
}

.bar {
    fill: var(--accent-secondary);
    opacity: 0.6;
    transform-box: fill-box;
    transform-origin: bottom;
    animation: fluctuate 2s ease-in-out infinite alternate;
}

/* Randomize delays for chaotic market effect */
.bar:nth-child(1) {
    animation-delay: 0.1s;
    animation-duration: 1.5s;
}

.bar:nth-child(2) {
    animation-delay: 0.3s;
    animation-duration: 2.2s;
}

.bar:nth-child(3) {
    animation-delay: 0.5s;
    animation-duration: 1.8s;
}

.bar:nth-child(4) {
    animation-delay: 0.2s;
    animation-duration: 2.5s;
}

.bar:nth-child(5) {
    animation-delay: 0.7s;
    animation-duration: 1.3s;
}

.bar:nth-child(6) {
    animation-delay: 0.4s;
    animation-duration: 2.0s;
}

.bar:nth-child(7) {
    animation-delay: 0.6s;
    animation-duration: 1.7s;
}

.bar:nth-child(8) {
    animation-delay: 0.2s;
    animation-duration: 2.3s;
}

.bar:nth-child(9) {
    animation-delay: 0.5s;
    animation-duration: 1.9s;
}

@keyframes fluctuate {
    0% {
        transform: scaleY(0.4);
        opacity: 0.4;
        fill: var(--accent-secondary);
    }

    50% {
        fill: var(--accent-primary);
    }

    100% {
        transform: scaleY(1.0);
        opacity: 0.9;
        fill: var(--accent-secondary);
    }
}

.sector-pane.comm-pane:hover .bar {
    filter: drop-shadow(0 0 8px var(--accent-secondary));
}

/* 4. Real Estate: City Skyline (Line Drawing) */
.sector-pane.estate-pane .anim-city-skyline {
    position: absolute;
    bottom: -2px;
    /* Slight overlap with border */
    left: 20px;
    /* Indent slightly */
    right: 20px;
    height: 60%;
    /* Taller for visibility */
    overflow: hidden;
    z-index: 0;
    pointer-events: none;
    display: flex;
    align-items: flex-end;
    /* Force bottom alignment */
}

.drawing-city-svg {
    width: 100%;
    height: 100%;
}

.city-draw-path {
    fill: none;
    stroke: var(--accent-secondary);
    stroke-width: 1.5;
    /* Slightly thinner for elegance with details */
    stroke-dasharray: 1000;
    /* Increased for longer path */
    stroke-dashoffset: 1000;
    filter: drop-shadow(0 0 5px var(--accent-secondary));
    animation: drawCity 15s linear infinite;
    /* Increased to 15s & Linear for smoothness */
}

.sector-pane.estate-pane:hover .city-draw-path {
    filter: drop-shadow(0 0 10px #fff);
    animation-duration: 8s;
    /* Slight speed up on hover but still smooth */
}

@keyframes drawCity {
    0% {
        stroke-dashoffset: 1000;
    }

    100% {
        stroke-dashoffset: -1000;
    }
}

/* Responsive fixes for icons */
@media (max-width: 900px) {
    .sector-pane {
        overflow: hidden;
        /* Keep animations inside */
    }

    .anim-forex-chart {
        height: 100% !important;
        opacity: 0.2 !important;
        /* Always visible on mobile slightly */
    }

    .chart-line {
        stroke-dashoffset: 0 !important;
        /* Static line on mobile */
    }
}

/* Responsive */
@media (max-width: 900px) {
    .sector-nexus {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .sector-pane {
        aspect-ratio: auto;
        min-height: 140px;
        /* Consistent height on mobile */
        padding: 20px;
        align-items: flex-start;
        /* Left align on mobile */
        padding-left: 30px;
    }

    .sector-type {
        font-size: 36px;
        text-align: left;
    }

    .sector-hud {
        margin-top: 5px;
        text-align: left;
    }

    .sector-bg-icon {
        font-size: 100px;
        /* Smaller icon on mobile */
        right: -10px;
        bottom: -10px;
    }
}

/* Section 4: Token Matrix - System Core */
.token-section {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
}

.token-matrix {
    position: relative;
    z-index: 2;
    text-align: center;
}

/* Giant "ALBA" Text */
.token-giant-text {
    font-family: var(--font-heading);
    font-size: clamp(100px, 20vw, 250px);
    font-weight: 900;
    line-height: 0.8;
    color: transparent;
    -webkit-text-stroke: 2px rgba(255, 255, 255, 0.15);
    /* More visible stroke */
    letter-spacing: -5px;
    margin-bottom: 20px;
    position: relative;
    z-index: 0;
    pointer-events: none;
    animation: pulseGiant 3s ease-in-out infinite;
    /* Faster pulse */
}

@keyframes pulseGiant {

    0%,
    100% {
        opacity: 0.4;
        text-shadow: 0 0 0px transparent;
    }

    50% {
        opacity: 0.8;
        text-shadow: 0 0 30px rgba(124, 58, 237, 0.2);
    }
}

/* System Status Label */
.token-status-label {
    font-family: 'Space Mono', monospace;
    color: var(--accent-secondary);
    font-size: 14px;
    letter-spacing: 4px;
    margin-bottom: 40px;
    display: block;
    text-transform: uppercase;
    text-shadow: 0 0 10px rgba(0, 217, 255, 0.5);
}

/* Specs Grid */
.token-specs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin: 60px 0;
    position: relative;
    z-index: 2;
}

.spec-card {
    background: rgba(10, 10, 14, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    /* Full border */
    padding: 30px;
    text-align: left;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

/* Tech Corner Brackets (Visual only) */
.spec-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 1px solid transparent;
    border-top-color: var(--accent-secondary);
    border-bottom-color: var(--accent-secondary);
    transform: scaleX(0);
    transition: transform 0.4s ease;
    pointer-events: none;
}

.spec-card:hover::after {
    transform: scaleX(1);
}

.spec-card:hover {
    background: rgba(255, 255, 255, 0.03);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.spec-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 2px;
    background: var(--accent-secondary);
    transition: width 0.4s ease;
}

.spec-card:hover {
    background: rgba(255, 255, 255, 0.02);
    transform: translateY(-5px);
}

.spec-card:hover::before {
    width: 100%;
}

.spec-code {
    font-family: 'Space Mono', monospace;
    font-size: 12px;
    color: var(--text-muted);
    display: block;
    margin-bottom: 15px;
    opacity: 0.6;
}

.spec-card:hover .spec-code {
    color: var(--accent-secondary);
    opacity: 1;
}

.spec-title {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 10px;
}

.spec-card:hover .spec-title {
    color: var(--text-white);
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.3);
}

.spec-desc {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
}

/* Responsive */
@media (max-width: 900px) {
    .token-specs {
        grid-template-columns: 1fr;
    }

    .token-giant-text {
        font-size: 80px;
        -webkit-text-stroke: 1px rgba(255, 255, 255, 0.2);
    }
}

/* Section 3: Trading Sectors */
.sectors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.sector-card {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.01) 100%);
    border: 1px solid var(--border-light);
    border-radius: 20px;
    padding: 40px 30px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

/* Neon Borders (Pseudo-elements for shine) */
.sector-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent-secondary), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.sector-card:hover::before {
    transform: translateX(100%);
}

.sector-card:hover {
    box-shadow: 0 0 20px rgba(0, 217, 255, 0.15);
    border-color: rgba(0, 217, 255, 0.3);
    transform: translateY(-5px);
}

.sector-icon {
    width: 60px;
    height: 60px;
    background: rgba(0, 217, 255, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--accent-secondary);
    margin-bottom: 25px;
    border: 1px solid rgba(0, 217, 255, 0.2);
}

.sector-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 12px;
}

.sector-desc {
    color: var(--text-muted);
    font-size: 15px;
    line-height: 1.6;
}

/* Section 4: ALBA Token */
.token-section {
    position: relative;
    overflow: hidden;
    /* Special background for token section */
    background: radial-gradient(circle at center, rgba(124, 58, 237, 0.1) 0%, transparent 70%);
}

.token-highlight {
    font-weight: 900;
    color: var(--accent-primary);
    text-shadow: 0 0 15px rgba(124, 58, 237, 0.6);
}

.token-features {
    display: flex;
    gap: 40px;
    justify-content: center;
    flex-wrap: wrap;
    margin: 50px 0;
}

.token-feature {
    background: rgba(255, 255, 255, 0.03);
    padding: 20px 30px;
    border-radius: 100px;
    border: 1px solid var(--border-light);
    display: flex;
    align-items: center;
    gap: 15px;
    transition: 0.3s;
}

.token-feature:hover {
    background: rgba(124, 58, 237, 0.1);
    border-color: var(--accent-primary);
}

.token-feature i {
    color: var(--accent-primary);
    font-size: 20px;
}

.coming-soon-badge {
    background: linear-gradient(90deg, #ff0055, #ff00aa);
    color: white;
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    box-shadow: 0 0 20px rgba(255, 0, 85, 0.4);
    display: inline-block;
    margin-bottom: 20px;
    animation: pulseBadge 2s infinite;
}

@keyframes pulseBadge {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 0, 85, 0.4);
    }

    70% {
        transform: scale(1.05);
        box-shadow: 0 0 0 10px rgba(255, 0, 85, 0);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 0, 85, 0);
    }
}

/* Section 5: Process Pipeline - Digital Workflow */
.process-section {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.process-pipeline {
    display: flex;
    justify-content: space-between;
    position: relative;
    margin-top: 80px;
    gap: 30px;
}

/* Connecting Data Line */
.process-pipeline::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg,
            rgba(255, 255, 255, 0.05) 0%,
            var(--accent-secondary) 50%,
            rgba(255, 255, 255, 0.05) 100%);
    transform: translateY(-50%);
    z-index: 0;
    opacity: 0.3;
}

.pipeline-card {
    flex: 1;
    background: rgba(5, 5, 8, 0.8);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 40px 30px;
    position: relative;
    z-index: 1;
    transition: all 0.4s ease;
    cursor: default;
}

.pipeline-card:hover {
    transform: translateY(-15px);
    border-color: var(--accent-secondary);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

/* Step Number Label */
.pipeline-step {
    font-family: 'Space Mono', monospace;
    font-size: 14px;
    color: var(--accent-primary);
    margin-bottom: 20px;
    display: block;
    opacity: 0.8;
}

.pipeline-card:hover .pipeline-step {
    color: var(--accent-secondary);
    text-shadow: 0 0 10px var(--accent-secondary);
    opacity: 1;
}

.pipeline-title {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 15px;
}

.pipeline-desc {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.6;
}

/* Active State Dot (Visual Connector) */
.pipeline-dot {
    position: absolute;
    top: 50%;
    left: -6px;
    width: 12px;
    height: 12px;
    background: var(--bg-black);
    border: 2px solid var(--text-muted);
    border-radius: 50%;
    transform: translateY(-50%);
    z-index: 2;
    transition: all 0.3s ease;
}

.pipeline-card:hover .pipeline-dot {
    border-color: var(--accent-secondary);
    background: var(--accent-secondary);
    box-shadow: 0 0 15px var(--accent-secondary);
}

/* Responsive */
@media (max-width: 900px) {
    .process-pipeline {
        flex-direction: column;
        gap: 40px;
    }

    .process-pipeline::before {
        width: 1px;
        height: 100%;
        left: 20px;
        top: 0;
        transform: none;
    }

    .pipeline-card {
        margin-left: 50px;
        /* Space for line */
    }

    .pipeline-dot {
        top: 50%;
        left: -36px;
        /* Align with vertical line */
    }
}

/* Mobile Adjustments for new sections */
@media (max-width: 768px) {
    .about-stats-grid {
        grid-template-columns: 1fr;
    }

    .token-features {
        flex-direction: column;
        align-items: stretch;
        gap: 20px;
    }

    .token-feature {
        justify-content: center;
    }

    .process-steps {
        flex-direction: column;
        gap: 50px;
    }

    .process-steps::before {
        display: none;
    }
}

/* ========================================
   Mobile Menu Fixes (Right Slide & Modern UI)
   ======================================== */
@media (max-width: 991px) {

    /* Mobile Toggle Button */
    .mobile-toggle {
        display: block !important;
        z-index: 200020;
        cursor: pointer;
        background: none;
        border: none;
        color: white;
        font-size: 32px;
        position: relative;
    }

    /* Force Links Visible */
    .nav-links {
        display: flex !important;
        flex-direction: column;
        gap: 30px;
        align-items: center;
        width: 100%;
        margin: 0 !important;
    }

    /* Mobile Menu Container - Right Slide */
    .nav-menu {
        position: fixed !important;
        top: 0 !important;
        right: 0 !important;
        /* Anchor to Right */
        left: unset !important;
        /* FORCE UNSET */
        width: 100vw !important;
        height: 100vh !important;
        background: rgba(5, 5, 8, 0.98) !important;
        backdrop-filter: blur(30px) !important;
        -webkit-backdrop-filter: blur(30px) !important;

        display: flex !important;
        flex-direction: column !important;
        justify-content: center !important;
        align-items: center !important;
        padding: 40px !important;
        border: none !important;
        border-radius: 0 !important;

        /* Hiding Logic: Start completely off-screen to the RIGHT */
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transform: translateX(100%);
        transition: all 0.5s cubic-bezier(0.77, 0, 0.175, 1);
        z-index: 200000 !important;
        margin: 0 !important;
    }

    /* Active State: Slide Left into view (0) */
    .nav-menu.active {
        opacity: 1 !important;
        visibility: visible !important;
        pointer-events: all !important;
        transform: translateX(0) !important;
    }

    /* Close Button - Modern */
    .nav-menu .mobile-toggle {
        position: absolute;
        top: 30px;
        right: 30px;
        width: 50px;
        height: 50px;
        border-radius: 50%;
        border: 1px solid rgba(255, 255, 255, 0.1);
        background: rgba(255, 255, 255, 0.05);
        backdrop-filter: blur(10px);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 24px;
        transition: all 0.3s ease;
    }

    .nav-menu .mobile-toggle:hover {
        transform: rotate(90deg);
        border-color: var(--accent-secondary);
        color: var(--accent-secondary);
        box-shadow: 0 0 20px rgba(0, 217, 255, 0.3);
        background: rgba(0, 217, 255, 0.1);
    }

    /* Nav Items Styling */
    .nav-item {
        font-size: 32px !important;
        font-weight: 800 !important;
        color: var(--text-muted) !important;
        display: block !important;
    }

    .nav-item:hover {
        color: var(--accent-secondary) !important;
        transform: scale(1.05);
    }
}

/* ========================================
   Footer Responsiveness
   ======================================== */
@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr !important;
        gap: 40px;
    }

    .footer-brand,
    .footer-newsletter {
        text-align: center;
    }

    .footer-links {
        align-items: center;
        /* Center links on mobile */
    }

    .footer-col-header {
        text-align: center;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .footer-socials {
        justify-content: center;
        margin-top: 20px;
    }
}

/* ========================================
   DEFINITIVE MOBILE SLIDE FIX (RIGHT -> LEFT)
   ======================================== */
@media (max-width: 991px) {

    /* Ensure Menu Starts Hidden off to the RIGHT */
    .nav-menu {
        left: auto !important;
        right: 0 !important;
        transform: translateX(100%) !important;
        /* Move 100% Right */
        transition: transform 0.4s ease-out !important;
    }

    /* Animate to Center (0) */
    .nav-menu.active {
        transform: translateX(0) !important;
    }
}


/* ========================================
   MASTER MOBILE MENU SUITE (FINAL V4)
   ======================================== */
@media (max-width: 991px) {

    /* 1. Slide Direction & Animation Smoothness (In & Out) */
    .nav-menu {
        position: fixed !important;
        top: 0 !important;
        right: 0 !important;
        left: auto !important;
        width: 100vw !important;
        height: 100vh !important;

        /* Glass Effect */
        background: rgba(5, 5, 8, 0.96) !important;
        backdrop-filter: blur(25px) !important;
        -webkit-backdrop-filter: blur(25px) !important;

        /* Flex Layout */
        display: flex !important;
        flex-direction: column !important;
        justify-content: center !important;
        align-items: center !important;
        padding: 40px !important;
        margin: 0 !important;
        z-index: 200000 !important;

        /* HIDDEN STATE (Start) */
        transform: translateX(100%) !important;
        /* Off-screen Right */
        opacity: 0;
        visibility: hidden;
        pointer-events: none;

        /* SMOOTH TRANSITION (Both Ways) */
        transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1),
            opacity 0.6s ease,
            visibility 0.6s !important;
    }

    /* ACTIVE STATE (Open) */
    .nav-menu.active {
        transform: translateX(0) !important;
        /* Slide to Center */
        opacity: 1;
        visibility: visible;
        pointer-events: all;
    }

    /* 2. Modern Close Button - High-Tech Circular UI */
    .nav-menu .mobile-toggle {
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        position: absolute !important;
        top: 35px !important;
        right: 35px !important;

        width: 48px !important;
        height: 48px !important;
        border-radius: 50% !important;

        /* Glassy Button */
        background: rgba(255, 255, 255, 0.05) !important;
        border: 1px solid rgba(255, 255, 255, 0.1) !important;
        backdrop-filter: blur(10px);

        color: var(--text-white) !important;
        font-size: 24px !important;
        cursor: pointer !important;
        z-index: 200021 !important;

        /* Hover Animation */
        transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
    }

    .nav-menu .mobile-toggle:hover {
        transform: rotate(90deg) scale(1.1);
        background: rgba(0, 217, 255, 0.15) !important;
        border-color: var(--accent-secondary) !important;
        color: var(--accent-secondary) !important;
        box-shadow: 0 0 20px rgba(0, 217, 255, 0.4);
    }

    /* Ensure icon is centered */
    .nav-menu .mobile-toggle i {
        line-height: 1;
    }

    /* 3. Nav Items Typography */
    .nav-item {
        font-size: 36px !important;
        font-weight: 800 !important;
        letter-spacing: -1px !important;
        color: rgba(255, 255, 255, 0.5) !important;
        transition: all 0.3s ease !important;
    }

    .nav-item:hover {
        color: var(--text-white) !important;
        transform: translateX(10px);
    }
}


/* ========================================
   TOKEN SECTION UTILITIES
   ======================================== */
.section-grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.token-allocation {
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
}

.allocation-title {
    font-size: 24px;
    margin-bottom: 30px;
}

.alloc-item {
    margin-bottom: 25px;
}

.alloc-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
}

.alloc-label {
    font-family: 'Space Mono', monospace;
    font-size: 14px;
    color: var(--text-white);
}

.alloc-val {
    font-weight: 700;
}

.alloc-bar-track {
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
    overflow: hidden;
    position: relative;
}

.alloc-bar-fill {
    height: 100%;
}

/* Colors & Highlights */
.highlight-primary {
    color: var(--accent-primary) !important;
}

.highlight-secondary {
    color: var(--accent-secondary) !important;
}

.bg-primary {
    background: var(--accent-primary);
    box-shadow: 0 0 10px var(--accent-primary);
}

.bg-secondary {
    background: var(--accent-secondary);
    box-shadow: 0 0 10px var(--accent-secondary);
}

.bg-white {
    background: #ffffff;
}

.bg-muted {
    background: var(--text-muted);
}

.opacity-50 {
    opacity: 0.5;
}

/* Responsive Grid */
@media (max-width: 991px) {
    .section-grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .section-grid-4 {
        grid-template-columns: 1fr;
    }

    .alloc-label {
        font-size: 12px;
    }
}


/* ========================================
   ENHANCED TOKEN ANIMATIONS (ATTRACIVE UPGRADE)
   ======================================== */

/* 1. Bar Fill Animation */
@keyframes fillBar {
    from {
        width: 0;
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.alloc-bar-fill {
    animation: fillBar 1.5s cubic-bezier(0.22, 1, 0.36, 1) forwards;
    transform-origin: left;
    box-shadow: 0 0 15px currentColor;
    /* Dynamic Glow */
    position: relative;
    overflow: hidden;
}

/* Shimmer Effect on Bar */
.alloc-bar-fill::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transform: translateX(-100%);
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    100% {
        transform: translateX(100%);
    }
}

/* 2. Item Hover Effects */
.alloc-item {
    transition: all 0.3s ease;
    padding: 10px 15px;
    border-radius: 8px;
    border: 1px solid transparent;
}

.alloc-item:hover {
    background: rgba(255, 255, 255, 0.03);
    border-color: rgba(255, 255, 255, 0.1);
    transform: translateX(10px);
}

.alloc-item:hover .alloc-val {
    transform: scale(1.1);
    text-shadow: 0 0 10px currentColor;
}

/* 3. Text Upgrades */
.alloc-val {
    transition: all 0.3s ease;
    font-family: 'Space Mono', monospace;
    font-size: 16px;
}

/* 4. Track Styling */
.alloc-bar-track {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.5);
}

/* 5. Giant Text Animation Enhancement */
.token-giant-text {
    animation: floatPulse 4s ease-in-out infinite;
    background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, 0.1));
    -webkit-background-clip: text;
    /* Modern touch */
}

@keyframes floatPulse {

    0%,
    100% {
        transform: translateY(0) scale(1);
        opacity: 0.3;
    }

    50% {
        transform: translateY(-10px) scale(1.02);
        opacity: 0.6;
    }
}

/* 6. Card Enhancements */
.spec-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.01) 100%);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.spec-card:hover {
    border-color: var(--accent-secondary);
    box-shadow: 0 10px 30px rgba(0, 217, 255, 0.15);
    transform: translateY(-8px) rotateX(2deg);
}

.spec-title.highlight-primary {
    text-shadow: 0 0 20px rgba(124, 58, 237, 0.6);
}

.spec-title.highlight-secondary {
    text-shadow: 0 0 20px rgba(0, 217, 255, 0.6);
}


/* ========================================
   DEFINITIVE FOOTER RESPONSIVENESS (APPENDED FIX)
   ======================================== */
@media (max-width: 768px) {
    .footer-section {
        padding: 60px 0 30px !important;
    }

    .footer-grid {
        grid-template-columns: 1fr !important;
        gap: 50px !important;
        text-align: center;
    }

    .footer-brand {
        margin-bottom: 20px;
        padding-bottom: 30px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }

    .footer-brand h2 {
        font-size: 32px;
        margin-bottom: 15px;
    }

    .footer-brand p {
        margin: 0 auto 20px;
        max-width: 300px;
    }

    /* Fix Social Icons */
    .footer-socials {
        display: flex;
        justify-content: center !important;
        width: 100%;
        margin-top: 15px;
        gap: 15px;
    }

    .footer-col-header {
        text-align: center;
        margin-bottom: 25px;
        color: var(--accent-secondary);
        font-size: 14px;
        letter-spacing: 2px;
    }

    .footer-links {
        display: flex;
        flex-direction: column;
        align-items: center !important;
        width: 100%;
    }

    .footer-link {
        font-size: 16px;
        padding: 8px 0;
        width: 100%;
    }

    .footer-newsletter {
        margin-top: 20px;
        border-top: 1px solid rgba(255, 255, 255, 0.05);
        padding-top: 40px;
    }

    .newsletter-form {
        display: flex;
        flex-direction: column;
        gap: 15px;
        max-width: 300px;
        margin: 0 auto;
    }

    .newsletter-input {
        width: 100%;
        text-align: center;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
        margin-top: 50px;
        padding-top: 30px;
    }
}


/* ========================================
   FIX: ALBA GIANT TEXT SHADING ANIMATION
   ======================================== */
.token-giant-text {
    /* Create a moving gradient shader effect */
    background: linear-gradient(110deg,
            rgba(255, 255, 255, 0.05) 0%,
            rgba(0, 217, 255, 0.4) 30%,
            rgba(124, 58, 237, 0.6) 50%,
            rgba(0, 217, 255, 0.4) 70%,
            rgba(255, 255, 255, 0.05) 100%) !important;

    background-size: 200% auto !important;
    -webkit-background-clip: text !important;
    background-clip: text !important;
    color: transparent !important;

    /* Ensure outline is visible but subtle */
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.15) !important;

    /* Simultaneous Float and Shine animations */
    animation: textShine 4s linear infinite, floatPulse 6s ease-in-out infinite !important;
    opacity: 1 !important;
}

@keyframes textShine {
    to {
        background-position: 200% center;
    }
}


/* ========================================
   MODERN HERO TEXT ANIMATIONS
   ======================================== */
#dynamic-text {
    display: inline-block;
    transition: all 0.5s cubic-bezier(0.2, 0, 0.2, 1);
    opacity: 1;
    transform: translateY(0);

    /* Request: Less Glow, More Professional */
    text-shadow: 0 0 15px rgba(0, 217, 255, 0.6);
    /* Reduced from heavy bloom */
    filter: drop-shadow(0 0 5px rgba(0, 217, 255, 0.3));
}

/* Slide Out: Move Up and Fade Out */
#dynamic-text.slide-out {
    opacity: 0;
    transform: translateY(-25px) scale(0.95);
    filter: blur(5px);
}

/* Slide In: Start from Bottom (Handled by removing slide-out + transition) */
/* Actually, to have a 'from bottom' entrance, we need a keyframe or a prep state. 
   With the JS set up, when we remove 'slide-out', it returns to default (0). 
   To make it come FROM the bottom, we temporarily add a 'prepared' class or use keyframes.
   Let's use a keyframe for the entrance class 'slide-in'.
*/

.slide-in {
    animation: slideUpFade 0.6s cubic-bezier(0.2, 0, 0.2, 1) forwards;
}

@keyframes slideUpFade {
    0% {
        opacity: 0;
        transform: translateY(25px) scale(0.95);
        filter: blur(5px);
    }

    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
        filter: blur(0);
    }
}


/* ========================================
   TYPEWRITER CURSOR EFFECT
   ======================================== */
#dynamic-text::after {
    content: '|';
    display: inline-block;
    margin-left: 5px;
    animation: blinkCursor 0.8s infinite;
    color: var(--accent-secondary);
    font-weight: 300;
}

@keyframes blinkCursor {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }
}


/* ========================================
   NAVBAR COMPONENT STYLES (Centering Overrides)
   ======================================== */
.nav-item {
    font-weight: 500;
    letter-spacing: -0.01em;
}

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    padding: 20px 40px;
    z-index: 100;
}

.nav-container {
    position: relative;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    justify-self: start;
    z-index: 2;
}

/* Only center on Desktop to avoid breaking mobile menu */
@media (min-width: 992px) {
    .nav-menu {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        z-index: 1;
    }
}

.mobile-toggle {
    justify-self: end;
    z-index: 2;
}


/* ========================================
   MOBILE BUTTON STACKING
   ======================================== */
@media (max-width: 768px) {
    .hero-actions {
        flex-direction: column;
        align-items: center;
        gap: 15px;
        width: 100%;
        max-width: 300px;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-actions .btn {
        width: 100%;
        justify-content: center;
    }
}


/* ========================================
   SUBPAGE STYLES (Sector Details)
   ======================================== */
.subpage-hero {
    padding: 160px 0 80px;
    position: relative;
    background: radial-gradient(circle at 50% 0%, rgba(0, 217, 255, 0.1), transparent 70%);
    overflow: hidden;
}

.subpage-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
}

.sector-stat-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin: 60px 0;
}

.stat-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-secondary);
}

.stat-value {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-primary);
    margin-bottom: 10px;
    display: block;
    font-family: 'Space Mono', monospace;
}

.stat-label {
    color: var(--text-muted);
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.content-block {
    margin-bottom: 80px;
}

.content-block h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--text-white);
}

.content-block p {
    color: var(--text-muted);
    line-height: 1.8;
    font-size: 1.1rem;
    margin-bottom: 20px;
}

@media (max-width: 768px) {
    .sector-stat-grid {
        grid-template-columns: 1fr;
    }
}


/* Fix button text wrapping */
.btn {
    white-space: nowrap;
}

/* ========================================
   MOBILE RESPONSIVENESS (Max-Width 768px for Tablets & Mobile)
   ======================================== */
@media screen and (max-width: 768px) {

    /* 1. Global Container & Padding Adjustments */
    .section-container,
    .nav-container,
    .hero-content {
        padding-left: 20px !important;
        padding-right: 20px !important;
        width: 100% !important;
    }

    .section {
        padding: 60px 0 !important;
        /* Reduced vertical padding */
    }

    /* 2. Navigation Bar */
    .navbar {
        padding: 15px 0 !important;
        background: rgba(5, 5, 8, 0.95) !important;
        /* Solid background on mobile */
    }

    .nav-menu.active {
        display: flex !important;
        /* Toggle class for JS */
        z-index: 1000;
    }

    .nav-menu {
        /* Mobile Dropdown Style */
        display: none;
        /* Hidden by default until toggled */
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        flex-direction: column;
        background: #050508;
        padding: 20px;
        border-bottom: 1px solid var(--border-light);
        border-radius: 0;
        width: 100vw;
    }

    .nav-links {
        flex-direction: column;
        gap: 20px;
        margin-right: 0;
        width: 100%;
        text-align: center;
    }

    .mobile-toggle {
        display: block !important;
        position: absolute;
        right: 20px;
        top: 50%;
        transform: translateY(-50%);
    }

    /* 3. Hero Section */
    .hero-section {
        padding-top: 140px !important;
        /* More space for fixed header */
        min-height: auto !important;
        /* Allow growing */
        padding-bottom: 60px;
    }

    .ring-container {
        width: 300px !important;
        height: 300px !important;
        max-width: 90vw !important;
    }

    .hero-title {
        font-size: 42px !important;
        /* Explicit smaller size */
        margin-bottom: 20px !important;
    }

    .hero-subtitle {
        font-size: 16px !important;
        margin-bottom: 30px !important;
    }

    .hero-stats {
        flex-direction: column;
        gap: 20px;
        padding: 20px !important;
        width: 100%;
    }

    .stat-divider {
        width: 100%;
        height: 1px;
    }

    /* 4. Token Section (Split Layout) */
    .token-feature-split {
        flex-direction: column !important;
        gap: 30px !important;
    }

    .token-visual-col {
        order: -1;
        /* Image on top */
        min-width: unset !important;
        width: 100% !important;
    }

    .token-stats-col {
        width: 100% !important;
    }

    .section-grid-2 {
        grid-template-columns: 1fr !important;
        /* Stack stats */
    }

    /* 5. Ecosystem & General Split Layouts */
    .split-layout {
        grid-template-columns: 1fr !important;
        gap: 40px !important;
    }

    .visual-card-stack {
        height: 300px;
        /* Reduced height */
        margin-top: 40px;
    }

    .visual-card {
        width: 90%;
        left: 50% !important;
        /* Center stack */
        transform: translateX(-50%) !important;
    }

    .card-1 {
        top: 0;
        z-index: 3;
    }

    .card-2 {
        top: 40px;
        z-index: 2;
        transform: translateX(-50%) scale(0.95);
    }

    .card-3 {
        top: 80px;
        z-index: 1;
        transform: translateX(-50%) scale(0.9);
    }

    /* 6. Footer */
    .footer-grid {
        grid-template-columns: 1fr !important;
        gap: 40px !important;
    }

    .newsletter-form {
        flex-direction: column;
        gap: 10px;
    }

    .newsletter-bttn {
        position: relative;
        right: auto;
        width: 100%;
    }

    /* 7. Typography Adjustments */
    .section-title {
        font-size: 32px !important;
    }
}

/* Extra Small Devices (Phones under 400px) */
@media screen and (max-width: 400px) {
    .hero-title {
        font-size: 36px !important;
    }

    .btn-lg {
        padding: 12px 20px !important;
        font-size: 14px !important;
        width: 100% !important;
    }
}