* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #00f0ff;
    --primary-dark: #0099ff;
    --secondary: #0077ff;
    --accent: #00d2ff;
    --accent-2: #0055ff;
    --dark: #000000;
    --dark-light: #0d1522;
    --card-bg: rgba(13, 21, 34, 0.85);
    --text: #ffffff;
    --text-muted: #8899a6;
    --gradient-1: linear-gradient(135deg, #00f0ff 0%, #0077ff 100%);
    --gradient-2: linear-gradient(135deg, #00d2ff 0%, #0055ff 100%);
    --gradient-3: linear-gradient(135deg, #00f0ff 0%, #00a2ff 50%, #0055ff 100%);
}



html {
    color-scheme: dark;
    scroll-behavior: smooth;
    overscroll-behavior: none;
    max-width: 100vw !important;
    overflow-x: hidden !important;
    overflow-y: auto !important;
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--dark);
    color: var(--text);
    line-height: 1.6;
    overflow: visible;
    overscroll-behavior-y: none;
    max-width: 100vw !important;
}

/* Page Entry Animation */
.page-entry-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    z-index: 30000;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.8s ease;
}

.page-entry-overlay.fade-out {
    opacity: 0;
    pointer-events: none;
}

#entryCanvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

#entryLoadingUI {
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.loader-spinner {
    width: 40px;
    height: 40px;
    border: 2px solid rgba(0, 240, 255, 0.1);
    border-top-color: var(--primary);
    border-radius: 50%;
    animation: loaderSpin 0.8s linear infinite;
}

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

.loader-label {
    margin-top: 18px;
    font-size: 11px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: rgba(0, 240, 255, 0.6);
    font-family: 'Space Grotesk', sans-serif;
    animation: loaderPulse 2s ease-in-out infinite;
}

@keyframes loaderPulse {
    0%, 100% { opacity: 0.4; }
    50% { opacity: 1; }
}

.loader-bar-track {
    width: 140px;
    height: 2px;
    background: rgba(255, 255, 255, 0.06);
    margin-top: 14px;
    border-radius: 2px;
    overflow: hidden;
}

.loader-bar-progress {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--primary), #00b4d8);
    border-radius: 2px;
    transition: width 0.3s ease;
}

body.loading {
    overflow: hidden !important;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Space Grotesk', sans-serif;
}

/* Grid Background */
.grid-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(0, 240, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 240, 255, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    pointer-events: none;
    z-index: 0;
    animation: gridMove 20s linear infinite;
}

@keyframes gridMove {
    0% {
        background-position: 0 0;
    }

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

/* Floating Orbs */
.orb {
    position: fixed;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.4;
    pointer-events: none;
    z-index: 0;
    will-change: transform;
}

.orb-1 {
    width: 500px;
    height: 500px;
    background: var(--primary);
    top: -150px;
    right: -150px;
    animation: float1 25s infinite ease-in-out;
}

.orb-2 {
    width: 400px;
    height: 400px;
    background: var(--accent);
    bottom: -100px;
    left: -100px;
    animation: float2 30s infinite ease-in-out;
}

.orb-3 {
    width: 350px;
    height: 350px;
    background: var(--secondary);
    top: 40%;
    left: 40%;
    animation: float3 35s infinite ease-in-out;
}

@keyframes float1 {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    25% {
        transform: translate(80px, -80px) scale(1.15);
    }

    50% {
        transform: translate(-50px, 50px) scale(0.9);
    }

    75% {
        transform: translate(60px, 30px) scale(1.08);
    }
}

@keyframes float2 {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    25% {
        transform: translate(-70px, 70px) scale(1.1);
    }

    50% {
        transform: translate(40px, -40px) scale(0.95);
    }

    75% {
        transform: translate(-50px, -20px) scale(1.05);
    }
}

@keyframes float3 {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    25% {
        transform: translate(60px, 60px) scale(1.12);
    }

    50% {
        transform: translate(-40px, -60px) scale(0.92);
    }

    75% {
        transform: translate(50px, -30px) scale(1.07);
    }
}

/* Scroll Progress */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    background: var(--gradient-3);
    z-index: 9999;
    transition: width 0.1s ease;
    box-shadow: 0 0 20px rgba(0, 240, 255, 0.5);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1.5rem 2rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

body.has-promo .navbar {
    top: 70px;
}

body.has-promo .navbar.scrolled {
    top: 70px !important;
}

.navbar.scrolled {
    top: 0 !important;
    padding: 0.875rem 2rem;
    background: rgba(10, 10, 15, 0.95);
    backdrop-filter: blur(30px);
    border-bottom: 1px solid rgba(0, 240, 255, 0.15);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    cursor: pointer;
}

.brand-logo-img {
    height: 31.5px;
    width: auto;
    object-fit: contain;
    transition: transform 0.3s ease, filter 0.3s ease;
}

.brand-logo-img:hover {
    transform: scale(1.03);
    filter: drop-shadow(0 0 12px rgba(0, 240, 255, 0.4));
}

.logo-icon {
    width: 48px;
    height: 48px;
    background: #000;
    position: relative;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #fff;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.6), 0 0 30px rgba(255, 255, 255, 0.3);
    z-index: 1;
    overflow: hidden;
}



.logo-icon img {
    width: 85%;
    height: 85%;
    object-fit: contain;
    transform: scale(1.15);
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.15));
    border-radius: 18px !important; /* Rounded square image */
}

.entry-logo-marco {
    width: 80px;
    height: 80px;
    background: #000;
    position: relative;
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    z-index: 1;
}

.entry-logo-marco::before {
    content: '';
    position: absolute;
    inset: -1.2px;
    background: #fff;
    border-radius: 31.2px;
    z-index: -1;
    box-shadow: 
        0 0 15px rgba(255, 255, 255, 0.4), 
        0 0 30px rgba(255, 255, 255, 0.2);
    animation: logoPulseWhite 3s infinite alternate ease-in-out;
}

.entry-logo-marco img {
    width: 80%;
    height: 80%;
    object-fit: contain;
    transform: scale(1.15);
    border-radius: 25px;
}

@keyframes logoPulseWhite {
    0%, 100% {
        box-shadow: 
            0 0 15px rgba(255, 255, 255, 0.4), 
            0 0 30px rgba(255, 255, 255, 0.2);
    }
    50% {
        box-shadow: 
            0 0 25px rgba(255, 255, 255, 0.8), 
            0 0 50px rgba(255, 255, 255, 0.5);
    }
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-muted);
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 0;
}

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

.nav-links a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-1);
    transition: width 0.3s ease;
    box-shadow: 0 0 10px rgba(0, 240, 255, 0.5);
}

.nav-links a:hover::before {
    width: 100%;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

@keyframes langPulse {
    0%, 100% { box-shadow: 0 0 5px rgba(255, 255, 255, 0.1); }
    50% { box-shadow: 0 0 15px rgba(255, 255, 255, 0.4); }
}

.lang-btn {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--text);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    animation: langPulse 3s infinite ease-in-out;
}

.lang-btn:hover {
    background: #ffffff;
    color: #000000;
    border-color: #ffffff;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.6) !important;
}

.lang-dropdown-wrapper {
    position: relative;
    display: inline-block;
}

.lang-dropdown {
    position: absolute;
    top: 120%;
    right: 0;
    width: 250px;
    background: rgba(10, 10, 15, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 240, 255, 0.2);
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1002;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.lang-dropdown.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lang-search {
    padding: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.lang-search input {
    width: 100%;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: var(--text);
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    outline: none;
    transition: border-color 0.3s ease;
}

.lang-search input:focus {
    border-color: var(--primary);
}

.lang-list {
    list-style: none;
    max-height: 300px;
    overflow-y: auto;
    padding: 0.5rem 0;
}

/* Custom Scrollbar for Lang List */
.lang-list::-webkit-scrollbar {
    width: 6px;
}

.lang-list::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
}

.lang-list::-webkit-scrollbar-thumb {
    background: rgba(0, 240, 255, 0.3);
    border-radius: 10px;
}

.lang-list::-webkit-scrollbar-thumb:hover {
    background: rgba(0, 240, 255, 0.6);
}

.lang-list li {
    padding: 0.75rem 1.5rem;
    cursor: pointer;
    font-size: 0.9rem;
    color: var(--text-muted);
    transition: all 0.2s ease;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.lang-list li:hover,
.lang-list li.selected {
    background: rgba(0, 240, 255, 0.1);
    color: var(--primary);
}

@keyframes blueSweep {
    0% { left: -100%; }
    50%, 100% { left: 150%; }
}

.nav-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.4rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.92rem;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    background: rgba(255, 255, 255, 0.05) !important;
    color: #ffffff !important;
    border: 1px solid rgba(0, 180, 255, 0.45) !important;
    box-shadow: 0 0 16px rgba(0, 150, 255, 0.25), inset 0 0 12px rgba(0, 180, 255, 0.1) !important;
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.5);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.nav-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 220, 255, 0.25), rgba(255, 255, 255, 0.35), transparent);
    transform: skewX(-20deg);
    animation: blueSweep 4.5s infinite ease-in-out;
}

.nav-cta:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.1) !important;
    border-color: rgba(0, 240, 255, 0.8) !important;
    box-shadow: 0 0 24px rgba(0, 180, 255, 0.45), 0 0 40px rgba(0, 240, 255, 0.2) !important;
    text-shadow: 0 0 12px rgba(255, 255, 255, 0.8), 0 0 20px rgba(0, 240, 255, 0.5);
}

.mobile-menu {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
    transition: all 0.3s ease;
}

.mobile-menu:hover span {
    width: 28px !important;
    background: #00f0ff;
    box-shadow: 0 0 10px rgba(0, 240, 255, 0.6);
}

.mobile-menu span {
    height: 3px;
    background: var(--text);
    border-radius: 2px;
    transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    margin-left: auto;
}
.mobile-menu span:nth-child(2) { width: 20px; }
.mobile-menu span:nth-child(3) { width: 12px; }

.mobile-menu.active span {
    width: 28px !important;
    background: #00f0ff;
}

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

.mobile-menu.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(20px);
}

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

/* Particles Container */
.particles-container {
    width: 100%;
    height: 600px;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
    pointer-events: none;
}

.particles-container canvas {
    pointer-events: auto;
    /* enable interactions with particles on hover */
}

/* Hero Section */
.hero {
    display: flex;
    flex-direction: column;
    padding: 150px 2rem 80px;
    position: relative;
    z-index: 1;
    overflow: visible;
    transition: padding-top 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    width: 100%;
}

body.has-promo .hero {
    padding-top: 220px;
}

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    width: 100%;
}

.promo-banner {
    background: #000000;
    border-bottom: 1px solid rgba(0, 240, 255, 0.15);
    height: 70px;
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    animation: fadeInDown 0.8s ease;
    z-index: 1002;
    overflow: hidden;
}

.promo-carousel {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.promo-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    height: 70px;
    width: 100%;
    flex-shrink: 0;
}

.promo-badge {
    background: rgba(0, 210, 255, 0.15);
    color: #00d2ff;
    border: 1px solid rgba(0, 210, 255, 0.3);
    padding: 0.35rem 0.8rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.promo-badge svg {
    width: 14px;
    height: 14px;
}

.promo-text {
    font-size: 0.95rem;
    color: var(--text);
    font-weight: 500;
}

.promo-icon {
    width: 20px;
    height: 20px;
}

.promo-icon.blue { color: #00f0ff; }
.promo-badge svg {
    width: 14px;
    height: 14px;
}

@media (max-width: 992px) {
    .promo-banner {
        width: 100%;
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
        padding: 1rem;
    }
    .promo-divider {
        width: 100%;
        height: 1px;
    }
    .promo-close {
        position: absolute;
        top: 10px;
        right: 10px;
    }
}

.hero-content h1 {
    font-size: clamp(2.2rem, 5.2vw, 4.4rem);
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 1.5rem;
    perspective: 1000px;
    color: #ffffff;
}

.hero-content h1 span,
.hero-title-highlight {
    color: #ffffff;
    background: none;
    -webkit-text-fill-color: #ffffff;
    display: inline-block;
}

.hero-content p {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    max-width: 550px;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.125rem 2.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    background: rgba(255, 255, 255, 0.06) !important;
    color: #ffffff !important;
    border: 1px solid rgba(0, 180, 255, 0.45) !important;
    box-shadow: 0 0 20px rgba(0, 150, 255, 0.28), inset 0 0 14px rgba(0, 180, 255, 0.12) !important;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.6);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(12px);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 220, 255, 0.25), rgba(255, 255, 255, 0.35), transparent);
    transform: skewX(-20deg);
    animation: blueSweep 4.5s infinite ease-in-out;
}

.btn-primary:hover {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.12) !important;
    border-color: rgba(0, 240, 255, 0.85) !important;
    box-shadow: 0 0 30px rgba(0, 180, 255, 0.5), 0 0 50px rgba(0, 240, 255, 0.25) !important;
    text-shadow: 0 0 14px rgba(255, 255, 255, 0.9), 0 0 24px rgba(0, 240, 255, 0.6);
}

.btn-secondary {
    color: #ffffff;
    padding: 1.125rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.25);
    transition: all 0.3s ease;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.btn-secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent);
    transform: skewX(-20deg);
    animation: blueSweep 4.5s infinite ease-in-out 0.8s;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(0, 240, 255, 0.6);
    transform: translateY(-3px);
    box-shadow: 0 0 25px rgba(0, 240, 255, 0.35);
}

/* Hero Stats / Feature Cards */
.hero-stats {
    margin-top: 4rem;
    padding-top: 4rem;
    position: relative;
    width: 100%;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 2rem;
    padding-right: 2rem;
}

.hero-stats::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary) 10%, var(--primary) 90%, transparent);
    opacity: 0.6;
    box-shadow: 0 0 8px rgba(0, 240, 255, 0.2);
    pointer-events: none;
}

.feature-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    perspective: 1000px;
}

.feature-card {
    position: relative;
    background: rgba(255, 255, 255, 0.02) !important;
    border: 1px solid rgba(0, 200, 255, 0.22) !important;
    border-radius: 24px;
    padding: 2.5rem 2rem 2rem;
    text-align: center;
    backdrop-filter: blur(30px);
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    cursor: pointer;
    overflow: hidden;
    opacity: 0;
    transform: translateY(40px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.8), 0 0 16px rgba(0, 150, 255, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.15) !important;
}

/* Gradient accent bar at top */
.feature-card-accent {
    position: absolute;
    top: 0;
    left: 15%;
    right: 15%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #00f0ff, #0077ff, transparent);
    opacity: 0.85;
    box-shadow: 0 0 12px rgba(0, 240, 255, 0.4);
    transition: all 0.4s ease;
}

.feature-card:hover .feature-card-accent {
    left: 5%;
    right: 5%;
    opacity: 1;
    box-shadow: 0 0 20px rgba(0, 240, 255, 0.7);
}

.feature-card.animate-in {
    animation: featureCardEntry 0.8s cubic-bezier(0.23, 1, 0.32, 1) forwards,
               featureCardFloat 6s ease-in-out 1s infinite;
}

.feature-card:nth-child(2).animate-in {
    animation-delay: 0.15s, 1.15s;
}

.feature-card:nth-child(3).animate-in {
    animation-delay: 0.3s, 1.3s;
}

@keyframes featureCardFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

@keyframes featureCardEntry {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.feature-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 24px;
    background: radial-gradient(circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(0, 240, 255, 0.12), transparent 60%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
}

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

.feature-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 240, 255, 0.5), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.feature-card:hover::after {
    opacity: 0;
}

.feature-card:hover {
    transform: translateY(-8px) !important;
    border-color: rgba(0, 240, 255, 0.8) !important;
    box-shadow: 0 16px 45px rgba(0, 0, 0, 0.95), 0 0 35px rgba(0, 240, 255, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.3) !important;
}

.feature-card-content {
    position: relative;
    z-index: 1;
}

/* Icon Wrapper — Circular with glow */
.feature-icon-wrapper {
    position: relative;
    width: 80px;
    height: 80px;
    margin: 0 auto 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon-bg {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.03) !important;
    border: 1px solid rgba(0, 240, 255, 0.25) !important;
    transition: all 0.4s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.8), 0 0 12px rgba(0, 240, 255, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.feature-card:hover .feature-icon-bg {
    background: linear-gradient(135deg, rgba(0, 240, 255, 0.25), rgba(0, 119, 255, 0.2)) !important;
    border-color: rgba(0, 240, 255, 0.8) !important;
    transform: scale(1.08);
    box-shadow: 
        inset 0 0 25px rgba(0, 240, 255, 0.25),
        0 0 30px rgba(0, 240, 255, 0.45);
}

.feature-icon-ring {
    position: absolute;
    inset: -6px;
    border-radius: 50%;
    border: 1px dashed rgba(0, 240, 255, 0.15);
    transition: all 0.5s ease;
    animation: iconRingRotate 20s linear infinite;
}

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

.feature-card:hover .feature-icon-ring {
    inset: -10px;
    border-color: rgba(0, 240, 255, 0.5);
}

.feature-icon-svg {
    position: relative;
    z-index: 1;
    width: 34px;
    height: 34px;
}

.feature-icon-svg path,
.feature-icon-svg line,
.feature-icon-svg circle,
.feature-icon-svg polyline,
.feature-icon-svg polygon {
    stroke: #ffffff !important;
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
    fill: none;
    transition: all 0.4s ease;
}

.feature-card:hover .feature-icon-svg {
    filter: drop-shadow(0 0 12px rgba(0, 240, 255, 0.8));
}

/* Card Number — Large and prominent */
.feature-card-number {
    font-size: 3.2rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 0.5rem;
    font-family: 'Space Grotesk', sans-serif;
    color: #ffffff !important;
    background: none !important;
    -webkit-text-fill-color: #ffffff !important;
    transition: transform 0.4s ease, text-shadow 0.4s ease;
    letter-spacing: -1px;
}

.feature-card:hover .feature-card-number {
    transform: scale(1.06);
    text-shadow: 0 0 24px rgba(0, 240, 255, 0.5);
}

/* Card Label */
.feature-card-label {
    font-size: 1rem;
    font-weight: 600;
    color: #ffffff !important;
    margin-bottom: 0.75rem;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
}

.feature-card:hover .feature-card-label {
    color: #fff;
}

/* Card Divider */
.feature-card-divider {
    width: 30px;
    height: 2px;
    background: linear-gradient(90deg, #00f0ff, #0077ff);
    margin: 0.75rem auto 1rem;
    border-radius: 2px;
    box-shadow: 0 0 8px rgba(0, 240, 255, 0.4);
    transition: width 0.4s ease, box-shadow 0.4s ease;
}

.feature-card:hover .feature-card-divider {
    width: 50px;
    box-shadow: 0 0 12px rgba(0, 240, 255, 0.7);
}

/* Card Description */
.feature-card-description {
    font-size: 0.85rem;
    color: rgba(170, 168, 198, 0.8);
    line-height: 1.7;
    max-width: 260px;
    margin: 0 auto;
}

/* Status Dot */
.feature-status-dot {
    display: inline-block;
    width: 7px;
    height: 7px;
    background: #22c55e;
    border-radius: 50%;
    margin-right: 0.3rem;
    animation: featureStatusPulse 2s ease-in-out infinite;
}

@keyframes featureStatusPulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.4); }
    50% { box-shadow: 0 0 0 6px rgba(34, 197, 94, 0); }
}

/* Card Tag — Pill badge */
.feature-card-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    margin-top: 1.5rem;
    padding: 0.5rem 1.2rem;
    background: rgba(255, 255, 255, 0.03) !important;
    border: 1px solid rgba(0, 240, 255, 0.22) !important;
    border-radius: 50px;
    color: #ffffff !important;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.3px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.8), inset 0 1px 0 rgba(255, 255, 255, 0.12);
    transition: all 0.3s ease;
}

.feature-card:hover .feature-card-tag {
    background: linear-gradient(135deg, rgba(0, 240, 255, 0.18), rgba(0, 119, 255, 0.12)) !important;
    border-color: rgba(0, 240, 255, 0.6) !important;
    box-shadow: 0 0 20px rgba(0, 240, 255, 0.25) !important;
}

.feature-card-tag svg {
    width: 13px;
    height: 13px;
}

/* Tooltip */
.feature-tooltip {
    position: absolute;
    bottom: calc(100% + 10px);
    left: 50%;
    transform: translateX(-50%) translateY(5px);
    background: rgba(10, 10, 15, 0.95);
    border: 1px solid rgba(0, 240, 255, 0.3);
    border-radius: 10px;
    padding: 0.6rem 1rem;
    color: #cbd5e1;
    font-size: 0.75rem;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    z-index: 10;
}

.feature-tooltip::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 5px solid transparent;
    border-top-color: rgba(0, 240, 255, 0.3);
}

.feature-card:hover .feature-tooltip {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

/* Floating Particles */
.floating-particle {
    position: fixed;
    width: 3px;
    height: 3px;
    background: rgba(0, 240, 255, 0.4);
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}

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

.hero-visual {
    position: relative;
}

.hero-card {
    background: var(--card-bg);
    border: 1px solid rgba(0, 240, 255, 0.2);
    border-radius: 25px;
    padding: 2rem;
    backdrop-filter: blur(20px);
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    max-width: 100%;
    width: 100%;
}

.hero-card:hover {
    border-color: rgba(0, 240, 255, 0.4);
    box-shadow: 0 0 50px rgba(0, 240, 255, 0.2);
}

.hero-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--gradient-1);
}

.code-block {
    font-family: 'Space Grotesk', monospace;
    font-size: clamp(0.65rem, 2vw, 0.85rem);
    line-height: 1.8;
    max-width: 100%;
}

.code-line {
    display: flex;
    gap: 1rem;
    opacity: 0;
    transform: translateX(-20px);
    animation: codeReveal 0.5s ease forwards;
}

.code-line:nth-child(1) {
    animation-delay: 0.5s;
}

.code-line:nth-child(2) {
    animation-delay: 0.7s;
}

.code-line:nth-child(3) {
    animation-delay: 0.9s;
}

.code-line:nth-child(4) {
    animation-delay: 1.1s;
}

.code-line:nth-child(5) {
    animation-delay: 1.3s;
}

.code-line:nth-child(6) {
    animation-delay: 1.5s;
}

@keyframes codeReveal {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.code-number {
    color: var(--text-muted);
    min-width: 25px;
}

.code-keyword {
    color: #00d2ff;
}

.code-function {
    color: #00f0ff;
}

.code-string {
    color: #0099ff;
}

.code-comment {
    color: #8892b0;
}

.floating-element {
    position: absolute;
    background: var(--card-bg);
    border: 1px solid rgba(0, 240, 255, 0.3);
    border-radius: 15px;
    padding: 1rem 1.5rem;
    backdrop-filter: blur(20px);
    animation: floatElement 4s infinite ease-in-out;
    transition: all 0.3s ease;
    cursor: pointer;
}

.floating-element:hover {
    transform: scale(1.1);
    border-color: var(--primary);
    box-shadow: 0 0 30px rgba(0, 240, 255, 0.3);
}

.floating-element-1 {
    top: -20px;
    right: 0px;
    animation-delay: 0s;
}

.floating-element-2 {
    bottom: -30px;
    left: -15px;
    animation-delay: 2s;
}

@keyframes floatElement {

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

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

.floating-element-icon {
    font-size: 1.5rem;
    margin-bottom: 0.25rem;
}

.floating-element-text {
    font-size: 0.85rem;
    font-weight: 600;
}

.floating-element-sub {
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* =========================================
   Google Translate Overrides
   ========================================= */

/* Hide the main widget and banner */
.goog-te-banner-frame.skiptranslate,
.goog-te-gadget-icon,
iframe.goog-te-banner-frame,
#google_translate_element {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    height: 0 !important;
    width: 0 !important;
    position: absolute !important;
    top: -9999px !important;
    z-index: -9999 !important;
}

/* Prevent Google Translate from pushing the body down */
body {
    top: 0px !important;
    position: static !important;
    min-height: 100vh !important;
}

/* Hide hover popups and tooltips */
.goog-tooltip,
.goog-tooltip:hover,
#goog-gt-tt,
.goog-te-balloon-frame {
    display: none !important;
    box-shadow: none !important;
}

/* Remove text highlighting on translated words */
.goog-text-highlight {
    background-color: transparent !important;
    border: none !important;
    box-shadow: none !important;
}

/* ===================================================
   Suppress ALL Google Translate UI (banner, tooltip, bar)
   =================================================== */
.goog-te-banner-frame,
iframe.goog-te-banner-frame,
.goog-te-balloon-frame,
#goog-gt-tt,
.goog-tooltip,
.goog-tooltip-content,
.goog-te-ftab-float,
.goog-te-menu-frame,
.skiptranslate>iframe:not([src*="recaptcha"]):not([title*="reCAPTCHA"]):not([title*="recaptcha"]),
.skiptranslate>font {
    display: none !important;
    visibility: hidden !important;
    height: 0 !important;
    max-height: 0 !important;
    overflow: hidden !important;
}

/* Fix the body top offset Google Translate forces */
body {
    top: 0 !important;
    position: static !important;
}

/* Hide the "Powered by Google" bar inside any GT iframe */
.goog-te-gadget {
    display: none !important;
}

/* Footer overscroll fix */
.footer {
    padding-bottom: calc(2rem + 100vh);
    margin-bottom: -100vh;
}

/* Promo Top Bar */
.promo-top-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 70px;
    background: #000000 !important;
    z-index: 2000;
    display: flex !important;
    align-items: center;
    border-bottom: 1px solid #ffffff !important;
    overflow: hidden !important;
}

.promo-container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    overflow: hidden !important;
}

.promo-carousel {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    width: 100%;
    height: 100%;
    animation: promoSlideHorizontal 12s infinite cubic-bezier(0.4, 0, 0.2, 1);
}

.promo-item {
    min-width: 100% !important;
    width: 100% !important;
    flex-shrink: 0 !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
    gap: 15px;
    height: 70px;
}

.promo-pill {
    font-size: 11px;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 20px;
    text-transform: uppercase;
}

.promo-pill-purple {
    background: rgba(0, 229, 255, 0.15);
    color: #00e5ff;
    border: 1px solid rgba(0, 229, 255, 0.3);
}

.promo-icon {
    width: 20px;
    height: 20px;
}

.promo-icon-blue {
    color: #4cd7f6;
}

.promo-icon-green {
    color: #00ff88;
}

.promo-text {
    font-size: 14px;
    color: #fff;
    font-weight: 500;
    letter-spacing: 0.5px;
}

@keyframes promoSlideHorizontal {
    0%, 30% { transform: translateX(0); }
    33%, 63% { transform: translateX(-100%); }
    66%, 96% { transform: translateX(-200%); }
    100% { transform: translateX(-300%); }
}

/* Chat Ticker Bubble */
.chat-ticker-bubble {
    position: absolute;
    bottom: 160px;
    right: 30px;
    background: rgba(13, 13, 25, 0.95);
    border: 1px solid rgba(0, 240, 255, 0.3);
    border-radius: 20px;
    padding: 2px 10px;
    height: 30px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), 0 0 20px rgba(0, 240, 255, 0.1);
    z-index: 1000;
    width: 80px;
    display: flex;
    justify-content: center;
    pointer-events: none;
    animation: floatBubble 3s ease-in-out infinite;
    max-width: calc(100vw - 60px);
}

@keyframes floatBubble {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

.mini-ticker-carousel {
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.mini-ticker-item {
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-shrink: 0;
    width: 100%;
}

.mini-ticker-item .highlight {
    font-size: 10px;
    font-weight: 700;
    color: var(--primary);
    background: rgba(0, 229, 255, 0.1);
    padding: 2px 6px;
    border-radius: 4px;
    border: 1px solid rgba(0, 229, 255, 0.2);
}

.mini-ticker-item .highlight-blue {
    font-size: 10px;
    font-weight: 700;
    color: var(--secondary);
    background: rgba(76, 215, 246, 0.1);
    padding: 2px 6px;
    border-radius: 4px;
    border: 1px solid rgba(76, 215, 246, 0.2);
}

.mini-ticker-item .highlight-green {
    font-size: 10px;
    font-weight: 700;
    color: #22c55e;
    background: rgba(34, 197, 94, 0.1);
    padding: 2px 6px;
    border-radius: 4px;
    border: 1px solid rgba(34, 197, 94, 0.2);
}

.mini-ticker-item .text {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
    letter-spacing: 0.05em;
}

/* ===================================================
   RESPONSIVE COMPLETO — BREAKPOINTS ESTRUCTURADOS
   =================================================== */

/* === TABLET LANDSCAPE (992-1200px) === */
@media (max-width: 1200px) {
    .orb-1 {
        width: 350px;
        height: 350px;
        top: -100px;
        right: -100px;
    }
    .orb-2 {
        width: 280px;
        height: 280px;
    }
    .orb-3 {
        width: 250px;
        height: 250px;
    }

    .hero {
        padding: 130px 1.5rem 60px;
    }

    body.has-promo .hero {
        padding-top: 200px;
    }

    .hero-container {
        gap: 3rem;
    }

    .hero-content h1 {
        font-size: 3.5rem;
    }

    .hero-content p {
        font-size: 1.1rem;
    }

    .feature-cards-grid {
        gap: 1.5rem;
    }

    .feature-card {
        padding: 2rem 1.5rem 1.5rem;
    }

    .feature-card-number {
        font-size: 2.8rem;
    }

    .navbar, .navbar.scrolled {
        padding: 1.25rem 1.5rem !important;
    }
}

/* === TABLET PORTRAIT (768-992px) === */
@media (max-width: 992px) {
    .orb-1 {
        width: 250px;
        height: 250px;
        top: -80px;
        right: -80px;
    }
    .orb-2 {
        width: 200px;
        height: 200px;
        bottom: -60px;
        left: -60px;
    }
    .orb-3 {
        width: 180px;
        height: 180px;
    }

    .hero {
        padding: 120px 1.25rem 50px;
    }

    body.has-promo .hero {
        padding-top: 180px;
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .hero-content h1 {
        font-size: 3rem;
    }

    .hero-content p {
        font-size: 1.05rem;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-visual {
        max-width: 500px;
        margin: 0 auto;
    }

    .hero-stats {
        margin-top: 3rem;
        padding-top: 3rem;
    }

    .feature-cards-grid {
        gap: 1rem;
    }

    .feature-card {
        padding: 1.75rem 1.25rem 1.5rem;
    }

    .feature-card-number {
        font-size: 2.4rem;
    }

    .feature-card-description {
        font-size: 0.8rem;
        max-width: 220px;
    }

    .feature-icon-wrapper {
        width: 65px;
        height: 65px;
        margin: 0 auto 1.5rem;
    }

    .floating-element-1 {
        right: 10px;
        top: -10px;
        padding: 0.75rem 1rem;
    }

    .floating-element-2 {
        left: 0px;
        bottom: -25px;
        padding: 0.75rem 1rem;
    }

    .floating-element-text {
        font-size: 0.75rem;
    }

    .floating-element-sub {
        font-size: 0.65rem;
    }

    .promo-banner {
        width: 100%;
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
        padding: 1rem;
    }
    .promo-divider {
        width: 100%;
        height: 1px;
    }
    .promo-close {
        position: absolute;
        top: 10px;
        right: 10px;
    }

    .navbar, .navbar.scrolled {
        padding: 1rem 0.5rem !important;
    }

    .logo {
        font-size: 1.4rem;
    }

    .logo-icon {
        width: 40px;
        height: 40px;
    }
}

/* === MOBILE (max-width: 768px) === */
@media (max-width: 768px) {
    .orb-1 {
        width: 180px;
        height: 180px;
        top: -60px;
        right: -60px;
    }
    .orb-2 {
        width: 150px;
        height: 150px;
        bottom: -50px;
        left: -50px;
    }
    .orb-3 {
        width: 120px;
        height: 120px;
    }

    .hero {
        padding: 100px 1rem 40px;
    }

    body.has-promo .hero {
        padding-top: 160px;
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 1.5rem;
    }

    .hero-content h1 {
        font-size: 2rem;
        line-height: 1.2;
    }

    .hero-content p {
        font-size: 0.95rem;
        margin-bottom: 2rem;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-buttons {
        justify-content: center;
        gap: 0.75rem;
    }

    .btn-primary,
    .btn-secondary {
        padding: 0.875rem 1.75rem;
        font-size: 0.9rem;
    }

    .hero-visual {
        max-width: 100%;
        margin: 1rem auto 0;
        padding: 0 25px;
    }

    .hero-stats {
        margin-top: 2rem;
        padding-top: 2rem;
        padding-left: 0.5rem;
        padding-right: 0.5rem;
    }

    .feature-cards-grid {
        gap: 1.25rem;
        max-width: 400px;
        margin: 0 auto;
    }

    .feature-card {
        padding: 2rem 1.5rem 1.5rem;
    }

    .feature-card-number {
        font-size: 2.8rem;
    }

    .feature-card-description {
        max-width: 100%;
    }

    .floating-element {
        padding: 0.5rem 0.8rem !important;
        animation: floatElementMobile 4s infinite ease-in-out !important;
        display: flex !important;
        border-radius: 12px !important;
    }

    .floating-element-1 {
        right: 15px !important;
        top: -15px !important;
    }

    .floating-element-2 {
        left: 10px !important;
        bottom: -25px !important;
    }

    @keyframes floatElementMobile {
        0%, 100% {
            transform: translateY(0) scale(0.75);
        }
        50% {
            transform: translateY(-8px) scale(0.75);
        }
    }

    .code-block {
        padding: 0.75rem !important;
        font-size: 0.65rem !important;
        margin: 0 auto;
        word-break: break-all;
    }

    .hero-card {
        padding: 1.25rem;
        border-radius: 18px;
    }

    .code-line {
        gap: 0.5rem;
    }

    .chat-ticker-bubble {
        bottom: 130px;
        right: 15px;
    }

    .nav-container {
        padding: 0 0.25rem !important;
        height: 55px !important;
        display: flex !important;
        justify-content: space-between !important;
        align-items: center !important;
    }

    .logo {
        display: flex !important;
        align-items: center !important;
        gap: 8px !important;
        flex: 0 1 auto !important;
        font-size: 1.25rem;
    }

    .logo-icon {
        width: 36px;
        height: 36px;
    }

    .logo-icon-wrapper {
        width: 34px !important;
        height: 34px !important;
        margin: 0 !important;
    }

    .logo-img {
        width: 26px !important;
        height: 26px !important;
    }

    .logo-text {
        display: block !important;
        font-size: 1.15rem !important;
        font-weight: 700 !important;
        margin: 0 !important;
        color: #ffffff !important;
    }

    .navbar, .navbar.scrolled {
        padding: 0.75rem 0.25rem !important;
    }

    body.has-promo .navbar {
        top: 50px;
    }

    body.has-promo .navbar.scrolled {
        top: 50px !important;
    }

    .promo-top-bar {
        height: 50px;
    }

    .promo-item {
        height: 50px;
        gap: 10px;
    }

    .promo-pill {
        font-size: 9px;
        padding: 2px 8px;
    }

    .promo-text {
        font-size: 12px;
    }
}

/* === MOBILE SMALL (max-width: 480px) === */
@media (max-width: 480px) {
    .hero {
        padding: 90px 0.75rem 30px !important;
    }

    body.has-promo .hero {
        padding-top: 140px !important;
    }

    .hero-content h1 {
        font-size: 1.7rem !important;
        line-height: 1.2 !important;
        word-break: break-word !important;
    }

    .hero-content p {
        font-size: 0.85rem !important;
    }

    .code-block {
        padding: 0.5rem !important;
        font-size: 0.55rem !important;
    }

    .logo-text {
        font-size: 1rem !important;
    }

    .feature-cards-grid {
        max-width: 100%;
        padding: 0 !important;
    }

    .feature-card {
        padding: 1.5rem 1.25rem 1.25rem;
    }

    .feature-card-number {
        font-size: 2.4rem;
    }

    .feature-icon-wrapper {
        width: 60px;
        height: 60px;
        margin: 0 auto 1.25rem;
    }

    .btn-primary,
    .btn-secondary {
        padding: 0.75rem 1.5rem;
        font-size: 0.85rem;
    }

    .hero-stats {
        padding-left: 0;
        padding-right: 0;
    }
}