/* =========================================
   1. IMPORTS
   ========================================= */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700&family=Space+Grotesk:wght@300;400;500;600;700;800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=JetBrains+Mono:wght@400;500&display=swap');

/* =========================================
   2. VARIABLES
   ========================================= */
:root {
    --bg-main: #050505;
    --text-main: #ffffff;
    --text-muted: #9ca3af;
    --accent: #ccff00; /* Acid Neon */
    --glass-bg: rgba(20, 20, 20, 0.6);
    --glass-border: rgba(255, 255, 255, 0.1);
    
    --font-heading: 'Space Grotesk', sans-serif;
    --font-body: 'Outfit', sans-serif;
    --font-mono: 'JetBrains Mono', monospace;
}

/* =========================================
   3. BASE STYLES
   ========================================= */
* { box-sizing: border-box; margin: 0; padding: 0; cursor: none; }

/* --- HIDE SCROLLBAR (New Code) --- */
html {
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;  /* Firefox */
}
html::-webkit-scrollbar {
    display: none; /* Chrome, Safari and Opera */
}
/* -------------------------------- */

html, body { width: 100%; overflow-x: hidden; }

body {
    background-color: var(--bg-main);
    color: var(--text-main);
    font-family: var(--font-body);
}

h1, h2, h3, h4 { font-family: var(--font-heading); font-weight: 700; line-height: 1.1; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* =========================================
   4. LOADING SCREEN
   ========================================= */
.loader {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background: #000; z-index: 99999;
    display: flex; flex-direction: column; justify-content: center; align-items: center;
    color: var(--accent); font-family: var(--font-mono);
}
.loader-count { font-size: 5rem; font-weight: 700; margin-bottom: 1rem; }
.loader-text { letter-spacing: 2px; opacity: 0.7; }

/* =========================================
   5. FX: CURSOR & PARTICLES
   ========================================= */
.cursor {
    position: fixed; top: 0; left: 0; width: 20px; height: 20px;
    border: 1px solid var(--accent); border-radius: 50%;
    pointer-events: none; z-index: 9999;
    transform: translate(-50%, -50%);
    transition: width 0.3s, background 0.3s; mix-blend-mode: difference;
}
.cursor.hovered { width: 50px; height: 50px; background: var(--accent); opacity: 0.8; mix-blend-mode: normal; }

#tsparticles {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    z-index: -1; pointer-events: none;
}

/* =========================================
   6. NAVIGATION
   ========================================= */
nav {
    position: fixed; top: 0; width: 100%; padding: 2rem 5%;
    display: flex; justify-content: space-between; align-items: center;
    z-index: 100; background: transparent; transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
nav.scrolled {
    padding: 1.2rem 5%; background: rgba(5, 5, 5, 0.1);
    backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.logo {
    display: flex; align-items: center; gap: 12px;
    font-family: var(--font-heading); font-size: 1.5rem; font-weight: 800;
}
.logo img { height: 35px; width: auto; display: block; }
.logo span { color: var(--accent); }

.nav-links { display: flex; gap: 2rem; }
.nav-links a { font-size: 0.9rem; color: var(--text-muted); transition: 0.3s; position: relative; }
.nav-links a::after {
    content: ''; position: absolute; bottom: -5px; left: 0; width: 0; height: 1px; 
    background: var(--accent); transition: 0.3s ease;
}
.nav-links a:hover { color: var(--text-main); }
.nav-links a:hover::after { width: 100%; }

.btn-nav {
    padding: 0.8rem 1.5rem; border: 1px solid rgba(255,255,255,0.2); border-radius: 50px;
    font-size: 0.9rem; transition: 0.3s; overflow: hidden; position: relative; z-index: 1;
}
.btn-nav::before {
    content: ''; position: absolute; top: 0; left: 0; width: 0; height: 100%;
    background: var(--accent); z-index: -1; transition: 0.4s ease;
}
.btn-nav:hover { color: #000; border-color: var(--accent); }
.btn-nav:hover::before { width: 100%; }

/* Hamburger Menu */
.hamburger { display: none; flex-direction: column; cursor: pointer; gap: 6px; z-index: 1001; }
.hamburger span { display: block; width: 30px; height: 2px; background-color: #fff; transition: 0.4s; }
.mobile-menu {
    position: fixed; top: 0; right: -100%; width: 100%; height: 100vh;
    background: rgba(5, 5, 5, 0.95); backdrop-filter: blur(20px);
    display: flex; flex-direction: column; justify-content: center; align-items: center;
    gap: 2rem; transition: 0.5s; z-index: 1000;
}
.mobile-menu.active { right: 0; }
.mobile-menu a { font-family: var(--font-heading); font-size: 2rem; color: #fff; }
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(8px, 6px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -3px); }

/* =========================================
   7. HERO SECTION (UPDATED: TEXT ONLY HOVER)
   ========================================= */
section { position: relative; width: 100%; padding: 8rem 5%; }

.hero {
    min-height: 100vh; display: flex; flex-direction: column;
    justify-content: center; align-items: center; text-align: center;
    --x: 50%; --y: 50%;
}
.badge {
    border: 1px solid var(--accent); padding: 5px 15px; border-radius: 20px;
    font-family: var(--font-mono); color: var(--accent); font-size: 0.8rem;
    margin-bottom: 1.5rem; background: rgba(204,255,0,0.05);
}

.hero h1 {
    font-size: clamp(4rem, 12vw, 9rem);
    margin-bottom: 1.5rem;
    font-weight: 800;
    letter-spacing: -2px;
    line-height: 1;
    cursor: default; /* Keep default cursor */
    display: inline-block; /* Ensure hover box fits text */
    
    /* MODERN TECH EFFECT: Outline to Solid Neon */
    color: transparent;
    -webkit-text-stroke: 2px #fff; /* Wireframe look */
    text-stroke: 2px #fff;
    transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}

/* Hover State: Triggered ONLY on H1 hover */
.hero h1:hover {
    color: var(--accent);
    -webkit-text-stroke: 0px transparent;
    text-stroke: 0px transparent;
    text-shadow: 0 0 30px rgba(204, 255, 0, 0.6);
    transform: scale(1.02); /* Slight pulse */
}

.hero p { font-size: 1.2rem; color: var(--text-muted); max-width: 600px; margin-bottom: 2rem; line-height: 1.5; }

/* =========================================
   8. TAGLINE
   ========================================= */
.tagline-section {
    padding: 8rem 5%;
    display: flex; flex-direction: column; justify-content: center; align-items: center;
    text-align: center;
}
.tagline-logo {
    height: 120px; width: auto; margin-top: 4rem; 
    opacity: 0.9;
}
.tagline-container { display: flex; flex-direction: column; gap: 0.5rem; }
.line-wrapper { position: relative; display: inline-block; overflow: hidden; line-height: 1.2; }
.line-text {
    font-family: var(--font-heading); font-size: clamp(1.5rem, 3vw, 3rem);
    font-weight: 600; color: var(--text-main); opacity: 0; display: block;
}
.line-box {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: var(--accent); transform: scaleX(0); transform-origin: left; z-index: 2;
}

/* =========================================
   9. MARQUEE (GLITCH EFFECT ADDED)
   ========================================= */
.marquee {
    width: 100%; padding: 2rem 0; border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border); overflow: hidden; white-space: nowrap;
    background: var(--glass-bg); margin: 0; padding: 2rem 0;
    
    /* Glitch Animations */
    position: relative;
    animation: glitch-bar 4s infinite linear alternate-reverse;
}

/* Glitch Keyframes */
@keyframes glitch-bar {
    0% { transform: skewX(0deg); border-color: rgba(255,255,255,0.1); }
    5% { transform: skewX(0deg); border-color: rgba(255,255,255,0.1); }
    6% { transform: skewX(-2deg); border-color: var(--accent); background: rgba(204,255,0,0.1); }
    7% { transform: skewX(2deg); border-color: rgba(255,255,255,0.1); background: var(--glass-bg); }
    8% { transform: skewX(0deg); }
    90% { transform: skewX(0deg); opacity: 1; }
    91% { transform: skewX(1deg); opacity: 0.8; }
    92% { transform: skewX(0deg); opacity: 1; }
    100% { transform: skewX(0deg); }
}

.marquee-content { display: inline-block; animation: scroll 20s linear infinite; }
.marquee span {
    font-family: var(--font-heading); font-size: 3rem; font-weight: 800;
    color: transparent; -webkit-text-stroke: 1px var(--text-muted); margin-right: 4rem; opacity: 0.3;
    transition: 0.3s; letter-spacing: 2px;
}
.marquee:hover span { opacity: 0.8; color: var(--accent); -webkit-text-stroke: 0; }
@keyframes scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* =========================================
   10. HOW IT WORKS
   ========================================= */
.how-section { text-align: center; }
.timeline {
    display: flex; flex-direction: column; gap: 3rem; max-width: 800px; margin: 4rem auto 0;
    position: relative;
}
.timeline::before {
    content: ''; position: absolute; left: 24px; top: 0; bottom: 0; width: 2px;
    background: var(--accent); opacity: 0.3;
}
.t-item { 
    display: flex; gap: 2rem; text-align: left; position: relative; 
}
.t-dot {
    width: 50px; height: 50px; background: var(--bg-main); border: 2px solid var(--accent);
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    color: var(--accent); flex-shrink: 0; font-family: var(--font-mono); z-index: 2;
    transition: 0.4s;
}
.t-card {
    background: var(--glass-bg); padding: 2rem; border-radius: 20px; border: 1px solid var(--glass-border);
    flex: 1; transition: 0.4s;
}
.t-card:hover { transform: translateX(15px); border-color: var(--accent); background: rgba(204,255,0,0.05); }
.t-item:hover .t-dot { background: var(--accent); color: #000; box-shadow: 0 0 20px var(--accent); }

/* =========================================
   11. FEATURES
   ========================================= */
.h-container {
    height: 100vh; overflow: hidden; padding: 0; display: flex; align-items: center;
    position: relative; background: transparent;
}
.h-wrapper {
    display: flex; gap: 6rem; padding-left: 10vw; padding-right: 10vw;
    align-items: center; height: 100%;
}
.h-intro { min-width: 400px; margin-right: 4rem; }
.h-intro h2 { font-size: 4rem; line-height: 1; margin-bottom: 1.5rem; }
.h-intro p { font-size: 1.2rem; color: var(--text-muted); max-width: 350px; }

.gallery-unit { display: flex; align-items: center; gap: 2rem; flex-shrink: 0; transition: transform 0.4s ease; }
.gallery-unit:nth-child(even) { margin-top: 15rem; }
.gallery-unit:nth-child(odd) { margin-bottom: 10rem; }

.gallery-unit:hover .gallery-card-visual { transform: scale(1.08); border-color: var(--accent); box-shadow: 0 20px 40px rgba(0,0,0,0.5); }
.gallery-unit:hover .gallery-text-side h3 { color: var(--accent); text-shadow: 0 0 10px rgba(204,255,0,0.3); }

.gallery-text-side { width: 180px; text-align: right; display: flex; flex-direction: column; justify-content: center; opacity: 0.7; transition: 0.3s; }
.gallery-unit:hover .gallery-text-side { opacity: 1; transform: translateX(-10px); }

.gallery-num { font-family: var(--font-mono); color: var(--accent); font-size: 0.9rem; margin-bottom: 0.5rem; display: block; }
.gallery-text-side h3 { font-size: 1.5rem; margin-bottom: 0.5rem; line-height: 1.1; transition: color 0.3s; }
.gallery-text-side p { font-size: 0.85rem; color: var(--text-muted); line-height: 1.4; }

.gallery-card-visual {
    width: 300px; height: 400px; background: var(--glass-bg); border: 1px solid var(--glass-border);
    border-radius: 12px; overflow: hidden; position: relative; transition: 0.4s ease;
}
.gallery-card-visual img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(20%); transition: 0.5s; }
.gallery-unit:hover .gallery-card-visual img { filter: grayscale(0%); transform: scale(1.1); }


/* =========================================
   12. ABOUT SECTION
   ========================================= */
.about-section {
    position: relative;
    width: 100%;
    height: 100vh;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: transparent; 
    overflow: hidden; 
}

/* Side Image Containers - FLUSH TO EDGES */
.side-img-container {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    height: 90vh; 
    width: auto;
    z-index: 1;
    pointer-events: none;
    will-change: transform;
    display: flex;
}

.left-container { 
    left: 0; 
    justify-content: flex-start;
}

.right-container { 
    right: 0; 
    justify-content: flex-end;
}

.p-img {
    height: 100%;
    width: auto;
    object-fit: contain; 
    display: block;
    filter: brightness(0.9) contrast(1.1);
}

/* Center Content Area */
.about-center-content {
    position: relative;
    z-index: 20; 
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    max-width: 800px;
}

.about-title-wrapper {
    display: flex;
    gap: 2rem;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    flex-wrap: nowrap;
}

.relative-word { position: relative; }

.giant-text {
    font-family: var(--font-heading);
    font-size: 6rem;
    font-weight: 800;
    line-height: 1;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: -2px;
    text-shadow: 0 0 30px rgba(0,0,0,0.8);
}

.neon-scribble {
    position: absolute;
    top: -20%;
    left: -15%;
    font-family: 'Brush Script MT', cursive;
    font-size: 4rem;
    color: var(--accent);
    transform: rotate(-15deg);
    z-index: 2;
    mix-blend-mode: normal;
    text-shadow: 0 0 15px var(--accent);
    pointer-events: none;
}

.about-desc-row { 
    padding: 0 1rem;
}

.about-desc-row p {
    font-size: 1rem;
    color: var(--text-main);
    line-height: 1.6;
    background: rgba(0,0,0,0.7); 
    padding: 2rem;
    border-radius: 16px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.15);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

/* =========================================
   13. COVERAGE
   ========================================= */
.coverage-section { 
    padding: 8rem 2%; 
    background: transparent; 
}
.coverage-head { text-align: center; margin-bottom: 4rem; }

.giant-head-text {
    font-family: var(--font-heading);
    font-size: 4rem;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: -1px;
    margin-bottom: 1rem;
}

.helmet-grid { 
    display: grid; 
    grid-template-columns: repeat(5, 1fr); 
    gap: 1rem; 
    margin-top: 2rem;
    width: 100%;
    max-width: 1600px;
    margin-left: auto;
    margin-right: auto;
}

.helmet-card {
    position: relative; height: 200px; 
    background: rgba(255, 255, 255, 0.02); 
    border: 1px solid rgba(255,255,255,0.1); 
    padding: 1.2rem;
    overflow: hidden; 
    display: flex; flex-direction: column; justify-content: space-between; align-items: flex-start;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    backdrop-filter: blur(5px);
    opacity: 1; 
    visibility: visible;
    border-radius: 8px;
}

.helmet-card::before {
    content: ''; position: absolute; top: 0; left: 0; width: 10px; height: 10px;
    border-top: 2px solid rgba(255,255,255,0.3); border-left: 2px solid rgba(255,255,255,0.3);
    transition: 0.3s;
}
.helmet-card::after {
    content: ''; position: absolute; bottom: 0; right: 0; width: 10px; height: 10px;
    border-bottom: 2px solid rgba(255,255,255,0.3); border-right: 2px solid rgba(255,255,255,0.3);
    transition: 0.3s;
}

.helmet-card:hover { 
    border-color: var(--accent); 
    box-shadow: 0 0 20px rgba(204,255,0,0.15) inset;
    transform: translateY(-5px);
    background: rgba(204, 255, 0, 0.02);
}
.helmet-card:hover::before, .helmet-card:hover::after {
    border-color: var(--accent);
    width: 100%; height: 100%;
    opacity: 0.3;
}

.card-decor {
    position: absolute; top: 50%; left: 50%; width: 120%; height: 120%;
    background: radial-gradient(circle, rgba(255,255,255,0.05) 0%, transparent 60%);
    transform: translate(-50%, -50%) scale(0.8);
    opacity: 0; transition: 0.5s; pointer-events: none;
}
.helmet-card:hover .card-decor { opacity: 1; transform: translate(-50%, -50%) scale(1); }

.helmet-top {
    display: flex; justify-content: space-between; align-items: flex-start; width: 100%;
}

.helmet-icon { 
    font-size: 1.5rem; 
    filter: grayscale(100%) opacity(0.7); transition: 0.3s; 
}
.helmet-card:hover .helmet-icon { filter: grayscale(0%) opacity(1); transform: scale(1.1); text-shadow: 0 0 10px var(--accent); }

.db-id {
    font-family: var(--font-mono); font-size: 0.55rem; color: var(--accent);
    border: 1px solid var(--accent); padding: 2px 4px; border-radius: 0px; opacity: 0.7;
}

.helmet-title { 
    font-family: var(--font-heading); font-size: 1.1rem; font-weight: 700; color: #fff; 
    z-index: 2; transition: 0.3s; margin-top: auto;
}

.helmet-desc {
    font-size: 0.75rem; color: var(--text-muted); margin-top: 0.5rem;
    line-height: 1.3; max-height: 0; opacity: 0; transition: 0.3s;
}
.helmet-card:hover .helmet-desc { max-height: 50px; opacity: 1; margin-bottom: 0.5rem; }

.helmet-tag { 
    align-self: flex-end;
    font-family: var(--font-mono); font-size: 0.65rem; 
    color: var(--text-muted); letter-spacing: 1px;
}
.helmet-card:hover .helmet-tag { color: var(--accent); }


/* =========================================
   14. BENEFITS
   ========================================= */
.b-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; margin-top: 4rem; }
.b-card {
    background: var(--glass-bg); border: 1px solid var(--glass-border);
    padding: 2.5rem; border-radius: 20px; transition: 0.3s;
    opacity: 0; /* Set by GSAP */
    display: flex; flex-direction: column; align-items: flex-start;
}
.b-card:hover { 
    border-color: var(--accent); transform: translateY(-5px); 
    box-shadow: 0 10px 30px rgba(204,255,0,0.1); 
    background: linear-gradient(to bottom right, rgba(20,20,20,0.9), rgba(30,30,30,0.9));
}
.b-icon { font-size: 2.5rem; color: var(--accent); display: block; margin-bottom: 1.5rem; }
.b-card h3 { font-size: 1.4rem; margin-bottom: 0.5rem; }
.b-card p { color: var(--text-muted); font-size: 0.95rem; }

.start-section {
    min-height: 80vh; display: flex; flex-direction: column; justify-content: center; align-items: center;
    text-align: center; background: radial-gradient(circle at center, rgba(204,255,0,0.1) 0%, transparent 60%);
}
.start-section h2 { font-size: clamp(3rem, 8vw, 7rem); line-height: 1; margin-bottom: 2rem; color: #fff; }
.start-section p { font-size: 1.2rem; color: var(--text-muted); margin-bottom: 3rem; }
.btn-giant {
    padding: 1.5rem 4rem; font-size: 1.5rem; background: var(--accent); color: #000;
    border: none; border-radius: 100px; font-weight: 700; transition: 0.3s;
    box-shadow: 0 0 20px rgba(204,255,0,0.4);
}
.btn-giant:hover { transform: scale(1.05); box-shadow: 0 0 60px rgba(204,255,0,0.6); background: #fff; }

/* =========================================
   15. CONTACT SECTION
   ========================================= */
.contact-section { 
    background-color: var(--bg-main); 
    color: var(--text-main); 
    padding: 8rem 5%; 
    position: relative;
    overflow: hidden;
}

.contact-section::before {
    content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 60px 60px; pointer-events: none; z-index: 0;
}

.contact-section::after {
    content: ''; position: absolute; top: 50%; left: 50%; width: 600px; height: 600px;
    background: var(--accent); filter: blur(150px); opacity: 0.08;
    transform: translate(-50%, -50%); border-radius: 50%; z-index: 0; pointer-events: none;
}

.contact-container { position: relative; z-index: 2; max-width: 800px; margin: 0 auto; }
.contact-header { text-align: center; margin-bottom: 3rem; }
.tag-mono {
    font-family: var(--font-mono); color: var(--accent); font-size: 0.8rem;
    letter-spacing: 2px; display: block; margin-bottom: 1rem; opacity: 0.8;
}

.contact-header h2 { font-family: var(--font-heading); font-size: 3rem; margin-bottom: 0.5rem; color: var(--text-main); }
.contact-header p { font-family: var(--font-body); color: var(--text-muted); font-size: 1.1rem; }

.contact-box {
    background: var(--glass-bg); padding: 2.5rem; border-radius: 12px;
    border: 1px solid var(--glass-border); backdrop-filter: blur(10px);
    opacity: 0; /* Set by GSAP */
}

.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.input-group { margin-bottom: 1.5rem; }
.input-group label {
    display: block; font-family: var(--font-mono); font-size: 0.75rem; text-transform: uppercase;
    margin-bottom: 0.5rem; color: var(--text-muted); letter-spacing: 1px;
}

input, textarea, select {
    width: 100%; padding: 0.9rem; background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--glass-border); border-radius: 6px; color: #fff; 
    font-family: var(--font-body); font-size: 0.95rem; transition: all 0.3s ease;
}

.select-wrapper { position: relative; }
.select-wrapper::after {
    content: '▼'; font-size: 0.7rem; color: var(--text-muted); position: absolute;
    right: 1rem; top: 50%; transform: translateY(-50%); pointer-events: none;
}
select { appearance: none; -webkit-appearance: none; cursor: pointer; }
select option { background: #111; color: #fff; }

input:focus, textarea:focus, select:focus { 
    outline: none; border-color: var(--accent); box-shadow: 0 0 10px rgba(204, 255, 0, 0.1); 
}

.submit-btn { 
    width: 100%; padding: 1rem; background: var(--accent); color: #000;
    border: none; font-family: var(--font-heading); font-weight: 700; cursor: pointer; 
    border-radius: 6px; font-size: 1rem; text-transform: uppercase; letter-spacing: 1px;
    display: flex; justify-content: center; align-items: center; gap: 10px; transition: 0.3s; margin-top: 1rem;
}
.submit-btn:hover { background: #fff; transform: translateY(-2px); box-shadow: 0 5px 15px rgba(204, 255, 0, 0.2); }

@media (max-width: 768px) {
    .form-grid { grid-template-columns: 1fr; gap: 0; }
    .contact-header h2 { font-size: 2.2rem; }
    .contact-box { padding: 1.5rem; }
}

/* =========================================
   16. TECH FOOTER
   ========================================= */
.tech-footer {
    background: #020202; padding: 0 5%; position: relative; overflow: hidden;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.footer-content {
    padding: 6rem 0 4rem; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 4rem;
}
.giant-footer-text {
    font-family: var(--font-heading); font-size: clamp(4rem, 15vw, 12rem); font-weight: 800;
    line-height: 0.8; color: #111; -webkit-text-stroke: 1px rgba(255, 255, 255, 0.1);
    letter-spacing: -5px; margin-bottom: 1rem; user-select: none;
    opacity: 0; /* GSAP */
}
.footer-brand-area { flex: 2; min-width: 300px; }
.footer-tagline p { color: var(--text-muted); max-width: 400px; margin-top: 1rem; font-size: 1.1rem; }
.footer-links-grid { flex: 1; display: flex; gap: 4rem; min-width: 300px; opacity: 0; /* GSAP */ }
.mono-head {
    font-family: var(--font-mono); color: var(--accent); font-size: 0.8rem;
    letter-spacing: 1px; margin-bottom: 1.5rem;
}
.f-group ul li { margin-bottom: 0.8rem; }
.f-group ul li a {
    color: var(--text-muted); font-size: 0.95rem; transition: 0.3s; position: relative; display: inline-block;
}
.f-group ul li a:hover {
    color: #fff; transform: translateX(5px); text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1); padding: 2rem 0;
    display: flex; justify-content: space-between; align-items: center;
    font-family: var(--font-mono); font-size: 0.75rem; color: #666; flex-wrap: wrap; gap: 1rem;
    opacity: 0; /* GSAP */
}
.status-indicator {
    display: flex; align-items: center; gap: 10px; color: var(--accent);
    border: 1px solid rgba(204, 255, 0, 0.2); padding: 5px 12px; border-radius: 20px;
}
.blink-dot {
    width: 8px; height: 8px; background: var(--accent); border-radius: 50%;
    box-shadow: 0 0 10px var(--accent); animation: blink 2s infinite;
}
@keyframes blink { 0% { opacity: 1; } 50% { opacity: 0.3; } 100% { opacity: 1; } }

@media (max-width: 768px) {
    .footer-content { flex-direction: column; gap: 3rem; }
    .footer-links-grid { flex-direction: column; gap: 2rem; }
    .footer-bottom { flex-direction: column; align-items: flex-start; }
    .giant-footer-text { font-size: 5rem; letter-spacing: -2px; }
}

/* =========================================
   17. RESPONSIVE FIXES
   ========================================= */

@media (max-width: 1200px) {
     .helmet-grid { grid-template-columns: repeat(3, 1fr); }
     .giant-text { font-size: 4rem; }
}

@media (max-width: 1024px) {
    /* Navigation */
    .nav-links, .btn-nav.desktop-only { display: none; }
    .hamburger { display: flex; }

    /* Modules/Features - Vertical Grid (Mobile) */
    .h-container { height: auto; padding: 4rem 5%; display: block; }
    .h-wrapper { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; padding: 0; height: auto; transform: none !important; }
    .h-intro { grid-column: 1 / -1; min-width: auto; margin-right: 0; margin-bottom: 2rem; text-align: center; }
    
    .gallery-unit { flex-direction: column !important; margin: 0 !important; gap: 0.5rem; width: 100%; background: var(--glass-bg); padding: 1.5rem; border-radius: 12px; border: 1px solid var(--glass-border); align-items: flex-start; }
    .gallery-card-visual { display: none; }
    .gallery-text-side { width: 100%; text-align: left; opacity: 1; transform: none; }
    
    /* About Mobile: Text only, no images, auto height */
    .about-section { flex-direction: column; height: auto; padding: 4rem 1rem; min-height: 80vh; }
    .side-img-container { display: none; } /* Hide images on mobile */
    .about-center-content { padding: 2rem 0; width: 100%; max-width: 100%; }
    .giant-text { font-size: 3rem; }
    
    /* Force 2-column grid for small cards */
    .helmet-grid { grid-template-columns: repeat(2, 1fr); gap: 0.5rem; }
    .helmet-card { height: 160px; padding: 1rem; }
    .helmet-title { font-size: 0.9rem; }
    .helmet-desc { display: none; } /* Hide description on mobile to keep cards small */
    .helmet-card:hover .helmet-desc { display: none; }
    
    .b-grid { grid-template-columns: repeat(2, 1fr); gap: 0.8rem; margin-top: 2rem; }
    .b-card { padding: 1.5rem; border-radius: 15px; }
    .b-icon { font-size: 1.8rem; margin-bottom: 1rem; }
    .b-card h3 { font-size: 1.1rem; }
    .b-card p { font-size: 0.8rem; }
    .tagline-logo {
    height: 200x; width: auto; margin-top: 4rem; 
    opacity: 0.9;}
    
}

@media (max-width: 600px) {
    /* Ensure 2 columns remain on very small screens if possible, or slight adjustments */
    .helmet-grid { grid-template-columns: repeat(2, 1fr); }
    .b-grid { grid-template-columns: repeat(2, 1fr); }
    
    /* How It Works - Cards small */
    .timeline::before { left: 15px; }
    .t-item { gap: 1rem; }
    .t-dot { width: 30px; height: 30px; font-size: 0.8rem; }
    .t-card { padding: 1.2rem; }
    .t-card h3 { font-size: 1.2rem; }
    .t-card p { font-size: 0.85rem; }
    .tagline-logo {
    height: 180px; width: auto; margin-top: 4rem; 
    opacity: 0.9;}
}