/* ==========================================================
   mmm27+ — Master Vibrant Multi-Color Web3 Design System
   Theme: Cyber-Cosmic & Multi-Spectrum Neon Web3
   Multi-Color Palette System:
   • Electric Cyan: #00f0ff / #38bdf8 (Glow: rgba(0, 240, 255, 0.45))
   • Neon Purple / Violet: #a855f7 / #8b5cf6 / #c084fc (Glow: rgba(168, 85, 247, 0.45))
   • Vivid Hot Pink / Rose: #ff2a85 / #ec4899 / #f43f5e (Glow: rgba(255, 42, 133, 0.45))
   • Sunset Amber / Gold: #f59e0b / #fbbf24 / #ff7a00 (Glow: rgba(245, 158, 11, 0.45))
   • Neon Emerald / Mint: #00ff87 / #10b981 / #34d399 (Glow: rgba(0, 255, 135, 0.45))
   • Holographic Rainbow: linear-gradient(135deg, #ff2a85 0%, #a855f7 25%, #00f0ff 50%, #00ff87 75%, #f59e0b 100%)
   • Deep Cosmic Obsidian: #020612 / #050e24 / #0b1938
   ========================================================== */

:root {
    /* Multi-Color Core Spectrum */
    --color-cyan: #00f0ff;
    --color-cyan-light: #70f7ff;
    --color-cyan-glow: rgba(0, 240, 255, 0.45);

    --color-purple: #a855f7;
    --color-purple-light: #c084fc;
    --color-purple-glow: rgba(168, 85, 247, 0.45);

    --color-pink: #ff2a85;
    --color-pink-light: #f472b6;
    --color-pink-glow: rgba(255, 42, 133, 0.45);

    --color-gold: #f59e0b;
    --color-gold-light: #fcd34d;
    --color-gold-glow: rgba(245, 158, 11, 0.45);

    --color-emerald: #00ff87;
    --color-emerald-light: #6ee7b7;
    --color-emerald-glow: rgba(0, 255, 135, 0.45);

    --color-blue: #3b82f6;
    --color-blue-light: #60a5fa;
    --color-blue-glow: rgba(59, 130, 246, 0.45);

    /* Dark Surfaces */
    --dark-bg: #020612;
    --dark-surface: #061129;
    --dark-surface-elevated: #091a3e;
    --card-bg: rgba(6, 17, 41, 0.78);
    --card-border: rgba(255, 255, 255, 0.12);

    /* Gradient Palettes */
    --rainbow-gradient: linear-gradient(135deg, #2afeff 0%, #a855f7 25%, #00f0ff 50%, #00ff87 75%, #f59e0b 100%);
    --rainbow-gradient-h: linear-gradient(90deg, #2afff7, #55f788, #00f0ff, #00ff87, #46f50b, #2affe6);
    --brand-gradient: linear-gradient(135deg, #00f0ff 0%, #a855f7 50%, #00ff87 100%);
    --cyan-blue-gradient: linear-gradient(135deg, #00f0ff 0%, #3b82f6 100%);
    --purple-pink-gradient: linear-gradient(135deg, #a855f7 0%, #ff2a85 100%);
    --gold-orange-gradient: linear-gradient(135deg, #fbbf24 0%, #f59e0b 50%, #ff7a00 100%);
    --emerald-cyan-gradient: linear-gradient(135deg, #00ff87 0%, #00f0ff 100%);
    --pink-amber-gradient: linear-gradient(135deg, #ff2a85 0%, #f59e0b 100%);

    /* Typography */
    --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

body {
    background-color: var(--dark-bg);
    color: #ffffff;
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    position: relative;
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
    background-image:
        radial-gradient(circle at 15% 10%, rgba(0, 240, 255, 0.12) 0%, transparent 45%),
        radial-gradient(circle at 85% 25%, rgba(168, 85, 247, 0.12) 0%, transparent 45%),
        radial-gradient(circle at 10% 50%, rgba(255, 42, 133, 0.10) 0%, transparent 45%),
        radial-gradient(circle at 90% 70%, rgba(245, 158, 11, 0.10) 0%, transparent 45%),
        radial-gradient(circle at 50% 90%, rgba(0, 255, 135, 0.10) 0%, transparent 45%),
        linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 100% 100%, 100% 100%, 100% 100%, 100% 100%, 100% 100%, 56px 56px, 56px 56px;
    background-position: 0 0, 0 0, 0 0, 0 0, 0 0, -1px -1px, -1px -1px;
}

/* Custom Rainbow Cyber Scrollbar */
::-webkit-scrollbar {
    width: 9px;
}

::-webkit-scrollbar-track {
    background: #020612;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--color-pink), var(--color-purple), var(--color-cyan), var(--color-emerald));
    border-radius: 6px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, var(--color-gold), var(--color-pink), var(--color-purple), var(--color-cyan));
}

/* ---------------- Dynamic Canvas & Multi-Colored Ambient Orbs ---------------- */
.cyber-particles-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    pointer-events: none;
    z-index: 1;
    opacity: 0.85;
}

.ambient-glow {
    position: absolute;
    width: 38rem;
    height: 38rem;
    border-radius: 9999px;
    filter: blur(140px);
    pointer-events: none;
    z-index: 0;
    opacity: 0.4;
    transition: opacity 0.5s ease;
    animation: ambientPulse 12s ease-in-out infinite alternate;
}

@keyframes ambientPulse {
    0% {
        transform: scale(1) translate(0, 0);
        opacity: 0.35;
    }

    50% {
        transform: scale(1.15) translate(20px, -20px);
        opacity: 0.5;
    }

    100% {
        transform: scale(0.95) translate(-15px, 15px);
        opacity: 0.4;
    }
}

.glow-cyan {
    background: radial-gradient(circle, rgba(0, 240, 255, 0.28) 0%, rgba(59, 130, 246, 0.15) 50%, transparent 70%);
}

.glow-purple {
    background: radial-gradient(circle, rgba(168, 85, 247, 0.28) 0%, rgba(139, 92, 246, 0.15) 50%, transparent 70%);
}

.glow-pink {
    background: radial-gradient(circle, rgba(255, 42, 133, 0.25) 0%, rgba(244, 63, 94, 0.15) 50%, transparent 70%);
}

.glow-gold {
    background: radial-gradient(circle, rgba(245, 158, 11, 0.25) 0%, rgba(251, 191, 36, 0.15) 50%, transparent 70%);
}

.glow-emerald {
    background: radial-gradient(circle, rgba(0, 255, 135, 0.25) 0%, rgba(16, 185, 129, 0.15) 50%, transparent 70%);
}

main,
header,
footer,
section {
    position: relative;
    z-index: 2;
}

a {
    color: inherit;
    text-decoration: none;
}

img,
svg {
    display: block;
    max-width: 100%;
    height: auto;
}

ul,
ol {
    list-style: none;
}

/* ---------------- Layout & Containers ---------------- */
.site-container {
    width: 100%;
    max-width: 1260px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

@media (max-width: 639px) {
    .site-container {
        padding-left: 1.15rem;
        padding-right: 1.15rem;
    }
}

/* ---------------- Header Navigation with Rainbow Accent ---------------- */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1000;
    padding: 0.85rem 0;
    background: rgba(2, 6, 18, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.7);
    transition: background 0.3s ease, padding 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.site-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--rainbow-gradient-h);
    background-size: 200% 100%;
    animation: rainbowScroll 6s linear infinite;
    opacity: 0.8;
}

@keyframes rainbowScroll {
    0% {
        background-position: 0% 50%;
    }

    100% {
        background-position: 200% 50%;
    }
}

.site-header.scrolled {
    background: rgba(2, 6, 18, 0.96);
    box-shadow: 0 8px 35px rgba(0, 0, 0, 0.9), 0 0 20px rgba(0, 240, 255, 0.15);
    padding: 0.65rem 0;
}

.nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    width: 100%;
}

.nav-brand-link {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.nav-brand-link:hover {
    transform: scale(1.04);
}

.nav-logo {
    height: 54px;
    width: auto;
    max-width: 175px;
    object-fit: contain;
    display: block;
    filter: drop-shadow(0 0 12px rgba(0, 240, 255, 0.5));
    transition: filter 0.3s ease;
}

.nav-brand-link:hover .nav-logo {
    filter: drop-shadow(0 0 20px rgba(168, 85, 247, 0.8)) drop-shadow(0 0 10px rgba(0, 240, 255, 0.8));
}

@media (max-width: 767px) {
    .nav-logo {
        height: 48px;
        max-width: 140px;
    }
}

/* Desktop Navigation */
.nav-links-desktop {
    display: none;
    align-items: center;
    justify-content: center;
    gap: 1.75rem;
}

@media (min-width: 1080px) {
    .nav-links-desktop {
        display: flex;
    }
}

.nav-item-link {
    color: rgba(255, 255, 255, 0.82);
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 500;
    white-space: nowrap;
    position: relative;
    padding: 0.4rem 0.3rem;
    transition: color 0.25s ease;
}

.nav-item-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 50%;
    right: 50%;
    height: 2.5px;
    background: var(--rainbow-gradient-h);
    background-size: 200% 100%;
    border-radius: 3px;
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-item-link:nth-child(1):hover {
    color: var(--color-cyan);
    text-shadow: 0 0 12px var(--color-cyan-glow);
}

.nav-item-link:nth-child(2):hover {
    color: var(--color-purple-light);
    text-shadow: 0 0 12px var(--color-purple-glow);
}

.nav-item-link:nth-child(3):hover {
    color: var(--color-pink-light);
    text-shadow: 0 0 12px var(--color-pink-glow);
}

.nav-item-link:nth-child(4):hover {
    color: var(--color-gold-light);
    text-shadow: 0 0 12px var(--color-gold-glow);
}

.nav-item-link:nth-child(5):hover {
    color: var(--color-emerald-light);
    text-shadow: 0 0 12px var(--color-emerald-glow);
}

.nav-item-link:nth-child(6):hover {
    color: var(--color-blue-light);
    text-shadow: 0 0 12px var(--color-blue-glow);
}

.nav-item-link:hover::after {
    left: 0;
    right: 0;
    opacity: 1;
    box-shadow: 0 0 10px rgba(0, 240, 255, 0.8);
}

.nav-item-link.active {
    color: #ffffff;
    font-weight: 700;
    text-shadow: 0 0 15px rgba(0, 240, 255, 0.9);
}

.nav-item-link.active::after {
    left: 0;
    right: 0;
    opacity: 1;
    box-shadow: 0 0 14px rgba(168, 85, 247, 0.9);
}

/* Nav Actions */
.nav-actions {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    flex-shrink: 0;
}

@media (max-width: 1079px) {
    .nav-signin-btn {
        display: none !important;
    }
}

/* Mobile Hamburger Button with Rainbow Ring */
.mobile-toggle-btn {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 44px;
    height: 44px;
    background: rgba(168, 85, 247, 0.12);
    border: 1.5px solid rgba(168, 85, 247, 0.45);
    border-radius: 0.75rem;
    cursor: pointer;
    gap: 5px;
    padding: 0;
    transition: all 0.3s ease;
    box-shadow: 0 0 15px rgba(168, 85, 247, 0.25);
}

.mobile-toggle-btn:hover {
    background: rgba(0, 240, 255, 0.2);
    border-color: var(--color-cyan);
    box-shadow: 0 0 20px rgba(0, 240, 255, 0.5);
}

@media (min-width: 1080px) {
    .mobile-toggle-btn {
        display: none;
    }
}

.mobile-toggle-btn span {
    display: block;
    width: 22px;
    height: 2.5px;
    background: var(--color-cyan);
    border-radius: 3px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: center;
    box-shadow: 0 0 8px rgba(0, 240, 255, 0.8);
}

.mobile-toggle-btn span:nth-child(2) {
    background: var(--color-purple);
    box-shadow: 0 0 8px rgba(168, 85, 247, 0.8);
}

.mobile-toggle-btn span:last-child {
    background: var(--color-pink);
    box-shadow: 0 0 8px rgba(255, 42, 133, 0.8);
}

.mobile-toggle-btn.active span:nth-child(1) {
    transform: translateY(7.5px) rotate(45deg);
    background: var(--color-cyan);
}

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

.mobile-toggle-btn.active span:nth-child(3) {
    transform: translateY(-7.5px) rotate(-45deg);
    background: var(--color-pink);
}

/* Mobile Drawer & Backdrop */
.drawer-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(1, 4, 12, 0.82);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 1999;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.drawer-backdrop.active {
    opacity: 1;
    pointer-events: auto;
}

.mobile-drawer {
    position: fixed;
    top: 0;
    right: 0;
    width: 320px;
    max-width: 85%;
    height: 100vh;
    height: 100dvh;
    background: rgba(4, 10, 26, 0.98);
    backdrop-filter: blur(25px);
    border-left: 1px solid rgba(168, 85, 247, 0.35);
    box-shadow: -15px 0 50px rgba(0, 0, 0, 0.95);
    z-index: 2000;
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
}

.mobile-drawer.open,
.mobile-drawer.mobile-menu-open {
    transform: translateX(0);
}

.mobile-drawer-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 1.25rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    background: linear-gradient(180deg, rgba(168, 85, 247, 0.08) 0%, transparent 100%);
    flex-shrink: 0;
}

.drawer-logo {
    height: 42px;
    width: auto;
    max-width: 140px;
    object-fit: contain;
    filter: drop-shadow(0 0 10px rgba(0, 240, 255, 0.45));
}

.mobile-drawer-close {
    background: transparent;
    border: none;
    color: #ffffff;
    font-size: 1.8rem;
    cursor: pointer;
    line-height: 1;
    padding: 0.25rem 0.5rem;
    border-radius: 0.35rem;
    transition: all 0.2s ease;
}

.mobile-drawer-close:hover {
    color: var(--color-pink);
    background: rgba(255, 42, 133, 0.12);
}

.mobile-drawer-content {
    display: flex;
    flex-direction: column;
    flex: 1 1 auto;
    overflow-y: auto;
    min-height: 0;
}

.mobile-drawer-links {
    display: flex;
    flex-direction: column;
    padding: 1.25rem 1.25rem;
    gap: 0.5rem;
}

.mobile-drawer-link {
    color: rgba(255, 255, 255, 0.88);
    font-family: var(--font-body);
    font-size: 1.05rem;
    font-weight: 500;
    padding: 0.75rem 1rem;
    border-radius: 0.75rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
    background: rgba(255, 255, 255, 0.02);
    transition: all 0.25s ease;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.mobile-drawer-link:hover {
    color: #ffffff;
    background: linear-gradient(90deg, rgba(0, 240, 255, 0.15) 0%, rgba(168, 85, 247, 0.15) 100%);
    border-color: rgba(0, 240, 255, 0.4);
    padding-left: 1.25rem;
}

.mobile-drawer-link.active {
    color: #ffffff;
    background: linear-gradient(90deg, rgba(168, 85, 247, 0.25) 0%, rgba(255, 42, 133, 0.15) 100%);
    border-left: 4px solid var(--color-purple);
    font-weight: 700;
    box-shadow: 0 0 20px rgba(168, 85, 247, 0.2);
}

.mobile-drawer-footer {
    padding: 1.25rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(4, 12, 28, 0.98);
    flex-shrink: 0;
}

/* ---------------- Typography & Multi-Color Gradient Utilities ---------------- */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: #ffffff;
    font-weight: 700;
    line-height: 1.2;
}

/* Multi-Spectrum Gradient Text */
.text-gradient,
.text-rainbow-gradient {
    background: var(--rainbow-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline;
}

.text-cyan-gradient {
    background: var(--cyan-blue-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline;
}

.text-purple-gradient {
    background: var(--purple-pink-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline;
}

.text-gold-gradient {
    background: var(--gold-orange-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline;
}

.text-emerald-gradient {
    background: var(--emerald-cyan-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline;
}

.text-pink-gradient {
    background: var(--pink-amber-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline;
}

.text-cyan {
    color: var(--color-cyan) !important;
}

.text-purple {
    color: var(--color-purple) !important;
}

.text-pink {
    color: var(--color-pink) !important;
}

.text-gold {
    color: var(--color-gold) !important;
}

.text-emerald {
    color: var(--color-emerald) !important;
}

.text-blue {
    color: var(--color-blue) !important;
}

.text-muted {
    color: rgba(255, 255, 255, 0.7) !important;
}

/* ---------------- High-Energy Multi-Color Buttons ---------------- */
.btn-brand-primary,
.btn-brand-rainbow {
    background: var(--rainbow-gradient-h);
    background-size: 200% 100%;
    color: #020612 !important;
    font-family: var(--font-heading);
    font-weight: 800 !important;
    padding: 0.8rem 1.85rem;
    border-radius: 0.85rem;
    border: none;
    box-shadow: 0 4px 25px rgba(168, 85, 247, 0.4), 0 0 15px rgba(0, 240, 255, 0.3);
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1rem;
    text-align: center;
    white-space: nowrap;
    position: relative;
    overflow: hidden;
}

.btn-brand-primary:hover,
.btn-brand-rainbow:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 35px rgba(255, 42, 133, 0.5), 0 0 25px rgba(0, 255, 135, 0.4);
    background-position: 100% 0;
}

.btn-brand-outline {
    background: rgba(255, 255, 255, 0.04);
    color: #ffffff !important;
    font-family: var(--font-heading);
    font-weight: 600 !important;
    padding: 0.8rem 1.85rem;
    border-radius: 0.85rem;
    border: 1.5px solid rgba(0, 240, 255, 0.5);
    backdrop-filter: blur(12px);
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1rem;
    text-align: center;
    white-space: nowrap;
    box-shadow: 0 0 20px rgba(0, 240, 255, 0.15);
}

.btn-brand-outline:hover {
    background: rgba(0, 240, 255, 0.15);
    color: var(--color-cyan-light) !important;
    border-color: var(--color-cyan);
    transform: translateY(-3px);
    box-shadow: 0 6px 30px rgba(0, 240, 255, 0.45);
}

.btn-sm {
    padding: 0.45rem 1.25rem !important;
    font-size: 0.9rem !important;
    border-radius: 0.65rem !important;
}

.btn-lg {
    padding: 0.95rem 2.25rem !important;
    font-size: 1.08rem !important;
    border-radius: 0.95rem !important;
}

@media (max-width: 639px) {
    .btn-lg {
        padding: 0.8rem 1.6rem !important;
        font-size: 0.98rem !important;
    }
}

/* ---------------- Multi-Color Glowing Pills & Badges ---------------- */
.glow-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    padding: 0.45rem 1.25rem;
    border-radius: 9999px;
    background: rgba(6, 17, 41, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #ffffff;
    font-family: var(--font-heading);
    font-size: 0.875rem;
    font-weight: 600;
    box-shadow: 0 0 25px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(14px);
    position: relative;
}

.glow-pill-rainbow {
    border-color: transparent;
    background: linear-gradient(rgba(6, 17, 41, 0.92), rgba(6, 17, 41, 0.92)) padding-box,
        var(--rainbow-gradient-h) border-box;
    box-shadow: 0 0 25px rgba(168, 85, 247, 0.35);
}

.glow-pill-cyan {
    border-color: rgba(0, 240, 255, 0.45);
    color: var(--color-cyan);
    box-shadow: 0 0 20px rgba(0, 240, 255, 0.2);
}

.glow-pill-purple {
    border-color: rgba(168, 85, 247, 0.45);
    color: var(--color-purple-light);
    box-shadow: 0 0 20px rgba(168, 85, 247, 0.2);
}

.glow-pill-pink {
    border-color: rgba(255, 42, 133, 0.45);
    color: var(--color-pink-light);
    box-shadow: 0 0 20px rgba(255, 42, 133, 0.2);
}

.glow-pill-gold {
    border-color: rgba(245, 158, 11, 0.45);
    color: var(--color-gold-light);
    box-shadow: 0 0 20px rgba(245, 158, 11, 0.2);
}

.glow-pill-emerald {
    border-color: rgba(0, 255, 135, 0.45);
    color: var(--color-emerald-light);
    box-shadow: 0 0 20px rgba(0, 255, 135, 0.2);
}

.glow-pill-dot {
    width: 8px;
    height: 8px;
    border-radius: 9999px;
    background: var(--color-emerald);
    box-shadow: 0 0 10px var(--color-emerald);
    flex-shrink: 0;
}

.glow-pill-sep {
    opacity: 0.4;
    margin: 0 0.15rem;
}

.glow-pill-tag {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 700;
}

.pulse-emerald {
    animation: pulseGlowEmerald 2s infinite;
}

.pulse-rainbow {
    animation: pulseGlowRainbow 3s infinite;
}

@keyframes pulseGlowEmerald {

    0%,
    100% {
        transform: scale(1);
        box-shadow: 0 0 8px var(--color-emerald);
    }

    50% {
        transform: scale(1.3);
        box-shadow: 0 0 18px var(--color-emerald), 0 0 30px rgba(0, 255, 135, 0.7);
    }
}

@keyframes pulseGlowRainbow {

    0%,
    100% {
        filter: drop-shadow(0 0 8px #00f0ff);
    }

    33% {
        filter: drop-shadow(0 0 12px #a855f7);
    }

    66% {
        filter: drop-shadow(0 0 12px #ff2a85);
    }
}

/* ---------------- Colorful Cyber Glass Cards ---------------- */
.cyber-card {
    background: var(--card-bg);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border: 1px solid var(--card-border);
    border-radius: 1.35rem;
    padding: 2rem;
    transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

@media (max-width: 639px) {
    .cyber-card {
        padding: 1.5rem;
        border-radius: 1.1rem;
    }
}

.cyber-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: all 0.3s ease;
}

/* Color Themed Cyber Cards */
/* 1. Cyan Theme */
.cyber-card-cyan {
    border-color: rgba(0, 240, 255, 0.2);
}

.cyber-card-cyan::before {
    background: linear-gradient(90deg, transparent, var(--color-cyan), transparent);
}

.cyber-card-cyan:hover {
    border-color: var(--color-cyan);
    transform: translateY(-7px) scale(1.01);
    box-shadow: 0 16px 40px -10px rgba(0, 240, 255, 0.35), 0 0 30px rgba(0, 240, 255, 0.2);
    background: rgba(6, 22, 50, 0.88);
}

.cyber-card-cyan .cyber-icon-badge {
    background: rgba(0, 240, 255, 0.12);
    border: 1.5px solid rgba(0, 240, 255, 0.4);
    box-shadow: 0 0 20px rgba(0, 240, 255, 0.25);
}

.cyber-card-cyan:hover .cyber-icon-badge {
    background: var(--cyan-blue-gradient);
    border-color: #ffffff;
    box-shadow: 0 0 30px rgba(0, 240, 255, 0.7);
    transform: scale(1.1) rotate(5deg);
}

.cyber-card-cyan .card-item-title {
    color: #ffffff;
}

.cyber-card-cyan:hover .card-item-title {
    color: var(--color-cyan-light);
}

/* 2. Gold Theme */
.cyber-card-gold {
    border-color: rgba(245, 158, 11, 0.2);
}

.cyber-card-gold::before {
    background: linear-gradient(90deg, transparent, var(--color-gold), transparent);
}

.cyber-card-gold:hover {
    border-color: var(--color-gold);
    transform: translateY(-7px) scale(1.01);
    box-shadow: 0 16px 40px -10px rgba(245, 158, 11, 0.35), 0 0 30px rgba(245, 158, 11, 0.2);
    background: rgba(28, 18, 5, 0.88);
}

.cyber-card-gold .cyber-icon-badge {
    background: rgba(245, 158, 11, 0.12);
    border: 1.5px solid rgba(245, 158, 11, 0.4);
    box-shadow: 0 0 20px rgba(245, 158, 11, 0.25);
}

.cyber-card-gold:hover .cyber-icon-badge {
    background: var(--gold-orange-gradient);
    border-color: #ffffff;
    box-shadow: 0 0 30px rgba(245, 158, 11, 0.7);
    transform: scale(1.1) rotate(-5deg);
}

.cyber-card-gold:hover .card-item-title {
    color: var(--color-gold-light);
}

/* 3. Purple Theme */
.cyber-card-purple {
    border-color: rgba(168, 85, 247, 0.2);
}

.cyber-card-purple::before {
    background: linear-gradient(90deg, transparent, var(--color-purple), transparent);
}

.cyber-card-purple:hover {
    border-color: var(--color-purple);
    transform: translateY(-7px) scale(1.01);
    box-shadow: 0 16px 40px -10px rgba(168, 85, 247, 0.35), 0 0 30px rgba(168, 85, 247, 0.2);
    background: rgba(20, 8, 38, 0.88);
}

.cyber-card-purple .cyber-icon-badge {
    background: rgba(168, 85, 247, 0.12);
    border: 1.5px solid rgba(168, 85, 247, 0.4);
    box-shadow: 0 0 20px rgba(168, 85, 247, 0.25);
}

.cyber-card-purple:hover .cyber-icon-badge {
    background: var(--purple-pink-gradient);
    border-color: #ffffff;
    box-shadow: 0 0 30px rgba(168, 85, 247, 0.7);
    transform: scale(1.1) rotate(5deg);
}

.cyber-card-purple:hover .card-item-title {
    color: var(--color-purple-light);
}

/* 4. Pink Theme */
.cyber-card-pink {
    border-color: rgba(255, 42, 133, 0.2);
}

.cyber-card-pink::before {
    background: linear-gradient(90deg, transparent, var(--color-pink), transparent);
}

.cyber-card-pink:hover {
    border-color: var(--color-pink);
    transform: translateY(-7px) scale(1.01);
    box-shadow: 0 16px 40px -10px rgba(255, 42, 133, 0.35), 0 0 30px rgba(255, 42, 133, 0.2);
    background: rgba(32, 6, 20, 0.88);
}

.cyber-card-pink .cyber-icon-badge {
    background: rgba(255, 42, 133, 0.12);
    border: 1.5px solid rgba(255, 42, 133, 0.4);
    box-shadow: 0 0 20px rgba(255, 42, 133, 0.25);
}

.cyber-card-pink:hover .cyber-icon-badge {
    background: var(--pink-amber-gradient);
    border-color: #ffffff;
    box-shadow: 0 0 30px rgba(255, 42, 133, 0.7);
    transform: scale(1.1) rotate(-5deg);
}

.cyber-card-pink:hover .card-item-title {
    color: var(--color-pink-light);
}

/* 5. Emerald Theme */
.cyber-card-emerald {
    border-color: rgba(0, 255, 135, 0.2);
}

.cyber-card-emerald::before {
    background: linear-gradient(90deg, transparent, var(--color-emerald), transparent);
}

.cyber-card-emerald:hover {
    border-color: var(--color-emerald);
    transform: translateY(-7px) scale(1.01);
    box-shadow: 0 16px 40px -10px rgba(0, 255, 135, 0.35), 0 0 30px rgba(0, 255, 135, 0.2);
    background: rgba(4, 26, 18, 0.88);
}

.cyber-card-emerald .cyber-icon-badge {
    background: rgba(0, 255, 135, 0.12);
    border: 1.5px solid rgba(0, 255, 135, 0.4);
    box-shadow: 0 0 20px rgba(0, 255, 135, 0.25);
}

.cyber-card-emerald:hover .cyber-icon-badge {
    background: var(--emerald-cyan-gradient);
    border-color: #ffffff;
    box-shadow: 0 0 30px rgba(0, 255, 135, 0.7);
    transform: scale(1.1) rotate(5deg);
}

.cyber-card-emerald:hover .card-item-title {
    color: var(--color-emerald-light);
}

.card-content-body {
    display: flex;
    flex-direction: column;
    flex: 1 1 auto;
}

.card-item-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.65rem;
    transition: color 0.3s ease;
}

.card-item-desc {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.6;
    margin: 0;
}

/* Card Category Pill */
.card-category-tag {
    display: inline-flex;
    align-items: center;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0.25rem 0.65rem;
    border-radius: 9999px;
    margin-bottom: 0.85rem;
    align-self: flex-start;
}

.tag-cyan {
    background: rgba(0, 240, 255, 0.15);
    color: var(--color-cyan);
    border: 1px solid rgba(0, 240, 255, 0.35);
}

.tag-gold {
    background: rgba(245, 158, 11, 0.15);
    color: var(--color-gold-light);
    border: 1px solid rgba(245, 158, 11, 0.35);
}

.tag-purple {
    background: rgba(168, 85, 247, 0.15);
    color: var(--color-purple-light);
    border: 1px solid rgba(168, 85, 247, 0.35);
}

.tag-pink {
    background: rgba(255, 42, 133, 0.15);
    color: var(--color-pink-light);
    border: 1px solid rgba(255, 42, 133, 0.35);
}

.tag-emerald {
    background: rgba(0, 255, 135, 0.15);
    color: var(--color-emerald-light);
    border: 1px solid rgba(0, 255, 135, 0.35);
}

/* Icon Badges */
.cyber-icon-badge {
    width: 60px;
    height: 60px;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-bottom: 1.25rem;
    transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.cyber-icon-badge img {
    width: 32px;
    height: 32px;
    max-width: 32px;
    max-height: 32px;
    object-fit: contain;
    filter: sepia(1);
}

/* ---------------- Image Cyber Frame with Rainbow Glow ---------------- */
.img-cyber-frame {
    border-radius: 1.4rem;
    border: 1.5px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.8), 0 0 30px rgba(168, 85, 247, 0.18);
    transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
    display: block;
    width: 100%;
    height: auto;
}

.img-cyber-frame:hover {
    transform: scale(1.02);
    border-color: rgba(0, 240, 255, 0.6);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.9), 0 0 45px rgba(255, 42, 133, 0.35), 0 0 25px rgba(0, 240, 255, 0.35);
}

/* ---------------- Section Common Layouts ---------------- */
.section-py {
    padding-top: 6rem;
    padding-bottom: 6rem;
    position: relative;
}

@media (max-width: 767px) {
    .section-py {
        padding-top: 4rem;
        padding-bottom: 4rem;
    }
}

.section-tint {
    background: linear-gradient(180deg, rgba(5, 14, 34, 0.65) 0%, rgba(3, 9, 24, 0.85) 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.section-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

@media (max-width: 767px) {
    .section-header {
        margin-bottom: 2.5rem;
    }
}

.section-title {
    font-size: clamp(2rem, 3.4vw, 2.85rem);
    font-weight: 800;
    margin-top: 1.15rem;
    margin-bottom: 1rem;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.text-left-desktop {
    text-align: left;
}

@media (max-width: 1023px) {
    .text-left-desktop {
        text-align: center;
    }
}

.section-subtitle {
    font-size: 1.12rem;
    color: rgba(255, 255, 255, 0.75);
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.65;
}

@media (max-width: 639px) {
    .section-subtitle {
        font-size: 0.98rem;
    }
}

.section-pill-wrap {
    display: flex;
    margin-bottom: 1rem;
}

@media (max-width: 1023px) {
    .section-pill-wrap {
        justify-content: center;
    }
}

.section-lead-text {
    font-size: 1.18rem;
    font-weight: 500;
    color: #ffffff;
    margin-bottom: 1.25rem;
    line-height: 1.6;
}

@media (max-width: 1023px) {
    .section-lead-text {
        text-align: center;
    }
}

/* ---------------- 1. HERO SECTION ---------------- */
.hero-section {
    padding-top: 145px;
    padding-bottom: 80px;
    position: relative;
    overflow: hidden;
}

@media (max-width: 767px) {
    .hero-section {
        padding-top: 110px;
        padding-bottom: 50px;
    }
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3.5rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1.08fr 0.92fr;
        gap: 4rem;
    }
}

.hero-pill-wrap {
    display: flex;
    margin-bottom: 1.5rem;
}

@media (max-width: 1023px) {
    .hero-pill-wrap {
        justify-content: center;
    }
}

.hero-title {
    font-size: clamp(2.4rem, 4.5vw, 4rem);
    font-weight: 800;
    line-height: 1.12;
    margin-bottom: 1.35rem;
    letter-spacing: -0.03em;
}

.hero-subtitle {
    font-size: 1.22rem;
    font-weight: 600;
    color: var(--color-cyan);
    margin-bottom: 0.95rem;
    line-height: 1.5;
}

.hero-desc {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.78);
    margin-bottom: 2rem;
    line-height: 1.65;
}

@media (max-width: 1023px) {

    .hero-title,
    .hero-subtitle,
    .hero-desc {
        text-align: center;
    }
}

.hero-btn-group {
    display: flex;
    align-items: center;
    gap: 1.15rem;
    flex-wrap: wrap;
    margin-bottom: 2.75rem;
}

@media (max-width: 1023px) {
    .hero-btn-group {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero-btn-group a {
        width: 100%;
    }
}

/* 3 Multi-Colored Hero Stat Cards */
.hero-stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.hero-stat-card {
    display: flex;
    flex-direction: column;
    padding: 1rem 1.15rem;
    border-radius: 1rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.3s ease;
}

.hero-stat-card:nth-child(1) {
    border-color: rgba(168, 85, 247, 0.3);
    box-shadow: 0 0 20px rgba(168, 85, 247, 0.12);
}

.hero-stat-card:nth-child(1):hover {
    border-color: var(--color-purple);
    background: rgba(168, 85, 247, 0.12);
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(168, 85, 247, 0.35);
}

.hero-stat-card:nth-child(2) {
    border-color: rgba(0, 255, 135, 0.3);
    box-shadow: 0 0 20px rgba(0, 255, 135, 0.12);
}

.hero-stat-card:nth-child(2):hover {
    border-color: var(--color-emerald);
    background: rgba(0, 255, 135, 0.12);
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 255, 135, 0.35);
}

.hero-stat-card:nth-child(3) {
    border-color: rgba(245, 158, 11, 0.3);
    box-shadow: 0 0 20px rgba(245, 158, 11, 0.12);
}

.hero-stat-card:nth-child(3):hover {
    border-color: var(--color-gold);
    background: rgba(245, 158, 11, 0.12);
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(245, 158, 11, 0.35);
}

@media (max-width: 1023px) {
    .hero-stat-card {
        align-items: center;
        text-align: center;
    }
}

.hero-stat-value {
    font-family: var(--font-heading);
    font-size: clamp(1.4rem, 2.2vw, 1.95rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 0.35rem;
}

.hero-stat-label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.72);
    font-weight: 500;
}

@media (max-width: 480px) {
    .hero-stat-card {
        padding: 0.75rem 0.5rem;
    }

    .hero-stat-value {
        font-size: 1.25rem;
    }

    .hero-stat-label {
        font-size: 0.72rem;
    }
}

/* Hero Graphic & Floating Metric Chips */
.hero-graphic-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    width: 100%;
}

.hero-graphic-glow {
    position: absolute;
    width: 95%;
    height: 95%;
    background: radial-gradient(circle, rgba(168, 85, 247, 0.28) 0%, rgba(0, 240, 255, 0.22) 35%, rgba(255, 42, 133, 0.18) 70%, transparent 85%);
    filter: blur(50px);
    z-index: 0;
    pointer-events: none;
    animation: glowRotate 10s linear infinite alternate;
}

@keyframes glowRotate {
    0% {
        transform: scale(0.9) rotate(0deg);
        opacity: 0.6;
    }

    100% {
        transform: scale(1.1) rotate(15deg);
        opacity: 0.9;
    }
}

.hero-floating-img {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 560px;
    height: auto;
    animation: cyberFloat 6s ease-in-out infinite;
}

@keyframes cyberFloat {

    0%,
    100% {
        transform: translateY(0);
    }

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

/* Floating Colorful Chips around Hero Graphic */
.floating-chip {
    position: absolute;
    z-index: 3;
    padding: 0.6rem 1.15rem;
    border-radius: 9999px;
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 700;
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    white-space: nowrap;
    animation: chipFloat 5s ease-in-out infinite alternate;
}

.chip-top-left {
    top: 8%;
    left: -2%;
    background: rgba(168, 85, 247, 0.22);
    border: 1.5px solid rgba(168, 85, 247, 0.6);
    color: var(--color-purple-light);
    box-shadow: 0 0 25px rgba(168, 85, 247, 0.4);
    animation-delay: 0s;
}

.chip-bottom-right {
    bottom: 12%;
    right: -2%;
    background: rgba(0, 240, 255, 0.22);
    border: 1.5px solid rgba(0, 240, 255, 0.6);
    color: var(--color-cyan-light);
    box-shadow: 0 0 25px rgba(0, 240, 255, 0.4);
    animation-delay: 1.5s;
}

.chip-bottom-left {
    bottom: -4%;
    left: 12%;
    background: rgba(0, 255, 135, 0.22);
    border: 1.5px solid rgba(0, 255, 135, 0.6);
    color: var(--color-emerald-light);
    box-shadow: 0 0 25px rgba(0, 255, 135, 0.4);
    animation-delay: 2.5s;
}

@keyframes chipFloat {
    0% {
        transform: translateY(0) scale(1);
    }

    100% {
        transform: translateY(-8px) scale(1.03);
    }
}

@media (max-width: 639px) {
    .floating-chip {
        display: none;
    }
}

/* ---------------- LIVE NETWORK TICKER STRIP ---------------- */
.live-ticker-section {
    background: rgba(4, 10, 24, 0.95);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding: 0.9rem 0;
    overflow: hidden;
    position: relative;
    z-index: 5;
}

.ticker-track {
    display: flex;
    gap: 2rem;
    width: max-content;
    animation: tickerScroll 24s linear infinite;
}

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

@keyframes tickerScroll {
    0% {
        transform: translateX(0);
    }

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

.ticker-item {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.4rem 1rem;
    border-radius: 9999px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 0.88rem;
    font-weight: 600;
    white-space: nowrap;
}

.ticker-item-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
}

.ticker-val-green {
    color: var(--color-emerald);
    font-weight: 700;
}

.ticker-val-cyan {
    color: var(--color-cyan);
    font-weight: 700;
}

/* ---------------- 2. ABOUT mmm27+ SECTION ---------------- */
.about-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3.5rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .about-grid {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
        align-items: stretch;
    }
}

.about-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.feature-highlight-box {
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.12) 0%, rgba(0, 240, 255, 0.1) 100%);
    border-left: 4px solid var(--color-purple);
    border-top: 1px solid rgba(168, 85, 247, 0.25);
    border-right: 1px solid rgba(0, 240, 255, 0.18);
    border-bottom: 1px solid rgba(0, 240, 255, 0.18);
    padding: 1.5rem 1.75rem;
    border-radius: 0 1.25rem 1.25rem 0;
    margin: 1.5rem 0 2rem;
    box-shadow: 0 8px 30px rgba(168, 85, 247, 0.15);
}

.feature-highlight-text {
    color: rgba(255, 255, 255, 0.92);
    font-size: 1.08rem;
    line-height: 1.7;
}

/* Micro-tags in About Section */
.about-tags-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

@media (max-width: 1023px) {
    .about-tags-list {
        justify-content: center;
    }
}

.about-tag-item {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.45rem 1rem;
    border-radius: 0.75rem;
    font-size: 0.85rem;
    font-weight: 600;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.25s ease;
}

.about-tag-item:hover {
    transform: translateY(-2px);
}

.about-tag-item:nth-child(1):hover {
    border-color: var(--color-cyan);
    color: var(--color-cyan-light);
    box-shadow: 0 0 15px var(--color-cyan-glow);
}

.about-tag-item:nth-child(2):hover {
    border-color: var(--color-purple);
    color: var(--color-purple-light);
    box-shadow: 0 0 15px var(--color-purple-glow);
}

.about-tag-item:nth-child(3):hover {
    border-color: var(--color-pink);
    color: var(--color-pink-light);
    box-shadow: 0 0 15px var(--color-pink-glow);
}

.about-tag-item:nth-child(4):hover {
    border-color: var(--color-gold);
    color: var(--color-gold-light);
    box-shadow: 0 0 15px var(--color-gold-glow);
}

.about-btn-wrap {
    margin-top: 1rem;
}

@media (max-width: 1023px) {
    .about-btn-wrap {
        display: flex;
        justify-content: center;
    }
}

.about-image-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    position: relative;
}

.about-image-wrap img {
    width: 100%;
    height: 100%;
    min-height: 440px;
    max-height: 520px;
    object-fit: cover;
    border-radius: 1.4rem;
}

@media (max-width: 1023px) {
    .about-image-wrap img {
        min-height: 280px;
        max-height: 380px;
    }
}

/* ---------------- 3. ECOSYSTEM / WHAT WE DO (4 CARDS) ---------------- */
.ecosystem-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.75rem;
}

@media (min-width: 640px) {
    .ecosystem-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .ecosystem-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* ---------------- 4. WHY mmm27+ SECTION ---------------- */
.why-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3.5rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .why-grid {
        grid-template-columns: 1.08fr 0.92fr;
        gap: 4rem;
        align-items: stretch;
    }
}

.why-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.pillar-list {
    display: flex;
    flex-direction: column;
    gap: 1.15rem;
}

.pillar-item {
    display: flex;
    align-items: flex-start;
    gap: 1.35rem;
    padding: 1.35rem 1.5rem;
    border-radius: 1.15rem;
    background: rgba(6, 17, 41, 0.75);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
}

@media (max-width: 480px) {
    .pillar-item {
        padding: 1.1rem;
        gap: 0.95rem;
    }
}

/* Multi-Colored Pillar Items */
.pillar-item-cyan {
    border-left: 3.5px solid var(--color-cyan);
}

.pillar-item-cyan:hover {
    border-color: var(--color-cyan);
    background: rgba(6, 25, 55, 0.9);
    transform: translateX(8px);
    box-shadow: 0 10px 30px rgba(0, 240, 255, 0.25);
}

.pillar-item-cyan .pillar-num {
    color: var(--color-cyan);
    background: rgba(0, 240, 255, 0.15);
    border: 1px solid rgba(0, 240, 255, 0.4);
}

.pillar-item-purple {
    border-left: 3.5px solid var(--color-purple);
}

.pillar-item-purple:hover {
    border-color: var(--color-purple);
    background: rgba(25, 10, 48, 0.9);
    transform: translateX(8px);
    box-shadow: 0 10px 30px rgba(168, 85, 247, 0.25);
}

.pillar-item-purple .pillar-num {
    color: var(--color-purple-light);
    background: rgba(168, 85, 247, 0.15);
    border: 1px solid rgba(168, 85, 247, 0.4);
}

.pillar-item-emerald {
    border-left: 3.5px solid var(--color-emerald);
}

.pillar-item-emerald:hover {
    border-color: var(--color-emerald);
    background: rgba(4, 30, 20, 0.9);
    transform: translateX(8px);
    box-shadow: 0 10px 30px rgba(0, 255, 135, 0.25);
}

.pillar-item-emerald .pillar-num {
    color: var(--color-emerald-light);
    background: rgba(0, 255, 135, 0.15);
    border: 1px solid rgba(0, 255, 135, 0.4);
}

.pillar-item-pink {
    border-left: 3.5px solid var(--color-pink);
}

.pillar-item-pink:hover {
    border-color: var(--color-pink);
    background: rgba(35, 8, 24, 0.9);
    transform: translateX(8px);
    box-shadow: 0 10px 30px rgba(255, 42, 133, 0.25);
}

.pillar-item-pink .pillar-num {
    color: var(--color-pink-light);
    background: rgba(255, 42, 133, 0.15);
    border: 1px solid rgba(255, 42, 133, 0.4);
}

.pillar-num {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 800;
    border-radius: 0.75rem;
    padding: 0.4rem 0.85rem;
    flex-shrink: 0;
    line-height: 1;
}

.pillar-info {
    flex: 1 1 auto;
}

.pillar-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.35rem;
}

.pillar-desc {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.6;
    margin: 0;
}

.why-image-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
}

.why-image-wrap img {
    width: 100%;
    height: 100%;
    min-height: 440px;
    max-height: 520px;
    object-fit: cover;
    border-radius: 1.4rem;
}

@media (max-width: 1023px) {
    .why-image-wrap img {
        min-height: 280px;
        max-height: 380px;
    }
}

/* ---------------- 5. VISION SECTION ---------------- */
.vision-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3.5rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .vision-grid {
        grid-template-columns: 0.92fr 1.08fr;
        gap: 4rem;
        align-items: stretch;
    }
}

.vision-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.vision-image-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
}

.vision-image-wrap img {
    width: 100%;
    height: 100%;
    min-height: 420px;
    max-height: 520px;
    object-fit: cover;
    border-radius: 1.4rem;
}

@media (max-width: 1023px) {
    .vision-image-wrap img {
        min-height: 280px;
        max-height: 380px;
    }
}

/* 3 Vision Feature Mini Cards */
.vision-cards-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin: 1.75rem 0;
}

@media (min-width: 640px) {
    .vision-cards-row {
        grid-template-columns: repeat(3, 1fr);
    }
}

.vision-mini-card {
    padding: 1.15rem;
    border-radius: 1rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.vision-mini-card:nth-child(1):hover {
    border-color: var(--color-cyan);
    background: rgba(0, 240, 255, 0.1);
    transform: translateY(-4px);
}

.vision-mini-card:nth-child(2):hover {
    border-color: var(--color-purple);
    background: rgba(168, 85, 247, 0.1);
    transform: translateY(-4px);
}

.vision-mini-card:nth-child(3):hover {
    border-color: var(--color-gold);
    background: rgba(245, 158, 11, 0.1);
    transform: translateY(-4px);
}

.vision-mini-title {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 0.35rem;
}

.vision-mini-desc {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.45;
}

/* Vision Holographic Quote Card */
.vision-quote-card {
    background: linear-gradient(135deg, rgba(255, 42, 133, 0.12) 0%, rgba(168, 85, 247, 0.15) 50%, rgba(0, 240, 255, 0.12) 100%);
    border: 1.5px solid rgba(168, 85, 247, 0.45);
    border-radius: 1.25rem;
    padding: 1.6rem 2rem;
    margin-top: 1.5rem;
    text-align: center;
    box-shadow: 0 10px 35px rgba(168, 85, 247, 0.2);
    position: relative;
    overflow: hidden;
}

.vision-quote-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--rainbow-gradient-h);
}

.vision-quote-text {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 800;
    line-height: 1.4;
}

/* ---------------- 6. HOW IT WORKS SECTION (4 STEPS) ---------------- */
.how-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3.5rem;
    align-items: center;
}

@media (min-width: 992px) {
    .how-content {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
        align-items: stretch;
    }
}

.how-image-wrap {
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.how-image-wrap img {
    width: 100%;
    height: 100%;
    min-height: 560px;
    max-height: 660px;
    object-fit: cover;
    border-radius: 1.4rem;
}

@media (max-width: 991px) {
    .how-image-wrap img {
        min-height: 280px;
        max-height: 380px;
    }
}

.how-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0.25rem 0;
}

.how-label {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    margin-bottom: 0.65rem;
    color: var(--color-cyan);
    text-transform: uppercase;
}

.how-headline {
    font-size: clamp(1.9rem, 2.8vw, 2.6rem);
    line-height: 1.2;
    margin-bottom: 1.15rem;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.how-description {
    font-size: 1rem;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.78);
    margin-bottom: 2rem;
}

.how-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    position: relative;
}

.how-list-item {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    padding: 1rem 1.35rem;
    border-radius: 1rem;
    background: rgba(6, 17, 41, 0.75);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
}

/* 4 Steps in 4 Distinct Neon Colors */
/* Step 01 Cyan */
.how-item-cyan .how-number {
    border: 2px solid var(--color-cyan);
    background: rgba(0, 240, 255, 0.15);
    color: var(--color-cyan);
    box-shadow: 0 0 15px rgba(0, 240, 255, 0.35);
}

.how-item-cyan:hover {
    background: rgba(6, 26, 56, 0.95);
    border-color: var(--color-cyan);
    transform: translateX(8px);
    box-shadow: 0 8px 25px rgba(0, 240, 255, 0.25);
}

/* Step 02 Purple */
.how-item-purple .how-number {
    border: 2px solid var(--color-purple);
    background: rgba(168, 85, 247, 0.15);
    color: var(--color-purple-light);
    box-shadow: 0 0 15px rgba(168, 85, 247, 0.35);
}

.how-item-purple:hover {
    background: rgba(25, 10, 48, 0.95);
    border-color: var(--color-purple);
    transform: translateX(8px);
    box-shadow: 0 8px 25px rgba(168, 85, 247, 0.25);
}

/* Step 03 Pink */
.how-item-pink .how-number {
    border: 2px solid var(--color-pink);
    background: rgba(255, 42, 133, 0.15);
    color: var(--color-pink-light);
    box-shadow: 0 0 15px rgba(255, 42, 133, 0.35);
}

.how-item-pink:hover {
    background: rgba(35, 8, 24, 0.95);
    border-color: var(--color-pink);
    transform: translateX(8px);
    box-shadow: 0 8px 25px rgba(255, 42, 133, 0.25);
}

/* Step 04 Emerald */
.how-item-emerald .how-number {
    border: 2px solid var(--color-emerald);
    background: rgba(0, 255, 135, 0.15);
    color: var(--color-emerald-light);
    box-shadow: 0 0 15px rgba(0, 255, 135, 0.35);
}

.how-item-emerald:hover {
    background: rgba(4, 30, 20, 0.95);
    border-color: var(--color-emerald);
    transform: translateX(8px);
    box-shadow: 0 8px 25px rgba(0, 255, 135, 0.25);
}

.how-number {
    width: 46px;
    height: 46px;
    min-width: 46px;
    font-family: var(--font-heading);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    font-weight: 800;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.how-step-text h4 {
    margin: 0 0 0.2rem;
    font-size: 1.15rem;
    font-weight: 700;
    color: #ffffff;
}

.how-step-text p {
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.72);
}

/* ---------------- 7. TECHNOLOGY SECTION (4 TECH PILLARS) ---------------- */
.tech-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.75rem;
}

@media (min-width: 640px) {
    .tech-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .tech-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* ---------------- FOOTER SECTION WITH RAINBOW ACCENT ---------------- */
.site-footer {
    background: #01040d;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 5rem;
    padding-bottom: 2.5rem;
    position: relative;
    z-index: 10;
}

.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--rainbow-gradient-h);
    background-size: 200% 100%;
    animation: rainbowScroll 8s linear infinite;
}

@media (max-width: 767px) {
    .site-footer {
        padding-top: 3.75rem;
        padding-bottom: 2rem;
    }
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.75rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

@media (min-width: 640px) and (max-width: 1023px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2.5rem;
    }

    .footer-col:last-child {
        grid-column: span 2;
        max-width: 500px;
    }
}

@media (min-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1.4fr 1fr 1.25fr;
        gap: 4rem;
        align-items: start;
    }
}

.footer-brand-link {
    display: inline-block;
    margin-bottom: 1.25rem;
    transition: transform 0.3s ease;
}

.footer-brand-link:hover {
    transform: scale(1.04);
}

.footer-logo {
    height: 60px;
    width: auto;
    max-width: 175px;
    object-fit: contain;
    filter: drop-shadow(0 0 15px rgba(0, 240, 255, 0.45));
}

.footer-tagline {
    font-size: 1.02rem;
    line-height: 1.6;
    max-width: 320px;
    margin-bottom: 1.35rem;
}

.footer-status-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-emerald-light);
    background: rgba(0, 255, 135, 0.08);
    padding: 0.4rem 0.95rem;
    border-radius: 9999px;
    border: 1px solid rgba(0, 255, 135, 0.3);
    box-shadow: 0 0 15px rgba(0, 255, 135, 0.15);
}

.footer-col-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1.35rem;
    letter-spacing: 0.04em;
}

.footer-links-list {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.footer-link {
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.98rem;
    transition: all 0.25s ease;
    display: inline-block;
}

.footer-link:hover {
    color: var(--color-cyan);
    transform: translateX(6px);
    text-shadow: 0 0 10px var(--color-cyan-glow);
}

.footer-desc {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.98rem;
    line-height: 1.65;
    margin-bottom: 1.25rem;
}

.footer-subscribe-form {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.cyber-input {
    width: 100%;
    background: rgba(6, 17, 41, 0.9);
    border: 1.5px solid rgba(168, 85, 247, 0.3);
    border-radius: 0.85rem;
    color: #ffffff;
    font-family: var(--font-body);
    padding: 0.85rem 1.25rem;
    font-size: 0.98rem;
    outline: none;
    transition: all 0.25s ease;
}

.cyber-input:focus {
    border-color: var(--color-cyan);
    box-shadow: 0 0 20px rgba(0, 240, 255, 0.45);
    background: rgba(6, 25, 55, 0.98);
}

.cyber-input::placeholder {
    color: rgba(255, 255, 255, 0.45);
}

.btn-subscribe {
    width: 100%;
    padding: 0.85rem 1.35rem;
}

.footer-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    padding-top: 2rem;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    gap: 0.85rem;
}

@media (min-width: 640px) {
    .footer-bottom {
        flex-direction: row;
    }
}

.footer-bottom-sub {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.48);
}