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

body {
    background: #000;
    color: white;
    font-family: 'Inter', sans-serif;
    overflow-x: hidden;
}

/* BACKGROUND EFFECT */

body::before {
    content: "";
    position: fixed;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(0, 128, 128, 0.15), transparent 70%);
    top: -200px;
    right: -200px;
    z-index: -1;
}

body::after {
    content: "";
    position: fixed;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 128, 128, 0.08), transparent 70%);
    bottom: -250px;
    left: -250px;
    z-index: -1;
}

/* NAVBAR */

.navbar {
    width: 100%;
    padding: 24px 8%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    overflow: hidden;
}

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

.logo-box {
    width: 42px;
    height: 42px;
    background: teal;
    color: black;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 12px;
    font-weight: 800;
    font-size: 1.1rem;
}

.logo h2 {
    font-size: 1.5rem;
    font-weight: 800;
}

nav {
    display: flex;
    align-items: center;
    gap: 35px;
}

nav a {
    text-decoration: none;
    color: #d0d0d0;
    transition: 0.3s;
    position: relative;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 6px;
}

nav a.active {
    color: teal;
}

nav a.active::after {
    width: 100%;
}

nav a:hover {
    color: teal;
}

nav a i {
    font-size: 1rem;
    transition: transform 0.3s ease;
}

nav a::after {
    content: "";
    position: absolute;
    width: 0%;
    height: 2px;
    background: teal;
    left: 0;
    bottom: -8px;
    transition: 0.3s;
}

nav a:hover::after {
    width: 100%;
}

.nav-btn {
    padding: 14px 26px;
    background: teal;
    border: none;
    border-radius: 14px;
    color: black;
    font-weight: 800;
    cursor: pointer;
    transition: 0.3s;
}

.nav-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 0 25px rgba(0, 128, 128, 0.45);
}

/* LIQUID CIRCLE MORPH ANIMATION */

.liquid-circle {
    position: absolute;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(0, 128, 128, 0.3), rgba(0, 200, 200, 0.2));
    border-radius: 35% 65% 45% 55% / 60% 40% 60% 40%;
    animation: liquidMorph 6s ease-in-out infinite;
    filter: blur(0.5px);
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    pointer-events: none;
    opacity: 0.6;
}

@keyframes liquidMorph {

    0%,
    100% {
        border-radius: 35% 65% 45% 55% / 60% 40% 60% 40%;
        background: linear-gradient(135deg, rgba(0, 128, 128, 0.3), rgba(0, 200, 200, 0.2));
    }

    25% {
        border-radius: 60% 40% 40% 60% / 40% 60% 60% 40%;
        background: linear-gradient(225deg, rgba(0, 128, 128, 0.4), rgba(0, 150, 150, 0.25));
    }

    50% {
        border-radius: 45% 55% 60% 40% / 55% 45% 40% 60%;
        background: linear-gradient(315deg, rgba(0, 128, 128, 0.35), rgba(0, 180, 180, 0.22));
    }

    75% {
        border-radius: 55% 45% 55% 45% / 45% 55% 45% 55%;
        background: linear-gradient(45deg, rgba(0, 128, 128, 0.38), rgba(0, 200, 200, 0.2));
    }
}

/* HERO */

.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 140px 20px 80px;
    position: relative;
}

.tag {
    padding: 10px 18px;
    border-radius: 40px;
    background: rgba(0, 128, 128, 0.12);
    border: 1px solid rgba(0, 128, 128, 0.3);
    color: teal;
    margin-bottom: 30px;
    font-size: 0.95rem;
}

.hero h1 {
    font-size: 5rem;
    max-width: 950px;
    line-height: 1.05;
    font-weight: 900;
    margin-bottom: 30px;
}

.hero span {
    color: teal;
    text-shadow: 0 0 25px rgba(0, 128, 128, 0.35);
}

.hero p {
    color: #9d9d9d;
    max-width: 700px;
    line-height: 1.9;
    margin-bottom: 45px;
    font-size: 1.1rem;
}

/* BUTTONS */

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

button {
    padding: 18px 34px;
    background: teal;
    border: none;
    border-radius: 16px;
    font-weight: 800;
    cursor: pointer;
    transition: 0.3s;
    color: black;
    font-size: 1rem;
}

button:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 0 30px rgba(0, 128, 128, 0.4);
}

.secondary-btn {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
}

.secondary-btn:hover {
    border-color: teal;
    color: teal;
    box-shadow: none;
}

/* STATS */

.stats {
    margin-top: 70px;
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
}

.stat-box {
    min-width: 200px;
    padding: 30px;
    background: #0b0b0b;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: 0.3s;
}

.stat-box:hover {
    transform: translateY(-10px);
    border-color: teal;
    box-shadow: 0 0 25px rgba(0, 128, 128, 0.12);
}

.stat-box h2 {
    color: teal;
    font-size: 2.3rem;
    margin-bottom: 10px;
}

.stat-box p {
    margin: 0;
    color: #888;
    font-size: 0.95rem;
}

/* MOBILE */

@media(max-width:950px) {

    .hero h1 {
        font-size: 3.4rem;
    }

    nav {
        display: none;
    }

}

@media(max-width:600px) {

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .stats {
        flex-direction: column;
        width: 100%;
        align-items: center;
    }

    .stat-box {
        width: 100%;
        max-width: 350px;
    }

}