/* ========================================================
   BYTETALLER LLC - ULTRA-PROFESSIONAL HERO & INTRO SYSTEM
   Aesthetic: High-Tech Enterprise Engineering & MSP Lab
   ======================================================== */

:root {
    --bt-navy-dark: #070d1e;
    --bt-navy-surface: #0e172e;
    --bt-navy-card: rgba(14, 23, 46, 0.75);
    --bt-blue-primary: #0071BC;
    --bt-blue-glow: #38bdf8;
    --bt-orange-accent: #F15A24;
    --bt-orange-glow: #ff7a00;
    --bt-emerald-active: #10b981;
    --bt-glass-border: rgba(255, 255, 255, 0.12);
    --bt-glass-border-hover: rgba(56, 189, 248, 0.45);
}

/* ========================================================
   1. HERO CONTAINER & CYBER BACKGROUND
   ======================================================== */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background: radial-gradient(circle at 50% 20%, #111e3f 0%, var(--bt-navy-dark) 70%, #04070f 100%);
    padding: 130px 24px 70px 24px;
    box-sizing: border-box;
    width: 100%;
}

/* Glowing Ambient Mesh Orbs */
.hero-ambient-glow {
    position: absolute;
    width: 650px;
    height: 650px;
    border-radius: 50%;
    filter: blur(140px);
    pointer-events: none;
    z-index: 1;
    opacity: 0.35;
    animation: ambientFloat 14s ease-in-out infinite alternate;
}

.hero-glow-cyan {
    top: -100px;
    left: 10%;
    background: radial-gradient(circle, #0071BC, transparent 70%);
}

.hero-glow-orange {
    bottom: -150px;
    right: 10%;
    background: radial-gradient(circle, #F15A24, transparent 70%);
    animation-delay: -7s;
}

@keyframes ambientFloat {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(60px, 40px) scale(1.15); }
}

/* Cyber Grid Lines */
.hero-cyber-grid {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(to right, rgba(255, 255, 255, 0.04) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
    background-size: 55px 55px;
    mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, black 30%, transparent 80%);
    -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, black 30%, transparent 80%);
    pointer-events: none;
    z-index: 2;
}

/* Background Slideshow (Hardware Lab Photos with deep tech blend) */
.hero-background {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-slideshow {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-slideshow .slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transform: scale(1.04);
    transition: opacity 1.4s cubic-bezier(0.4, 0, 0.2, 1), transform 8s ease-out;
    filter: brightness(0.65) contrast(1.15);
}

.hero-slideshow .slide.active {
    opacity: 0.22;
    transform: scale(1);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, 
        rgba(7, 13, 30, 0.88) 0%, 
        rgba(7, 13, 30, 0.72) 45%, 
        rgba(7, 13, 30, 0.96) 100%);
    z-index: 2;
}

/* ========================================================
   2. HERO CONTENT WRAPPER & GRID
   ======================================================== */
.hero-container {
    position: relative;
    z-index: 4;
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

/* Left Column: Headline & Action */
.hero-main-col {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}

/* Status Pill Live Indicator */
.hero-status-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 7px 16px;
    border-radius: 999px;
    background: rgba(14, 23, 46, 0.8);
    border: 1px solid var(--bt-glass-border);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.35);
    margin-bottom: 24px;
    font-size: 0.88rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: #cbd5e1;
}

.hero-pulse-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--bt-emerald-active);
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
    animation: pulseDot 2s infinite cubic-bezier(0.4, 0, 0.6, 1);
}

@keyframes pulseDot {
    0% {
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
        transform: scale(0.95);
    }
    70% {
        box-shadow: 0 0 0 8px rgba(16, 185, 129, 0);
        transform: scale(1.1);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0);
        transform: scale(0.95);
    }
}

.hero-status-badge .badge-tag {
    color: var(--bt-blue-glow);
    font-weight: 700;
}

/* Main Typography */
.hero-title {
    font-family: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 3.4rem;
    line-height: 1.12;
    font-weight: 800;
    color: #ffffff;
    margin: 0 0 20px 0;
    letter-spacing: -0.5px;
}

.hero-gradient-text {
    background: linear-gradient(135deg, #ffffff 0%, #60A6D5 45%, #F15A24 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline;
}

.hero-subtitle {
    font-size: 1.22rem;
    line-height: 1.6;
    color: #cbd5e1;
    max-width: 620px;
    margin: 0 0 32px 0;
    font-weight: 400;
}

.hero-subtitle strong {
    color: #ffffff;
    font-weight: 600;
}

/* ========================================================
   3. ACTION HUB (BUTTONS & ACTIONS)
   ======================================================== */
.hero-actions-row {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 36px;
    width: 100%;
}

.btn-hero-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px 28px;
    border-radius: 12px;
    background: linear-gradient(135deg, #F15A24 0%, #d4420e 100%);
    color: #ffffff;
    font-weight: 700;
    font-size: 1.02rem;
    text-decoration: none;
    letter-spacing: 0.3px;
    box-shadow: 0 10px 25px rgba(241, 90, 36, 0.4);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-hero-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 32px rgba(241, 90, 36, 0.6);
    color: #ffffff;
}

.btn-hero-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px 26px;
    border-radius: 12px;
    background: rgba(14, 23, 46, 0.7);
    color: #ffffff;
    font-weight: 700;
    font-size: 1.02rem;
    text-decoration: none;
    border: 1px solid var(--bt-glass-border);
    backdrop-filter: blur(12px);
    transition: all 0.3s ease;
}

.btn-hero-secondary:hover {
    background: rgba(30, 41, 59, 0.9);
    border-color: var(--bt-blue-glow);
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 113, 188, 0.25);
}

.btn-hero-client {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 15px 22px;
    border-radius: 12px;
    background: rgba(16, 185, 129, 0.12);
    color: #34d399;
    font-weight: 700;
    font-size: 0.98rem;
    text-decoration: none;
    border: 1px solid rgba(16, 185, 129, 0.35);
    transition: all 0.3s ease;
}

.btn-hero-client:hover {
    background: rgba(16, 185, 129, 0.22);
    border-color: #10b981;
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(16, 185, 129, 0.3);
}

/* Quick Trust Points (Micro-Badges) */
.hero-trust-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    color: #94a3b8;
    font-size: 0.88rem;
    font-weight: 500;
}

.hero-trust-item {
    display: inline-flex;
    align-items: center;
    gap: 7px;
}

.hero-trust-item svg {
    color: var(--bt-blue-glow);
}

/* ========================================================
   4. RIGHT COLUMN: LAB & OPERATIONS TERMINAL SHOWCASE
   ======================================================== */
.hero-terminal-card {
    background: var(--bt-navy-card);
    border: 1px solid var(--bt-glass-border);
    border-radius: 20px;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.65), 0 0 30px rgba(0, 113, 188, 0.12);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-terminal-card:hover {
    border-color: var(--bt-glass-border-hover);
    box-shadow: 0 30px 60px -12px rgba(0, 0, 0, 0.75), 0 0 40px rgba(56, 189, 248, 0.25);
    transform: translateY(-4px);
}

/* Terminal Window Bar */
.terminal-bar {
    background: rgba(10, 17, 34, 0.85);
    padding: 12px 18px;
    border-bottom: 1px solid var(--bt-glass-border);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.terminal-dots {
    display: flex;
    gap: 7px;
}

.terminal-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.terminal-dot.red { background: #ef4444; }
.terminal-dot.yellow { background: #f59e0b; }
.terminal-dot.green { background: #10b981; }

.terminal-title {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.78rem;
    color: #94a3b8;
    letter-spacing: 0.5px;
}

.terminal-status-tag {
    font-size: 0.72rem;
    font-weight: 700;
    background: rgba(16, 185, 129, 0.15);
    color: #34d399;
    padding: 2px 8px;
    border-radius: 6px;
    border: 1px solid rgba(16, 185, 129, 0.3);
}

/* Terminal Body & Live Status Rows */
.terminal-body {
    padding: 22px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.terminal-row {
    background: rgba(15, 23, 42, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    padding: 14px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    transition: all 0.25s ease;
}

.terminal-row:hover {
    background: rgba(30, 41, 59, 0.6);
    border-color: rgba(56, 189, 248, 0.3);
    transform: translateX(4px);
}

.terminal-row-left {
    display: flex;
    align-items: center;
    gap: 14px;
}

.terminal-icon-box {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
}

.terminal-icon-box.micro {
    background: rgba(241, 90, 36, 0.15);
    color: #F15A24;
    border: 1px solid rgba(241, 90, 36, 0.3);
}

.terminal-icon-box.vpn {
    background: rgba(0, 113, 188, 0.15);
    color: #38bdf8;
    border: 1px solid rgba(0, 113, 188, 0.3);
}

.terminal-icon-box.server {
    background: rgba(168, 85, 247, 0.15);
    color: #c084fc;
    border: 1px solid rgba(168, 85, 247, 0.3);
}

.terminal-icon-box.remote {
    background: rgba(16, 185, 129, 0.15);
    color: #34d399;
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.terminal-info h4 {
    margin: 0 0 3px 0;
    color: #ffffff;
    font-size: 0.96rem;
    font-weight: 700;
}

.terminal-info p {
    margin: 0;
    color: #94a3b8;
    font-size: 0.78rem;
    line-height: 1.3;
}

.terminal-badge-live {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.72rem;
    font-weight: 600;
    color: #38bdf8;
    white-space: nowrap;
    background: rgba(56, 189, 248, 0.1);
    padding: 4px 10px;
    border-radius: 6px;
    border: 1px solid rgba(56, 189, 248, 0.2);
}

/* Fast Action Footer in Terminal */
.terminal-footer {
    padding: 16px 22px;
    background: rgba(8, 14, 28, 0.7);
    border-top: 1px solid var(--bt-glass-border);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.terminal-support-contact {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #cbd5e1;
    font-size: 0.85rem;
}

.terminal-support-contact strong {
    color: #ffffff;
}

.terminal-download-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    border-radius: 8px;
    background: rgba(241, 90, 36, 0.15);
    color: #ff7a00;
    border: 1px solid rgba(241, 90, 36, 0.3);
    font-size: 0.82rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.2s ease;
}

.terminal-download-pill:hover {
    background: #F15A24;
    color: #ffffff;
}

/* ========================================================
   5. QUICK-NEED INTERACTIVE LAUNCHPAD (BELOW HERO GRID)
   ======================================================== */
.hero-launchpad {
    position: relative;
    z-index: 4;
    width: 100%;
    max-width: 1240px;
    margin: 44px auto 0 auto;
    background: rgba(14, 23, 46, 0.6);
    border: 1px solid var(--bt-glass-border);
    border-radius: 18px;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    padding: 20px 24px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
    box-sizing: border-box;
}

.launchpad-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 14px;
}

.launchpad-header h3 {
    margin: 0;
    color: #94a3b8;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.launchpad-header span {
    font-size: 0.8rem;
    color: var(--bt-blue-glow);
    font-weight: 600;
}

.launchpad-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}

.launchpad-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: rgba(15, 23, 42, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.25s ease;
}

.launchpad-item:hover {
    background: rgba(30, 41, 59, 0.85);
    border-color: var(--bt-blue-glow);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 113, 188, 0.25);
}

.launchpad-icon {
    font-size: 1.3rem;
}

.launchpad-text-title {
    font-size: 0.92rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.2;
}

.launchpad-text-desc {
    font-size: 0.74rem;
    color: #94a3b8;
}

/* ========================================================
   6. RESPONSIVE BREAKPOINTS
   ======================================================== */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

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

    .launchpad-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 110px 16px 50px 16px;
    }

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

    .hero-subtitle {
        font-size: 1.05rem;
    }

    .hero-actions-row {
        flex-direction: column;
        width: 100%;
    }

    .btn-hero-primary,
    .btn-hero-secondary,
    .btn-hero-client {
        width: 100%;
        text-align: center;
    }

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

    .hero-trust-pills {
        flex-direction: column;
        gap: 10px;
    }
}
