/* Main Design System */
:root {
    --primary: #06b6d4;
    --primary-light: #22d3ee;
    --primary-dark: #0891b2;
    --bg-dark: #020617;
    --bg-card: #0f172a;
    --text-main: #f8fafc;
    --text-muted: #94a3b8;
    --white: #ffffff;
    --glass: rgba(15, 23, 42, 0.7);
    --border-glass: rgba(255, 255, 255, 0.1);
    --transition: cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Outfit', 'Inter', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Typography */
h1,
h2,
h3,
h4 {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
}

.mt-4 {
    margin-top: 1.5rem;
}

.mt-5 {
    margin-top: 3rem;
}

.text-center {
    text-align: center;
}

/* Utility */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-padding {
    padding: 120px 0;
}

/* Navbar */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.2rem 0;
    background: rgba(2, 6, 23, 0.85);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid var(--border-glass);
    transition: all 0.3s var(--transition);
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-main {
    height: 75px;
    /* Extra increase from 55px */
    object-fit: contain;
}

.btn-visit {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    padding: 12px 28px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.4s var(--transition);
    box-shadow: 0 4px 15px rgba(6, 182, 212, 0.2);
    display: flex;
    align-items: center;
    gap: 10px;
}

.btn-visit:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 10px 30px rgba(6, 182, 212, 0.4);
    filter: brightness(1.1);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    padding-top: 80px;
}

.hero-bg-glow {
    position: absolute;
    width: 80vw;
    height: 80vw;
    background: radial-gradient(circle, rgba(6, 182, 212, 0.12) 0%, transparent 60%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
    animation: drift 15s infinite linear;
}

@keyframes drift {
    0% {
        transform: translate(-50%, -50%) rotate(0deg) scale(1);
    }

    50% {
        transform: translate(-45%, -55%) rotate(180deg) scale(1.2);
    }

    100% {
        transform: translate(-50%, -50%) rotate(360deg) scale(1);
    }
}

.hero-content h1 {
    font-size: clamp(3rem, 8vw, 5rem);
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #fff 30%, var(--primary-light) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.05;
    letter-spacing: -1px;
}

.hero-content p {
    font-size: 1.25rem;
    color: var(--text-muted);
    max-width: 800px;
    margin: 0 auto 3rem;
    font-weight: 300;
}

.merger-banner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 60px;
    margin-bottom: 60px;
    background: rgba(255, 255, 255, 0.04);
    padding: 30px 60px;
    border-radius: 120px;
    border: 1px solid var(--border-glass);
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
    backdrop-filter: blur(15px);
    position: relative;
    animation: bannerEntrance 1.5s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

@keyframes bannerEntrance {
    0% {
        opacity: 0;
        transform: translateY(40px) scale(0.9);
    }

    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.merger-logo {
    height: 90px;
    /* Increased size */
    filter: drop-shadow(0 0 20px rgba(6, 182, 212, 0.2));
    transition: all 0.5s var(--transition);
    object-fit: contain;
}

/* Merging Theme Animation */
.merger-logo.corus {
    animation: mergeLeftEnhanced 2s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

.merger-logo.zentryx {
    animation: mergeRightEnhanced 2s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

.plus-icon {
    font-size: 2rem;
    color: var(--primary);
    background: rgba(6, 182, 212, 0.15);
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    animation: plusRevealEnhanced 1.2s cubic-bezier(0.34, 1.56, 0.64, 1) 1.2s both;
    position: relative;
    z-index: 2;
    box-shadow: 0 0 20px rgba(6, 182, 212, 0.4);
}

/* Impact glow on merge */
.merger-banner::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, var(--primary-light) 0%, transparent 70%);
    opacity: 0;
    z-index: 1;
    animation: unionGlowEnhanced 2.5s ease 1.5s infinite alternate;
}

@keyframes mergeLeftEnhanced {
    0% {
        opacity: 0;
        transform: translateX(-120px) scale(0.7) rotate(-10deg);
    }

    70% {
        transform: translateX(10px) scale(1.1);
    }

    100% {
        opacity: 1;
        transform: translateX(0) scale(1) rotate(0);
    }
}

@keyframes mergeRightEnhanced {
    0% {
        opacity: 0;
        transform: translateX(120px) scale(0.7) rotate(10deg);
    }

    70% {
        transform: translateX(-10px) scale(1.1);
    }

    100% {
        opacity: 1;
        transform: translateX(0) scale(1) rotate(0);
    }
}

@keyframes plusRevealEnhanced {
    0% {
        opacity: 0;
        transform: scale(0) rotate(-270deg);
    }

    100% {
        opacity: 1;
        transform: scale(1) rotate(0deg);
    }
}

@keyframes unionGlowEnhanced {
    0% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(0.3);
    }

    50% {
        opacity: 0.5;
        transform: translate(-50%, -50%) scale(1.8);
        filter: blur(10px);
    }

    100% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(2.5);
    }
}

.merger-logo:hover {
    transform: scale(1.2) translateY(-5px);
    filter: drop-shadow(0 0 35px var(--primary));
}

/* Info Section */
.info-section {
    background: var(--bg-card);
    border-radius: 40px;
    padding: 80px 60px;
    border: 1px solid var(--border-glass);
    position: relative;
    z-index: 10;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.info-card {
    background: rgba(255, 255, 255, 0.02);
    padding: 45px;
    border-radius: 30px;
    border: 1px solid var(--border-glass);
    transition: all 0.4s var(--transition);
}

.info-card:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(6, 182, 212, 0.3);
    transform: translateY(-5px);
}

.info-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: var(--white);
    display: flex;
    align-items: center;
    gap: 15px;
}

.info-card h3 i {
    color: var(--primary);
    font-size: 1.4rem;
}

.status-list {
    list-style: none;
}

.status-list li {
    padding: 14px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    gap: 15px;
    color: var(--text-muted);
    font-size: 1.05rem;
}

.status-list li:last-child {
    border-bottom: none;
}

.status-list li i {
    color: var(--primary);
    font-size: 0.9rem;
}

/* Highlight Box */
.highlight-box {
    background: linear-gradient(90deg, rgba(6, 182, 212, 0.1), rgba(6, 182, 212, 0.02));
    padding: 25px 35px;
    border-radius: 20px;
    border-left: 4px solid var(--primary);
    margin: 40px 0;
    text-align: left;
    backdrop-filter: blur(10px);
}

/* Footer */
footer {
    padding: 80px 0 40px;
    border-top: 1px solid var(--border-glass);
    text-align: center;
    background: linear-gradient(to top, rgba(6, 182, 212, 0.03), transparent);
}

.footer-logo {
    height: 100px;
    /* Extra increase from 65px */
    margin-bottom: 25px;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin: 40px 0;
}

.social-links a {
    color: var(--text-muted);
    font-size: 1.4rem;
    transition: all 0.3s var(--transition);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 50%;
    border: 1px solid var(--border-glass);
}

.social-links a:hover {
    color: var(--primary);
    background: rgba(6, 182, 212, 0.1);
    transform: translateY(-5px);
    border-color: var(--primary);
}

/* Migration Highlight Section */
.migration-container {
    background: var(--white);
    padding: 60px 50px;
    border-radius: 40px;
    margin-top: 80px;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.4), 0 0 0 10px rgba(6, 182, 212, 0.1);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.8);
}

.migration-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 8px;
    height: 100%;
    background: linear-gradient(to bottom, var(--primary), var(--primary-dark));
}

.migration-container h2 {
    color: var(--bg-dark);
    font-size: 2.5rem;
    margin-bottom: 40px;
    font-weight: 800;
}

.badge-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.migration-badge {
    background: var(--bg-dark);
    color: var(--white);
    padding: 18px 35px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 1.15rem;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: all 0.4s var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    min-width: 220px;
    justify-content: center;
}

.migration-badge i {
    color: var(--primary-light);
    font-size: 1.4rem;
    transition: transform 0.3s ease;
}

.migration-badge:hover {
    transform: translateY(-10px) scale(1.03);
    background: var(--primary);
    color: var(--white);
    box-shadow: 0 25px 50px rgba(6, 182, 212, 0.4);
    border-color: var(--primary-light);
}

.migration-badge:hover i {
    color: var(--white);
    transform: scale(1.2) rotate(15deg);
}

/* Responsive */
@media (max-width: 992px) {
    .grid-2 {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 1.5rem;
    }

    .hero-content h1 {
        font-size: 3.2rem;
    }

    .merger-banner {
        flex-direction: column;
        gap: 15px;
        padding: 30px;
        border-radius: 30px;
        width: 100%;
    }

    .info-section {
        padding: 50px 30px;
    }

    .info-card {
        padding: 30px;
    }

    .migration-container {
        padding: 40px 20px;
    }

    .migration-badge {
        width: 100%;
        min-width: unset;
    }
}