:root {
    --bright-purple: #c084fc;
    --bright-purple-light: #ddd6fe;
    --bright-purple-dark: #a855f7;
    --bright-yellow: #fbbf24;
    --bright-yellow-light: #fef3c7;
    --bright-yellow-dark: #f59e0b;
    --neon-blue: #00f5ff;
    --neon-pink: #ff007f;
    --glow-purple: rgba(192, 132, 252, 0.3);
    --glow-yellow: rgba(251, 191, 36, 0.3);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Space Grotesk', 'Exo 2', sans-serif;
    line-height: 1.6;
    color: #e2e8f0;
    background: #000000;
    letter-spacing: 0.02em;
}

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

.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    border-bottom: 1px solid #333;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-text {
    font-family: 'Orbitron', monospace;
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(45deg, var(--bright-purple) 0%, var(--bright-yellow) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 8px var(--glow-purple)) drop-shadow(0 0 10px var(--glow-yellow));
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.logo-img {
    height: 40px;
    width: auto;
    object-fit: contain;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    font-family: 'Rajdhani', sans-serif;
    text-decoration: none;
    color: #e2e8f0;
    font-weight: 600;
    transition: all 0.3s ease;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-size: 1rem;
}

.nav-links a:hover {
    color: var(--bright-purple);
    text-shadow: 0 0 5px var(--glow-purple);
}

.hero {
    min-height: 100vh;
    background: #000000;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

.hero-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(139, 127, 184, 0.8) 0%, rgba(184, 168, 118, 0.8) 100%);
    z-index: -1;
}


.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    padding: 0 20px;
}

.hero-super-title {
    font-family: 'Orbitron', monospace;
    font-size: 4.5rem;
    font-weight: 900;
    margin-bottom: 4rem;
    line-height: 1.1;
    text-align: center;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.gradient-text-super {
    background: linear-gradient(45deg, var(--neon-pink), var(--bright-purple), var(--bright-yellow), var(--neon-blue));
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 3s ease-in-out infinite;
    filter: drop-shadow(0 0 15px var(--glow-purple)) drop-shadow(0 0 20px var(--glow-yellow));
}

.hero-title {
    font-family: 'Rajdhani', sans-serif;
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.gradient-text {
    background: linear-gradient(45deg, var(--bright-purple), var(--bright-yellow), var(--neon-blue));
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 3s ease-in-out infinite;
    filter: drop-shadow(0 0 10px var(--glow-purple)) drop-shadow(0 0 12px var(--glow-yellow));
}

@keyframes gradientShift {
    0%, 100% { filter: hue-rotate(0deg); }
    50% { filter: hue-rotate(45deg); }
}

.hero-subtitle {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 2rem;
    opacity: 1;
    line-height: 1.6;
    letter-spacing: 0.03em;
    text-shadow: 0 0 8px var(--glow-purple), 0 0 12px var(--glow-yellow);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary, .btn-secondary {
    font-family: 'Rajdhani', sans-serif;
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.btn-primary {
    background: linear-gradient(45deg, var(--bright-purple), var(--bright-yellow));
    color: #ffffff;
    border: none;
    box-shadow: 0 0 10px var(--glow-purple), 0 0 15px var(--glow-yellow);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.btn-secondary {
    background: transparent;
    color: #fff;
    border: 2px solid var(--bright-purple);
}

.btn-secondary:hover {
    background: linear-gradient(45deg, var(--bright-purple), var(--bright-yellow));
    color: #ffffff;
    border-color: transparent;
}

.section-title {
    font-family: 'Orbitron', monospace;
    text-align: center;
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 3rem;
    background: linear-gradient(45deg, var(--bright-purple), var(--bright-yellow));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    filter: drop-shadow(0 0 8px var(--glow-purple)) drop-shadow(0 0 10px var(--glow-yellow));
}

/* Quote Section */
.quote-section {
    padding: 4rem 0;
    background: #0a0a0a;
    position: relative;
    overflow: hidden;
}

.quote-container {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 3rem;
    background: linear-gradient(45deg, rgba(139, 127, 184, 0.2), rgba(184, 168, 118, 0.2));
    border-radius: 20px;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(139, 127, 184, 0.3);
    box-shadow: 0 8px 32px rgba(139, 127, 184, 0.2);
}

.featured-quote {
    font-size: 2rem;
    font-weight: 600;
    font-style: italic;
    color: white;
    line-height: 1.4;
    margin: 0 0 2rem 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.quote-attribution {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    font-weight: 500;
}

.quote-author {
    display: inline-block;
}

/* Mobile responsive for quote section */
@media (max-width: 768px) {
    .quote-section {
        padding: 3rem 0;
    }
    
    .quote-container {
        padding: 3rem 2rem;
        margin: 0 1rem;
        max-width: calc(100% - 2rem);
    }
    
    .featured-quote {
        font-size: 1.6rem;
    }
    
    .quote-attribution {
        font-size: 1rem;
    }
}

/* Problem Section */
.problem-section {
    padding: 5rem 0;
    background: #0a0a0a;
}

.problem-content {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: start;
}

.column-title {
    background: linear-gradient(45deg, var(--bright-purple), var(--bright-yellow));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-align: left;
}

.problem-text .column-title {
    margin-bottom: 2.5rem;
}

.problem-text .column-title:nth-of-type(2) {
    margin-top: 3rem;
}

.opportunity-title {
    background: linear-gradient(45deg, var(--bright-purple), var(--bright-yellow));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 1.2rem;
    font-weight: 600;
    margin: 2.5rem 0 1.5rem 0;
    text-align: left;
}

.chart-container .column-title {
    margin-left: 30px;
}

.problem-text p {
    color: #a0aec0;
    font-size: 1.1rem;
    line-height: 1.8;
    margin: 0;
}

.market-chart {
    display: flex;
    justify-content: flex-start;
}

.chart-container {
    text-align: left;
    width: 100%;
    max-width: 600px;
}

.fan-chart {
    position: relative;
    margin-bottom: 0;
}

.chart-svg {
    width: 100%;
    height: auto;
    max-width: 500px;
    margin-top: -40px;
    margin-left: -30px;
    filter: drop-shadow(0 0 15px rgba(139, 127, 184, 0.3));
}

.company-tooltip {
    position: absolute;
    background: linear-gradient(45deg, var(--bright-purple), var(--bright-yellow));
    color: white;
    padding: 0.8rem 1.2rem;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    pointer-events: none;
    opacity: 0;
    transform: translate(-50%, -50%);
    transition: opacity 0.3s ease;
    z-index: 10;
    box-shadow: 0 4px 15px rgba(139, 127, 184, 0.3);
}

.company-tooltip.visible {
    opacity: 1;
}

/* Fan chart animations */
.fan-segment {
    transform-origin: center;
    transition: all 0.4s ease;
    cursor: pointer;
    filter: brightness(1);
}

.fan-segment:hover {
    filter: brightness(1.2);
    transform: scale(1.15);
}

.fan-segment-text {
    fill: white;
    font-size: 14px;
    font-weight: 600;
    text-anchor: middle;
    pointer-events: none;
    opacity: 0.9;
}

/* Mobile responsive for problem section */
@media (max-width: 768px) {
    .problem-section {
        padding: 3rem 0;
    }
    
    .problem-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .problem-text p {
        font-size: 1rem;
        line-height: 1.7;
    }
    
    .column-title {
        font-size: 1.1rem;
        margin-bottom: 1.2rem;
    }
    
    .opportunity-title {
        font-size: 1.1rem;
        margin: 2rem 0 1.2rem 0;
    }
    
    .chart-legend {
        align-items: center;
    }
}

/* Remodeling Section with Moving Glow Background */
.remodeling-section {
    position: relative;
    padding: 6rem 0;
    background: #000000;
    overflow: hidden;
    min-height: 400px;
}

.remodeling-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: 
        radial-gradient(circle at 25% 30%, rgba(139, 127, 184, 0.8) 0%, rgba(139, 127, 184, 0.4) 25%, transparent 60%),
        radial-gradient(circle at 75% 70%, rgba(184, 168, 118, 0.7) 0%, rgba(184, 168, 118, 0.3) 25%, transparent 55%),
        radial-gradient(circle at 50% 20%, rgba(155, 140, 200, 0.6) 0%, rgba(155, 140, 200, 0.2) 30%, transparent 50%),
        radial-gradient(circle at 80% 40%, rgba(200, 180, 140, 0.5) 0%, rgba(200, 180, 140, 0.2) 35%, transparent 65%);
    filter: blur(100px) saturate(2);
    animation: moveGlow 25s ease-in-out infinite;
    will-change: transform;
    z-index: 1;
}

.remodeling-section::after {
    content: '';
    position: absolute;
    top: -40%;
    left: -40%;
    width: 180%;
    height: 180%;
    background: 
        radial-gradient(circle at 60% 15%, rgba(160, 140, 220, 0.6) 0%, rgba(160, 140, 220, 0.3) 20%, transparent 45%),
        radial-gradient(circle at 20% 85%, rgba(220, 190, 130, 0.7) 0%, rgba(220, 190, 130, 0.3) 25%, transparent 50%),
        radial-gradient(circle at 85% 25%, rgba(139, 127, 184, 0.5) 0%, rgba(139, 127, 184, 0.2) 30%, transparent 55%),
        radial-gradient(circle at 15% 60%, rgba(184, 168, 118, 0.6) 0%, rgba(184, 168, 118, 0.2) 25%, transparent 60%),
        radial-gradient(circle at 45% 75%, rgba(170, 150, 210, 0.4) 0%, rgba(170, 150, 210, 0.1) 35%, transparent 65%);
    filter: blur(90px) saturate(1.8);
    animation: moveGlow2 18s ease-in-out infinite reverse;
    will-change: transform;
    z-index: 2;
}

.remodeling-section .container {
    position: relative;
    z-index: 3;
}

.remodeling-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 4rem;
    min-height: 300px;
}

.remodeling-left {
    flex: 1;
}

.remodeling-right {
    flex-shrink: 0;
}

.remodeling-title {
    color: white;
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    text-align: left;
    line-height: 1.2;
}

.remodeling-text {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    line-height: 1.7;
    text-align: left;
    max-width: 800px;
    margin: 0;
}

.explore-btn {
    display: inline-block;
    padding: 1.2rem 2.5rem;
    background: transparent;
    color: white;
    text-decoration: none;
    border: 2px solid white;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.explore-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    transition: left 0.3s ease;
}

.explore-btn:hover {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 20px rgba(255, 255, 255, 0.2);
}

.explore-btn:hover::before {
    left: 0;
}

.explore-btn:active {
    transform: translateY(-1px);
}

@keyframes moveGlow {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg) scale(1);
    }
    20% {
        transform: translate(40px, -60px) rotate(72deg) scale(1.15);
    }
    40% {
        transform: translate(-30px, 50px) rotate(144deg) scale(0.85);
    }
    60% {
        transform: translate(60px, 20px) rotate(216deg) scale(1.25);
    }
    80% {
        transform: translate(-50px, -40px) rotate(288deg) scale(0.95);
    }
}

@keyframes moveGlow2 {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg) scale(1);
    }
    25% {
        transform: translate(-35px, 55px) rotate(100deg) scale(1.3);
    }
    50% {
        transform: translate(45px, -25px) rotate(200deg) scale(0.7);
    }
    75% {
        transform: translate(-15px, -65px) rotate(300deg) scale(1.1);
    }
}

/* Mobile responsive for remodeling section */
@media (max-width: 768px) {
    .remodeling-section {
        padding: 4rem 0;
        min-height: 300px;
    }
    
    .remodeling-content {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }
    
    .remodeling-title {
        font-size: 2.5rem;
        margin-bottom: 1.5rem;
    }
    
    .remodeling-text {
        font-size: 1rem;
        line-height: 1.6;
        text-align: center;
    }
    
    .explore-btn {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
}

/* Accessibility: Reduce motion for users who prefer it */
@media (prefers-reduced-motion: reduce) {
    .remodeling-section::before,
    .remodeling-section::after {
        animation: none;
    }
}

.features {
    padding: 5rem 0;
    background: #111111;
}

.features-content {
    max-width: 900px;
    margin: 0 auto 4rem auto;
    text-align: center;
}

.features-description {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #a0aec0;
    margin: 0;
}

/* Mobile responsive for features section */
@media (max-width: 768px) {
    .features {
        padding: 3rem 0;
    }
    
    .features-content {
        margin: 0 auto 3rem auto;
    }
    
    .features-description {
        font-size: 1.1rem;
        line-height: 1.7;
    }
}

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

.feature-card {
    background: #1a1a1a;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(139, 127, 184, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
    border: 1px solid #333;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(139, 127, 184, 0.3);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature-image {
    width: 60px;
    height: 60px;
    margin-bottom: 1rem;
    object-fit: contain;
}

.feature-demo-img {
    width: 100%;
    max-width: 250px;
    margin-top: 1rem;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.feature-demo-img:hover {
    transform: scale(1.05);
}

.code-screenshot {
    width: 100%;
    max-width: 300px;
    margin-bottom: 1rem;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    border: 2px solid #ddd;
}

.demo-video {
    width: 100%;
    max-width: 500px;
    margin: 1rem 0;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

.workflow-image {
    width: 100%;
    max-width: 600px;
    margin: 1rem 0;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

.image-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin: 2rem 0;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

.gallery-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.gallery-item-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: white;
    padding: 1rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-item-overlay {
    transform: translateY(0);
}

.video-container {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
    margin: 2rem 0;
}

.video-container video,
.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 12px;
}

.media-upload {
    border: 2px dashed #ddd;
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    margin: 2rem 0;
    transition: border-color 0.3s ease;
}

.media-upload:hover {
    border-color: #667eea;
}

.upload-icon {
    font-size: 3rem;
    color: #ddd;
    margin-bottom: 1rem;
}

.media-upload input[type="file"] {
    display: none;
}

.upload-button {
    background: #667eea;
    color: white;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    transition: background 0.3s ease;
}

.upload-button:hover {
    background: #5a6fd8;
}

.thumbnail {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 8px;
    margin: 0.5rem;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.thumbnail:hover {
    transform: scale(1.1);
}

.modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.9);
    backdrop-filter: blur(5px);
}

.modal-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 90%;
    max-height: 90%;
    border-radius: 12px;
}

.modal img,
.modal video {
    width: 100%;
    height: auto;
    border-radius: 12px;
}

.close-modal {
    position: absolute;
    top: 20px;
    right: 30px;
    color: white;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    z-index: 10001;
}

.close-modal:hover {
    opacity: 0.7;
}

.feature-card h3 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #e2e8f0;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-shadow: 0 0 5px var(--glow-purple);
}

.feature-card p {
    font-family: 'Exo 2', sans-serif;
    color: #a0aec0;
    line-height: 1.6;
    letter-spacing: 0.02em;
    font-weight: 400;
}

.comparison {
    padding: 5rem 0;
    background: #111111;
}

.comparison-table {
    background: #1a1a1a;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(139, 127, 184, 0.2);
    border: 1px solid #333;
}

.comparison-header {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    background: linear-gradient(45deg, var(--bright-purple) 0%, var(--bright-yellow) 100%);
    color: white;
    font-weight: 600;
}

.comparison-header > div {
    padding: 1.5rem;
    text-align: center;
}

.comparison-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    border-bottom: 1px solid #333;
}

.comparison-row:last-child {
    border-bottom: none;
}

.comparison-row > div {
    padding: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.feature-name {
    font-weight: 600;
    color: #e2e8f0;
    justify-content: flex-start !important;
    text-align: left !important;
}

.checkmark {
    color: #10b981;
    font-weight: bold;
    margin-right: 0.5rem;
}

.crossmark {
    color: #ef4444;
    font-weight: bold;
    margin-right: 0.5rem;
}

.comparison-conclusion {
    margin: 0 auto 4rem auto;
    text-align: center;
    max-width: 800px;
}

.conclusion-text {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #a0aec0;
    margin: 0;
}

.conclusion-text strong {
    background: linear-gradient(45deg, var(--bright-purple), var(--bright-yellow));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 600;
}

.limited {
    color: #f59e0b;
    font-weight: bold;
    margin-right: 0.5rem;
}

.demo {
    padding: 5rem 0;
    background: #111111;
}

.about-section {
    padding: 5rem 0;
    background: #000000;
}

.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: start;
}

.about-text h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #e2e8f0;
    margin-bottom: 1rem;
    margin-top: 2rem;
}

.about-text h3:first-child {
    margin-top: 0;
}

.about-text p {
    color: #a0aec0;
    line-height: 1.8;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.about-stats {
    display: grid;
    gap: 1.5rem;
}

.stat-card {
    background: #1a1a1a;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    border: 1px solid #333;
    box-shadow: 0 5px 15px rgba(139, 127, 184, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(139, 127, 184, 0.3);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(45deg, var(--bright-purple), var(--bright-yellow));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
    display: block;
}

.stat-label {
    color: #a0aec0;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 500;
}

.partner-logos {
    display: none;
}

.logo-image {
    height: 100px;
    width: auto;
    max-width: 300px;
    object-fit: contain;
    filter: none;
    transition: all 0.3s ease;
    opacity: 1;
    background: #ffffff;
    padding: 0.25rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border: none;
}

.logo-image:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(139, 127, 184, 0.2);
    border-color: rgba(139, 127, 184, 0.3);
}

.demo-container {
    background: #1a1a1a;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(139, 127, 184, 0.2);
    border: 1px solid #333;
}

.demo-tabs {
    display: flex;
    background: #2a2a2a;
}

.tab-btn {
    flex: 1;
    padding: 1rem;
    border: none;
    background: transparent;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
}

.tab-btn.active {
    background: linear-gradient(45deg, var(--bright-purple), var(--bright-yellow));
    color: white;
    font-weight: 600;
}

.tab-content {
    display: none;
    padding: 2rem;
}

.tab-content.active {
    display: block;
}

.demo-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.demo-before, .demo-after {
    background: #2a2a2a;
    border-radius: 10px;
    padding: 1.5rem;
    border: 1px solid #333;
}

.demo-before h4, .demo-after h4 {
    margin-bottom: 1rem;
    color: #e2e8f0;
}

pre {
    background: #1a1a1a;
    color: #f8f8f2;
    padding: 1rem;
    border-radius: 8px;
    overflow-x: auto;
    font-size: 0.9rem;
    line-height: 1.4;
}

.demo-explanation ul {
    list-style: none;
    padding: 0;
}

.demo-explanation li {
    padding: 1rem 0;
    border-bottom: 1px solid #333;
    font-size: 1.1rem;
    color: #e2e8f0;
}

.demo-explanation li:last-child {
    border-bottom: none;
}

.footer {
    background: linear-gradient(45deg, #1a1a1a 0%, #2a2a2a 100%);
    color: white;
    padding: 3rem 0;
    border-top: 2px solid var(--bright-purple);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-text h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.footer-text p {
    opacity: 0.8;
    max-width: 500px;
}

.footer-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.footer-contact {
    margin-top: 1.5rem;
}

.footer-contact h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: #fff;
    font-weight: 600;
}

.contact-links {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
}

.contact-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #e2e8f0;
    text-decoration: none;
    padding: 0.25rem 0;
    border-radius: 4px;
    transition: all 0.3s ease;
    font-size: 1rem;
    opacity: 0.8;
}

.contact-link:hover {
    color: var(--bright-purple);
    opacity: 1;
}

.contact-icon {
    font-size: 1rem;
}

.playground {
    padding: 5rem 0;
    background: #000000;
}

.section-subtitle {
    text-align: center;
    font-size: 1.5rem;
    color: #ffffff;
    margin-bottom: 3rem;
    font-weight: 700;
}

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

.video-card {
    background: #1a1a1a;
    border-radius: 15px;
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(139, 127, 184, 0.2);
    border: 1px solid #333;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.video-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(139, 127, 184, 0.3);
}

.demo-gif {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
    margin-bottom: 1rem;
    transition: transform 0.3s ease;
}

.demo-gif:hover {
    transform: scale(1.02);
}

.video-card h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #e2e8f0;
    margin: 0;
    line-height: 1.4;
}

.playground-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}

#languageSelect {
    padding: 0.75rem 1rem;
    border: 2px solid var(--bright-purple);
    border-radius: 8px;
    font-size: 1rem;
    background: #2a2a2a;
    color: #e2e8f0;
    cursor: pointer;
}

.code-editor {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.editor-section {
    background: #2a2a2a;
    border-radius: 10px;
    padding: 1.5rem;
    box-shadow: 0 2px 10px rgba(139, 127, 184, 0.1);
    border: 1px solid #333;
}

.editor-section h4 {
    margin-bottom: 1rem;
    color: #e2e8f0;
    font-weight: 600;
}

#codeInput {
    width: 100%;
    min-height: 200px;
    padding: 1rem;
    border: 2px solid var(--bright-purple);
    border-radius: 8px;
    font-family: 'Monaco', 'Menlo', 'Ubuntu Mono', monospace;
    font-size: 0.9rem;
    line-height: 1.4;
    resize: vertical;
    background: #1a1a1a;
    color: #f8f8f2;
}

.comparison-results {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 2rem;
}

.result-section {
    background: #2a2a2a;
    border-radius: 10px;
    padding: 1.5rem;
    box-shadow: 0 2px 10px rgba(139, 127, 184, 0.1);
    border: 1px solid #333;
}

.result-section h4 {
    margin-bottom: 1rem;
    color: #e2e8f0;
}

.score {
    display: inline-block;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    margin-bottom: 1rem;
}

.claude-score {
    background: linear-gradient(45deg, var(--bright-purple), var(--bright-yellow));
    color: white;
}

.cursor-score {
    background: #666;
    color: white;
}

.result-section pre {
    margin: 1rem 0;
    font-size: 0.85rem;
}

.result-section ul {
    list-style: none;
    padding: 0;
}

.result-section li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #333;
    font-size: 0.9rem;
    color: #a0aec0;
}

.result-section li:last-child {
    border-bottom: none;
}

.feedback-section {
    padding: 5rem 0;
    background: #111111;
}

.community-button-container {
    text-align: center;
    margin-bottom: 3rem;
}

.community-btn {
    font-size: 1.2rem;
    padding: 1.2rem 2.5rem;
    margin: 0;
}

.feedback-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.feedback-form {
    background: #1a1a1a;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(139, 127, 184, 0.2);
    border: 1px solid #333;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #e2e8f0;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid var(--bright-purple);
    border-radius: 8px;
    font-size: 1rem;
    background: #2a2a2a;
    color: #e2e8f0;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--bright-yellow);
    box-shadow: 0 0 0 3px rgba(184, 168, 118, 0.1);
}

.rating-stars {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.star {
    font-size: 1.5rem;
    color: #666;
    cursor: pointer;
    transition: color 0.2s ease;
}

.star.active,
.star:hover {
    color: var(--bright-yellow);
}

.testimonial-card {
    background: #1a1a1a;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(139, 127, 184, 0.2);
    border: 1px solid #333;
}

.testimonial-card h3 {
    margin-bottom: 1.5rem;
    color: #e2e8f0;
    text-align: center;
    font-size: 1.3rem;
}

.testimonial-quote {
    font-style: italic;
    font-size: 1.1rem;
    line-height: 1.6;
    color: #e2e8f0;
    margin: 0 0 1.5rem 0;
    padding: 1.5rem;
    background: #2a2a2a;
    border-radius: 10px;
    border-left: 4px solid;
    border-image: linear-gradient(45deg, var(--bright-purple), var(--bright-yellow)) 1;
    position: relative;
}

.testimonial-quote::before {
    content: '"';
    font-size: 3rem;
    color: var(--bright-purple);
    position: absolute;
    top: -10px;
    left: 10px;
    line-height: 1;
}

.testimonial-author {
    text-align: right;
    color: #e2e8f0;
}

.author-title {
    color: #a0aec0;
    font-size: 0.9rem;
}

.loading {
    opacity: 0.6;
    pointer-events: none;
}

/* Hide media management section from public view */
.media-upload-section {
    display: none !important;
}

/* Hide See Intelligence Cubed in Action section */
.demo {
    display: none !important;
}

.success-message {
    background: linear-gradient(45deg, var(--bright-purple), var(--bright-yellow));
    color: white;
    padding: 1rem;
    border-radius: 8px;
    margin-top: 1rem;
    text-align: center;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.3s ease;
}

.success-message.show {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 768px) {
    .hero {
        padding: 80px 0 20px 0;
        min-height: 90vh;
    }
    
    .hero-content {
        padding: 0 15px;
        max-width: 100%;
    }
    
    .hero-super-title {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-title {
        font-size: 1.5rem;
        margin-bottom: 1rem;
        line-height: 1.3;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 1.5rem;
        font-weight: 600;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 0.8rem;
    }
    
    .btn-primary, .btn-secondary {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
        width: 100%;
        max-width: 280px;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .feature-card {
        padding: 1.5rem;
    }
    
    .comparison-table {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    .comparison-header {
        display: none;
    }
    
    .comparison-row {
        display: block;
        border-bottom: 2px solid #444;
        margin-bottom: 1.5rem;
        border-radius: 8px;
        overflow: hidden;
    }
    
    .comparison-row > div {
        display: block;
        border-bottom: 1px solid #333;
        padding: 1rem;
        text-align: left !important;
        position: relative;
        padding-top: 2.5rem;
    }
    
    .comparison-row > div:first-child {
        background: #2a2a2a;
        font-weight: 600;
        color: var(--bright-purple);
        border-bottom: 2px solid var(--bright-purple);
        padding-top: 1rem;
        font-size: 1.1rem;
    }
    
    .comparison-row > div:not(:first-child)::before {
        content: attr(data-label);
        position: absolute;
        left: 0;
        top: 0;
        right: 0;
        padding: 0.5rem 1rem;
        font-size: 0.85rem;
        font-weight: 600;
        color: white;
    }
    
    .comparison-row > div:nth-child(2)::before {
        content: "Intelligence³";
        background: linear-gradient(45deg, var(--bright-purple) 0%, var(--bright-yellow) 100%);
    }
    
    .comparison-row > div:nth-child(3)::before {
        content: "Traditional AI";
        background: #666;
    }
    
    .comparison-row > div:last-child {
        border-bottom: none;
    }
    
    .comparison-conclusion {
        margin: 0 auto 3rem auto;
    }
    
    .conclusion-text {
        font-size: 1.1rem;
        line-height: 1.7;
    }
    
    .demo-split {
        grid-template-columns: 1fr;
    }
    
    .comparison-results {
        grid-template-columns: 1fr;
    }
    
    .feedback-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .videos-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 10px;
    }
    
    .video-card {
        padding: 1.5rem;
    }
    
    .partner-logos {
        gap: 1rem;
    }
    
    .logo-image {
        height: 60px;
        max-width: 200px;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
    
    .footer-contact {
        margin-top: 1rem;
        text-align: center;
    }
    
    .contact-links {
        align-items: center;
    }
    
    .nav-links {
        display: none;
    }
    
    .nav-container {
        padding: 0 15px;
    }
    
    .logo-text {
        font-size: 1.2rem;
    }
    
    .section-title {
        font-size: 2rem;
        margin-bottom: 2rem;
    }
    
    .section-subtitle {
        font-size: 1.2rem;
        margin-bottom: 2rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-text h3 {
        font-size: 1.3rem;
    }
    
    .about-text p {
        font-size: 1rem;
    }
    
    .stat-card {
        padding: 1.5rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .demo-gif {
        border-radius: 8px;
    }
    
    .video-card h3 {
        font-size: 1rem;
    }
    
    .hero-video {
        object-position: center;
    }
    
    .image-gallery {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }
    
    .demo-video {
        max-width: 100%;
    }
    
    .workflow-image {
        max-width: 100%;
    }
    
    .modal-content {
        max-width: 95%;
        max-height: 95%;
    }
    
    .features, .comparison, .playground, .about-section, .feedback-section {
        padding: 2.5rem 0;
    }
    
    .section-title {
        font-size: 1.8rem;
        margin-bottom: 1.5rem;
        padding: 0 15px;
    }
    
    .section-subtitle {
        font-size: 1.1rem;
        margin-bottom: 1.5rem;
        padding: 0 15px;
    }
    
    .form-group input, .form-group textarea {
        font-size: 16px; /* Prevents zoom on iOS */
    }
    
    .testimonial-card {
        padding: 1.5rem;
    }
    
    .testimonial-quote {
        font-size: 1rem;
        padding: 1rem;
    }
}

/* Mobile Menu Styles */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu-btn span {
    width: 25px;
    height: 3px;
    background: #e2e8f0;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.98);
    backdrop-filter: blur(10px);
    z-index: 999;
    padding: 1rem 0;
    border-top: 1px solid #333;
}

.mobile-menu.active {
    display: block;
}

.mobile-menu a {
    display: block;
    padding: 1rem 2rem;
    color: #e2e8f0;
    text-decoration: none;
    font-weight: 500;
    border-bottom: 1px solid #333;
    transition: all 0.3s ease;
}

.mobile-menu a:hover {
    background: rgba(139, 127, 184, 0.1);
    color: var(--bright-purple);
}

.mobile-menu a:last-child {
    border-bottom: none;
}

@media (max-width: 768px) {
    .mobile-menu-btn {
        display: flex;
    }
}


/* Extra small screens */
@media (max-width: 480px) {
    .hero-super-title {
        font-size: 1.8rem;
        margin-bottom: 1rem;
    }
    
    .hero-title {
        font-size: 1.3rem;
        margin-bottom: 0.8rem;
    }
    
    .hero-subtitle {
        font-size: 0.9rem;
        margin-bottom: 1.2rem;
    }
    
    .btn-primary, .btn-secondary {
        padding: 0.7rem 1.2rem;
        font-size: 0.85rem;
        max-width: 250px;
    }
    
    .container {
        padding: 0 10px;
    }
    
    .feature-card {
        padding: 1.2rem;
        margin: 0 10px;
    }
    
    .video-card {
        padding: 1.2rem;
        margin: 0 5px;
    }
    
    .logo-image {
        height: 50px;
        max-width: 150px;
    }
    
    .partner-logos {
        gap: 0.8rem;
        padding: 0 10px;
    }
    
    .section-title {
        font-size: 1.5rem;
        margin-bottom: 1.2rem;
    }
    
    .testimonial-card {
        padding: 1.2rem;
        margin: 0 10px;
    }
    
    .footer-contact {
        text-align: center;
    }
    
    .contact-links {
        align-items: center;
        text-align: center;
    }
}


/* Team Profiles Styling */
.team-profiles {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.profile-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(139, 127, 184, 0.3);
    padding: 1.3rem 0.8rem 0.1rem 0.8rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: 
        0 8px 32px rgba(139, 127, 184, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.profile-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(139, 127, 184, 0.1) 0%, 
        rgba(184, 168, 118, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.profile-card:hover {
    transform: translateY(-5px);
    border-color: rgba(139, 127, 184, 0.5);
    box-shadow: 
        0 12px 40px rgba(139, 127, 184, 0.25),
        0 0 0 1px rgba(139, 127, 184, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

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

.profile-card h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #e2e8f0;
    margin-bottom: 0.2rem;
}

.profile-title {
    color: var(--bright-purple);
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 0;
}

.profile-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.85rem;
    padding: 0.6rem 1.2rem;
    background: rgba(139, 127, 184, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(139, 127, 184, 0.4);
    border-radius: 25px;
    transition: all 0.3s ease;
    font-weight: 500;
}

.profile-link:hover {
    background: linear-gradient(45deg, rgba(139, 127, 184, 0.8), rgba(184, 168, 118, 0.8));
    color: white;
    border-color: rgba(139, 127, 184, 0.6);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(139, 127, 184, 0.3);
}

.linkedin-icon {
    font-size: 0.9rem;
}


/* Mobile styling for team profiles */
@media (max-width: 768px) {
    .team-profiles {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 1rem;
        margin: 1.5rem 0;
    }
    
    .profile-card {
        padding: 1.2rem;
    }
    
    .profile-card h4 {
        font-size: 1rem;
    }
}


/* Fellows Section Styling */
.fellows-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.fellow-item {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(139, 127, 184, 0.2);
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
}

.fellow-item:hover {
    transform: translateY(-3px);
    border-color: rgba(139, 127, 184, 0.4);
    box-shadow: 0 8px 25px rgba(139, 127, 184, 0.2);
}

.fellow-item h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #e2e8f0;
    margin-bottom: 0.5rem;
}

.fellow-item p {
    color: var(--bright-purple);
    font-size: 0.9rem;
    font-weight: 500;
    margin: 0;
    line-height: 1.4;
}

/* Mobile responsive for fellows */
@media (max-width: 768px) {
    .fellows-list {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .fellow-item {
        padding: 1.2rem;
    }
    
    .fellow-item h4 {
        font-size: 1rem;
    }
    
    .fellow-item p {
        font-size: 0.85rem;
    }
}

/* Advisor Profiles Styling */
.advisor-profiles {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

.advisor-card {
    background: #1a1a1a;
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid #333;
    box-shadow: 0 5px 15px rgba(139, 127, 184, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}

.advisor-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(139, 127, 184, 0.3);
}

.advisor-photo {
    flex-shrink: 0;
    width: 120px;
    height: 120px;
    border-radius: 12px;
    overflow: hidden;
    background: #2a2a2a;
    border: 2px solid #333;
    display: flex;
    align-items: center;
    justify-content: center;
}

.advisor-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.advisor-info {
    flex: 1;
}

.advisor-info h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #e2e8f0;
    margin-bottom: 0.5rem;
}

.advisor-title {
    color: var(--bright-purple);
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.advisor-description {
    color: #a0aec0;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 0;
}

.advisor-description.credentials {
    font-size: 0.85rem;
}

/* Mobile responsive for advisors */
@media (max-width: 768px) {
    .advisor-card {
        padding: 1.5rem;
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .advisor-photo {
        width: 100px;
        height: 100px;
        margin: 0 auto;
    }
    
    .advisor-info h4 {
        font-size: 1.1rem;
    }
    
    .advisor-title {
        font-size: 0.9rem;
    }
    
    .advisor-description {
        font-size: 0.85rem;
    }
    
    .advisor-description.credentials {
        font-size: 0.8rem;
    }
}


/* University Logos in About Stats */
.university-logos {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 1.5rem;
    justify-content: center;
    align-items: center;
}

.university-logo {
    height: 100px;
    width: auto;
    max-width: 300px;
    object-fit: contain;
    filter: none;
    transition: all 0.3s ease;
    opacity: 1;
    background: #ffffff;
    padding: 0.25rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border: none;
}

.university-logo:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(139, 127, 184, 0.2);
    border-color: rgba(139, 127, 184, 0.3);
}

/* Mobile responsive for university logos */
@media (max-width: 768px) {
    .university-logos {
        gap: 0.8rem;
        margin-top: 1rem;
    }
    
    .university-logo {
        height: 60px;
        max-width: 200px;
        padding: 0.25rem;
    }
}


.logo-line-break {
    flex-basis: 100%;
    height: 0;
}

/* Workflow Section */
.workflow-section {
    padding: 6rem 0;
    background: #111111;
    position: relative;
    overflow-x: visible;
    overflow-y: hidden;
}



.workflow-flow {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 1rem;
    margin: 4rem 0;
    flex-wrap: wrap;
}

.flow-step {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(139, 127, 184, 0.2);
    border-radius: 16px;
    padding: 1.5rem 1rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    min-width: 160px;
    flex: 0 0 auto;
}

.flow-step:hover {
    transform: translateY(-3px);
    border-color: rgba(139, 127, 184, 0.4);
    box-shadow: 0 8px 25px rgba(139, 127, 184, 0.2);
}

.step-number {
    width: 40px;
    height: 40px;
    background: linear-gradient(45deg, var(--bright-purple), var(--bright-yellow));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    font-size: 1.2rem;
    margin: 0 auto 1rem auto;
}

.flow-step h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #e2e8f0;
    margin-bottom: 0.5rem;
}

.flow-step p {
    color: #a0aec0;
    line-height: 1.4;
    font-size: 0.9rem;
    margin: 0;
}

.flow-arrow {
    font-size: 1.5rem;
    color: rgba(139, 127, 184, 0.6);
    font-weight: bold;
    flex-shrink: 0;
}

/* Workflow Visual Circle */
.workflow-visual {
    margin: 12rem 0 4rem 0;
    display: flex;
    align-items: center;
    gap: 4rem;
    position: relative;
    width: 100%;
}

.visual-left {
    flex: 1;
    max-width: 500px;
}

.visual-left h3 {
    font-size: 1.8rem;
    font-weight: 600;
    color: #e2e8f0;
    margin-bottom: 1.5rem;
    background: linear-gradient(45deg, var(--bright-purple), var(--bright-yellow));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.visual-left p {
    color: #a0aec0;
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.ecosystem-points {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.point {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.point-color {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    flex-shrink: 0;
}

.creator-color {
    background: radial-gradient(circle at center, rgba(139, 127, 184, 0.9) 0%, rgba(139, 127, 184, 0.6) 60%);
    box-shadow: 0 0 15px rgba(139, 127, 184, 0.4);
}

.consumer-color {
    background: radial-gradient(circle at center, rgba(184, 168, 118, 0.9) 0%, rgba(184, 168, 118, 0.6) 60%);
    box-shadow: 0 0 15px rgba(184, 168, 118, 0.4);
}

.investor-color {
    background: radial-gradient(circle at center, rgba(108, 140, 184, 0.9) 0%, rgba(108, 140, 184, 0.6) 60%);
    box-shadow: 0 0 15px rgba(108, 140, 184, 0.4);
}

.point span {
    color: #e2e8f0;
    font-size: 1rem;
    line-height: 1.5;
}

.visual-right {
    position: absolute;
    right: 6rem;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    justify-content: center;
    align-items: center;
}

.workflow-circle {
    position: relative;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(15px);
    box-shadow: 
        0 8px 32px rgba(139, 127, 184, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.workflow-circle::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(139, 127, 184, 0.1) 0%, 
        rgba(184, 168, 118, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 50%;
}

.workflow-circle:hover::before {
    opacity: 1;
}

.workflow-circle:hover {
    box-shadow: 
        0 12px 40px rgba(139, 127, 184, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.center-text {
    text-align: center;
    font-size: 1.2rem;
    font-weight: 600;
    color: #e2e8f0;
    line-height: 1.3;
    position: relative;
    z-index: 1;
}


.orbit-item {
    position: absolute;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    font-size: 1rem;
    text-align: center;
    animation: orbit 10s linear infinite;
    z-index: 3;
    box-shadow: 0 0 40px rgba(0, 0, 0, 0.3);
}

.orbit-1 {
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    animation-delay: 0s;
    background: radial-gradient(circle at center, rgba(139, 127, 184, 0.9) 0%, rgba(139, 127, 184, 0.7) 40%, rgba(139, 127, 184, 0.3) 80%, transparent 100%);
    box-shadow: 0 0 60px rgba(139, 127, 184, 0.6), 0 0 20px rgba(139, 127, 184, 0.8);
}

.orbit-2 {
    bottom: 35px;
    right: -5px;
    animation-delay: -3.33s;
    background: radial-gradient(circle at center, rgba(184, 168, 118, 0.9) 0%, rgba(184, 168, 118, 0.7) 40%, rgba(184, 168, 118, 0.3) 80%, transparent 100%);
    box-shadow: 0 0 60px rgba(184, 168, 118, 0.6), 0 0 20px rgba(184, 168, 118, 0.8);
}

.orbit-3 {
    bottom: 35px;
    left: -5px;
    animation-delay: -6.66s;
    background: radial-gradient(circle at center, rgba(108, 140, 184, 0.9) 0%, rgba(108, 140, 184, 0.7) 40%, rgba(108, 140, 184, 0.3) 80%, transparent 100%);
    box-shadow: 0 0 60px rgba(108, 140, 184, 0.6), 0 0 20px rgba(108, 140, 184, 0.8);
}


@keyframes orbit {
    0% {
        transform: rotate(0deg) translateX(45px) rotate(0deg);
    }
    100% {
        transform: rotate(360deg) translateX(45px) rotate(-360deg);
    }
}

/* Tablet responsive for workflow section */
@media (max-width: 1024px) and (min-width: 769px) {
    .visual-right {
        right: 2rem;
    }
    
    .visual-left {
        max-width: 400px;
    }
}

/* Mobile responsive for workflow section */
@media (max-width: 768px) {
    .workflow-section {
        padding: 4rem 0;
    }
    
    .workflow-flow {
        flex-direction: column;
        gap: 1rem;
        margin: 3rem 0;
    }
    
    .flow-step {
        padding: 1.5rem;
        min-width: auto;
        width: 100%;
        max-width: 300px;
    }
    
    .flow-arrow {
        transform: rotate(90deg);
        font-size: 1.5rem;
    }
    
    .step-number {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
    
    .flow-step h3 {
        font-size: 1.1rem;
    }
    
    .flow-step p {
        font-size: 0.85rem;
    }
    
    .workflow-circle {
        width: 250px;
        height: 250px;
    }
    
    .center-text {
        font-size: 1rem;
    }
    
    .orbit-item {
        width: 80px;
        height: 80px;
        font-size: 0.9rem;
    }
    
    .orbit-1 {
        top: -40px;
        left: 50%;
        transform: translateX(-50%);
    }
    
    .orbit-2 {
        bottom: 25px;
        right: -5px;
    }
    
    .orbit-3 {
        bottom: 25px;
        left: -5px;
    }
    
    .workflow-visual {
        flex-direction: column;
        gap: 3rem;
        text-align: center;
    }
    
    .visual-left {
        max-width: none;
    }
    
    .visual-right {
        position: relative;
        right: auto;
        top: auto;
        transform: none;
        justify-content: center;
    }
    
    .visual-left h3 {
        font-size: 1.5rem;
    }
    
    .visual-left p {
        font-size: 1rem;
    }
    
    .ecosystem-points {
        align-items: center;
    }
    
    .point {
        justify-content: center;
    }
}
