/* ============================================
   ILLUMIX WEBSITE - APPLE VISION PRO AESTHETIC
   ============================================ */

/* CSS VARIABLES - Design System */
:root {
    /* Apple Vision Pro Color Palette */
    --bg-primary: #ffffff;
    --bg-secondary: #f5f5f7;
    --bg-dark: #1d1d1f;
    --text-primary: #1d1d1f;
    --text-secondary: #86868b;
    --accent-blue: #0071e3;
    --border-color: #d2d2d7;

    /* Typography Scale */
    --font-hero: 56px;
    --font-section-title: 56px;
    --font-subtitle: 21px;
    --font-body: 17px;
    --font-nav: 12px;
    --font-small: 14px;

    /* Spacing */
    --spacing-xs: 8px;
    --spacing-sm: 16px;
    --spacing-md: 24px;
    --spacing-lg: 40px;
    --spacing-xl: 32px;
    --spacing-2xl: 48px;
    --spacing-3xl: 64px;

    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 18px;
    --radius-xl: 30px;
    --radius-pill: 980px;

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 8px 32px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 20px 40px rgba(0, 0, 0, 0.12);

    /* Transitions */
    --transition-fast: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-smooth: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-carousel: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'SF Pro Text', 'Helvetica Neue', sans-serif;
    font-size: var(--font-body);
    line-height: 1.47059;
    letter-spacing: -0.022em;
    color: var(--text-primary);
    background: var(--bg-primary);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
}

/* TYPOGRAPHY */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 600;
}

.hero-title {
    font-size: clamp(32px, 4vw, 48px);
    line-height: 1.07143;
    letter-spacing: -0.005em;
    font-weight: 600;
    /* Improved visibility on video background */
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6),
        0 4px 16px rgba(0, 0, 0, 0.4);
    /* Ensure single line on desktop */
    white-space: nowrap;
}

.section-title {
    font-size: 42px;
    /* Reduced from 56px */
    line-height: 1.1;
    letter-spacing: -0.005em;
    font-weight: 600;
}

.subtitle {
    font-size: var(--font-subtitle);
    line-height: 1.381;
    letter-spacing: 0.011em;
}

.body-text {
    font-size: var(--font-body);
    line-height: 1.47059;
    letter-spacing: -0.022em;
}

/* NAVIGATION */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 44px;
    background: rgba(255, 255, 255, 0.72);
    backdrop-filter: saturate(180%) blur(20px);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 22px;
}

.nav-logo {
    font-size: var(--font-subtitle);
    font-weight: 600;
    letter-spacing: 0;
}

.nav-logo a {
    display: flex;
    align-items: center;
}

.nav-logo-img {
    height: 120px;
    width: auto;
    display: block;
}

.nav-links {
    display: flex;
    gap: 32px;
    list-style: none;
}

.nav-link {
    font-size: var(--font-nav);
    opacity: 0.8;
    transition: opacity var(--transition-fast);
}

.nav-link:hover {
    opacity: 1;
}

/* Hamburger Menu */
.nav-hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 6px;
    width: 44px;
    height: 44px;
    cursor: pointer;
    z-index: 10000;
    background: transparent;
    border: none;
    padding: 0;
    margin: 0;
    outline: none;
    -webkit-tap-highlight-color: rgba(0,0,0,0.1);
    -webkit-appearance: none;
    appearance: none;
}

.nav-hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: #1d1d1f;
    border-radius: 2px;
    transition: all 0.3s ease;
    pointer-events: none;
}

/* Hamburger to X animation - clean centered cross */
.nav-hamburger.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.nav-hamburger.active span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.nav-hamburger.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* Mobile Navigation Overlay */
.nav-mobile-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.nav-mobile-overlay.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.nav-mobile-menu {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    gap: 32px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.nav-mobile-menu a {
    font-size: 24px;
    font-weight: 600;
    color: var(--text-primary);
    text-decoration: none;
    transition: color 0.2s ease;
}

.nav-mobile-menu a:hover,
.nav-mobile-menu a.active {
    color: var(--accent-blue);
}

/* Ensure hamburger shows on tablet too */
@media (max-width: 1024px) {
    .nav-hamburger {
        display: flex !important;
    }

    .nav-links {
        display: none !important;
    }

    .nav-mobile-overlay {
        display: block;
    }

    /* Full width carousel on tablet */
    .logo-carousel {
        width: 100vw;
        margin-left: calc(-50vw + 50%);
    }
}

/* Show hamburger on mobile */
@media (max-width: 768px) {
    .nav {
        justify-content: space-between;
        padding: 0 16px;
        height: 56px;
    }

    .nav-logo {
        flex-shrink: 0;
        max-width: 100px;
        overflow: visible;
    }

    .nav-logo-img {
        height: 70px;
        width: auto;
    }

    .nav-hamburger {
        display: flex !important;
        position: relative;
        z-index: 10000;
        touch-action: manipulation;
        -webkit-tap-highlight-color: rgba(0,0,0,0.1);
    }
}

/* BUTTONS */
.btn {
    display: inline-block;
    padding: 12px 22px;
    font-size: var(--font-body);
    border-radius: var(--radius-pill);
    transition: all var(--transition-fast);
    font-weight: 400;
}

.btn-primary {
    background: var(--accent-blue);
    color: white;
}

.btn-primary:hover {
    background: #0077ED;
    transform: scale(1.02);
}

.btn-secondary {
    background: transparent;
    color: var(--accent-blue);
    border: 1px solid var(--accent-blue);
}

.btn-secondary:hover {
    background: rgba(0, 113, 227, 0.1);
}

/* SECTIONS */
section {
    position: relative;
    overflow: hidden;
}

.section-container {
    max-width: 980px;
    margin: 0 auto;
    padding: 0 22px;
}

.section-container-wide {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

/* HERO SECTION */
.hero {
    height: 100vh;
    min-height: 692px;
    position: relative;
    display: flex;
    align-items: flex-end;
    padding-bottom: 30px;
}

.hero-video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Instant gradient background while video loads */
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f0f23 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    font-size: 24px;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    /* Performance optimizations */
    will-change: auto;
    transform: translateZ(0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.hero-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 40%;
    background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.4) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    padding-left: 40px;
    color: white;
    animation: fadeUp 1.2s ease 0.4s both;
}

.hero-title {
    margin-bottom: 10px;
    text-shadow:
        0 2px 4px rgba(0, 0, 0, 0.8),
        0 4px 12px rgba(0, 0, 0, 0.6),
        0 8px 24px rgba(0, 0, 0, 0.4);
    font-weight: 700;
}

.hero-subtitle {
    font-size: clamp(18px, 2vw, 24px);
    opacity: 0.95;
    margin: 0;
    text-shadow:
        0 2px 4px rgba(0, 0, 0, 0.8),
        0 4px 12px rgba(0, 0, 0, 0.5);
    font-weight: 500;
}

@media (max-width: 768px) {
    /* Mobile Hero - Width-based scaling */
    .hero {
        height: auto;
        min-height: auto;
        aspect-ratio: 16 / 10;
        max-height: 70vh;
    }

    .hero-video-container {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }

    .hero-video {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center center;
    }

    .hero-content {
        position: absolute;
        bottom: 20px;
        left: 0;
        right: 0;
        padding: 0 20px;
        margin: 0;
    }

    .hero-title {
        font-size: clamp(24px, 6vw, 32px);
        white-space: normal;
        line-height: 1.15;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .hero-overlay {
        height: 50%;
    }
}

/* Small mobile hero adjustments */
@media (max-width: 480px) {
    .hero {
        aspect-ratio: 16 / 12;
        max-height: 60vh;
    }

    .hero-title {
        font-size: 22px;
    }

    .hero-subtitle {
        font-size: 14px;
    }

    .hero-content {
        bottom: 16px;
        padding: 0 16px;
    }
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

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

/* TRUSTED BY SECTION */
.trusted-by {
    background: var(--bg-primary);
    padding: var(--spacing-xl) 0;
    width: 100%;
}

.trusted-by .section-container {
    max-width: 100%;
    padding: 0;
}

.trusted-by-heading {
    text-align: center;
    font-size: var(--font-body);
    color: var(--text-secondary);
    margin-bottom: var(--spacing-lg);
    letter-spacing: 0.08em;
    font-weight: 600;
}

.logo-carousel {
    overflow: hidden;
    position: relative;
    width: 100%;
}

.logo-track {
    display: flex;
    gap: 60px;
    animation: scroll 70s linear infinite;
    width: max-content;
    will-change: transform;
}

.logo-item {
    height: 60px;
    min-width: 120px;
    max-width: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    opacity: 1;
    transition: opacity var(--transition-fast);
}

.logo-item svg,
.logo-item img {
    width: auto;
    height: 100%;
    max-height: 60px;
    object-fit: contain;
    /* Show logos in full color with no filters */
    filter: none !important;
    opacity: 1;
    transition: opacity var(--transition-fast);
}

.logo-item:hover svg,
.logo-item:hover img {
    opacity: 0.85;
}

.logo-item:hover {
    opacity: 1;
}

/* Individual logo size adjustments */
/* MGM is baseline (correct size) */
/* WB - reduce horizontal space on the container */
.logo-item:has(img[alt="Warner Bros"]) {
    margin: 0 -25px;
    max-width: 100px;
}

.logo-item img[alt="Warner Bros"] {
    max-height: 55px;
    transform: scale(0.95);
}

/* Verizon and XREAL - slightly larger */
.logo-item img[alt="Verizon"] {
    max-height: 56px;
    transform: scale(1.15);
}

.logo-item img[alt="XREAL"] {
    max-height: 56px;
    transform: scale(1.5);
}

/* Sony, Viture, Viam - much larger */
.logo-item img[alt="Sony"] {
    max-height: 70px;
    transform: scale(1.9);
}

.logo-item img[alt="Viture"] {
    max-height: 80px;
    transform: scale(2.3);
}

.logo-item img[alt="Viam"] {
    max-height: 60px;
    transform: scale(1.5);
}

/* Sela and Simulanis - smaller */
.logo-item img[alt="Sela"] {
    max-height: 38px;
    transform: scale(0.75);
}

.logo-item img[alt="Simulanis"] {
    max-height: 38px;
    transform: scale(0.75);
}

/* Theme parks - smaller */
.logo-item img[alt="Carowinds"] {
    max-height: 48px;
    transform: scale(0.85);
}

.logo-item img[alt="Disney"] {
    max-height: 48px;
    transform: scale(0.85);
}

.logo-item img[alt="Six Flags"] {
    max-height: 48px;
    transform: scale(0.85);
}

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

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

/* =========================================
   THEME TOGGLE COMPONENT
   ========================================= */
.theme-toggle-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    margin-top: 24px;
    padding: 12px 20px;
    background: rgba(0, 0, 0, 0.03);
    border-radius: 12px;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 10;
}

.theme-toggle-label {
    font-size: 13px;
    font-weight: 500;
    color: var(--text-secondary);
    user-select: none;
}

.theme-toggle {
    position: relative;
    width: 48px;
    height: 28px;
    background: #e5e5ea;
    border-radius: 14px;
    cursor: pointer;
    transition: background 0.3s ease;
    border: none;
    padding: 0;
}

.theme-toggle::after {
    content: '';
    position: absolute;
    top: 2px;
    left: 2px;
    width: 24px;
    height: 24px;
    background: white;
    border-radius: 50%;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
    pointer-events: none;
}

.theme-toggle.active {
    background: var(--accent-blue);
}

.theme-toggle.active::after {
    transform: translateX(20px);
}

/* TECHNOLOGY SECTION - DARK FROSTED BOX */
.technology {
    padding: var(--spacing-3xl) var(--spacing-lg);
    background: var(--bg-primary);
}

.technology-container {
    background: linear-gradient(135deg, #0a0a0a 0%, #141414 50%, #0a0a0a 100%);
    padding: var(--spacing-3xl) var(--spacing-lg);
    transition: all 0.5s ease;
    border-radius: var(--radius-xl);
    max-width: 1200px;
    margin: 0 auto;
    border: 1px solid rgba(255, 255, 255, 0.08);
    position: relative;
    overflow: hidden;
}

.technology-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 500px;
    height: 300px;
    background: radial-gradient(ellipse at center, rgba(0, 113, 227, 0.12) 0%, transparent 70%);
    pointer-events: none;
}

.technology-header {
    text-align: center;
    margin-bottom: var(--spacing-2xl);
    position: relative;
    z-index: 1;
}

.technology-header .section-title {
    color: #ffffff;
}

.technology-subtitle {
    max-width: 800px;
    margin: var(--spacing-md) auto 0;
    color: rgba(255, 255, 255, 0.6);
    font-size: 19px;
    line-height: 1.5;
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--spacing-xl);
    margin-top: var(--spacing-2xl);
    position: relative;
    z-index: 1;
}

.tech-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(30px) saturate(180%);
    -webkit-backdrop-filter: blur(30px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    border-radius: var(--radius-lg);
    padding: var(--spacing-md);
    transition: all var(--transition-fast);
    opacity: 0;
    transform: translateY(30px);
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
    text-align: left;
    position: relative;
    overflow: hidden;
}

.tech-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    opacity: 0;
    transition: opacity var(--transition-fast);
}

.tech-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.tech-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 113, 227, 0.2),
                0 0 0 1px rgba(0, 113, 227, 0.3);
    border-color: rgba(0, 113, 227, 0.4);
    background: rgba(255, 255, 255, 0.06);
}

.tech-card:hover::before {
    opacity: 1;
}

.tech-card-header {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-xs);
}

.tech-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--accent-blue), #0077ED);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    flex-shrink: 0;
    transition: all var(--transition-fast);
    box-shadow: 0 4px 16px rgba(0, 113, 227, 0.3),
                0 0 0 1px rgba(0, 113, 227, 0.2);
}

.tech-card:hover .tech-icon {
    box-shadow: 0 8px 24px rgba(0, 113, 227, 0.5),
                0 0 0 1px rgba(0, 113, 227, 0.4);
    transform: scale(1.05);
}

.tech-card h3 {
    font-size: 20px;
    font-weight: 600;
    margin: 0;
    color: #ffffff;
    letter-spacing: -0.01em;
    line-height: 1.2;
}

.tech-card p {
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.5;
    margin: 0;
    font-size: 14px;
}

/* =========================================
   LIGHT THEME VARIANT - Soft Grey
   Matches the site's light grey panel aesthetic
   ========================================= */
.technology-container.light-theme {
    background: linear-gradient(180deg, var(--bg-secondary) 0%, #eeeeef 100%);
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.05),
        0 8px 24px rgba(0, 0, 0, 0.03);
}

.technology-container.light-theme::before {
    background: radial-gradient(ellipse at top center, rgba(0, 113, 227, 0.04) 0%, transparent 60%);
}

.technology-container.light-theme .section-title {
    color: #1d1d1f;
}

.technology-container.light-theme .technology-subtitle {
    color: #6e6e73;
}

.technology-container.light-theme .tech-card {
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(0, 0, 0, 0.04);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

.technology-container.light-theme .tech-card:hover {
    background: rgba(255, 255, 255, 0.9);
    border-color: rgba(0, 113, 227, 0.12);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.technology-container.light-theme .tech-icon {
    background: rgba(0, 113, 227, 0.06);
    color: #1d1d1f;
}

.technology-container.light-theme .tech-card h3 {
    color: #1d1d1f;
}

.technology-container.light-theme .tech-card p {
    color: #6e6e73;
}

.technology-cta {
    text-align: center;
    margin-top: var(--spacing-xl);
    position: relative;
    z-index: 1;
}
/* TEAM SECTION */
.team {
    background: var(--bg-secondary);
    padding: var(--spacing-3xl) var(--spacing-lg);
}

.team-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 40% 1fr;
    gap: 48px;
    /* Reduced from 64px/spacing-3xl to give text more space */
    align-items: center;
}

.team-photo {
    position: sticky;
    top: 100px;
    height: fit-content;
}

.team-photo img {
    width: 100%;
    aspect-ratio: 3/4;
    object-fit: cover;
    border-radius: var(--radius-lg);
}

.team-accordions {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.accordion-item {
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.accordion-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--spacing-md);
    cursor: pointer;
    transition: background var(--transition-fast);
}

.accordion-header:hover {
    background: var(--bg-secondary);
}

.accordion-title {
    font-size: 28px;
    font-weight: 600;
}

.accordion-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 2px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-fast);
    position: relative;
}

.accordion-icon::before,
.accordion-icon::after {
    content: '';
    position: absolute;
    background: var(--text-primary);
    transition: all var(--transition-fast);
}

.accordion-icon::before {
    width: 12px;
    height: 2px;
}

.accordion-icon::after {
    width: 2px;
    height: 12px;
}

.accordion-item.active .accordion-icon {
    background: var(--accent-blue);
    border-color: var(--accent-blue);
    transform: rotate(45deg);
}

.accordion-item.active .accordion-icon::before,
.accordion-item.active .accordion-icon::after {
    background: white;
}

.accordion-preview {
    padding: 0 var(--spacing-md) var(--spacing-md);
    color: var(--text-secondary);
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.accordion-item.active .accordion-preview {
    display: none;
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-smooth);
}

.accordion-item.active .accordion-content {
    max-height: 1000px;
}

.accordion-content-inner {
    padding: 0 var(--spacing-md) var(--spacing-md);
    color: var(--text-secondary);
    line-height: 1.6;
}

.accordion-content-inner p {
    margin-bottom: var(--spacing-sm);
}

/* USE CASES SECTION - Apple Vision Pro Dark Style */
.use-cases {
    background: #000000;
    padding: 80px var(--spacing-lg);
}

.use-cases-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.use-cases-text h2 {
    font-size: 42px;
    margin-bottom: 12px;
    color: #ffffff;
    text-align: left;
}

.use-cases-subtitle {
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 24px;
    text-align: left;
}

.use-cases-list {
    list-style: none;
}

.use-case-item {
    padding: 14px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    font-size: 18px;
    transition: all var(--transition-fast);
    cursor: pointer;
}

.use-case-item:first-child {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.use-case-item a {
    display: block;
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    transition: all var(--transition-fast);
}

.use-case-item:hover,
.use-case-item a:hover {
    padding-left: 12px;
    color: var(--accent-blue);
}

.use-cases-cta {
    margin-top: 28px;
}

/* Use Cases Media Carousel */
.use-cases-media-carousel {
    position: relative;
    aspect-ratio: 16/10;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 50%, #1a1a1a 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.carousel-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    z-index: 1;
    transition: opacity 0.5s ease-in-out;
    pointer-events: none;
}

.carousel-item.active {
    opacity: 1;
    z-index: 2;
    pointer-events: auto;
}

.carousel-media {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--radius-lg);
}


/* PRESS SECTION */
.press {
    background: var(--bg-secondary);
    padding: var(--spacing-3xl) var(--spacing-lg);
    overflow: hidden;
    /* Hide horizontal scrollbar if 3D items poke out too far */
}

.press-header {
    text-align: center;
    margin-bottom: var(--spacing-2xl);
}

.press-logo {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: var(--spacing-md);
    background: transparent;
    width: auto;
    height: auto;
    display: block;
}

.press-quote {
    font-size: 16px;
    line-height: 1.5;
    color: var(--text-primary);
    margin-bottom: var(--spacing-md);
    font-style: italic;
}

.press-link {
    font-size: var(--font-small);
    font-weight: 600;
    color: var(--accent-blue);
    display: inline-block;
}

/* Controls Below */
.carousel-nav {
    position: absolute;
    bottom: -60px;
    /* Push below container */
    width: 44px;
    height: 44px;
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 100;
    transition: all 0.2s ease;
    font-size: 20px;
}

.carousel-nav:hover {
    background: var(--bg-secondary);
    border-color: var(--accent-blue);
}

.carousel-nav.prev {
    left: calc(50% - 40px);
    transform: translateX(-50%);
}

.carousel-nav.next {
    right: calc(50% - 40px);
    transform: translateX(50%);
}

.press-cta-container {
    text-align: center;
    margin-top: 80px;
    /* More space for arrows */
}

/* AWARDS SECTION */
.awards {
    background: var(--bg-primary);
    padding: var(--spacing-2xl) var(--spacing-lg);
}


/* TEAM PAGE STYLES - REDESIGN */

/* Header */
.team-page-header {
    padding: 180px 0 80px;
    background: var(--bg-primary);
}

.team-bg-alt {
    background: var(--bg-secondary);
}

/* Common Panel Styles */
.team-panel-section {
    padding: 80px 0;
    width: 100%;
    background: var(--bg-secondary);
}

.team-panel-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.team-panel {
    display: grid;
    grid-template-columns: 45% 1fr;
    gap: 80px;
    align-items: center;
}

/* Image Column */
.team-panel-image {
    width: 100%;
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--bg-secondary);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
    transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.team-panel-image:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.16);
}

.team-panel-image img {
    width: 100%;
    height: auto;
    display: block;
    background: var(--bg-secondary);
}

/* Content Column */
.team-panel-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 20px 0;
}

.team-panel-content .btn {
    align-self: flex-start;
}

.team-panel-content .section-title {
    font-size: 42px;
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin-bottom: 32px;
    font-weight: 600;
    color: #1a1a1c;
}

.team-description {
    margin-bottom: 40px;
}

.team-description p {
    font-size: 18px;
    line-height: 1.65;
    color: #2d2d2f;
    margin-bottom: 20px;
    letter-spacing: -0.01em;
}

.team-description p:last-child {
    margin-bottom: 0;
}

/* Specific Content Styles */
.founder-label {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-secondary);
    margin-bottom: var(--spacing-xs);
}

.founder-name {
    font-size: 48px;
    margin-bottom: var(--spacing-md);
    line-height: 1.1;
}

.founder-bio p {
    margin-bottom: var(--spacing-md);
    color: var(--text-secondary);
    font-size: 18px;
    line-height: 1.6;
}

.founder-awards {
    display: flex;
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
}

.award-logo {
    font-weight: 700;
    color: #999;
    font-size: 18px;
    padding: 10px 0;
}

.team-graphic-placeholder {
    width: 100%;
    aspect-ratio: 4/3;
    background: #e0e0e0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #888;
    font-weight: 600;
    font-size: 20px;
}

/* Overview Section Specifics */
.stat-callouts {
    margin: var(--spacing-xl) 0;
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
}

.stat-item h3 {
    font-size: 20px;
    margin-bottom: var(--spacing-xs);
}

.stat-item p {
    color: var(--text-secondary);
    font-size: 16px;
    line-height: 1.5;
}

.overview-logos {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-md);
    margin-top: var(--spacing-xl);
    border-top: 1px solid var(--border-color);
    padding-top: var(--spacing-lg);
}

.company-logo {
    font-weight: 600;
    color: #999;
    font-size: 16px;
}

/* Spotlights - Grid Layout */
.team-spotlights {
    padding: var(--spacing-3xl) 0;
    background: var(--bg-primary);
    /* Changed to primary */
}

.spotlights-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.spotlight-card {
    background: var(--bg-secondary);
    /* Cards stand out against primary bg */
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: transform var(--transition-fast);
}

.spotlight-card:hover {
    transform: translateY(-5px);
}

.spotlight-photo {
    width: 100%;
    aspect-ratio: 1;
    background: #d2d2d7;
}

.photo-placeholder {
    width: 100%;
    height: 100%;
}

.spotlight-info {
    padding: var(--spacing-md);
}

.spotlight-name {
    font-size: 20px;
    margin-bottom: 4px;
}

.spotlight-role {
    color: var(--accent-blue);
    font-size: 14px;
    font-weight: 500;
    margin-bottom: var(--spacing-md);
}

.spotlight-bio {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* Join Us */
.join-us {
    padding: 100px 0;
}

.join-us-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

/* Awards Section (re-added, was misplaced) */
.awards-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    gap: var(--spacing-2xl);
    flex-wrap: wrap;
}

.award-item {
    text-align: center;
    max-width: 300px;
}

.award-badge {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--accent-blue), #0077ED);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    margin: 0 auto var(--spacing-md);
}

.award-text {
    font-size: var(--font-body);
    line-height: 1.4;
    color: var(--text-primary);
}

/* PRESS IMAGES SECTION */
.press-images {
    background: var(--bg-primary);
    padding: var(--spacing-2xl) var(--spacing-lg);
}

.press-images-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: var(--spacing-md);
}

.press-image-item {
    aspect-ratio: 16/9;
    border-radius: var(--radius-md);
    overflow: hidden;
}

.press-image-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #f5f5f7 0%, #e8e8ed 50%, #d2d2d7 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    font-size: var(--font-small);
    font-weight: 500;
}

.press-image-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Header */
.team-page-header {
    padding: 180px 0 80px;
    background: #f5f5f7;
    /* Distinct light gray background */
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.team-page-header h1 {
    font-size: 64px;
    letter-spacing: -0.02em;
    color: var(--text-primary);
}

/* Footer Updates */
.footer-column h3 {
    font-size: 24px;
    /* Larger "Illumix" logo text */
    font-weight: 700;
    margin-bottom: var(--spacing-md);
    letter-spacing: -0.01em;
}

/* Target specifically the first column header which is "ILLUMIX" */
.footer-column:first-child h3 {
    font-size: 40px;
    /* Much larger for main logo */
    letter-spacing: -0.02em;
}



.footer-links a[href="#contact"]:hover,
.footer-links a[href*="contact"]:hover {
    border-color: var(--accent-blue);
    color: var(--accent-blue);
}
/* =========================================
   HOMEPAGE: WHAT PEOPLE ARE SAYING
   ========================================= */
.what-people-saying {
    padding: var(--spacing-3xl) var(--spacing-lg);
    background: var(--bg-secondary);
}

.what-people-saying .section-title {
    text-align: center;
    margin-bottom: 60px;
}

/* Three Cards in a Row - Unequal Widths */
.quote-cards-row {
    display: grid;
    grid-template-columns: 1fr 1.3fr 1fr; /* Middle card wider */
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto 40px;
}

.quote-card {
    background: white;
    padding: 32px;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    transition: transform var(--transition-fast), box-shadow var(--transition-fast);
    display: flex;
    flex-direction: column;
    min-height: 280px;
}

.quote-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.quote-text {
    font-size: 17px;
    line-height: 1.6;
    color: var(--text-primary);
    margin-bottom: 20px;
    font-weight: 500;
    letter-spacing: -0.01em;
    font-style: normal;
}

.quote-author {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-top: auto;
}

.quote-author strong {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
}

.quote-author span {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.4;
}

/* Press Logos and Button - Horizontal Row */
.press-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
}

.press-logo-card {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
}

.press-logo-card::before {
    content: '';
    position: absolute;
    inset: -8px;
    background: radial-gradient(ellipse at center, rgba(0, 113, 227, 0) 0%, transparent 70%);
    border-radius: 12px;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.press-logo-card:hover::before {
    opacity: 1;
    background: radial-gradient(ellipse at center, rgba(0, 113, 227, 0.08) 0%, transparent 70%);
}

.press-logo-card:hover {
    transform: translateY(-2px) scale(1.05);
}

.press-logo-card img {
    height: 24px;
    width: auto;
    object-fit: contain;
    filter: none;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

/* Individual logo sizing adjustments */
.press-logo-card img[alt="MIT Technology Review"] {
    height: 32px;
}

.press-logo-card img[alt="Forbes"] {
    height: 112px;
}

.press-logo-card img[alt="Fortune"] {
    height: 22px;
}

.press-logo-card:hover img {
    opacity: 1;
}

/* Compact Press Button */
.press-cta-button {
    display: inline-flex;
    align-items: center;
    align-self: center;
    white-space: nowrap;
    padding: 12px 22px;
}

/* Mobile Responsive */
@media (max-width: 900px) {
    .quote-cards-row {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .press-row {
        gap: 20px;
    }

    .press-cta-button {
        width: 100%;
        justify-content: center;
    }
}

/* =========================================
   COMPREHENSIVE MOBILE/TABLET IMPROVEMENTS
   ========================================= */

/* Tablet: 768px - 1100px */
@media (max-width: 1100px) {
    /* Technology grid - 2x2 on tablet */
    .tech-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    /* Team panel on homepage */
    .team-panel {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .team-panel-image {
        max-width: 450px;
        margin: 0 auto;
    }

    /* Use cases */
    .use-cases-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .use-cases-video {
        order: -1;
        max-width: 600px;
        margin: 0 auto;
    }

    /* Quote cards */
    .quote-cards-row {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    /* Section titles - slightly smaller on tablet */
    .section-title {
        font-size: 36px;
    }
}

/* Mobile: < 768px */
@media (max-width: 768px) {
    /* Global mobile improvements */
    body {
        font-size: 16px;
    }

    /* Reduce section padding on mobile */
    .technology,
    .team-panel-section,
    .use-cases,
    .what-people-saying {
        padding: 48px 16px;
    }

    /* Section titles mobile size */
    .section-title {
        font-size: 28px;
        line-height: 1.15;
    }

    .subtitle {
        font-size: 17px;
    }

    /* Technology section mobile */
    .technology-container {
        padding: 40px 20px;
        border-radius: 20px;
    }

    .technology-subtitle {
        font-size: 16px;
    }

    .tech-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .tech-card {
        padding: 20px;
    }

    .tech-card h3 {
        font-size: 18px;
    }

    .tech-icon {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }

    /* Team panel mobile */
    .team-panel-container {
        padding: 0 16px;
    }

    .team-panel {
        gap: 32px;
    }

    .team-panel-image {
        max-width: 100%;
    }

    .team-panel-content .section-title {
        font-size: 28px;
        margin-bottom: 20px;
    }

    .team-description p {
        font-size: 16px;
    }

    /* Use cases mobile */
    .use-cases-text h2 {
        font-size: 28px;
    }

    .use-cases-subtitle {
        font-size: 16px;
    }

    .use-case-item {
        font-size: 16px;
        padding: 12px 0;
    }

    .use-cases-video {
        max-width: 100%;
        aspect-ratio: 16/9;
    }

    /* Quote cards mobile */
    .quote-card {
        padding: 24px;
        min-height: auto;
    }

    .quote-text {
        font-size: 15px;
    }

    /* Press logos mobile */
    .press-row {
        gap: 16px;
        justify-content: center;
    }

    .press-logo-card {
        padding: 6px;
    }

    .press-logo-card img {
        height: 20px;
    }

    .press-logo-card img[alt="MIT Technology Review"] {
        height: 26px;
    }

    .press-logo-card img[alt="Forbes"] {
        height: 84px;
    }

    .press-logo-card img[alt="Fortune"] {
        height: 18px;
    }

    /* Buttons - ensure touch-friendly size */
    .btn {
        padding: 14px 24px;
        font-size: 16px;
        min-height: 48px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    /* Logo carousel mobile */
    /* Full width carousel on mobile */
    .trusted-by {
        padding: var(--spacing-lg) 0;
    }

    .trusted-by .section-container {
        max-width: 100%;
        padding: 0;
    }

    .logo-carousel {
        width: 100vw;
        margin-left: calc(-50vw + 50%);
    }

    .logo-track {
        gap: 40px;
    }

    .logo-item {
        height: 48px;
        min-width: 80px;
        max-width: 120px;
    }

    .logo-item img {
        max-height: 48px;
    }

    /* Footer mobile adjustments */
    .footer-logo-img {
        height: 80px;
    }

    .footer-tagline {
        margin-top: -10px;
        font-size: 14px;
    }

    .footer-cta-btn {
        padding: 12px 20px;
        font-size: 14px;
    }
}

/* Small mobile: < 480px */
@media (max-width: 480px) {
    /* Even smaller adjustments for small phones */
    .hero-title {
        font-size: 26px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .section-title {
        font-size: 24px;
    }

    .technology-container {
        padding: 32px 16px;
    }

    .tech-card {
        padding: 16px;
    }

    .quote-card {
        padding: 20px;
    }

    .quote-text {
        font-size: 14px;
    }

    .press-row {
        flex-direction: column;
        align-items: center;
    }

    .press-logo-card {
        margin: 4px 0;
    }
}

/* =========================================
   PRESS & MEDIA PAGE COMPONENTS
   ========================================= */
.press-panel-section {
    padding: 100px 0;
    min-height: auto;
    /* Allow content to dictate height */
}

.press-grid-logos {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    /* 3 columns for logos */
    gap: 24px;
    align-items: center;
    justify-content: center;
}

.press-grid-logo-item {
    background: white;
    height: 80px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.2s ease;
}

.press-grid-logo-item:hover {
    border-color: rgba(0, 0, 0, 0.15);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

/* Podcast Cards */
.podcast-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    margin-bottom: 48px;
}

.podcast-card {
    background: var(--bg-primary);
    /* White card on gray panel */
    padding: 40px;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.podcast-label {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--accent-blue);
    margin-bottom: 16px;
}

.podcast-title {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 12px;
    line-height: 1.2;
}

.podcast-hosts {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.podcast-desc {
    font-size: 16px;
    line-height: 1.5;
    color: var(--text-secondary);
    margin-bottom: 32px;
    flex-grow: 1;
}

/* More Conversations List */
.conversations-list {
    background: var(--bg-primary);
    border-radius: 20px;
    padding: 32px;
}

.conversation-item {
    display: grid;
    grid-template-columns: 200px 1fr auto;
    gap: 24px;
    padding: 24px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    align-items: center;
}

.conversation-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.conversation-item:first-child {
    padding-top: 0;
}

.conv-name {
    font-weight: 600;
    font-size: 16px;
}

.conv-desc {
    color: var(--text-secondary);
    font-size: 15px;
}

/* LinkedIn Feed Area */
.linkedin-feed-placeholder {
    background: #f3f2ef;
    /* LinkedIn bg color approx */
    height: 600px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    font-weight: 500;
}

/* Responsive */
@media (max-width: 768px) {
    .quote-cards-grid {
        grid-template-columns: 1fr;
    }

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

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

    .conversation-item {
        grid-template-columns: 1fr;
        gap: 8px;
    }
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: var(--spacing-xs);
}

.footer-links a {
    color: var(--text-secondary);
    font-size: var(--font-small);
    transition: color var(--transition-fast);
}

.footer-links a:hover {
    color: var(--accent-blue);
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: var(--spacing-md);
    border-top: 1px solid var(--border-color);
    text-align: center;
    color: var(--text-secondary);
    font-size: var(--font-small);
}

/* PRESS IMAGES SECTION */
.press-images {
    background: var(--bg-primary);
    padding: var(--spacing-2xl) var(--spacing-lg);
}

.press-images-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: var(--spacing-md);
}

.press-image-item {
    aspect-ratio: 16/9;
    background: #f5f5f7;
    border-radius: var(--radius-md);
    overflow: hidden;
}

.press-image-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* SCROLL ANIMATIONS */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* REDUCED MOTION */
@media (prefers-reduced-motion: reduce) {

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

    .logo-track {
        animation: none;
    }

    .hero-title {
        white-space: normal;
    }
}

/* PRESS PAGE STYLES */
/* Panel 1: The Coverage */
.press-featured-quote {
    padding: var(--spacing-md);
    border-left: 4px solid var(--accent-blue);
}

.press-article-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
}

.press-grid-item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--spacing-md);
    background: white;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
    font-weight: 600;
    color: var(--text-secondary);
    transition: all var(--transition-fast);
    text-align: center;
    line-height: 1.2;
}

.press-grid-item:hover {
    border-color: var(--accent-blue);
    color: var(--accent-blue);
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

/* Panel 2: Conversations */
.conversations-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    margin-bottom: 60px;
}

@media (max-width: 768px) {
    .conversations-grid {
        grid-template-columns: 1fr;
    }
}

.conversation-card {
    background: white;
    padding: 40px;
    border-radius: 24px;
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.more-conversations {
    max-width: 800px;
    margin: 0 auto;
}

.conversation-list-item {
    border-top: 1px solid var(--border-color);
    padding: 24px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Panel 3: Founder Perspectives */
.founder-posts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-bottom: 60px;
}

@media (max-width: 900px) {
    .founder-posts-grid {
        grid-template-columns: 1fr;
    }
}

.post-card {
    background: var(--bg-secondary);
    padding: 32px;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.post-topic {
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 1px;
    color: var(--text-secondary);
    margin-bottom: 12px;
    font-weight: 600;
}

.post-engagement {
    font-size: 13px;
    color: var(--text-secondary);
    margin-bottom: 20px;
    margin-top: auto;
    /* Pushes to bottom if flex column */
}

.post-link {
    color: var(--accent-blue);
    font-weight: 600;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
}


/* =========================================
   TEAM PAGE LOGOS
   ========================================= */
.award-logo-img {
    height: 48px;
    width: auto;
    display: inline-block;
    margin-right: 24px;
    filter: grayscale(100%);
    opacity: 0.8;
}

.company-logo-img {
    height: 32px;
    width: auto;
    display: inline-block;
    margin: 0 20px;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.company-logo-img:hover {
    filter: grayscale(0%);
    opacity: 1;
}

.overview-logos {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 20px;
    margin-top: 40px;
}

/* =========================================
   PREMIUM DARK FOOTER
   ========================================= */
.footer-premium {
    position: relative;
    background: linear-gradient(180deg, #0a0a0a 0%, #141414 100%);
    padding: 40px 0 24px;
    overflow: hidden;
}

.footer-glow {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 300px;
    background: radial-gradient(ellipse at center, rgba(99, 102, 241, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

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

/* Middle Section */
.footer-middle {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 0 0 30px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.footer-logo-link {
    display: inline-block;
    transition: opacity 0.3s ease;
}

.footer-logo-link:hover {
    opacity: 0.8;
}

.footer-logo-img {
    height: 120px;
    width: auto;
    filter: brightness(0) invert(1);
}

.footer-tagline {
    color: rgba(255, 255, 255, 0.5);
    font-size: 15px;
    font-weight: 400;
    letter-spacing: -0.01em;
    margin: -20px 0 0 0;
}

/* CTA Button - Glassmorphic */
.footer-cta-group {
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-end;
    gap: 20px;
    padding-top: 36px;
}

.footer-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 12px;
    color: #fff;
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.footer-cta-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(99, 102, 241, 0.15);
}

.footer-cta-btn svg {
    transition: transform 0.3s ease;
}

.footer-cta-btn:hover svg {
    transform: translate(3px, -3px);
}

/* LinkedIn Link - Bright and visible with working hover */
.footer-linkedin-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #ffffff;
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-linkedin-link:hover {
    color: #0A66C2;
}

.footer-linkedin-link .linkedin-icon {
    fill: #ffffff;
    transition: fill 0.3s ease;
}

.footer-linkedin-link:hover .linkedin-icon {
    fill: #0A66C2;
}

/* Navigation Grid - 2 columns now */
.footer-nav {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 60px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-nav-column {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-nav-title {
    color: rgba(255, 255, 255, 0.4);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin: 0;
}

.footer-nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.footer-nav-list a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 15px;
    font-weight: 400;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-nav-list a:hover {
    color: #fff;
}

/* Social Links */
.footer-social-links {
    display: flex;
    gap: 16px;
}

.footer-social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: rgba(255, 255, 255, 0.6);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.footer-social-link:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    color: #fff;
    transform: translateY(-2px);
}

/* Bottom Bar */
.footer-bottom-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
}

.footer-copyright {
    color: rgba(255, 255, 255, 0.35);
    font-size: 13px;
    font-weight: 400;
    margin: 0;
}

.footer-legal {
    display: flex;
    align-items: center;
    gap: 16px;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.35);
    font-size: 13px;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-legal a:hover {
    color: rgba(255, 255, 255, 0.7);
}

.footer-dot {
    color: rgba(255, 255, 255, 0.2);
    font-size: 10px;
}

/* Responsive */
@media (max-width: 768px) {
    .footer-premium {
        padding: 60px 0 32px;
    }

    .footer-container {
        padding: 0 24px;
    }

    .footer-middle {
        flex-direction: column;
        align-items: flex-start;
        gap: 32px;
        padding-bottom: 40px;
    }

    .footer-cta-group {
        align-items: flex-start;
    }

    .footer-nav {
        grid-template-columns: 1fr;
        gap: 40px;
        padding-bottom: 40px;
    }

    .footer-bottom-bar {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
}
