/* SPDX-License-Identifier: MIT */
/* Copyright (C) 2026 ddavef/KinteLiX retouched-project */

:root {
    --clr-bg: #0a0c10;
    --clr-surface: #13161f;
    --clr-surface-light: #1c212e;

    --clr-purple-dark: #494688;
    --clr-purple: #7162b8;
    --clr-pink: #f04274;
    --clr-orange: #ff6900;

    --clr-text: #ffffff;
    --clr-text-muted: #8b949e;

    --glass-bg: rgba(19, 22, 31, 0.4);
    --glass-border: rgba(255, 255, 255, 0.1);
}

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

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--clr-bg);
    color: var(--clr-text);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

.background-globes {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
    overflow: hidden;
    filter: blur(80px);
    opacity: 0.6;
}

.globe {
    position: absolute;
    border-radius: 50%;
    animation: float 20s infinite ease-in-out alternate;
}

.globe-purple {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--clr-purple) 0%, transparent 70%);
    top: -200px;
    left: -100px;
}

.globe-pink {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--clr-pink) 0%, transparent 70%);
    bottom: -100px;
    right: -100px;
    animation-delay: -5s;
    animation-duration: 25s;
}

.globe-orange {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, var(--clr-orange) 0%, transparent 70%);
    top: 40%;
    left: 30%;
    opacity: 0.4;
    animation-delay: -10s;
    animation-duration: 30s;
}

@keyframes float {
    0% {
        transform: translate(0, 0) scale(1);
    }

    50% {
        transform: translate(50px, 30px) scale(1.1);
    }

    100% {
        transform: translate(-30px, 80px) scale(0.9);
    }
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    background: rgba(10, 12, 16, 0.8);
    backdrop-filter: blur(12px);
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid var(--glass-border);
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo-img {
    height: 48px;
    filter: drop-shadow(0 0 8px rgba(240, 66, 116, 0.4));
}

.logo-img-text {
    height: 36px;
    filter: drop-shadow(0 0 8px rgba(240, 66, 116, 0.4));
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: 1px;
    background: linear-gradient(90deg, #fff, var(--clr-purple));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    color: var(--clr-text);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.nav-link:hover {
    color: var(--clr-pink);
}

.btn {
    padding: 0.6rem 1.5rem;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    display: inline-block;
}

.btn-large {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--clr-pink), var(--clr-orange));
    color: white;
    box-shadow: 0 4px 15px rgba(240, 66, 116, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(240, 66, 116, 0.6);
}

.btn-secondary {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    color: white;
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
}

.btn-outline {
    border: 2px solid var(--clr-purple);
    color: white;
}

.btn-outline:hover {
    background: var(--clr-purple);
    box-shadow: 0 0 15px rgba(113, 98, 184, 0.5);
}

.card-actions {
    margin-top: 1.5rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
}

.btn-sm {
    padding: 0.4rem 1rem;
    font-size: 0.9rem;
    text-align: center;
    flex: 1;
    min-width: 120px;
}

.btn-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
}

.btn-img-icon {
    width: 20px;
    height: 20px;
    object-fit: contain;
}

.hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 101;
}

.hamburger .bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    transition: all 0.3s ease-in-out;
    background-color: var(--clr-text);
    border-radius: 3px;
}


main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5%;
}

.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 85vh;
    gap: 4rem;
    padding: 4rem 0;
}

.hero-content {
    flex: 1;
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.gradient-text {
    background: linear-gradient(90deg, var(--clr-purple), var(--clr-pink), var(--clr-orange));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 200% auto;
    animation: shine 5s linear infinite;
}

@keyframes shine {
    to {
        background-position: 200% center;
    }
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--clr-text-muted);
    margin-bottom: 2.5rem;
    max-width: 500px;
}

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

.hero-visual {
    flex: 1;
    display: flex;
    justify-content: center;
    perspective: 1000px;
}

.float-anim {
    animation: float-hero 6s ease-in-out infinite alternate;
}

@keyframes float-hero {
    from {
        transform: translateY(0) rotateX(5deg) rotateY(-10deg);
    }

    to {
        transform: translateY(-20px) rotateX(-5deg) rotateY(10deg);
    }
}

.hero-logo-large {
    width: 100%;
    max-width: 400px;
    filter: drop-shadow(0 0 25px rgba(113, 98, 184, 0.4));
    transition: filter 0.3s ease;
}

.hero-logo-large:hover {
    filter: drop-shadow(0 0 40px rgba(240, 66, 116, 0.6));
}


.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
}

.features-section {
    padding: 5rem 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-card {
    padding: 2.5rem;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 255, 255, 0.3);
}

.feature-img-icon {
    width: auto;
    height: 48px;
    margin-bottom: 1.5rem;
    display: inline-block;
    filter: drop-shadow(0 0 15px rgba(255, 255, 255, 0.2));
    transition: filter 0.3s ease;
}

.feature-card:hover .feature-img-icon {
    filter: drop-shadow(0 0 25px rgba(240, 66, 116, 0.5));
}

.feature-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.feature-desc {
    color: var(--clr-text-muted);
}

.wrap-section {
    margin: 5rem 0;
    padding: 4rem;
    text-align: center;
    background: linear-gradient(to bottom right, rgba(113, 98, 184, 0.1), rgba(240, 66, 116, 0.1));
}

.about-content {
    max-width: 700px;
    margin: 0 auto;
}

.about-text {
    font-size: 1.1rem;
    color: var(--clr-text-muted);
    margin-bottom: 2rem;
}

footer {
    border-top: 1px solid var(--glass-border);
    padding: 2rem 0;
    margin-top: 5rem;
    text-align: center;
    color: var(--clr-text-muted);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    padding: 0 5%;
}

.footer-links a {
    color: var(--clr-text-muted);
    text-decoration: none;
    margin-left: 1.5rem;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--clr-purple);
}

.slide-up {
    animation: slideUp 1s ease-out forwards;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

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

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 768px) {
    .hero {
        flex-direction: column;
        text-align: center;
        padding-top: 2rem;
    }

    .hero-title {
        font-size: 3rem;
    }

    .hero-subtitle {
        margin: 0 auto 2rem auto;
    }

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

    .hero-logo-large {
        max-width: 250px;
    }

    .nav-links {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(10, 12, 16, 0.95);
        backdrop-filter: blur(16px);
        padding: 2rem;
        gap: 1.5rem;
        border-bottom: 1px solid var(--glass-border);
        clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
        transition: clip-path 0.4s ease-in-out;
    }

    .nav-links.active {
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    }

    .hamburger {
        display: block;
    }

    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .wrap-section {
        padding: 2rem 1rem;
    }

    .footer-content {
        flex-direction: column;
        gap: 1rem;
    }
}