/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Light Theme Colors */
    --primary: #0066FF;
    --primary-light: #3385FF;
    --primary-dark: #0052CC;
    --secondary: #00D4AA;
    --secondary-light: #33DDBA;
    --accent: #FF6B6B;
    --dark: #1A1A2E;
    --dark-light: #2D3047;
    --light: #FFFFFF;
    --light-gray: #F8F9FA;
    --gray: #6C757D;
    --gray-light: #E9ECEF;

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, var(--primary), var(--secondary));
    --gradient-light: linear-gradient(135deg, var(--light-gray), var(--light));

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 102, 255, 0.08);
    --shadow-md: 0 4px 16px rgba(0, 102, 255, 0.12);
    --shadow-lg: 0 8px 32px rgba(0, 102, 255, 0.16);
    --shadow-xl: 0 16px 48px rgba(0, 102, 255, 0.2);

    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 30px;
    --radius-full: 999px;

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
}

body {
    font-family: 'Poppins', sans-serif;
    background: var(--light);
    color: var(--dark);
    overflow-x: hidden;
    line-height: 1.6;
    width: fit-content;
    display: contents;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

section {
    padding: 100px 0;
}

/* Background Animation */
.bg-animation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.floating-shape {
    position: absolute;
    border-radius: var(--radius-full);
    background: linear-gradient(135deg, var(--primary-light), transparent);
    opacity: 0.1;
    animation: float 20s infinite linear;
}

.shape-1 {
    width: 300px;
    height: 300px;
    top: 10%;
    left: 5%;
    background: linear-gradient(135deg, var(--primary), transparent);
    animation-delay: 0s;
}

.shape-2 {
    width: 200px;
    height: 200px;
    top: 60%;
    right: 10%;
    background: linear-gradient(135deg, var(--secondary), transparent);
    animation-delay: 5s;
    animation-direction: reverse;
}

.shape-3 {
    width: 150px;
    height: 150px;
    bottom: 20%;
    left: 20%;
    background: linear-gradient(135deg, var(--accent), transparent);
    animation-delay: 10s;
}

.shape-4 {
    width: 100px;
    height: 100px;
    top: 20%;
    right: 20%;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    animation-delay: 15s;
}

.grid-lines {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(0, 102, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 102, 255, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: 0.3;
}

/* Navigation */
.glass-nav {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 102, 255, 0.1);
    z-index: 1000;
    padding: 15px 0;
    transition: var(--transition-normal);
}

.glass-nav.scrolled {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: var(--shadow-md);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--dark);
    font-family: 'Orbitron', sans-serif;
    font-weight: 600;
    font-size: 1.8rem;
}

.logo-icon {
    width: 60px;
    height: 60px;
}

.logo-highlight {
    color: var(--secondary);
    font-weight: 700;
}

.nav-menu {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: var(--dark);
    font-weight: 500;
    padding: 8px 16px;
    border-radius: var(--radius-full);
    transition: var(--transition-normal);
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    background: var(--primary);
    color: var(--light);
    transform: translateY(-2px);
}

.nav-link.support-btn {
    background: var(--secondary);
    color: var(--light);
}

.nav-link.support-btn:hover {
    background: var(--secondary-light);
    transform: translateY(-2px);
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--dark);
    cursor: pointer;
    padding: 8px;
    border-radius: var(--radius-sm);
    transition: var(--transition-normal);
}

.nav-toggle:hover {
    background: var(--gray-light);
}

/* Hero Section */
.hero {
    padding: 180px 0 100px;
    position: relative;
    overflow: hidden;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-subtitle {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--primary);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.hero-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 30px;
}

.title-line {
    display: block;
    margin-bottom: 10px;
}

.typing-text {
    color: var(--dark);
    position: relative;
}

.typing-text::after {
    content: '|';
    position: absolute;
    right: -8px;
    color: var(--primary);
    animation: blink 1s infinite;
}

.hero-description {
    color: var(--gray);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 40px;
}

.highlight {
    color: var(--primary);
    font-weight: 600;
    position: relative;
}

.highlight::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0;
    width: 100%;
    height: 8px;
    background: var(--secondary);
    opacity: 0.3;
    z-index: -1;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 50px;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    border-radius: var(--radius-full);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    border: 2px solid transparent;
    cursor: pointer;
    transition: var(--transition-normal);
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--light);
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.btn-outline {
    background: transparent;
    color: var(--dark);
    border-color: var(--gray-light);
}

.btn-outline:hover {
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-3px);
}

.btn-block {
    width: 100%;
    justify-content: center;
}

.btn-block:hover {
    transform: translateY(-2px);
}

.pulse-animation {
    animation: pulse 2s infinite;
}

.hero-stats {
    display: flex;
    gap: 40px;
}

.stat {
    text-align: center;
}

.stat-number {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 5px;
}

.stat-label {
    color: black;
    color: var(--gray);
    font-size: 0.9rem;
    font-weight: 500;
}


/* About Section */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.8rem;
    margin-bottom: 15px;
}

.section-subtitle {
    color: var(--gray);
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.about-text h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--dark);
}

.about-text p {
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 30px;
}

.mission-vision {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 30px;
}

.mv-card {
    background: var(--light-gray);
    padding: 25px;
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--primary);
    transition: var(--transition-normal);
}

.mv-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.mv-icon {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 15px;
}

.mv-card h4 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--dark);
}

.mv-card p {
    color: var(--gray);
    font-size: 0.95rem;
    margin: 0;
}

/* Features */
.about-features {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.feature {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding: 25px;
    background: var(--light-gray);
    border-radius: var(--radius-lg);
    transition: var(--transition-normal);
    border: 1px solid transparent;
}

.feature:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: var(--shadow-md);
}

.feature-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light);
    font-size: 1.5rem;
}

.feature-content h4 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--dark);
}

.feature-content p {
    color: var(--gray);
    line-height: 1.6;
    margin: 0;
}

/* Apps Section */
.apps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.app-card {
    background: var(--light);
    border-radius: var(--radius-lg);
    padding: 30px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--gray-light);
    transition: var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.app-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.app-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.badge-text {
    background: var(--secondary);
    color: var(--light);
    padding: 6px 15px;
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 600;
}

.badge-dot {
    width: 10px;
    height: 10px;
    background: var(--secondary);
    border-radius: 50%;
    animation: blink 1.5s infinite;
}

.app-header {
    display: flex;
    gap: 20px;
    margin-top: 20px;
    align-items: center;
    margin-bottom: 25px;
}

.app-icon-large {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light);
    font-size: 2.5rem;
}

.app-icon-img {
    width: 80px;
    height: 80px;
}

.app-info {
    flex: 1;
}

.app-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 5px;
}

.app-subtitle {
    color: var(--gray);
    font-size: 1rem;
    margin-bottom: 10px;
}

.app-rating {
    display: flex;
    align-items: center;
    gap: 5px;
}

.app-rating i {
    color: #FFC107;
    font-size: 0.9rem;
}

.rating-text {
    color: var(--gray);
    font-size: 0.9rem;
    margin-left: 10px;
}

.app-features {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 25px;
}

.feature-tag {
    display: flex;
    align-items: center;
    gap: 6px;
    background: var(--light-gray);
    padding: 8px 15px;
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    color: var(--dark);
}

.feature-tag i {
    color: var(--primary);
}

.app-description {
    color: var(--gray);
    line-height: 1.7;
    margin-bottom: 30px;
}

.app-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

/* Support Section */
.support-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.support-card {
    background: var(--light);
    border-radius: var(--radius-lg);
    padding: 40px 30px;
    text-align: center;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--gray-light);
    transition: var(--transition-normal);
}

.support-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.support-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light);
    font-size: 2.5rem;
    margin: 0 auto 25px;
}

.app-support-icon-img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: var(--radius-full);

}

.support-card h3 {
    font-size: 1.8rem;
    margin-bottom: 25px;
    color: var(--dark);
}

.support-list {
    list-style: none;
    text-align: left;
    margin-bottom: 30px;
}

.support-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    color: var(--gray);
}

.support-list i {
    color: var(--secondary);
}

/* ============================================
   Hero Visual - Premium Product Showcase
   ============================================ */
.hero-visual {
    position: relative;
    width: 100%;
    min-height: 660px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.product-showcase {
    position: relative;
    width: 100%;
    max-width: 700px;
    height: 620px;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* --- Ambient Background Glow (Vibrant & Animated 3D Light Aura) --- */
.showcase-ambient {
    position: absolute;
    width: 720px;
    height: 720px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: radial-gradient(ellipse at center,
            rgba(0, 195, 255, 0.42) 0%,
            rgba(0, 130, 255, 0.22) 38%,
            rgba(0, 230, 200, 0.10) 62%,
            transparent 75%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
    filter: blur(38px);
    animation: ambientPulse 6s ease-in-out infinite alternate;
}

@keyframes ambientPulse {
    0% {
        transform: translate(-50%, -50%) scale(0.92);
        opacity: 0.80;
        filter: blur(38px);
    }

    100% {
        transform: translate(-50%, -50%) scale(1.10);
        opacity: 1.0;
        filter: blur(48px);
    }
}

/* --- Floating Particles --- */
.showcase-particles {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
}

.particle {
    position: absolute;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(0, 180, 255, 0.6);
    box-shadow: 0 0 10px rgba(0, 180, 255, 0.8);
    animation: particleFloat 6s ease-in-out infinite;
}

.particle.p1 {
    top: 12%;
    left: 15%;
    animation-delay: 0s;
    animation-duration: 7s;
}

.particle.p2 {
    top: 28%;
    right: 10%;
    animation-delay: 1.2s;
    animation-duration: 5.5s;
    background: rgba(0, 212, 170, 0.6);
    box-shadow: 0 0 10px rgba(0, 212, 170, 0.8);
}

.particle.p3 {
    bottom: 25%;
    left: 8%;
    animation-delay: 2.4s;
    animation-duration: 6.5s;
}

.particle.p4 {
    bottom: 15%;
    right: 20%;
    animation-delay: 0.8s;
    animation-duration: 7.5s;
    background: rgba(0, 212, 170, 0.5);
    box-shadow: 0 0 8px rgba(0, 212, 170, 0.6);
}

.particle.p5 {
    top: 50%;
    left: 5%;
    animation-delay: 3s;
    animation-duration: 8s;
    width: 4px;
    height: 4px;
}

@keyframes particleFloat {

    0%,
    100% {
        transform: translateY(0) translateX(0);
        opacity: 0.4;
    }

    25% {
        transform: translateY(-12px) translateX(5px);
        opacity: 0.85;
    }

    50% {
        transform: translateY(-6px) translateX(-3px);
        opacity: 0.6;
    }

    75% {
        transform: translateY(-15px) translateX(8px);
        opacity: 0.95;
    }
}

/* --- Orbit SVG Paths (Split into back/front layers for 3D wrap effect) --- */
.orbit-svg {
    position: absolute;
    /* Center horizontally relative to the showcase container */
    left: 50%;
    top: 0;
    transform: translateX(-50%);
    /* Orbit should be at least as wide as the laptop — never shrink below it */
    width: 100%;
    min-width: 480px;
    /* matches desktop laptop lid width */
    height: 100%;
    pointer-events: none;
    opacity: 0.95;
}

/* Back arc: top half — sits BEHIND the laptop screen (z-index below laptop z-index:5) */
.orbit-svg-back {
    z-index: 2;
}

/* Front arc: bottom half — sits IN FRONT of the laptop base (z-index above laptop z-index:5) */
.orbit-svg-front {
    z-index: 6;
}

/* ==========================================
   ORBIT ANIMATION KEYFRAMES
   ========================================== */

/* Pulsing glow on base orbit lines */
@keyframes orbitGlowPulse {

    0%,
    100% {
        filter: drop-shadow(0 0 4px rgba(0, 240, 255, 0.35));
        opacity: 0.75;
    }

    50% {
        filter: drop-shadow(0 0 14px rgba(0, 240, 255, 0.90)) drop-shadow(0 0 28px rgba(0, 212, 170, 0.40));
        opacity: 1;
    }
}

/* Comet dash traveling along the arc (pathLength=1000, dash=130, gap=870) */
@keyframes orbitCometTravel {
    from {
        stroke-dashoffset: 0;
    }

    to {
        stroke-dashoffset: -1000;
    }
}

/* === Base orbit path styles === */
.orbit-path {
    stroke-linecap: round;
    stroke-width: 2.0;
    animation: orbitGlowPulse 2.8s ease-in-out infinite;
}

.orbit-path-back {
    stroke-width: 2.0;
}

.orbit-path-front {
    stroke-width: 2.2;
}

/* === Comet highlight (brighter moving dash segment) === */
.orbit-comet {
    fill: none;
    stroke: #00f0ff;
    stroke-width: 2.8;
    stroke-linecap: round;
    /* 130 units bright dash, 870 units invisible gap (on pathLength=1000) */
    stroke-dasharray: 130 870;
    /* traveling animation: 3.5s per half orbit = 7s full orbit illusion */
    animation: orbitCometTravel 3.5s linear infinite;
}

/* Back comet: starts at offset 0 (begins at start of back arc) */
.orbit-comet-back {
    stroke: #00f0ff;
}

/* Front comet: -1.75s delay = 180° offset, so it's always opposite the back comet */
.orbit-comet-front {
    stroke: #00e8ff;
    animation-delay: -1.75s;
}


/* --- Pedestal Platform (3D Cylindrical Podium Stage) --- */
.hero-pedestal {
    position: absolute;
    top: 75%;
    left: 48%;
    transform: translate(-50%, 0);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    pointer-events: none;
}

.pedestal-stage {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Top Podium Tier Cylinder */
.pedestal-stage-top {
    width: 490px;
    z-index: 3;
}

.pedestal-stage-top .stage-top-cap {
    width: 100%;
    height: 64px;
    background: radial-gradient(ellipse at 50% 35%,
            #ffffff 0%,
            #f4f8ff 65%,
            #e2ecfd 100%);
    border-radius: 50%;
    border: 1.5px solid rgba(255, 255, 255, 0.9);
    box-shadow:
        inset 0 3px 6px #ffffff,
        inset 0 -4px 10px rgba(0, 102, 255, 0.08),
        0 10px 30px rgba(0, 60, 150, 0.08);
    position: relative;
    z-index: 2;
}

.pedestal-stage-top .stage-side-wall {
    width: 100%;
    height: 100px;
    margin-top: -32px;
    background: linear-gradient(180deg,
            #ffffff 0%,
            #edf4ff 25%,
            #d8e5fc 65%,
            #c6daf8 100%);
    border-radius: 0 0 50% 50% / 0 0 32px 32px;
    border-left: 1px solid rgba(0, 102, 255, 0.08);
    border-right: 1px solid rgba(0, 102, 255, 0.08);
    border-bottom: 1.5px solid rgba(0, 102, 255, 0.15);
    box-shadow: 0 22px 40px rgba(0, 60, 150, 0.15);
    position: relative;
    z-index: 1;
}

/* Cyan Ring Light around top pedestal cylinder */
.stage-ring-light {
    position: absolute;
    top: 30px;
    width: 99.5%;
    height: 18px;
    border-radius: 50%;
    border-bottom: 3px solid #00f0ff;
    box-shadow:
        0 4px 16px rgba(0, 240, 255, 0.75),
        inset 0 -2px 6px rgba(0, 240, 255, 0.5);
    z-index: 3;
    pointer-events: none;
}

/* Bottom Tier Cylinder */
.pedestal-stage-bottom {
    width: 580px;
    margin-top: -38px;
    z-index: 2;
}

.pedestal-stage-bottom .stage-top-cap {
    width: 100%;
    height: 70px;
    background: radial-gradient(ellipse at 50% 35%,
            #ffffff 0%,
            #edf4ff 65%,
            #dae7fc 100%);
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.8);
    box-shadow: inset 0 2px 6px #ffffff;
    z-index: 2;
}

.pedestal-stage-bottom .stage-side-wall {
    width: 100%;
    height: 95px;
    margin-top: -35px;
    background: linear-gradient(180deg,
            #edf4ff 0%,
            #dbe8ff 55%,
            #c6daf8 100%);
    border-radius: 0 0 50% 50% / 0 0 35px 35px;
    border-bottom: 1.5px solid rgba(0, 102, 255, 0.12);
    box-shadow: 0 24px 48px rgba(0, 60, 150, 0.14);
    z-index: 1;
}

.pedestal-glow {
    width: 500px;
    height: 30px;
    background: radial-gradient(ellipse at center,
            rgba(0, 200, 255, 0.25) 0%,
            rgba(0, 102, 255, 0.10) 50%,
            transparent 70%);
    border-radius: 50%;
    filter: blur(12px);
    margin-top: -15px;
}

/* ============================================
   CSS 3D Laptop
   ============================================ */
.laptop-3d-wrapper {
    position: absolute;
    top: 55%;
    left: 50%;
    transform: translate(-50%, -54%);
    z-index: 5;
    perspective: 1400px;
}

.laptop-3d {
    transform-style: preserve-3d;
    transform: rotateX(-5deg) rotateY(-22deg);
    transition: transform 0.08s linear;
    will-change: transform;
    animation: laptopFloat 5s ease-in-out infinite;
}

@keyframes laptopFloat {

    0%,
    100% {
        transform: rotateX(-5deg) rotateY(-22deg) translateY(0);
    }

    50% {
        transform: rotateX(-5deg) rotateY(-22deg) translateY(-10px);
    }
}

/* --- Laptop Lid (Display) --- */
.laptop-lid {
    width: 400px;
    height: 240px;
    position: relative;
    transform-origin: bottom center;
}

.lid-bezel {
    width: 100%;
    height: 100%;
    background: linear-gradient(145deg, #d4d4d8 0%, #c4c4c8 40%, #d0d0d4 100%);
    border-radius: 12px 12px 3px 3px;
    padding: 11px 11px 16px;
    box-shadow:
        0 24px 70px rgba(0, 0, 0, 0.20),
        0 4px 16px rgba(0, 0, 0, 0.10),
        inset 0 1px 0 rgba(255, 255, 255, 0.65),
        inset 0 -1px 0 rgba(0, 0, 0, 0.08);
    position: relative;
}

.lid-camera {
    position: absolute;
    top: 5px;
    left: 50%;
    transform: translateX(-50%);
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: radial-gradient(circle, #888 30%, #555 70%);
    box-shadow: 0 0 2px rgba(0, 0, 0, 0.3);
}

.lid-screen {
    width: 100%;
    height: 100%;
    background: linear-gradient(160deg, #eef4ff 0%, #dce8ff 50%, #e8f0ff 100%);
    border-radius: 4px;
    overflow: hidden;
    position: relative;
}

/* --- Screen Header Bar --- */
.lid-screen .screen-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 12px;
    background: rgba(255, 255, 255, 0.6);
    border-bottom: 1px solid rgba(0, 102, 255, 0.08);
    backdrop-filter: blur(10px);
}

.win-controls {
    display: flex;
    gap: 5px;
}

.win-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.dot-close {
    background: #ff5f57;
}

.dot-min {
    background: #ffbd2e;
}

.dot-max {
    background: #28c840;
}

.screen-brand {
    display: flex;
    align-items: center;
    gap: 6px;
}

.screen-logo {
    width: 14px;
    height: 14px;
    border-radius: 3px;
    object-fit: contain;
}

.screen-brand-name {
    font-size: 10px;
    font-weight: 600;
    color: var(--dark);
    letter-spacing: 0.3px;
}

.screen-live-badge {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 9px;
    color: #28c840;
    font-weight: 500;
}

.live-pulse {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #28c840;
    animation: livePulse 2s ease-in-out infinite;
}

@keyframes livePulse {

    0%,
    100% {
        opacity: 1;
        box-shadow: 0 0 0 0 rgba(40, 200, 64, 0.4);
    }

    50% {
        opacity: 0.7;
        box-shadow: 0 0 0 4px rgba(40, 200, 64, 0);
    }
}

/* --- Screen Body Content (Split Workspace: 50% Branding + 50% Hacker Terminal Code) --- */
.screen-body.split-workspace {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    height: 100%;
    position: relative;
    overflow: hidden;
    padding: 0;
}

/* 50% Left: Branding */
.screen-left-brand {
    width: 50%;
    height: 100%;
    display: flex;
    flex-direction: column;
    background: radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.95) 0%, rgba(235, 243, 255, 0.9) 100%);
    position: relative;
    z-index: 2;
    border-right: 1px solid rgba(0, 102, 255, 0.08);
}

.brand-header-bar {
    height: 22px;
    background: #e2e8f0;
    border-bottom: 1px solid rgba(0, 102, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 8px;
    font-size: 8px;
    gap: 6px;
}

.brand-header-bar .win-controls {
    display: flex;
    gap: 4px;
    flex-shrink: 0;
}

.brand-tab {
    color: #0066ff;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 4px;
    flex: 1;
}

.brand-live {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 7.5px;
    font-weight: 600;
    color: #1b803a;
    flex-shrink: 0;
}

.brand-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 8px;
    text-align: center;
}

.screen-hero-logo {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    object-fit: contain;
    filter: drop-shadow(0 4px 12px rgba(0, 102, 255, 0.25));
    margin-bottom: 6px;
    animation: logoPulse 4s ease-in-out infinite;
}

@keyframes logoPulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

.screen-left-brand h2 {
    font-size: 17px;
    font-weight: 800;
    color: var(--dark);
    line-height: 1.2;
    margin-bottom: 2px;
    letter-spacing: 0.5px;
}

.screen-left-brand p {
    font-size: 9px;
    color: var(--gray);
    font-weight: 400;
    line-height: 1.3;
    margin-bottom: 8px;
    max-width: 140px;
}

.screen-status-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 3px 9px;
    background: rgba(40, 200, 64, 0.1);
    border: 1px solid rgba(40, 200, 64, 0.25);
    border-radius: 20px;
    font-size: 8px;
    font-weight: 600;
    color: #1b803a;
}

.status-dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #28c840;
    box-shadow: 0 0 6px #28c840;
    animation: livePulse 2s ease-in-out infinite;
}

/* 50% Right: Light Theme Code Stream Terminal */
.screen-right-code {
    width: 50%;
    height: 100%;
    background: #f8fafc;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    position: relative;
    font-family: 'Fira Code', 'Cascadia Code', 'Consolas', monospace;
    border-left: 1px solid rgba(0, 102, 255, 0.08);
}

.code-terminal-header {
    height: 22px;
    background: #e2e8f0;
    border-bottom: 1px solid rgba(0, 102, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 8px;
    font-size: 8px;
}

.term-tab {
    color: #0066ff;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 4px;
}

.term-status {
    color: #10b981;
    font-size: 7.5px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 3px;
    letter-spacing: 0.5px;
}

.term-pulse {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: #10b981;
    box-shadow: 0 0 5px #10b981;
    animation: livePulse 1.5s ease-in-out infinite;
}

.code-stream-wrapper {
    flex: 1;
    overflow: hidden;
    position: relative;
    padding: 6px 8px;
    mask-image: linear-gradient(180deg, transparent 0%, #000 10%, #000 90%, transparent 100%);
    -webkit-mask-image: linear-gradient(180deg, transparent 0%, #000 10%, #000 90%, transparent 100%);
}

.code-stream {
    display: flex;
    flex-direction: column;
    gap: 4px;
    animation: hackerCodeScroll 12s linear infinite;
    will-change: transform;
}

@keyframes hackerCodeScroll {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(-50%);
    }
}

.code-line {
    font-size: 8px;
    line-height: 1.4;
    white-space: nowrap;
    color: #1e293b;
    font-family: inherit;
    display: block;
}

/* Light Theme Code Syntax Colors */
.c-keyword {
    color: #d946ef;
    font-weight: 700;
}

.c-func {
    color: #0066ff;
    font-weight: 600;
}

.c-str {
    color: #059669;
}

.c-comment {
    color: #64748b;
    font-style: italic;
}

.c-val {
    color: #d97706;
    font-weight: 600;
}

/* --- Screen App Grid --- */
.screen-app-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    flex: 1;
}

.screen-tile {
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(0, 102, 255, 0.08);
    border-radius: 10px;
    padding: 10px 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    transition: background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 102, 255, 0.04);
}

.screen-tile:hover {
    background: rgba(255, 255, 255, 0.9);
    border-color: rgba(0, 102, 255, 0.18);
    box-shadow: 0 4px 12px rgba(0, 102, 255, 0.08);
}

.screen-tile img {
    width: 28px;
    height: 28px;
    border-radius: 7px;
    object-fit: contain;
}

.screen-tile span {
    font-size: 8px;
    color: var(--dark);
    font-weight: 500;
    text-align: center;
    line-height: 1.2;
}

/* --- Laptop Keyboard Base --- */
.laptop-base-3d {
    width: 400px;
    height: 180px;
    margin: 0 auto;
    background: linear-gradient(180deg,
            #d8d8dc 0%,
            #c2c2c6 25%,
            #b4b4b8 60%,
            #c8c8cc 100%);
    border-radius: 0 0 14px 14px;
    position: relative;
    transform: perspective(1000px) rotateX(46deg);
    transform-origin: top center;
    box-shadow:
        0 30px 70px rgba(0, 0, 0, 0.35),
        inset 0 1.5px 0 rgba(255, 255, 255, 0.7),
        inset 0 -3px 0 rgba(0, 0, 0, 0.22);
    overflow: hidden;
}

/* Front Lid Notch */
.laptop-notch {
    position: absolute;
    top: 98%;
    left: 50%;
    transform: translateX(-50%);
    width: 46px;
    height: 4px;
    background: rgba(0, 0, 0, 0.14);
    border-radius: 0 0 5px 5px;
    z-index: 5;
}

/* Recessed Dark Keyboard Well */
.keyboard-well {
    position: absolute;
    top: 10px;
    left: 5%;
    width: 90%;
    height: 90px;
    background: #141720;
    border-radius: 6px;
    padding: 4px;
    box-shadow:
        inset 0 3px 8px rgba(0, 0, 0, 0.7),
        0 1px 0 rgba(255, 255, 255, 0.35);
}

/* Realistic Dark Chiclet Keys Structure */
.keyboard-surface {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 2px;
}

.key-row {
    display: flex;
    width: 100%;
    gap: 2px;
    height: 14%;
}

.key {
    flex: 1;
    background: linear-gradient(180deg, #2a2e3b 0%, #171a23 100%);
    border-radius: 2px;
    box-shadow:
        0 1px 1px rgba(0, 0, 0, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 7px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.75);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    user-select: none;
    line-height: 1;
    letter-spacing: -0.2px;
}

.key.k-space {
    flex: 5.5;
    background: linear-gradient(180deg, #2c303f 0%, #191c26 100%);
}

.key.k-tab {
    flex: 1.5;
}

.key.k-caps {
    flex: 1.8;
}

.key.k-enter {
    flex: 2.2;
}

.key.k-shift-l {
    flex: 2.3;
}

.key.k-shift-r {
    flex: 2.5;
}

.key.k-back {
    flex: 1.6;
}

.key.k-cmd {
    flex: 1.3;
}

.key.k-mod {
    flex: 1.1;
}

.key.k-pwr {
    background: linear-gradient(180deg, #323746 0%, #1e222e 100%);
}

/* Trackpad */
.trackpad-indent {
    position: absolute;
    width: 140px;
    height: 65px;
    bottom: 8px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(180deg,
            rgba(0, 0, 0, 0.05) 0%,
            rgba(255, 255, 255, 0.14) 100%);
    border-radius: 6px;
    border: 1px solid rgba(0, 0, 0, 0.12);
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.12);
}


/* --- Laptop Ground Shadow --- */
.laptop-ground-shadow {
    position: absolute;
    width: 440px;
    height: 26px;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    background: radial-gradient(ellipse at center,
            rgba(0, 0, 0, 0.18) 0%,
            rgba(0, 0, 0, 0.05) 50%,
            transparent 70%);
    border-radius: 50%;
    filter: blur(6px);
    animation: shadowPulse 5s ease-in-out infinite;
}

@keyframes shadowPulse {

    0%,
    100% {
        opacity: 1;
        transform: translateX(-50%) scaleX(1);
    }

    50% {
        opacity: 0.7;
        transform: translateX(-50%) scaleX(0.95);
    }
}

/* --- Platform Tagline (Glass Card attached to Pedestal Stage) --- */
.platform-tagline {
    position: absolute;
    top: 36%;
    left: 70px;
    z-index: 8;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1.5px solid rgba(255, 255, 255, 0.95);
    border-radius: 14px;
    padding: 16px 20px 14px;
    box-shadow:
        0 20px 48px rgba(0, 102, 255, 0.16),
        0 4px 14px rgba(0, 0, 0, 0.04),
        inset 0 1px 0 #ffffff;
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-width: 280px;
    transform-style: preserve-3d;
    transform-origin: center center;
    transform: perspective(1200px) rotateX(-5deg) rotateY(-22deg);
    animation: taglineFloat3D 5s ease-in-out infinite;
}

.tagline-header {
    display: flex;
    align-items: center;
    gap: 10px;
}

.tagline-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #00d4aa;
    box-shadow: 0 0 10px rgba(0, 212, 170, 0.85);
    flex-shrink: 0;
}

.tagline-text {
    font-size: 13px;
    color: var(--dark);
    font-weight: 600;
    line-height: 1.4;
}

.tagline-bar {
    width: 100%;
    height: 4px;
    background: rgba(0, 102, 255, 0.1);
    border-radius: 2px;
    overflow: hidden;
}

.tagline-bar-fill {
    display: block;
    width: 70%;
    height: 100%;
    background: linear-gradient(90deg, #00d4ff 0%, #0066ff 100%);
    border-radius: 2px;
    box-shadow: 0 0 6px rgba(0, 212, 170, 0.5);
}

@keyframes taglineFloat3D {

    0%,
    100% {
        transform: perspective(1200px) rotateX(-5deg) rotateY(-22deg) translateY(0);
    }

    50% {
        transform: perspective(1200px) rotateX(-5deg) rotateY(-22deg) translateY(-8px);
    }
}

/* ============================================
   Floating App Cards
   ============================================ */
.floating-app-card {
    position: absolute;
    z-index: 10;
    display: flex;
    align-items: center;
    padding: 6px;
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid rgba(0, 102, 255, 0.12);
    border-radius: 14px;
    box-shadow:
        0 6px 20px rgba(0, 102, 255, 0.08),
        0 2px 6px rgba(0, 0, 0, 0.04);
    cursor: pointer;
    transition: padding 0.35s cubic-bezier(0.4, 0, 0.2, 1),
        border-radius 0.35s cubic-bezier(0.4, 0, 0.2, 1),
        background 0.3s ease,
        box-shadow 0.35s ease,
        transform 0.3s ease;
    backdrop-filter: blur(12px);
    will-change: transform, padding, box-shadow;
    overflow: hidden;
}

.floating-app-card:hover {
    padding: 8px 16px 8px 8px;
    background: rgba(255, 255, 255, 0.98);
    border-color: rgba(0, 102, 255, 0.25);
    transform: translateY(-4px) scale(1.04) !important;
    box-shadow:
        0 12px 32px rgba(0, 102, 255, 0.18),
        0 4px 12px rgba(0, 0, 0, 0.06);
    z-index: 20;
}

.fac-icon {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.fac-icon img {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    object-fit: contain;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.floating-app-card:hover .fac-icon img {
    transform: scale(1.05);
}

.fac-info {
    max-width: 0;
    opacity: 0;
    overflow: hidden;
    white-space: nowrap;
    transition: max-width 0.35s cubic-bezier(0.4, 0, 0.2, 1),
        opacity 0.25s ease,
        margin 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    margin-left: 0;
}

.floating-app-card:hover .fac-info {
    max-width: 180px;
    opacity: 1;
    margin-left: 10px;
}

.fac-info h4 {
    font-size: 13px;
    font-weight: 600;
    color: var(--dark);
    line-height: 1.3;
    margin-bottom: 1px;
}

.fac-info p {
    font-size: 10px;
    color: var(--gray);
    font-weight: 400;
    line-height: 1.3;
    white-space: nowrap;
}

.fac-arrow {
    max-width: 0;
    opacity: 0;
    overflow: hidden;
    color: var(--primary);
    font-size: 11px;
    transition: max-width 0.35s cubic-bezier(0.4, 0, 0.2, 1),
        opacity 0.25s ease,
        margin 0.35s cubic-bezier(0.4, 0, 0.2, 1),
        transform 0.3s ease;
    margin-left: 0;
    flex-shrink: 0;
}

.floating-app-card:hover .fac-arrow {
    max-width: 20px;
    opacity: 1;
    margin-left: 10px;
    transform: translateX(2px);
}

/* --- Card Positions (matching reference) --- */
.card-pos-tl {
    top: 8%;
    left: -10%;
    animation: floatCardTL 5.2s ease-in-out infinite;
}

/* --- Location Camera --*/
.card-pos-tr {
    top: -5%;
    animation: floatCardTR 5.7s ease-in-out infinite;
}

/* URL Shortener - left-middle (reference shows it left side, not bottom-left) */
.card-pos-bl {
    top: 42%;
    left: -12%;
    animation: floatCardBL 5.4s ease-in-out infinite;
}

/* BGMI - right-middle (reference shows it right side, middle height) */
.card-pos-br {
    top: 20%;
    right: -8%;
    animation: floatCardBR 6.1s ease-in-out infinite;
}

/* FoxBattle - bottom-right area below BGMI */
.card-pos-bm {
    bottom: 35%;
    right: -6%;
    animation: floatCardBM 5.8s ease-in-out infinite;
}

@keyframes floatCardTL {

    0%,
    100% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(4px, -8px);
    }
}

@keyframes floatCardTR {

    0%,
    100% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(-5px, -10px);
    }
}

@keyframes floatCardBL {

    0%,
    100% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(6px, -7px);
    }
}

@keyframes floatCardBR {

    0%,
    100% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(-4px, -9px);
    }
}

@keyframes floatCardBM {

    0%,
    100% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(-5px, 8px);
    }
}

/* ============================================
   Decorative Realistic 3D Glass Globe
   ============================================ */
.hero-globe {
    position: absolute;
    bottom: -10%;
    right: -5%;
    z-index: 6;
    width: 185px;
    height: 185px;
    pointer-events: auto;
    transition: transform 0.2s ease;
    animation: floatGlobe 6s ease-in-out infinite;
}

.glass-globe-container {
    width: 100%;
    height: 100%;
    position: relative;
    filter: drop-shadow(0 16px 36px rgba(0, 102, 255, 0.25));
    pointer-events: auto;
}

.globe-canvas {
    width: 100%;
    height: 100%;
    display: block;
    border-radius: 50%;
    cursor: crosshair;
    pointer-events: auto;
}

/* Floating Glass Tooltip for Country/Continent Name */
.globe-tooltip {
    position: absolute;
    top: -38px;
    left: 50%;
    transform: translateX(-50%) translateY(6px);
    background: rgba(10, 25, 50, 0.88);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(0, 180, 255, 0.45);
    box-shadow: 0 8px 24px rgba(0, 102, 255, 0.35), 0 0 14px rgba(0, 210, 255, 0.25);
    border-radius: 20px;
    padding: 6px 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    color: #ffffff;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.3px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.25s cubic-bezier(0.4, 0, 0.2, 1), transform 0.25s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.25s ease;
    z-index: 30;
}

.globe-tooltip.active {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.tooltip-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #00d2ff;
    box-shadow: 0 0 10px #00d2ff;
    animation: pulseDot 1.5s ease-in-out infinite;
}

@keyframes pulseDot {

    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }

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

.rotating-continents {
    animation: rotateContinents 24s linear infinite;
}

@keyframes rotateContinents {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-200px);
    }
}

@keyframes floatGlobe {

    0%,
    100% {
        transform: translateY(0);
    }

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

/* ============================================
   Decorative Icons
   ============================================ */
.decor-icon {
    position: absolute;
    z-index: 4;
    transition: transform 0.2s ease;
}

.decor-code {
    top: 52%;
    left: 3%;
    z-index: 7;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1.5px solid rgba(255, 255, 255, 0.95);
    border-radius: 14px;
    padding: 12px 18px;
    color: #00a2ff;
    font-weight: 700;
    font-size: 18px;
    box-shadow: 0 14px 35px rgba(0, 102, 255, 0.15);
    transform: perspective(800px) rotateX(15deg) rotateY(-10deg);
    animation: floatDecor 7s ease-in-out infinite;
}

.decor-chart {
    top: 58%;
    right: 18%;
    z-index: 7;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1.5px solid rgba(255, 255, 255, 0.95);
    border-radius: 14px;
    padding: 10px 14px;
    color: #00d4aa;
    font-size: 18px;
    box-shadow: 0 14px 35px rgba(0, 212, 170, 0.15);
    transform: perspective(800px) rotateX(15deg) rotateY(10deg);
    animation: floatDecor 8s ease-in-out infinite;
    animation-delay: 2s;
}

.decor-plus {
    top: 50%;
    right: -4%;
    z-index: 5;
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1.5px solid rgba(255, 255, 255, 0.95);
    border-radius: 12px;
    padding: 8px 14px;
    box-shadow: 0 12px 32px rgba(0, 102, 255, 0.12);
    animation: floatDecor 9s ease-in-out infinite;
    animation-delay: 1s;
}

.plus-badge {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: linear-gradient(135deg, #0088ff 0%, #0055ff 100%);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
    box-shadow: 0 4px 10px rgba(0, 102, 255, 0.3);
}

.plus-text {
    font-size: 10px;
    font-weight: 600;
    color: var(--dark);
    line-height: 1.3;
}

@keyframes floatDecor {

    0%,
    100% {
        transform: translateY(0);
    }

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

/* ============================================
   Showcase Tagline
   ============================================ */
.showcase-tagline {
    position: absolute;
    bottom: 95%;
    right: 0%;
    z-index: 15;
    pointer-events: none;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    transition: transform 0.2s ease;
}

.tagline-script {
    font-family: 'Caveat', 'Kalam', 'Dancing Script', cursive;
    font-size: 28px;
    font-weight: 700;
    color: #2e384d;
    line-height: 1.15;
    text-align: right;
    display: block;
    letter-spacing: 0.5px;
    transform: rotate(-5deg);
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.8);
}

.tagline-underline {
    width: 120px;
    height: 18px;
    margin-top: -4px;
    margin-right: 5px;
    transform: rotate(-5deg);
    filter: drop-shadow(0 2px 4px rgba(0, 176, 255, 0.4));
}

/* ============================================
   App Card Highlight Effect (click-to-scroll)
   ============================================ */
.app-card.highlighted {
    border-color: var(--secondary) !important;
    box-shadow: 0 0 0 2px rgba(0, 212, 170, 0.2), 0 8px 32px rgba(0, 212, 170, 0.12) !important;
    transform: scale(1.01);
    transition: all 0.4s ease;
}

/* ============================================
   Responsive Product Showcase
   ============================================ */
@media (max-width: 1440px) {
    .product-showcase {
        max-width: 640px;
        height: 560px;
    }

    .laptop-lid {
        width: 380px;
        height: 230px;
    }

    .laptop-base-3d {
        width: 380px;
        height: 170px;
    }

    .keyboard-well {
        height: 85px;
    }

    .trackpad-indent {
        height: 60px;
        width: 130px;
    }

    .pedestal-stage-top {
        width: 380px;
    }

    .pedestal-stage-bottom {
        width: 440px;
    }

    .laptop-ground-shadow {
        width: 380px;
    }

    .floating-app-card {
        padding: 5px;
    }

    .fac-icon img {
        width: 34px;
        height: 34px;
        border-radius: 8px;
    }

    .fac-info h4 {
        font-size: 11px;
    }

    .fac-info p {
        font-size: 9px;
    }

}

@media (max-width: 768px) {
    .hero-visual {
        min-height: auto;
        padding: 40px 0 20px;
    }

    .product-showcase {
        max-width: 80%;
        height: auto;
        min-height: 520px;
        flex-direction: column;
    }

    .laptop-3d-wrapper {
        top: 20%;
        left: auto;
        transform: none;
    }

    .laptop-3d {
        transform: rotateX(0) rotateY(0) !important;
        animation: none;
    }

    .laptop-lid {
        width: 340px;
        height: 210px;
    }

    .laptop-base-3d {
        width: 340px;
        height: 150px;
    }

    .keyboard-well {
        height: 77px;
    }

    /* Trackpad */
    .trackpad-indent {
        width: 100px;
        height: 47px;
    }


    .laptop-ground-shadow {
        width: 300px;
    }

}

@media (max-width: 480px) {
    .laptop-lid {
        width: 300px;
        height: 200px;
    }

    .laptop-base-3d {
        width: 300px;
        height: 150px;
    }

    .keyboard-well {
        height: 77px;
    }

    /* Trackpad */
    .trackpad-indent {
        width: 80px;
        height: 47px;
    }


    .laptop-ground-shadow {
        width: 240px;
    }

    .lid-bezel {
        padding: 10px 10px 14px;
        border-radius: 10px 10px 2px 2px;
    }

    .screen-left-brand h2 {
        font-size: 13px;
    }

    .screen-tile img {
        width: 20px;
        height: 20px;
    }

    .screen-tile span {
        font-size: 7px;
    }

    .floating-app-card {
        padding: 5px;
        border-radius: 12px;
        box-shadow: 0 6px 18px rgba(0, 102, 255, 0.15);
    }

    .floating-app-card:hover {
        padding: 6px 12px 6px 6px;
    }

    .floating-app-card .fac-icon img {
        width: 32px;
        height: 32px;
        border-radius: 8px;
    }

    .hero-stats {
        flex-direction: column;
    }
}


@media (max-width: 320px) {
    .laptop-lid {
        width: 270px;
        height: 170px;
    }

    .laptop-base-3d {
        width: 270px;
        height: 140px;
    }

    .keyboard-well {
        height: 75px;
    }

    /* Orbit min-width at 320px — matches 270px laptop + orbit margin */
    .orbit-svg {
        min-width: 320px;
    }

    /* Trackpad */
    .trackpad-indent {
        width: 70px;
        height: 43px;
    }
}

@media (max-width: 220px) {
    .laptop-lid {
        width: 200px;
        height: 120px;
    }

    .laptop-base-3d {
        width: 200px;
        height: 110px;
    }

    .keyboard-well {
        height: 55px;
    }

    /* Trackpad */
    .trackpad-indent {
        width: 50px;
        height: 35px;
    }


}

/* ============================================
   Prefers Reduced Motion
   ============================================ */
@media (prefers-reduced-motion: reduce) {

    .laptop-3d,
    .floating-app-card,
    .particle,
    .orbit-light,
    .globe-sphere,
    .decor-icon,
    .decor-plus span,
    .pedestal-surface,
    .laptop-ground-shadow,
    .live-pulse {
        animation: none !important;
    }

    .floating-app-card,
    .laptop-3d {
        transition: none !important;
    }
}



/* Contact Section */
.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-info h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.8rem;
    margin-bottom: 20px;
    color: var(--dark);
}

.contact-subtitle {
    color: var(--gray);
    font-size: 1.2rem;
    margin-bottom: 40px;
    line-height: 1.6;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-bottom: 40px;
}

.founder-icon-img {
    width: 40px;
    height: 40px;
    background: var(--light-gray);
    border-radius: var(--radius-full);
    object-fit: cover;
}

.contact-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.contact-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: var(--light-gray);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.2rem;
}

.contact-text h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
    color: var(--dark);
}

.contact-text p {
    color: var(--gray);
    line-height: 1.6;
    margin: 0;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-link {
    width: 50px;
    height: 50px;
    background: var(--light-gray);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark);
    font-size: 1.3rem;
    transition: var(--transition-normal);
    text-decoration: none;
}

.social-link:hover {
    background: var(--primary);
    color: var(--light);
    transform: translateY(-3px);
}

/* Contact Form */
.contact-form {
    background: var(--light);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-md);
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 10px;
}

.form-group label i {
    color: var(--primary);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid var(--gray-light);
    border-radius: var(--radius-md);
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    color: var(--dark);
    background: var(--light);
    transition: var(--transition-normal);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(0, 102, 255, 0.1);
}

.form-group textarea {
    resize: vertical;
}

/* Footer */
.footer {
    background: var(--dark);
    color: var(--light);
    padding: 80px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-brand .logo {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: var(--light);
}

.footer-tagline {
    font-size: 1.2rem;
    color: var(--secondary);
    margin-bottom: 15px;
    font-weight: 600;
}

.footer-description {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.footer-column h4 {
    font-size: 1.3rem;
    margin-bottom: 25px;
    color: var(--light);
}

.footer-column ul {
    list-style: none;
}

.footer-column li {
    margin-bottom: 15px;
}

.footer-column a {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition-normal);
}

.footer-column a:hover {
    color: var(--secondary);
    transform: translateX(5px);
}

.footer-column a i {
    font-size: 0.9rem;
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.7);
}

.footer-badges {
    display: flex;
    gap: 15px;
}

.badge {
    background: rgba(255, 255, 255, 0.1);
    padding: 8px 15px;
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 5px;
}

/* Back to Top */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    color: var(--light);
    border: none;
    border-radius: var(--radius-full);
    font-size: 1.2rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-normal);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

/* Animations */
@keyframes float {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-20px) rotate(180deg);
    }
}

@keyframes float-device {

    0%,
    100% {
        transform: translateY(0);
    }

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

@keyframes blink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(0, 102, 255, 0.4);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(0, 102, 255, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(0, 102, 255, 0);
    }
}

@keyframes bounce {

    0%,
    100% {
        transform: translateY(0);
    }

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

@keyframes orbit {
    0% {
        transform: rotate(0deg) translateX(200px) rotate(0deg);
    }

    100% {
        transform: rotate(360deg) translateX(200px) rotate(-360deg);
    }
}

.animate-fade-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 0.8s ease forwards;
}

.animate-fade-left {
    opacity: 0;
    transform: translateX(-30px);
    animation: fadeLeft 0.8s ease forwards;
}

.animate-fade-right {
    opacity: 0;
    transform: translateX(30px);
    animation: fadeRight 0.8s ease forwards;
}

[data-delay="0.1s"] {
    animation-delay: 0.1s;
}

[data-delay="0.2s"] {
    animation-delay: 0.2s;
}

[data-delay="0.3s"] {
    animation-delay: 0.3s;
}

[data-delay="0.4s"] {
    animation-delay: 0.4s;
}

[data-delay="0.5s"] {
    animation-delay: 0.5s;
}

[data-delay="0.6s"] {
    animation-delay: 0.6s;
}

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

@keyframes fadeLeft {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeRight {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 3rem;
    }

    .section-title {
        font-size: 2.5rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 960px) {
    .nav-link span {
        display: none;
    }
}

@media (max-width: 768px) {

    .hero-visual {
        margin-top: 50px;
    }

    .hero-content,
    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }

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

    .section-title {
        font-size: 2.2rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

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

    .mission-vision {
        grid-template-columns: 1fr;
    }

    .nav-menu {
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        background: var(--light);
        flex-direction: column;
        padding: 20px;
        box-shadow: var(--shadow-lg);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: var(--transition-normal);
    }

    .nav-link span {
        display: contents;
    }

    .social-links {
        justify-content: center;
    }

    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .nav-toggle {
        display: block;
    }

    .footer-links {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .footer-badges {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 140px 0 80px;
    }

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

    .section-title {
        font-size: 1.8rem;
    }

    .apps-grid {
        grid-template-columns: 1fr;
    }

    .support-grid {
        grid-template-columns: 1fr;
    }

    .btn {
        padding: 14px 24px;
    }
}