/* navbar-hero.css - 

/* ============================================
   SIDE NAVIGATION
   ============================================ */
.side-nav {
    position: fixed;
    right: 3rem;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 2rem;
}

/* Navigation Item Container */
.nav-item-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

/* The Magic Navigation Item */
.nav-item {
    position: relative;
    width: 60px;
    height: 60px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Liquid Morphing Background */
.nav-item::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    animation: morph 8s ease-in-out infinite;
}

@keyframes morph {
    0%, 100% { border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%; }
    25% { border-radius: 58% 42% 75% 25% / 76% 46% 54% 24%; }
    50% { border-radius: 50% 50% 33% 67% / 55% 27% 73% 45%; }
    75% { border-radius: 33% 67% 58% 42% / 63% 68% 32% 37%; }
}

/* Icon Container */
.nav-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 24px;
    height: 24px;
    transition: all 0.3s ease;
}

.nav-icon svg {
    width: 100%;
    height: 100%;
    stroke: rgba(255, 255, 255, 0.6);
    fill: none;
    stroke-width: 2;
    transition: all 0.3s ease;
}

/* Magnetic Effect on Hover */
.nav-item:hover {
    transform: scale(1.2);
}

.nav-item:hover::before {
    background: rgba(250, 204, 21, 0.1);
    border-color: rgba(250, 204, 21, 0.3);
    animation-duration: 2s;
}

.nav-item:hover .nav-icon svg {
    stroke: #FACC15;
    filter: drop-shadow(0 0 10px rgba(250, 204, 21, 0.6));
}

/* Active State with Particle Explosion */
.nav-item.active::before {
    background: rgba(250, 204, 21, 0.15);
    border-color: rgba(250, 204, 21, 0.5);
    animation: morph-active 3s ease-in-out infinite;
}

@keyframes morph-active {
    0%, 100% { 
        border-radius: 50%;
        transform: scale(1);
    }
    50% { 
        border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
        transform: scale(1.1);
    }
}

.nav-item.active .nav-icon svg {
    stroke: #FACC15;
    fill: #FACC15;
    fill-opacity: 0.2;
}

/* Orbiting Particles for Active Item */
.particle-container {
    position: absolute;
    inset: -20px;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.nav-item.active .particle-container {
    opacity: 1;
}

.orbit-particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: #FACC15;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform-origin: center;
}

.orbit-particle:nth-child(1) {
    animation: orbit-1 4s linear infinite;
}

.orbit-particle:nth-child(2) {
    animation: orbit-2 6s linear infinite reverse;
    background: #F97316;
}

.orbit-particle:nth-child(3) {
    animation: orbit-3 5s linear infinite;
    background: #14B8A6;
}

@keyframes orbit-1 {
    from { transform: translate(-50%, -50%) rotate(0deg) translateX(40px) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg) translateX(40px) rotate(-360deg); }
}

@keyframes orbit-2 {
    from { transform: translate(-50%, -50%) rotate(0deg) translateX(35px) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg) translateX(35px) rotate(-360deg); }
}

@keyframes orbit-3 {
    from { transform: translate(-50%, -50%) rotate(0deg) translateX(45px) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg) translateX(45px) rotate(-360deg); }
}

/* Tooltip with Slide Effect */
.nav-tooltip {
    position: absolute;
    right: 80px;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 500;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: right center;
}

.nav-tooltip::after {
    content: '';
    position: absolute;
    right: -6px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-left: 6px solid rgba(0, 0, 0, 0.9);
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
}

.nav-item:hover .nav-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateY(-50%) translateX(-10px);
}

/* Progress Ring Around Active Item */
.progress-ring {
    position: absolute;
    inset: -5px;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.nav-item.active .progress-ring {
    opacity: 1;
}

.progress-ring svg {
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
}

.progress-ring circle {
    fill: none;
    stroke: #FACC15;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-dasharray: 251.2;
    stroke-dashoffset: 251.2;
    transition: stroke-dashoffset 0.5s ease;
}

/* Connection Lines Between Items */
.connection-line {
    position: absolute;
    width: 1px;
    height: 2rem;
    background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, 0.1), transparent);
    left: 50%;
    transform: translateX(-50%);
    bottom: -2rem;
}

.nav-item-wrapper:last-child .connection-line {
    display: none;
}

/* Ripple Effect on Click */
.ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(250, 204, 21, 0.3);
    transform: translate(-50%, -50%);
    pointer-events: none;
    animation: ripple-effect 0.6s ease-out;
}

@keyframes ripple-effect {
    from {
        width: 0;
        height: 0;
        opacity: 1;
    }
    to {
        width: 100px;
        height: 100px;
        opacity: 0;
    }
}

/* Magnetic Field Effect */
.magnetic-field {
    position: absolute;
    inset: -40px;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.nav-item:hover .magnetic-field {
    opacity: 1;
}

.field-line {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 1px solid rgba(250, 204, 21, 0.1);
    border-radius: 50%;
    animation: field-pulse 2s ease-in-out infinite;
}

.field-line:nth-child(2) {
    animation-delay: 0.5s;
    transform: scale(1.2);
}

.field-line:nth-child(3) {
    animation-delay: 1s;
    transform: scale(1.4);
}

@keyframes field-pulse {
    0%, 100% { opacity: 0; transform: scale(0.8); }
    50% { opacity: 0.3; transform: scale(1); }
}

/* DNA Helix Scroll Indicator */
.scroll-indicator {
    position: absolute;
    left: -80px;
    top: 0;
    bottom: 0;
    width: 40px;
    opacity: 0.3;
    transition: opacity 0.3s ease;
}

.side-nav:hover .scroll-indicator {
    opacity: 0.6;
}

.helix-strand {
    position: absolute;
    width: 2px;
    height: 100%;
    background: linear-gradient(to bottom, transparent, #FACC15, transparent);
    left: 50%;
    transform: translateX(-50%);
}

.helix-dot {
    position: absolute;
    width: 6px;
    height: 6px;
    background: #FACC15;
    border-radius: 50%;
    left: 50%;
    transform: translateX(-50%);
    animation: helix-move 4s ease-in-out infinite;
}

@keyframes helix-move {
    0%, 100% { transform: translateX(-50%) translateX(-10px); }
    50% { transform: translateX(-50%) translateX(10px); }
}

/* ============================================
   MODERN HERO SECTION
   ============================================ */
.hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #0A0A0A;
    overflow: hidden;
}

/* Particle Network Canvas */
.particle-network {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    opacity: 0.8;
}

/* Interactive Gradient */
.interactive-gradient {
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: 0.7;
    background: radial-gradient(
        circle at 50% 50%,
        rgba(250, 204, 21, 0.1) 0%,
        rgba(249, 115, 22, 0.05) 25%,
        rgba(20, 184, 166, 0.03) 50%,
        transparent 70%
    );
    transition: background 0.3s ease;
}

/* Floating Elements */
.floating-elements {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.floating-element {
    position: absolute;
    opacity: 0.05;
    font-size: 24px;
    animation: float-around 20s infinite ease-in-out;
}

@keyframes float-around {
    0%, 100% { transform: translate(0, 0) rotate(0deg) scale(1); }
    25% { transform: translate(50px, -30px) rotate(90deg) scale(1.1); }
    50% { transform: translate(-30px, -60px) rotate(180deg) scale(0.9); }
    75% { transform: translate(-60px, 30px) rotate(270deg) scale(1.05); }
}

/* Hero Content */
.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 2rem;
}

/* Brand Section - More Subtle */
.brand-section {
    margin-bottom: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
}

/* Animated Logo */
.animated-logo {
    position: relative;
    width: 60px;
    height: 60px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.animated-logo:hover {
    transform: scale(1.1);
}

.logo-svg {
    width: 100%;
    height: 100%;
}

.logo-text {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: -0.05em;
}

.orbit-ring-1 {
    animation: rotate 15s linear infinite;
    transform-origin: center;
}

.orbit-ring-2 {
    animation: rotate-reverse 10s linear infinite;
    transform-origin: center;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes rotate-reverse {
    from { transform: rotate(360deg); }
    to { transform: rotate(0deg); }
}

/* Brand Info */
.brand-info {
    text-align: left;
}

.brand-name-subtle {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(1.2rem, 2vw, 1.5rem);
    font-weight: 500;
    letter-spacing: 0.3em;
    margin: 0;
    display: flex;
    gap: 0.5rem;
}

.first-name {
    color: rgba(255, 255, 255, 0.6);
}

.last-name {
    color: #FACC15;
    position: relative;
}

.role-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 0.5rem;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
}

.role-separator {
    color: #FACC15;
    opacity: 0.5;
}

/* Headline Section */
.headline-section {
    margin-bottom: 3rem;
}

.main-headline {
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin: 0;
}

.line-1 {
    display: block;
    margin-bottom: 0.2rem;
}

.line-2 {
    display: block;
    background: linear-gradient(135deg, #FACC15 0%, #F97316 50%, #14B8A6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradient-shift 6s ease-in-out infinite;
    background-size: 200% 200%;
}

@keyframes gradient-shift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.dynamic-word {
    color: #FACC15;
    margin-right: 0.5rem;
}

.typewriter-cursor {
    display: inline-block;
    margin-left: 2px;
    animation: blink 1s infinite;
    color: #FACC15;
    font-weight: 300;
}

@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}

/* Quick Stats */
.quick-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 3rem;
    font-family: 'Space Grotesk', sans-serif;
}

.stat-item {
    text-align: center;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(250, 204, 21, 0.2);
    box-shadow: 0 10px 30px rgba(250, 204, 21, 0.1);
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: #FACC15;
    margin-bottom: 0.25rem;
}

.stat-label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
}

.stat-divider {
    color: rgba(255, 255, 255, 0.2);
    font-size: 1.5rem;
}

/* CTA Container */
.cta-container {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.cta-primary,
.cta-secondary {
    position: relative;
    padding: 1rem 2.5rem;
    font-size: 1rem;
    font-weight: 600;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    overflow: hidden;
    font-family: 'Inter', sans-serif;
}

.cta-primary {
    background: linear-gradient(135deg, #FACC15, #F97316);
    color: #0A0A0A;
}

.cta-glow {
    position: absolute;
    inset: -2px;
    background: linear-gradient(135deg, #FACC15, #F97316);
    border-radius: 50px;
    opacity: 0;
    filter: blur(10px);
    transition: opacity 0.3s ease;
    z-index: -1;
}

.cta-primary:hover .cta-glow {
    opacity: 0.6;
}

.cta-primary:hover {
    transform: translateY(-2px) scale(1.05);
}

.cta-secondary {
    background: transparent;
    color: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.cta-secondary:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateX(5px);
}

.cta-arrow {
    transition: transform 0.3s ease;
}

.cta-secondary:hover .cta-arrow {
    transform: translateX(5px);
}

/* Tech Preview */
.tech-preview {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.tech-item {
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.tech-item::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(45deg, transparent, rgba(250, 204, 21, 0.1), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.tech-item:hover::before {
    transform: translateX(100%);
}

.tech-item:hover {
    color: #FACC15;
    border-color: rgba(250, 204, 21, 0.3);
    transform: translateY(-2px);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    opacity: 0.6;
    transition: opacity 0.3s ease;
}

.scroll-indicator:hover {
    opacity: 1;
}

.mouse-icon {
    width: 24px;
    height: 40px;
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-radius: 15px;
    position: relative;
}

.mouse-wheel {
    width: 4px;
    height: 8px;
    background: #FACC15;
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll-wheel 2s ease-in-out infinite;
}

@keyframes scroll-wheel {
    0%, 100% { transform: translateX(-50%) translateY(0); opacity: 1; }
    50% { transform: translateX(-50%) translateY(10px); opacity: 0; }
}

.scroll-text {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.4);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* Live Indicator */
.live-indicator {
    position: absolute;
    top: 2rem;
    right: 2rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(20, 184, 166, 0.1);
    border: 1px solid rgba(20, 184, 166, 0.3);
    border-radius: 20px;
    font-size: 0.85rem;
    color: #14B8A6;
}

.live-dot {
    width: 8px;
    height: 8px;
    background: #14B8A6;
    border-radius: 50%;
    animation: live-pulse 2s ease-in-out infinite;
}

@keyframes live-pulse {
    0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(20, 184, 166, 0.4); }
    50% { opacity: 0.6; box-shadow: 0 0 0 8px rgba(20, 184, 166, 0); }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .side-nav {
        right: 1rem;
        gap: 1.5rem;
    }

    .nav-item {
        width: 50px;
        height: 50px;
    }

    .nav-tooltip {
        display: none;
    }

    .scroll-indicator {
        display: none;
    }

    .brand-section {
        flex-direction: column;
        gap: 1rem;
    }
    
    .brand-info {
        text-align: center;
    }
    
    .main-headline {
        font-size: clamp(2rem, 10vw, 3.5rem);
    }
    
    .quick-stats {
        gap: 1rem;
    }
    
    .stat-item {
        padding: 0.75rem;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
    
    .cta-container {
        flex-direction: column;
        width: 100%;
        max-width: 300px;
        margin: 0 auto 3rem;
    }
    
    .cta-primary,
    .cta-secondary {
        width: 100%;
    }
    
    .live-indicator {
        top: 1rem;
        right: 1rem;
        font-size: 0.75rem;
        padding: 0.4rem 0.8rem;
    }
}