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

/* =========================================
   BODY
========================================= */
body {
    font-family: 'Inter', sans-serif;
    background: black;
    color: #39FF14;
    padding-top: 80px;
    overflow-x: hidden;
    width: 100%;
}

body::-webkit-scrollbar {
    display: none;
}

body::before,
body::after {
    content: "";
    position: fixed;
    pointer-events: none;
}

body::after {
    width: 100%;
    height: 100%;
    background-image: radial-gradient(#39FF14 1px, transparent 1px);
    background-size: 40px 40px;
    opacity: 0.05;
    z-index: -2;
}

body::before {
    width: 600px;
    height: 600px;
    background: #39FF14;
    top: 30%;
    left: 60%;
    filter: blur(180px);
    opacity: 0.2;
    z-index: -1;
}

/* =========================================
   TYPOGRAPHY
========================================= */
h1,
h2,
h3 {
    font-family: 'Sora', sans-serif;
}

h1 {
    letter-spacing: -1px;
}

p {
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.75);
}

/* =========================================
   BACKGROUND
========================================= */
.bg {
    position: fixed;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 20% 30%, rgba(57,255,20,0.25), transparent 30%),
        radial-gradient(circle at 80% 60%, rgba(57,255,20,0.15), transparent 20%),
        radial-gradient(circle at 50% 90%, rgba(57,255,20,0.1), transparent 50%),
        black;
    z-index: -2;
    pointer-events: none;
}

/* =========================================
   COMMON LAYOUT
========================================= */
.container {
    width: 100%;
    max-width: 1200px;
    margin: auto;
    padding: 100px 20px;
}

.hero,
.navbar,
.hero-left,
.hero-buttons {
    position: relative;
    z-index: 5;
}

/* =========================================
   NAVBAR
========================================= */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;

    display: flex;
    justify-content: space-between;
    align-items: center;

    padding: 20px 80px;

    background: transparent;
    transition: all 0.3s ease;

    z-index: 1000;
}

.navbar.scrolled {
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);

    border-bottom: 1px solid rgba(57,255,20,0.2);
    box-shadow: 0 0 20px rgba(57,255,20,0.15);
}

/* =========================================
   LOGO
========================================= */
.logo-container {
    display: flex;
    align-items: center;
    gap: 8px;
    height: 60px;
}

.logo-text {
    font-size: 25px;
    font-weight: 800;
    color: #39FF14;
    letter-spacing: 0.5px;
}

.logo-container img {
    height: 42px;
    width: auto;
    object-fit: contain;

    filter: drop-shadow(0 0 6px rgba(57,255,20,0.4));
    transition: 0.3s ease;
}


/* =========================================
   BUTTONS
========================================= */
button,
.nav-buttons a {
    padding: 10px 22px;
    border-radius: 30px;
    cursor: pointer;
    transition: 0.3s;
    font-size: 14px;
    text-decoration: none;
    display: inline-block;
}

.btn-outline {
    border: 1px solid #39FF14;
    background: transparent;
    color: #39FF14;
}

.btn-primary {
    background: linear-gradient(135deg, #39FF14, #00ff88);
    border: none;
    color: black;
}

button:hover,
.nav-buttons a:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 20px #39FF14;
}

.btn-primary:hover {
    transform: scale(1.05);
    box-shadow: 0 0 40px #39FF14;
}

/* =========================================
   HERO SECTION
========================================= */
.hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    min-height: 85vh;
}

.hero::after {
    content: "";
    position: absolute;

    right: 0;
    top: 0;

    width: 50%;
    height: 100%;

    background: radial-gradient(
        circle at center,
        rgba(57,255,20,0.15),
        transparent 70%
    );

    filter: blur(80px);
    z-index: -1;
}

.hero-left {
    flex: 1;
    max-width: 550px;
}

.hero-right {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-left h1 {
    font-size: 65px;
    line-height: 1.1;

    background: linear-gradient(#ffffff, #39FF14);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.highlight {
    color: #39FF14;
    display: block;
}

.hero-left p {
    font-size: 17px;
    margin-top: 10px;
    color: rgba(255,255,255,0.7);
}

.hero-buttons {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

/* =========================================
   HERO IMAGE
========================================= */
.image-wrapper {
    position: relative;

    width: 100%;
    max-width: 520px;
    height: 320px;

    display: flex;
    align-items: center;
    justify-content: center;

    overflow: visible;

    animation: float 6s ease-in-out infinite;
}

.image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: contain;

    -webkit-mask-image: radial-gradient(circle,
        rgba(0,0,0,1) 55%,
        rgba(0,0,0,0) 100%);

    mask-image: radial-gradient(circle,
        rgba(0,0,0,1) 55%,
        rgba(0,0,0,0) 100%);

    opacity: 0.95;
    transition: 0.4s;
}

.image-wrapper::before {
    content: "";
    position: absolute;

    width: 500px;
    height: 400px;

    background: radial-gradient(
        circle,
        rgba(57,255,20,0.25),
        transparent 70%
    );

    filter: blur(100px);
    z-index: -1;

    animation: pulse 4s ease-in-out infinite;
}

.image-wrapper:hover img {
    transform: scale(1.05);
    opacity: 1;
}

/* =========================================
   ANIMATIONS
========================================= */
@keyframes float {
    0%,100% {
        transform: translateY(0);
    }

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

@keyframes pulse {
    0%,100% {
        opacity: 0.3;
        transform: scale(1);
    }

    50% {
        opacity: 0.6;
        transform: scale(1.2);
    }
}

/* =========================================
   STATS
========================================= */
.stats {
    display: flex;
    justify-content: center;
    gap: 80px;
    margin-top: -40px;
}

.stats h2 {
    font-size: 32px;
    color: #39FF14;
}

.stats p {
    font-size: 13px;
    color: rgba(255,255,255,0.6);
}

/* =========================================
   FEATURES
========================================= */
.features {
    display: flex;
    justify-content: center;
    gap: 30px;
}

.card {
    width: 270px;
    padding: 30px;
    border-radius: 25px;

    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(20px);

    border: 1px solid rgba(57,255,20,0.3);

    transition: 0.4s;
}

.card:hover {
    transform: translateY(-12px) scale(1.05);
    box-shadow: 0 0 40px rgba(57,255,20,0.6);
}

/* =========================================
   INTRO
========================================= */
.intro-container {
    text-align: center;
    padding: 60px 20px 40px;
}

.intro-tag {
    font-size: 54px;
    line-height: 1.3;

    background: linear-gradient(#ffffff, #39FF14);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.intro-desc {
    max-width: 700px;
    margin: 25px auto;

    font-size: 20px;
    line-height: 1.7;

    color: rgba(255,255,255,0.75);
}

/* =========================================
   SHOWCASE
========================================= */
.showcase {
    display: flex;
    justify-content: space-between;
    align-items: center;

    gap: 60px;
    padding: 20px;
}

.showcase-left,
.showcase-right {
    flex: 1;
}

.showcase-heading {
    font-size: 28px;
    margin-bottom: 15px;

    background: linear-gradient(#ffffff, #39FF14);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.showcase-text {
    max-width: 420px;
    font-size: 18px;
    line-height: 1.6;

    color: rgba(255,255,255,0.7);
}

.showcase-points {
    margin-top: 20px;
}

.showcase-points div {
    margin-top: 10px;
    font-size: 20px;
    color: #39FF14;
    opacity: 0.8;
}

/* =========================================
   GLASS PANEL
========================================= */
.glass-panel {
    width: 370px;
    padding: 30px;
    border-radius: 25px;

    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(25px);

    border: 1px solid rgba(57,255,20,0.4);

    box-shadow:
        0 0 40px rgba(57,255,20,0.4),
        inset 0 0 20px rgba(57,255,20,0.2);

    transform: perspective(1000px) rotateY(-8deg);
    transition: 0.4s;
}

.glass-panel:hover {
    transform: perspective(1000px) rotateY(0deg) scale(1.05);
}

/* =========================================
   ITEMS & TAGS
========================================= */
.item {
    display: flex;
    justify-content: space-between;
    margin-top: 15px;
}

.tag {
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    backdrop-filter: blur(10px);
}

.green {
    background: rgba(57,255,20,0.2);
    box-shadow: 0 0 10px #39FF14;
}

.yellow {
    background: rgba(255,255,0,0.2);
    box-shadow: 0 0 10px yellow;
}

.red {
    background: rgba(255,0,0,0.2);
    box-shadow: 0 0 10px red;
}

/* =========================================
   SCROLL ANIMATION
========================================= */
.hidden {
    opacity: 0;
    transform: translateY(80px);
    transition: all 1s ease;
}

.show {
    opacity: 1;
    transform: translateY(0);
}

/* =========================================
   STEPS
========================================= */
.steps {
    display: flex;
    justify-content: center;
    gap: 40px;

    padding-bottom: 40px;
    margin-top: 40px;
}

.steps div {
    padding: 12px 25px;
    border-radius: 30px;
    border: 1px solid #39FF14;
}

/* =========================================
   FOOTER
========================================= */
footer {
    text-align: center;
    padding: 15px;
    color: #aaa;
}

/* =========================================
   MOBILE RESPONSIVE
========================================= */
@media (max-width: 768px) {

    html,
    body {
        width: 100%;
        overflow-x: hidden;
    }

    body {
        padding-top: 70px;
    }

    /* MAIN FIX FOR RIGHT SPACE */
    .container,
    .hero,
    .features,
    .showcase,
    .intro-container,
    .stats,
    .steps {
        width: 100%;
        max-width: 100%;
        overflow-x: hidden;
    }

    /* NAVBAR */
    .navbar {
        padding: 10px 18px;
        justify-content: space-between;
    }

    .logo-text {
        font-size: 18px;
    }

    .logo-container img {
        height: 32px;
    }

    .nav-buttons {
        display: flex;
        gap: 10px;
    }

    .nav-buttons a {
        padding: 8px 14px;
        font-size: 12px;
    }

    /* HERO */
    .hero {
        flex-direction: column;
        padding: 30px 18px;
        gap: 20px;
        min-height: auto;
    }

    .hero-left,
    .hero-right {
        width: 100%;
    }

    .hero-left h1 {
        font-size: 52px;
        line-height: 1.05;
    }

    .line1,
    .line2,
    .line3 {
        display: block;
    }

    .hero-left p {
        font-size: 15px;
        margin-top: 14px;
        max-width: 95%;
    }

    /* BUTTONS */
    .hero-buttons {
        flex-direction: column;
        width: 100%;
        gap: 14px;
        margin-top: 28px;
    }

    .hero-buttons button {
        width: 100%;
        max-width: 100%;
    }

    /* IMAGE */
    .image-wrapper {
        width: 100%;
        max-width: 300px;
        height: auto;
        margin: 0 auto;
    }

    .image-wrapper img {
        width: 100%;
        max-width: 100%;
        height: auto;
    }

    .image-wrapper::before {
        width: 280px;
        height: 280px;
    }

    /* STATS */
    .stats {
        gap: 10px;
        padding: 20px 15px;
        margin-top: 10px;
    }

    .stats div {
        flex: 1;
        text-align: center;
    }

    .stats h2 {
        font-size: 24px;
    }

    .stats p {
        font-size: 11px;
    }

    /* FEATURES */
    .features {
        flex-direction: column;
        align-items: center;
        padding: 20px 18px;
        gap: 18px;
    }

    .card {
        width: 100%;
        max-width: 100%;
        padding: 24px;
    }

    /* INTRO */
    .intro-tag {
        font-size: 34px;
    }

    .intro-desc {
        font-size: 16px;
        padding: 0 10px;
    }

    /* SHOWCASE */
    .showcase {
        flex-direction: column;
        padding: 20px 18px;
        gap: 30px;
    }

    .showcase-heading {
        font-size: 24px;
        margin-top: 10px;
    }

    .showcase-text {
        max-width: 100%;
        font-size: 16px;
    }

    .showcase-points div {
        font-size: 16px;
    }

    .glass-panel {
        width: 100%;
        max-width: 100%;
        padding: 24px;
        transform: none !important;
    }

    /* STEPS */
    .steps {
        flex-direction: column;
        align-items: center;
        gap: 15px;
        padding: 20px 18px 40px;
    }

    .steps div {
        width: 100%;
        text-align: center;
    }

    footer {
        font-size: 13px;
        padding: 20px;
    }
}