/* ========================================
   RESET & BASE STYLES
   ======================================== */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --text-primary: #FAFAFA;
    --text-secondary: rgba(250, 250, 250, 0.7);
    --gold: #FFD700;
    --gold-bright: #FFC700;
    --gold-dim: rgba(255, 215, 0, 0.3);
    --gold-dark: #B8860B;
    --bg-dark: #050505;
    --bg-darker: #000000;
    --bg-lighter: #0a0a0a;
    --purple: #9333EA;
    --purple-dim: rgba(147, 51, 234, 0.2);
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-primary);
    font-family: 'Outfit', sans-serif;
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ========================================
   PARTICLE CANVAS
   ======================================== */
#particleCanvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    opacity: 0.6;
}

/* ========================================
   ANIMATED BACKGROUND GRADIENT
   ======================================== */
.animated-gradient {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 20% 30%, var(--purple-dim), transparent 40%),
        radial-gradient(circle at 80% 70%, var(--gold-dim), transparent 40%),
        radial-gradient(circle at 50% 50%, rgba(255, 215, 0, 0.05), transparent 60%);
    pointer-events: none;
    z-index: 0;
    animation: gradientShift 20s ease-in-out infinite;
}

@keyframes gradientShift {

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

    50% {
        opacity: 0.7;
        transform: scale(1.1) rotate(5deg);
    }
}

/* ========================================
   EDGE GLOW
   ======================================== */
.edge-glow {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 9999;
    box-shadow:
        inset 0 0 40px rgba(0, 0, 0, 0.9),
        inset 0 0 15px var(--gold-dim);
    animation: glowPulse 8s ease-in-out infinite;
}

@keyframes glowPulse {

    0%,
    100% {
        box-shadow:
            inset 0 0 40px rgba(0, 0, 0, 0.9),
            inset 0 0 15px var(--gold-dim);
    }

    50% {
        box-shadow:
            inset 0 0 50px rgba(0, 0, 0, 0.8),
            inset 0 0 25px rgba(255, 215, 0, 0.4);
    }
}

/* ========================================
   BACKGROUND TEXT
   ======================================== */
.background-text {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100vw;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    z-index: 0;
    line-height: 0.85;
    mix-blend-mode: overlay;
    opacity: 0.1;
}

.background-text span {
    font-family: 'Playfair Display', serif;
    font-size: 18vw;
    font-weight: 700;
    white-space: nowrap;
    color: #fff;
    letter-spacing: -0.05em;
    background: linear-gradient(135deg, #fff 0%, var(--gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* ========================================
   HEADER
   ======================================== */
.top-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    justify-content: center;
    pointer-events: none;
    background: linear-gradient(180deg, rgba(5, 5, 5, 0.95) 0%, rgba(5, 5, 5, 0.8) 100%);
}

.header-line {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg,
            transparent 0%,
            var(--gold-dim) 20%,
            var(--gold) 50%,
            var(--gold-dim) 80%,
            transparent 100%);
    box-shadow: 0 0 10px var(--gold-dim);
}

.header-content {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    height: 100%;
    pointer-events: auto;
    padding: 0 2rem;
}

@media (max-width: 768px) {
    .header-content {
        padding: 0 1rem;
    }
}

.site-name-container {
    display: flex;
    align-items: center;
}

.site-name {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1rem, 2.5vw, 1.6rem);
    font-weight: 400;
    letter-spacing: 0.3em;
    color: var(--text-primary);
    text-transform: uppercase;
    position: relative;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
}

.site-name::after {
    content: '';
    display: inline-block;
    width: 5px;
    height: 5px;
    background-color: var(--gold);
    border-radius: 50%;
    margin-left: 1rem;
    box-shadow: 0 0 15px var(--gold);
    animation: pulse 3s infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 0.6;
        box-shadow: 0 0 10px var(--gold);
    }

    50% {
        opacity: 1;
        box-shadow: 0 0 25px var(--gold), 0 0 40px var(--gold);
    }
}

/* ========================================
   SCROLL PROGRESS BAR
   ======================================== */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold-bright), var(--purple));
    z-index: 10000;
    width: 0;
    box-shadow: 0 0 15px var(--gold);
    transition: width 0.1s ease;
    opacity: 0.3;
}

/* ========================================
   SECTION NAVIGATION DOTS
   ======================================== */
.section-nav {
    position: fixed;
    right: 3rem;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.nav-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid rgba(255, 215, 0, 0.4);
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.nav-dot:hover {
    border-color: var(--gold);
    transform: scale(1.3);
}

.nav-dot.active {
    background: var(--gold);
    box-shadow: 0 0 20px var(--gold);
    border-color: var(--gold);
}

.nav-dot::after {
    content: '';
    position: absolute;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 1px solid transparent;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.3s ease;
}

.nav-dot.active::after {
    border-color: rgba(255, 215, 0, 0.2);
    animation: ripple 2s infinite;
}

@keyframes ripple {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
    }

    100% {
        transform: translate(-50%, -50%) scale(2);
        opacity: 0;
    }
}

/* ========================================
   CONTAINER
   ======================================== */
.container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .container {
        padding: 0 0.75rem;
    }
    
    /* Full-width containers for specific sections */
    .labs-section .container {
        padding: 0;
    }
}

/* ========================================
   MAIN HERO SECTION
   ======================================== */
main.container {
    width: 100%;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
    position: relative;
    z-index: 2;
}

@media (max-width: 768px) {
    main.container {
        padding: 0;
    }
}

.content {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    align-items: center;
    width: 100%;
    max-width: 1600px;
    padding: 0 6%;
    gap: 4rem;
}

@media (max-width: 768px) {
    .content {
        padding: 0 1rem;
        gap: 2rem;
    }
}

/* ========================================
   TEXT CONTENT
   ======================================== */
.text-content {
    position: relative;
    z-index: 3;
    padding-left: 2rem;
}

@media (max-width: 768px) {
    .text-content {
        padding-left: 0;
    }
}

.tagline {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(2rem, 9vw, 8rem);
    font-weight: 700;
    letter-spacing: -0.04em;
    line-height: 0.9;
    margin-bottom: 2.5rem;
    background: linear-gradient(135deg, #fff 0%, var(--gold-bright) 70%, var(--gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 15px 40px rgba(0, 0, 0, 0.6));
    animation: titleGlow 4s ease-in-out infinite;
}

@media (max-width: 768px) {
    .tagline {
        margin-bottom: 1.5rem;
        line-height: 1;
    }
}

@keyframes titleGlow {

    0%,
    100% {
        filter: drop-shadow(0 15px 40px rgba(0, 0, 0, 0.6));
    }

    50% {
        filter: drop-shadow(0 15px 60px rgba(255, 215, 0, 0.3));
    }
}

.subtitle {
    font-family: 'Outfit', sans-serif;
    font-size: 1.3rem;
    font-weight: 300;
    letter-spacing: 0.02em;
    line-height: 1.7;
    color: var(--text-secondary);
    max-width: 550px;
    border-left: 2px solid var(--gold);
    padding-left: 2rem;
    margin-left: 0.5rem;
    margin-bottom: 3rem;
    position: relative;
}

@media (max-width: 768px) {
    .subtitle {
        max-width: 100%;
        margin-left: 0;
        padding-left: 0.75rem;
        border-left-width: 2px;
    }
}

.subtitle::before {
    content: '';
    position: absolute;
    left: -2px;
    top: 0;
    width: 2px;
    height: 40px;
    background: var(--gold-bright);
    box-shadow: 0 0 15px var(--gold);
}

/* ========================================
   CTA BUTTONS
   ======================================== */
.cta-buttons {
    display: flex;
    gap: 1.5rem;
    margin-top: 2rem;
}

.btn-primary,
.btn-secondary {
    padding: 1rem 2.5rem;
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, var(--gold-bright), var(--gold-dark));
    color: var(--bg-dark);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
}

.btn-primary:hover {
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.5);
}

.btn-secondary {
    background: transparent;
    border: 2px solid var(--gold);
    color: var(--gold);
}

.btn-secondary:hover {
    background: rgba(255, 215, 0, 0.1);
    border-color: var(--gold-bright);
    color: var(--gold-bright);
}

/* ========================================
   HERO IMAGE
   ======================================== */
.image-wrapper {
    position: relative;
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    perspective: 1000px;
}

@media (max-width: 768px) {
    .image-wrapper {
        height: 50vh;
        min-height: 400px;
    }
}

.image-glow {
    position: absolute;
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.15), transparent 70%);
    filter: blur(60px);
    /*animation: glowBreath 6s ease-in-out infinite;*/
    z-index: -1;
}

@keyframes glowBreath {

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

    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
}

.hero-image {
    max-width: 130%;
    max-height: 85vh;
    object-fit: contain;
    filter: drop-shadow(0 25px 60px rgba(0, 0, 0, 0.7));
    /*animation: floatHero 7s ease-in-out infinite;*/
    transform-style: preserve-3d;
}

@media (max-width: 768px) {
    .hero-image {
        max-width: 100%;
        max-height: 50vh;
    }
}

@keyframes floatHero {

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

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

/* ========================================
   SCROLL INDICATOR
   ======================================== */
.scroll-indicator {
    position: fixed;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    z-index: 10;
    transition: opacity 0.5s ease;
}

.scroll-indicator span {
    font-family: 'Outfit', sans-serif;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    color: var(--gold);
    text-shadow: 0 0 10px var(--gold-dim);
}

.scroll-indicator svg {
    width: 28px;
    height: 28px;
    stroke: var(--gold);
    stroke-width: 2;
    fill: none;
    animation: scrollBounce 2s infinite;
    filter: drop-shadow(0 0 8px var(--gold-dim));
}

@keyframes scrollBounce {

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

    40% {
        transform: translateY(-12px);
    }

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

.scroll-indicator.hidden {
    opacity: 0;
    pointer-events: none;
}

/* ========================================
   SECTION DIVIDERS
   ======================================== */
.section-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 0;
    gap: 2rem;
    position: relative;
    z-index: 10;
}

@media (max-width: 768px) {
    .section-divider {
        padding: 2rem 0;
        gap: 1rem;
    }
}

.divider-line {
    flex: 1;
    max-width: 300px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold-dim), transparent);
}

.divider-ornament {
    color: var(--gold);
    font-size: 1rem;
    opacity: 0.5;
    animation: ornamentGlow 4s ease-in-out infinite;
}

@keyframes ornamentGlow {

    0%,
    100% {
        opacity: 0.3;
        text-shadow: 0 0 5px var(--gold-dim);
    }

    50% {
        opacity: 0.7;
        text-shadow: 0 0 15px var(--gold);
    }
}

/* ========================================
   MONKEY BUSINESS SECTION
   ======================================== */
.monkey-business {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(180deg, var(--bg-dark), var(--bg-lighter));
    padding: 6rem 0;
    z-index: 10;
}

.monkey-business .container {
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 4rem;
}

.content-reversed {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 6rem;
    align-items: center;
}

.image-wrapper-left {
    position: relative;
}

.image-frame {
    position: absolute;
    inset: -20px;
    border: 1px solid rgba(255, 215, 0, 0.1);
    border-radius: 4px;
    pointer-events: none;
}

.business-image {
    width: 100%;
    max-height: 85vh;
    object-fit: contain;
    filter: grayscale(100%) contrast(120%) brightness(0.75);
    transition: all 0.6s ease;
    mask-image: linear-gradient(to bottom, black 85%, transparent 100%);
    -webkit-mask-image: linear-gradient(to bottom, black 85%, transparent 100%);
}

.business-image:hover {
    filter: grayscale(0%) contrast(100%) brightness(1);
    transform: scale(1.02);
}

/* ========================================
   REVEAL ANIMATIONS
   ======================================== */
[data-reveal] {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s ease-out;
}

[data-reveal].revealed {
    opacity: 1;
    transform: translateY(0);
}

.section-title {
    font-family: 'Outfit', sans-serif;
    font-size: 0.9rem;
    letter-spacing: 0.45em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 2rem;
    display: inline-block;
    border-bottom: 1px solid var(--gold-dim);
    padding-bottom: 0.5rem;
    text-shadow: 0 0 20px var(--gold-dim);
}

.section-description {
    font-family: 'Playfair Display', serif;
    font-size: 3.2rem;
    line-height: 1.3;
    color: var(--text-primary);
    margin-bottom: 3rem;
}

.section-description em {
    color: var(--gold);
    font-style: italic;
    text-shadow: 0 0 20px var(--gold-dim);
}

.section-tagline {
    font-size: 1.15rem;
    font-weight: 300;
    line-height: 1.9;
    color: var(--text-secondary);
    border-left: 2px solid rgba(255, 215, 0, 0.2);
    padding-left: 2rem;
    margin-bottom: 3rem;
}

/* Feature List */
.feature-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 3rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    font-size: 1.1rem;
    color: var(--text-secondary);
    transition: all 0.3s ease;
    padding: 1rem;
    border-radius: 4px;
}

.feature-item:hover {
    background: rgba(255, 215, 0, 0.05);
    color: var(--text-primary);
    transform: translateX(10px);
}

.feature-icon {
    font-size: 2rem;
    filter: grayscale(100%);
    transition: filter 0.3s ease;
}

.feature-item:hover .feature-icon {
    filter: grayscale(0%);
}

/* ========================================
   LABS & INNOVATION SECTION
   ======================================== */
.labs-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 8rem 4rem;
    background: linear-gradient(180deg, var(--bg-lighter), var(--bg-dark));
    position: relative;
    z-index: 10;
}

@media (max-width: 768px) {
    .labs-section {
        padding: 3rem 0.75rem;
    }
}

.section-header {
    text-align: center;
    margin-bottom: 6rem;
}

@media (max-width: 768px) {
    .section-header {
        margin-bottom: 2.5rem;
        padding: 0;
    }
}

.section-title-large {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(2.5rem, 5vw, 5rem);
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    background: linear-gradient(135deg, var(--gold-bright), var(--purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-style: italic;
    color: var(--text-secondary);
}

.labs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 3rem;
    max-width: 1400px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .labs-grid {
        gap: 2rem;
        width: 100%;
    }
}

.lab-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 215, 0, 0.1);
    padding: 3rem 2.5rem;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    backdrop-filter: blur(10px);
}

@media (max-width: 768px) {
    .lab-card {
        padding: 2rem 1rem;
    }
}

.lab-card:hover {
    transform: translateY(-10px);
    border-color: var(--gold);
    background: rgba(255, 215, 0, 0.05);
    box-shadow: 0 20px 60px rgba(255, 215, 0, 0.2);
}

.card-hover-effect {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, transparent, rgba(255, 215, 0, 0.1));
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.lab-card:hover .card-hover-effect {
    opacity: 0.3;
}

.card-number {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    font-weight: 700;
    color: rgba(255, 215, 0, 0.1);
    line-height: 1;
    margin-bottom: 1rem;
    transition: all 0.4s ease;
}

.lab-card:hover .card-number {
    color: rgba(255, 215, 0, 0.3);
}

.lab-card h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    letter-spacing: 0.05em;
}

.lab-card p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-secondary);
}

/* Featured Project Card Styling */
.lab-card.featured-project {
    grid-column: 1 / -1;
    background: rgba(255, 255, 255, 0.015);
    border: 1px solid rgba(255, 215, 0, 0.15);
    padding: 4rem 3.5rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

@media (max-width: 768px) {
    .lab-card.featured-project {
        padding: 2rem 1rem;
        border-left: none;
        border-right: none;
        border-radius: 0;
        margin-left: -0.75rem;
        margin-right: -0.75rem;
        width: calc(100% + 1.5rem);
    }
}

.lab-card.featured-project:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 215, 0, 0.4);
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.15);
}

.lab-card.featured-project .card-number {
    font-size: 5rem;
    color: rgba(255, 215, 0, 0.2);
}

.lab-card.featured-project:hover .card-number {
    color: rgba(255, 215, 0, 0.5);
    transform: scale(1.1);
}

.lab-card.featured-project h3 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--gold);
}

.featured-project-header {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: flex-start;
    margin-bottom: 3rem;
}

@media (max-width: 768px) {
    .featured-project-header {
        gap: 1.5rem;
        margin-bottom: 2rem;
    }
}

.featured-project-image {
    position: relative;
    width: 100%;
    margin: 2rem 0 3rem;
    overflow: hidden;
}

@media (max-width: 768px) {
    .featured-project-image {
        margin: 1.5rem 0 2rem;
    }
}

.featured-project-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    border: 1px solid rgba(255, 215, 0, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    transition: all 0.4s ease;
}

@media (max-width: 768px) {
    .featured-project-image {
        margin-left: -1rem;
        margin-right: -1rem;
        width: calc(100% + 2rem);
    }
    
    .featured-project-image img {
        border-radius: 0;
        border-left: none;
        border-right: none;
    }
}

.featured-project-image img:hover {
    border-color: rgba(255, 215, 0, 0.5);
    box-shadow: 0 8px 40px rgba(255, 215, 0, 0.3);
    transform: scale(1.01);
}

.lab-card.featured-project .project-challenge,
.lab-card.featured-project .project-solution {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.lab-card.featured-project .project-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 215, 0, 0.15);
}

@media (max-width: 768px) {
    .lab-card.featured-project .project-features {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin-top: 1.5rem;
        padding-top: 1.5rem;
    }
}

.lab-card.featured-project .feature-point {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--text-secondary);
    padding: 1.2rem;
    background: rgba(255, 255, 255, 0.02);
    border-left: 2px solid rgba(255, 215, 0, 0.3);
    transition: all 0.3s ease;
}

@media (max-width: 768px) {
    .lab-card.featured-project .feature-point {
        padding: 1rem 0.75rem;
        border-left-width: 2px;
    }
}

.lab-card.featured-project .feature-point:hover {
    background: rgba(255, 215, 0, 0.05);
    border-left-color: var(--gold-bright);
    transform: translateX(8px);
}

.lab-card.featured-project .feature-point strong {
    display: block;
    color: var(--gold);
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

/* Architecture Section Styling */
.lab-card.featured-project .architecture-section {
    grid-column: 1 / -1;
}

.lab-card.featured-project .architecture-section p {
    margin-top: 0.5rem;
    margin-bottom: 1rem;
}

.architecture-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.architecture-list li {
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.7;
}

.architecture-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--gold);
    font-weight: bold;
}

/* Analyst Team Section */
.analyst-team {
    margin-top: 3rem;
    padding-top: 3rem;
    border-top: 1px solid rgba(255, 215, 0, 0.15);
}

@media (max-width: 768px) {
    .analyst-team {
        margin-top: 2rem;
        padding-top: 2rem;
    }
}

.analyst-team h4 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--gold);
    margin-bottom: 2rem;
    text-align: center;
    letter-spacing: 0.1em;
}

.analysts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

@media (max-width: 768px) {
    .analysts-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

.analyst-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 215, 0, 0.15);
    padding: 2rem;
    border-radius: 4px;
    transition: all 0.4s ease;
}

@media (max-width: 768px) {
    .analyst-card {
        padding: 1.5rem 1rem;
    }
}

.analyst-card:hover {
    background: rgba(255, 215, 0, 0.03);
    border-color: rgba(255, 215, 0, 0.3);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.1);
}

.analyst-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--gold-bright);
    margin-bottom: 0.5rem;
}

.analyst-role {
    font-family: 'Outfit', sans-serif;
    font-size: 0.9rem;
    font-style: italic;
    color: var(--purple);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.analyst-focus {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 215, 0, 0.1);
}

.analyst-description {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--text-secondary);
}


.persona-image-container {
    margin: 2rem 0 3rem;
    width: 100%;
}

.persona-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
    border: 1px solid rgba(255, 215, 0, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

@media (max-width: 768px) {
    .persona-image-container {
        margin-left: -1rem;
        margin-right: -1rem;
        width: calc(100% + 2rem);
    }
    
    .persona-image {
        border-radius: 0;
        border-left: none;
        border-right: none;
    }
}

.persona-image:hover {
    transform: translateY(-5px);
    border-color: var(--gold);
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.15);
}

/* Project Links Section */
.project-links {
    display: flex;
    gap: 1.2rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.project-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.2rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 4px;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    font-family: 'Outfit', sans-serif;
    transition: all 0.3s ease;
}

@media (max-width: 768px) {
    .project-link {
        padding: 0.5rem 1rem;
        font-size: 0.85rem;
    }
}

.project-link:hover {
    background: rgba(255, 215, 0, 0.05);
    border-color: var(--gold);
    color: var(--gold-bright);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.15);
}

.project-link svg {
    flex-shrink: 0;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.project-link:hover svg {
    opacity: 1;
}

/* ========================================
   PROJECT STATUS INDICATOR
   ======================================== */
.project-status {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.25rem;
    margin-bottom: 2rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 6px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.project-status::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.1), transparent);
    transition: left 0.5s ease;
}

.project-status:hover::before {
    left: 100%;
}

.project-status:hover {
    border-color: rgba(255, 215, 0, 0.4);
    background: rgba(255, 215, 0, 0.05);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.15);
}

.status-indicator {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-shrink: 0;
}

.status-indicator svg {
    color: var(--gold);
    animation: statusPulse 2s ease-in-out infinite;
    filter: drop-shadow(0 0 4px rgba(255, 215, 0, 0.5));
}

@keyframes statusPulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.7;
        transform: scale(1.05);
    }
}

.status-label {
    font-family: 'Outfit', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--gold);
    opacity: 0.9;
}

.status-text {
    font-family: 'Outfit', sans-serif;
    font-size: 0.95rem;
    line-height: 1.5;
    color: var(--text-secondary);
    flex: 1;
}

/* Prototype Status (Working/Testing) */
.status-prototype {
    border-color: rgba(255, 215, 0, 0.3);
}

.status-prototype .status-indicator svg {
    color: var(--gold-bright);
}

.status-prototype::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 100%;
    background: linear-gradient(180deg, var(--gold-bright), var(--gold));
    box-shadow: 0 0 10px var(--gold-dim);
}

/* Alpha Status (In Development) */
.status-alpha {
    border-color: rgba(147, 51, 234, 0.3);
}

.status-alpha .status-indicator svg {
    color: var(--purple);
    animation: statusPulsePurple 2s ease-in-out infinite;
    filter: drop-shadow(0 0 4px rgba(147, 51, 234, 0.5));
}

@keyframes statusPulsePurple {
    0%, 100% {
        opacity: 1;
        transform: scale(1) rotate(0deg);
    }
    50% {
        opacity: 0.8;
        transform: scale(1.08) rotate(5deg);
    }
}

.status-alpha .status-label {
    color: var(--purple);
}

.status-alpha::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 100%;
    background: linear-gradient(180deg, var(--purple), rgba(147, 51, 234, 0.5));
    box-shadow: 0 0 10px rgba(147, 51, 234, 0.3);
}

.status-alpha:hover {
    border-color: rgba(147, 51, 234, 0.5);
    background: rgba(147, 51, 234, 0.05);
    box-shadow: 0 4px 15px rgba(147, 51, 234, 0.2);
}

@media (max-width: 768px) {
    .project-status {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
        padding: 0.75rem 1rem;
        margin-bottom: 1.5rem;
    }
    
    .status-indicator {
        width: 100%;
    }
    
    .status-text {
        font-size: 0.9rem;
        padding-left: 1.75rem;
    }
    
    .status-prototype::after,
    .status-alpha::after {
        width: 2px;
    }
}

/* ========================================
   VISION SECTION
   ======================================== */
.vision-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(180deg, var(--bg-dark), var(--bg-darker));
    padding: 8rem 4rem;
    position: relative;
    z-index: 10;
    overflow: hidden;
}

.vision-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 6rem;
    align-items: center;
}

.vision-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 4rem);
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 2rem;
    letter-spacing: 0.05em;
}

.vision-description {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-style: italic;
    line-height: 1.3;
    color: var(--text-primary);
    margin-bottom: 2rem;
}

.highlight-gold {
    color: var(--gold-bright);
    text-shadow: 0 0 30px var(--gold-dim);
    background: linear-gradient(135deg, var(--gold-bright), var(--gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.vision-tagline {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--text-secondary);
    max-width: 600px;
}

.vision-banana {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.banana-glow {
    position: absolute;
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.3), transparent 70%);
    filter: blur(80px);
    animation: bananaGlowPulse 6s ease-in-out infinite;
}

@keyframes bananaGlowPulse {

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

    50% {
        transform: scale(1.2);
        opacity: 0.8;
    }
}

.vision-banana-img {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 20px 60px rgba(255, 215, 0, 0.5));
    animation: floatVisionBanana 8s ease-in-out infinite;
}

@keyframes floatVisionBanana {

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

    50% {
        transform: translateY(-25px) rotate(5deg);
    }
}

/* ========================================
   FOOTER
   ======================================== */
.site-footer {
    padding: 6rem 2rem 4rem;
    text-align: center;
    background: var(--bg-darker);
    border-top: 1px solid rgba(255, 215, 0, 0.1);
    position: relative;
    z-index: 10;
}

@media (max-width: 768px) {
    .site-footer {
        padding: 4rem 1rem 3rem;
    }
}

.footer-ornament {
    color: var(--gold);
    font-size: 0.8rem;
    margin-bottom: 2rem;
    opacity: 0.4;
    letter-spacing: 1rem;
}

.footer-text {
    font-family: 'Outfit', sans-serif;
    font-size: 0.9rem;
    letter-spacing: 0.2em;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
}

.footer-tagline {
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    font-style: italic;
    color: var(--gold);
    opacity: 0.6;
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */
@media (max-width: 1200px) {
    .section-nav {
        right: 1.5rem;
    }

    .content {
        grid-template-columns: 1fr;
        text-align: center;
        padding-top: 6rem;
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .text-content {
        padding-left: 0;
        order: 1;
    }

    .image-wrapper {
        height: 60vh;
        order: 2;
    }

    .subtitle {
        margin-left: auto;
        margin-right: auto;
    }

    .cta-buttons {
        justify-content: center;
    }

    .content-reversed,
    .vision-content {
        grid-template-columns: 1fr;
        gap: 4rem;
        text-align: center;
    }

    .section-tagline {
        border-left: none;
        border-top: 2px solid rgba(255, 215, 0, 0.2);
        padding-left: 0;
        padding-top: 1.5rem;
        margin: 0 auto;
    }

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

@media (max-width: 768px) {
    .background-text span {
        font-size: 25vw;
    }

    .section-nav {
        display: none;
    }

    .header-content {
        padding: 0 1.5rem;
    }

    .tagline {
        font-size: 3rem;
    }

    .subtitle {
        font-size: 1.1rem;
        padding-left: 0.75rem;
        border-left-width: 2px;
        max-width: 100%;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 1rem;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        padding: 1rem 2rem;
    }

    .section-description {
        font-size: 2rem;
    }

    .feature-list {
        margin-top: 2rem;
    }

    .labs-section,
    .vision-section {
        padding: 3rem 0.75rem;
    }

    .section-header {
        margin-bottom: 4rem;
    }

    .monkey-business .container {
        padding: 0 2rem;
    }
}

/* ========================================
   PERFORMANCE OPTIMIZATIONS
   ======================================== */
@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}