/* ==========================================================================
   ACID LIME ARTIST PALETTE SYSTEM BLUEPRINT // DAKSH PRO CONFIG FIXED
   ========================================================================== */
:root {
    --bg-black: #08080a;
    --accent-lime: #ccff00; /* High-end studio bright lime */
    --text-pure: #ffffff;
    --text-muted: #6e6e73;
    --border-soft: rgba(255, 255, 255, 0.08);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Base body adjustments */
body {
    background-color: var(--bg-black);
    color: var(--text-pure);
    font-family: 'Space Grotesk', sans-serif;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* Custom Inverted Floating Cursor - Hidden on Touch Devices for better UI */
.custom-cursor {
    width: 20px;
    height: 20px;
    border: 2px solid var(--accent-lime);
    border-radius: 50%;
    position: fixed;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 9999;
    transition: width 0.2s, height 0.2s, background-color 0.2s;
}

/* Header */
.navbar {
    position: fixed;
    top: 0; left: 0; width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 5%;
    z-index: 100;
    background: linear-gradient(to bottom, var(--bg-black) 40%, transparent);
}

.logo {
    font-family: 'Syne', sans-serif;
    font-size: 1.2rem;
    font-weight: 800;
    letter-spacing: -1px;
}

.contact-trigger {
    font-size: 0.8rem;
    letter-spacing: 1px;
    border: 1px solid var(--border-soft);
    padding: 8px 16px;
    border-radius: 40px;
    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(10px);
}

/* Matrix Wrapper Layout */
.matrix-wrapper {
    width: 100%;
}

.slide {
    min-height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    padding: 120px 8%;
    border-bottom: 1px solid var(--border-soft);
    position: relative;
}

/* Slide 1: Hero Twin Image Setup */
.hero-layout {
    display: grid;
    grid-template-columns: minmax(400px, 1.2fr) minmax(380px, 1fr); /* Prevents columns from shrinking destructively */
    gap: 50px; 
    width: 100%;
    align-items: center;
    max-width: 1440px; 
    margin: 0 auto;
}

.giant-title {
    font-family: 'Syne', sans-serif;
    font-size: 7rem;
    line-height: 0.9;
    font-weight: 800;
    color: var(--accent-lime);
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: 1.3rem;
    max-width: 450px;
    color: var(--text-pure);
    line-height: 1.4;
}

/* 🔥 FIXED HERO IMAGES COMPREHENSIVE VIEWPORT CONFIG */
.hero-images-twin {
    display: flex;
    gap: 20px;
    height: 520px; /* Absolute vertical sight aspect height for widescreen desktops */
    width: 100%;
    max-width: 550px; /* Prevents cards from getting excessively stretched laterally */
    margin-left: auto; /* Clean right-hand side alignment shift */
}

.img-box {
    flex: 1;
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--border-soft);
    background: #111;
    height: 100%; /* Adapts flawlessly to container constraints */
}

.img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: left center; /* Prevents human focus cuts on laptop layouts natively */
    filter: grayscale(100%);
    transition: filter 0.5s ease, transform 0.5s ease;
}

.img-box:hover img {
    filter: grayscale(0%);
    transform: scale(1.03);
}

.img-overlay-tag {
    position: absolute;
    bottom: 20px; left: 20px;
    background: var(--bg-black);
    color: var(--accent-lime);
    font-size: 0.7rem;
    padding: 6px 12px;
    border-radius: 6px;
    font-weight: 700;
    letter-spacing: 1px;
}

/* Statement Layouts */
.big-statement h2 {
    font-family: 'Syne', sans-serif;
    font-size: 3.5rem;
    line-height: 1.2;
    max-width: 850px;
    font-weight: 700;
}

.bg-accent-dark {
    background-color: var(--accent-lime);
}

/* Timeline Layouts */
.timeline-box {
    max-width: 650px;
}

.year-badge {
    font-family: 'Syne', sans-serif;
    font-size: 4rem;
    color: var(--accent-lime);
    display: block;
    line-height: 1;
    margin-bottom: 15px;
}

.timeline-box h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    letter-spacing: -0.5px;
}

.timeline-box p {
    color: var(--text-muted);
    font-size: 1.2rem;
    line-height: 1.6;
}

/* Tool Pages */
.tools-layout {
    width: 100%;
}

.tool-card-premium {
    border-left: 4px solid var(--accent-lime);
    padding-left: 40px;
    max-width: 600px;
}

.tool-meta {
    font-size: 0.85rem;
    color: var(--text-muted);
    letter-spacing: 2px;
    display: block;
    margin-bottom: 10px;
}

.tool-card-premium h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.tool-card-premium p {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 25px;
}

.tool-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tool-tags span {
    border: 1px solid var(--border-soft);
    padding: 6px 14px;
    border-radius: 4px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--accent-lime);
    background: rgba(255,255,255,0.02);
}

/* Unified Action Box */
.box-container-premium {
    background: #111216;
    border: 1px solid var(--border-soft);
    border-radius: 20px;
    padding: 60px;
    width: 100%;
    max-width: 800px;
}

.box-container-premium h2 {
    font-family: 'Syne', sans-serif;
    font-size: 3rem;
    margin-bottom: 15px;
}

.box-container-premium p {
    color: var(--text-muted);
    margin-bottom: 35px;
    font-size: 1.1rem;
}

.action-neon-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background-color: var(--accent-lime);
    color: var(--bg-black);
    text-decoration: none;
    font-weight: 600;
    padding: 16px 32px;
    border-radius: 8px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.action-neon-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(204, 255, 0, 0.2);
}

/* Stats Matrix */
.status-grid-premium {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    width: 100%;
}

.grid-box-p h3 {
    font-family: 'Syne', sans-serif;
    font-size: 4rem;
    color: var(--accent-lime);
    margin-bottom: 10px;
}

.grid-box-p p {
    color: var(--text-muted);
    font-size: 1.1rem;
}

/* Premium Contact Channel Terminal */
.contact-wrapper-premium {
    width: 100%;
    max-width: 800px;
}

.contact-pre {
    color: var(--accent-lime);
    font-size: 0.85rem;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 10px;
}

.contact-main-title {
    font-family: 'Syne', sans-serif;
    font-size: 4.5rem;
    font-weight: 800;
    margin-bottom: 50px;
    line-height: 1;
}

.contact-channels {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 60px;
}

.channel-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 0;
    border-bottom: 1px solid var(--border-soft);
    text-decoration: none;
    color: var(--text-pure);
    transition: padding-left 0.3s, border-bottom-color 0.3s;
}

.channel-row:hover {
    padding-left: 15px;
    border-bottom-color: var(--accent-lime);
}

.channel-label {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.channel-value {
    font-size: 1.5rem;
    font-weight: 600;
}

.footer-minimal {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 40px;
}


/* ==========================================================================
   ULTRA-PREMIUM ULTRA-RESPONSIVE MEDIA QUERIES (FOR PHONES & TABLETS)
   ========================================================================== */

/* Tablets & Medium Laptop Overrides (Fixes the squeeze/overlap completely) */
@media (max-width: 1200px) {
    .hero-layout { 
        grid-template-columns: 1fr; /* Turns into stacked view before elements collide */
        gap: 50px;
        text-align: center;
    }
    .hero-images-twin {
        margin: 0 auto; /* Centers images cleanly on smaller screens */
    }
    .hero-subtitle {
        margin: 0 auto;
    }
}

@media (max-width: 1024px) {
    .giant-title { font-size: 5.5rem; }
    .hero-layout { gap: 40px; grid-template-columns: 1fr; }
    .hero-images-twin { height: 440px; margin: 0 auto; }
    .big-statement h2, .footer-top h2, .contact-main-title { font-size: 2.8rem; }
    .status-grid-premium .grid-box-p h3 { font-size: 3rem; }
}

/* Mobile Devices (Phones - Portrait & Landscape) */
@media (max-width: 768px) {
    .custom-cursor { display: none !important; }
    * { cursor: auto !important; }

    .navbar {
        padding: 20px 6%;
    }
    
    .logo {
        font-size: 1.1rem;
    }

    .contact-trigger {
        font-size: 0.7rem;
        padding: 6px 12px;
    }

    .slide {
        min-height: auto;
        padding: 100px 6% 60px 6%; 
    }

    .hero-layout {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: left;
    }

    .giant-title {
        font-size: 4.2rem;
        letter-spacing: -2px;
    }

    .hero-subtitle {
        font-size: 1.1rem;
        max-width: 100%;
    }

    /* Twin Photos stack beautifully vertically on mobile */
    .hero-images-twin {
        flex-direction: column;
        height: auto;
        gap: 20px;
        max-width: 100%;
    }

    .img-box {
        height: 420px; /* Smooth height allocation for vertical graphics on mobile grids */
        width: 100%;
    }

    .img-box img {
        filter: grayscale(0%);
    }

    /* Statements */
    .big-statement h2 {
        font-size: 1.9rem;
        line-height: 1.4;
    }

    /* Timelines */
    .year-badge {
        font-size: 3rem;
    }

    .timeline-box h3 {
        font-size: 1.5rem;
    }

    .timeline-box p {
        font-size: 1rem;
    }

    /* Tools Cards */
    .tool-card-premium {
        padding-left: 20px;
    }

    .tool-card-premium h2 {
        font-size: 1.8rem;
    }

    .tool-card-premium p {
        font-size: 0.95rem;
    }

    /* Unified Box Layout */
    .box-container-premium {
        padding: 35px 25px;
    }

    .box-container-premium h2 {
        font-size: 1.8rem;
    }

    .box-container-premium p {
        font-size: 0.95rem;
        margin-bottom: 25px;
    }

    .action-neon-btn {
        width: 100%;
        justify-content: center;
        padding: 14px 20px;
    }

    /* Grid Items Stacked vertically */
    .status-grid-premium {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .status-grid-premium .grid-box-p h3 {
        font-size: 2.8rem;
        margin-bottom: 5px;
    }

    /* Contact channels architecture */
    .contact-main-title {
        font-size: 2.8rem;
        margin-bottom: 35px;
    }

    .channel-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
        padding: 18px 0;
    }

    .channel-value {
        font-size: 1.15rem;
        word-break: break-all;
    }
}

/* Extra Small Devices (Tiny Screens) */
@media (max-width: 380px) {
    .giant-title { font-size: 3.5rem; }
    .big-statement h2, .contact-main-title { font-size: 1.6rem; }
}