/* Split Screen Hero Styles */

/* Dark Navbar */
.navbar-dark {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: linear-gradient(180deg, #0A0E27 0%, #1A1A2E 100%);
    z-index: 1000;
    padding: 1rem 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.navbar-dark .nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.navbar-dark .nav-logo .logo {
    height: 40px;
    filter: brightness(1.2);
}

.navbar-dark .nav-menu {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.navbar-dark .nav-link {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.navbar-dark .nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: #00D9FF;
    transition: width 0.3s ease;
}

.navbar-dark .nav-link:hover {
    color: #00D9FF;
}

.navbar-dark .nav-link:hover::after {
    width: 100%;
}

.navbar-dark .nav-cta {
    background: linear-gradient(135deg, #00D9FF 0%, #00A69C 100%);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 0.5rem;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 217, 255, 0.3);
}

.navbar-dark .nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(0, 217, 255, 0.5);
}

/* Hamburger hidden by default on desktop */
.navbar-dark .nav-toggle {
    display: none;
}

/* Show hamburger on mobile */
@media (max-width: 768px) {
    .navbar-dark .nav-toggle {
        display: flex !important;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 3px;
    }
}

.navbar-dark .nav-toggle span {
    display: block !important;
    width: 22px;
    height: 2px;
    background: white !important;
    margin: 0;
    transition: all 0.3s ease;
    opacity: 1 !important;
    visibility: visible !important;
}

/* Split Hero */
.hero-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: calc(100vh - 60px);
    margin-top: 60px;
    overflow: visible;
}

/* Left Side - Still Planning */
.hero-left {
    background: linear-gradient(135deg, #2A2A2A 0%, #1A1A1A 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem;
    position: relative;
    overflow: hidden;
}

.hero-left::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: repeating-linear-gradient(
        0deg,
        rgba(255, 255, 255, 0.01) 0px,
        transparent 1px,
        transparent 2px,
        rgba(255, 255, 255, 0.01) 3px
    );
    pointer-events: none;
}

.hero-left-content {
    max-width: 500px;
    width: 100%;
    z-index: 1;
    position: relative;
}

.hero-left-title {
    font-size: 3rem;
    font-weight: 800;
    color: #666;
    margin-bottom: 2rem;
    opacity: 0.7;
}

/* Planning Timeline */
.planning-timeline {
    background: rgba(0, 0, 0, 0.3);
    padding: 1.5rem;
    border-radius: 10px;
    margin-bottom: 2rem;
}

.timeline-header {
    color: #888;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.timeline-bar {
    background: rgba(255, 255, 255, 0.1);
    height: 30px;
    border-radius: 15px;
    position: relative;
    overflow: hidden;
}

.timeline-progress {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    background: #444;
    border-radius: 15px;
    transition: width 0.3s ease;
}

.timeline-label {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    color: #888;
    font-size: 0.75rem;
}

/* Stagnant Metrics */
.stagnant-metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}

.stagnant-item {
    text-align: center;
    padding: 1rem;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 8px;
}

.stagnant-value {
    display: block;
    font-size: 1.5rem;
    font-weight: bold;
    color: #888;
}

.stagnant-label {
    display: block;
    font-size: 0.75rem;
    color: #666;
    margin-top: 0.25rem;
}

/* Stuck Progress */
.stuck-progress {
    margin-bottom: 2rem;
}

.progress-item {
    margin-bottom: 1rem;
}

.progress-item span {
    display: block;
    color: #888;
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.progress-bar {
    background: rgba(255, 255, 255, 0.05);
    height: 8px;
    border-radius: 4px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: #555;
    transition: width 3s ease;
}

/* Consultant Waste */
.consultant-waste {
    text-align: center;
    padding: 1.5rem;
    background: rgba(255, 0, 0, 0.05);
    border-radius: 10px;
    border: 1px solid rgba(255, 0, 0, 0.1);
}

.consultant-waste p {
    color: #888;
    margin-bottom: 0.5rem;
}

.billing-counter {
    font-size: 2rem;
    font-weight: bold;
    color: #ff6b6b;
    font-family: 'Space Grotesk', monospace;
}

/* Right Side - Future Won't Wait */
.hero-right {
    background: linear-gradient(135deg, #0A0E27 0%, #1A1A2E 50%, #0A0E27 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem 6rem 2rem;
    position: relative;
    overflow: visible;
    min-height: 100%;
}

.hero-right::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(0, 217, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(0, 166, 156, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.hero-right-content {
    max-width: 700px;
    width: 100%;
    z-index: 10;
    position: relative;
}

/* Live Badge */
.live-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(0, 217, 255, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    border: 1px solid rgba(0, 217, 255, 0.3);
    margin-bottom: 2rem;
    font-size: 0.75rem;
    font-weight: 600;
    color: #00D9FF;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.live-dot {
    width: 8px;
    height: 8px;
    background: #00D9FF;
    border-radius: 50%;
    /* animation: live-dot-pulse 2s infinite; -- Disabled for performance */
    /* will-change: opacity; */
}

@keyframes live-dot-pulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.5;
        transform: scale(1.5);
    }
}

/* Hero Title */
.hero-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 2rem;
    color: white;
    letter-spacing: -0.02em;
}

/* Hero Subtitle */
.hero-subtitle {
    font-size: 1.35rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    margin-bottom: 2.5rem;
    max-width: 540px;
}

/* Hero Actions */
.hero-actions {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
}

.btn-primary {
    background: linear-gradient(135deg, #00D9FF 0%, #00A69C 100%);
    color: #0A0E27;
    padding: 1rem 2rem;
    border-radius: 0.5rem;
    border: none;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 217, 255, 0.3);
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.2);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 30px rgba(0, 217, 255, 0.5);
}

.btn-secondary {
    background: transparent;
    color: white;
    padding: 1rem 2rem;
    border-radius: 0.5rem;
    border: 2px solid rgba(0, 217, 255, 0.5);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: rgba(0, 217, 255, 0.1);
    border-color: #00D9FF;
}

/* ROI Orbs */
.roi-orbs {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.roi-orb {
    position: absolute;
    background: rgba(0, 217, 255, 0.03);
    border: 1px solid rgba(0, 217, 255, 0.08);
    border-radius: 12px;
    padding: 0.5rem 0.75rem;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    opacity: 0.6;
    transition: all 0.3s ease;
    animation: gentle-float 20s ease-in-out infinite;
    animation-delay: var(--float-delay, 0s);
    max-width: 120px;
    font-size: 0.75rem;
}

@keyframes gentle-float {
    0%, 100% { transform: translateY(0px) translateX(0px); }
    25% { transform: translateY(-5px) translateX(2px); }
    50% { transform: translateY(3px) translateX(-2px); }
    75% { transform: translateY(-3px) translateX(-3px); }
}

.roi-orb:nth-child(1) {
    top: 20%;
    right: 8%;
    --float-delay: 0s;
}
.roi-orb:nth-child(2) {
    top: 40%;
    right: 5%;
    --float-delay: 4s;
}
.roi-orb:nth-child(3) {
    top: 60%;
    right: 10%;
    --float-delay: 8s;
}
.roi-orb:nth-child(4) {
    top: 75%;
    right: 6%;
    --float-delay: 12s;
}
.roi-orb:nth-child(5) {
    display: none; /* Hide 5th orb to reduce clutter */
}

@keyframes roi-orb-float {
    0%, 100% {
        transform: translateY(0) translateX(0) rotate(0deg);
    }
    25% {
        transform: translateY(-20px) translateX(10px) rotate(2deg);
    }
    50% {
        transform: translateY(10px) translateX(-5px) rotate(-1deg);
    }
    75% {
        transform: translateY(-10px) translateX(-10px) rotate(1deg);
    }
}

.orb-content {
    text-align: center;
}

.orb-company {
    font-size: 0.6rem;
    color: rgba(255, 255, 255, 0.4);
    text-transform: uppercase;
    letter-spacing: 0.3px;
    margin-bottom: 0.15rem;
}

.orb-metric {
    font-size: 1rem;
    font-weight: 600;
    color: rgba(0, 217, 255, 0.8);
}

.orb-time {
    font-size: 0.6rem;
    color: rgba(255, 255, 255, 0.4);
}

/* Responsive */
@media (max-width: 1200px) {
    .roi-orbs {
        width: 140px;
        right: 1%;
    }

    .orb-metric {
        font-size: 1.1rem;
    }
}

@media (max-width: 1024px) {
    .hero-split {
        grid-template-columns: 1fr;
    }

    .hero-left {
        min-height: 50vh;
    }

    .hero-right {
        min-height: 60vh;
        padding-bottom: 6rem;
    }

    .roi-orbs {
        position: static;
        width: 100%;
        height: auto;
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
        margin-top: 2rem;
        margin-bottom: 2rem;
    }

    .roi-orb {
        position: relative;
        opacity: 1;
    }

    .live-ticker {
        position: fixed;
        bottom: 0;
    }
}

@media (max-width: 640px) {
    .roi-orbs {
        grid-template-columns: repeat(2, 1fr);
    }
}