/* ==========================================================================
   🎮 PREMIUM EXTRACTED MODERN LANDING STYLING (SCREENSHOT ALIGNMENT)
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Fira+Code:wght@400;500&family=Plus+Jakarta+Sans:wght@500;700;800&display=swap');

body {
    margin: 0;
    padding: 0;
    background-color: #0b0b0b;
    /* True Soft Pitch Black Background frame rules */
    color: #ffffff;
    font-family: 'Plus Jakarta Sans', sans-serif;
    overflow-x: hidden;
}

/* Base Fullscreen Grid Workspace Splitter */
.hero-wrapper {
    max-width: 1300px;
    height: calc(100vh - 70px);
    /* Accounted top layout boundary bar variables rules mapping */
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 40px;
    box-sizing: border-box;
    gap: 60px;
}

/* Responsive collapse matrix rule settings fallback models mapping */
@media (max-width: 992px) {
    .hero-wrapper {
        flex-direction: column;
        justify-content: center;
        text-align: center;
        padding-top: 50px;
        gap: 40px;
    }
}

/* 📝 LEFT COLUMN PANEL STYLING TEXT LAYOUTS */
.hero-left-content {
    flex: 1.1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

@media (max-width: 992px) {
    .hero-left-content {
        align-items: center;
    }
}

/* Active Level Marker Badge */
.v-badge {
    background: rgba(0, 255, 170, 0.08);
    color: #00ffaa;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 20px;
    border: 1px solid rgba(0, 255, 170, 0.15);
    margin-bottom: 24px;
    letter-spacing: 0.3px;
}

/* Giant Headline Typography */
.hero-headline {
    font-size: clamp(2.8rem, 5.5vw, 4.4rem);
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -2px;
    color: #ffffff;
    margin: 0 0 24px 0;
}

/* Screenshot Custom Highlight Green/Cyan Style */
.highlight-text {
    color: #00ffaa;
    background: linear-gradient(to right, #00ffaa, #33ffd0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Subtitle contextual lines settings elements configuration tracking style mappings context */
.hero-description {
    font-size: 1.1rem;
    line-height: 1.5;
    color: #7f8ea3;
    /* Subdued metal grey settings variable */
    max-width: 480px;
    margin: 0 0 35px 0;
}

/* CTA Buttons Matrix Layout */
.hero-action-row {
    display: flex;
    gap: 16px;
    align-items: center;
}

/* Solid Neon Primary Action Trigger Controls */
.btn-get-started {
    background: #00ffaa;
    color: #000000;
    font-size: 0.92rem;
    font-weight: 800;
    padding: 14px 28px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
}

.btn-get-started:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 255, 170, 0.35);
}

/* Secondary Matte Border Button Configuration */
.btn-view-roadmap {
    background: transparent;
    color: #ffffff;
    font-size: 0.92rem;
    font-weight: 700;
    padding: 14px 28px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-view-roadmap:hover {
    background: rgba(255, 255, 255, 0.03);
    border-color: rgba(255, 255, 255, 0.2);
}


/* 💻 RIGHT COLUMN PANEL STYLING: HIGH-END BASH TERMINAL BOX */
.hero-right-terminal {
    flex: 0.9;
    width: 100%;
    max-width: 460px;
    background: #11141a;
    /* True deep slate tone from sample screen image template source file settings rules */
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 12px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

/* Linux Terminal Top Header Config */
.term-header {
    background: rgba(255, 255, 255, 0.01);
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 16px;
}

.term-dots {
    display: flex;
    gap: 7px;
}

.term-dots span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    display: inline-block;
}

.term-dots span:nth-child(1) {
    background: #ff5f56;
}

.term-dots span:nth-child(2) {
    background: #ffbd2e;
}

.term-dots span:nth-child(3) {
    background: #27c93f;
}

.term-title {
    font-family: 'Fira Code', monospace;
    font-size: 0.72rem;
    color: #4f5d73;
    font-weight: 500;
}

/* Active Editor Workspace area settings */
.term-body {
    padding: 24px;
    font-family: 'Fira Code', monospace;
    font-size: 0.88rem;
    line-height: 1.6;
    letter-spacing: -0.2px;
}

.term-user {
    color: #00ffaa;
    font-weight: 500;
}

.term-cmd {
    color: #ffffff;
}

.term-output {
    color: #4f5d73;
    padding-left: 14px;
    margin-top: 4px;
}

.prompt-spacing {
    margin-top: 16px;
}

/* Soft flashing cursor simulation */
.term-cursor {
    width: 8px;
    height: 15px;
    background: #00ffaa;
    margin-top: 6px;
    animation: terminalBlink 1s infinite alternate;
}

@keyframes terminalBlink {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

/* 🔴 🟡 🟢 TERMINAL DOTS SEQUENTIAL BLINKING ENGINE */
.term-dots span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    display: inline-block;
    opacity: 0.4;
    /* Shuruati default dim state */
    animation: sequentialGlow 1.8s infinite ease-in-out;
}

/* Har ek light ka apna exclusive unique color aur dynamic delay timing loop */
.term-dots span:nth-child(1) {
    background: #ff5f56;
    /* Red Light */
    animation-delay: 0s;
}

.term-dots span:nth-child(2) {
    background: #ffbd2e;
    /* Yellow Light */
    animation-delay: 0.3s;
    /* 300ms ke baad chamkegi */
}

.term-dots span:nth-child(3) {
    background: #27c93f;
    /* Green Light */
    animation-delay: 0.6s;
    /* 600ms ke baad chamkegi */
}

/* ✨ The Magic Glow Animation Matrix */
@keyframes sequentialGlow {

    0%,
    100% {
        opacity: 0.3;
        transform: scale(1);
        box-shadow: none;
    }

    30% {
        opacity: 1;
        transform: scale(1.15);
        /* Chhoti si pulse beat trigger style */
        box-shadow: 0 0 10px currentColor;
        /* Jo light ka color h wahi glow karega automatically */
    }

    60% {
        opacity: 0.3;
        transform: scale(1);
        box-shadow: none;
    }
}

/* ==========================================================================
   📱 EXACT MOBILE REPAIR FOR YOUR PREMIUM INDEX LANDING PAGE
   ========================================================================== */
@media (max-width: 480px) {

    /* 1. Pure page par horizontal overflow block karo taaki right side me gap na aaye */
    html,
    body {
        overflow-x: hidden !important;
        width: 100% !important;
        margin: 0;
        padding: 0;
    }

    /* 2. Top Header Padding Fix (Logo aur button ko edges se thoda andar lao) */
    .header-container {
        padding: 0 16px !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }

    /* 3. Hero Layout adjustments */
    .hero-section,
    main {
        padding: 40px 16px 20px 16px !important;
        width: 100% !important;
        box-sizing: border-box !important;
        overflow: hidden;
    }

    /* 4. Heading text line-height and size tuning */
    .hero-title,
    h1 {
        font-size: 2.3rem !important;
        /* "Develop your Future.js" perfectly scale hoga */
        line-height: 1.2 !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }

    /* Subtitle description check */
    .hero-subtitle,
    p {
        font-size: 0.95rem !important;
        line-height: 1.5 !important;
        padding: 0 4px !important;
    }

    /* 5. 🔥 BUTTONS GRID REPAIR: Side-by-side se hatakar vertically ek ke niche ek stack kiya */
    /* Apni HTML class ka naam isse match kar lena (cta-button-group ya landing-actions) */
    .cta-button-group,
    .button-container,
    div:has(> .btn-primary-landing) {
        display: flex !important;
        flex-direction: column !important;
        gap: 12px !important;
        width: 100% !important;
        max-width: 100% !important;
        padding: 0 !important;
        margin-top: 28px !important;
        box-sizing: border-box !important;
    }

    /* Dono buttons full width ho jayenge bina layout tode */
    .btn-primary-landing,
    .btn-secondary-landing,
    .landing-btn,
    button,
    [class*="button"],
    [class*="btn"] {
        width: 100% !important;
        max-width: 100% !important;
        padding: 14px 20px !important;
        font-size: 0.95rem !important;
        text-align: center !important;
        box-sizing: border-box !important;
        margin: 0 !important;
    }

    /* 6. Terminal Bash Window Mockup Adjustment */
    .terminal-mockup,
    .bash-window,
    [class*="terminal"] {
        width: 100% !important;
        max-width: 100% !important;
        margin: 30px 0 0 0 !important;
        box-sizing: border-box !important;
    }
}

/* =========================================
   🚀 FEATURES SECTION STYLES
   ========================================= */
.features-wrapper {
    padding: 80px 5%;
    /* Thoda sa different dark background taaki hero section se alag dikhe */
    background-color: #050505;
    text-align: center;
}

.section-title {
    font-size: 2.5rem;
    color: #fff;
    margin-bottom: 60px;
    font-family: monospace;
    letter-spacing: 1px;
}

.features-grid {
    display: grid;
    /* Responsive Grid: Mobile me apne aap neeche aayega, PC me bagal me */
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-card {
    background: #0a0a0a;
    border: 1px solid #1a1a1a;
    border-radius: 12px;
    padding: 40px 30px;
    text-align: left;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    cursor: default;
}

/* Har card ke upar ek chhipi hui dark line (Hover par neon hogi) */
.feature-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: #1a1a1a;
    transition: all 0.4s ease;
}

.f-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.1));
}

.feature-card h3 {
    color: #fff;
    font-size: 1.5rem;
    margin-bottom: 15px;
    font-family: monospace;
}

.feature-card p {
    color: #888;
    font-size: 1rem;
    line-height: 1.6;
    transition: color 0.3s ease;
}

/* =========================================
   🌟 HOVER EFFECTS (NEON GLOW & FLOAT)
   ========================================= */
.feature-card:hover {
    transform: translateY(-10px);
    background: #111;
}

.feature-card:hover p {
    color: #bbb;
}

/* Cyan Magic */
.card-cyan:hover {
    box-shadow: 0 15px 35px rgba(0, 229, 255, 0.1);
    border-color: rgba(0, 229, 255, 0.3);
}

.card-cyan:hover::before {
    background: #00e5ff;
    box-shadow: 0 0 15px #00e5ff;
}

/* Pink Magic */
.card-pink:hover {
    box-shadow: 0 15px 35px rgba(255, 0, 85, 0.1);
    border-color: rgba(255, 0, 85, 0.3);
}

.card-pink:hover::before {
    background: #ff0055;
    box-shadow: 0 0 15px #ff0055;
}

/* Purple Magic */
.card-purple:hover {
    box-shadow: 0 15px 35px rgba(187, 0, 255, 0.1);
    border-color: rgba(187, 0, 255, 0.3);
}

.card-purple:hover::before {
    background: #bb00ff;
    box-shadow: 0 0 15px #bb00ff;
}

/* =========================================
   🗺️ ROADMAP SECTION STYLES
   ========================================= */
.roadmap-wrapper {
    padding: 80px 5%;
    background-color: #000;
    /* Features (#050505) se thoda alag taaki section alag dikhe */
    text-align: center;
}

.roadmap-subtitle {
    color: #888;
    font-size: 1.1rem;
    margin-top: -40px;
    margin-bottom: 60px;
    font-family: monospace;
}

.roadmap-container {
    max-width: 700px;
    margin: 0 auto;
    text-align: left;
    position: relative;
    padding-left: 40px;
    border-left: 2px dashed #333;
    /* Ye hai wo Timeline wali main line */
}

.roadmap-step {
    position: relative;
    margin-bottom: 40px;
}

.roadmap-step:last-child {
    margin-bottom: 0;
}

/* Timeline par chamakne wala Neon Circle */
.roadmap-step::before {
    content: "";
    position: absolute;
    left: -48px;
    /* Line ke upar set karne ke liye */
    top: 0;
    width: 14px;
    height: 14px;
    background: #00e5ff;
    border-radius: 50%;
    box-shadow: 0 0 15px #00e5ff;
}

.step-number {
    font-size: 1rem;
    font-weight: bold;
    color: #00e5ff;
    font-family: monospace;
    margin-bottom: 10px;
    letter-spacing: 2px;
}

.step-content {
    background: #0a0a0a;
    border: 1px solid #1a1a1a;
    border-radius: 8px;
    padding: 25px;
    transition: all 0.3s ease;
}

.step-content:hover {
    border-color: #00e5ff;
    box-shadow: 0 5px 20px rgba(0, 229, 255, 0.1);
    transform: translateX(10px);
    /* Hover par thoda right side slide hoga */
}

.step-content h3 {
    color: #fff;
    margin-bottom: 10px;
    font-size: 1.4rem;
}

.step-content p {
    color: #aaa;
    line-height: 1.5;
    font-size: 0.95rem;
}


/* =========================================
   🚀 FINAL CTA STYLES
   ========================================= */
.final-cta-wrapper {
    padding: 100px 5%;
    background: linear-gradient(to top, #0a0a0a, #000);
    text-align: center;
}

.cta-container {
    max-width: 800px;
    margin: 0 auto;
    background: #0d0d0d;
    border: 1px solid #1a1a1a;
    padding: 50px 30px;
    border-radius: 16px;
    box-shadow: 0 0 40px rgba(0, 229, 255, 0.05);
    /* Halka sa cyan glow */
}

.cta-container h2 {
    color: #fff;
    font-size: 2.2rem;
    margin-bottom: 15px;
    font-family: monospace;
}

.cta-container p {
    color: #888;
    margin-bottom: 30px;
    font-size: 1.1rem;
}

.large-btn {
    font-size: 1.2rem;
    padding: 15px 40px;
    background: #00e5ff;
    /* Cyan color */
    color: #000;
    border: none;
    font-weight: bold;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: monospace;
}

.large-btn:hover {
    box-shadow: 0 0 25px rgba(0, 229, 255, 0.6);
    transform: scale(1.05);
}

/* =========================================
   🌐 FOOTER STYLES
   ========================================= */
.main-footer {
    background: #000;
    border-top: 1px solid #1a1a1a;
    padding: 40px 5% 20px;
    text-align: center;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
}

.footer-logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: #fff;
    font-family: monospace;
}

.footer-links {
    display: flex;
    gap: 20px;
}

.footer-links a {
    color: #888;
    text-decoration: none;
    transition: color 0.3s ease;
    font-family: monospace;
    font-size: 1rem;
}

.footer-links a:hover {
    color: #00e5ff;
}

.footer-bottom {
    border-top: 1px dashed #222;
    padding-top: 20px;
}

.footer-bottom p {
    color: #555;
    font-size: 0.9rem;
    margin: 0;
    font-family: monospace;
}