: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;
    --dark-blue: #3b82f6;
    --neon-pink: #ff007f;
    --glow-purple: rgba(192, 132, 252, 0.3);
    --glow-yellow: rgba(251, 191, 36, 0.3);
    --glow-blue: rgba(59, 130, 246, 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;
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
}

/* Iridescence Section Styles */
.iridescence-section {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 600px;
    background: #000000;
    overflow: hidden;
}

.iridescence-canvas {
    width: 100%;
    height: 100%;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
    cursor: none;
}

.iridescence-hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    max-width: 1200px;
    width: 100%;
    padding: 0 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    box-sizing: border-box;
}

.iridescence-label {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50px;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    color: #333;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    letter-spacing: 0.02em;
}

.iridescence-main-title {
    font-family: 'Rajdhani', sans-serif;
    font-size: 4.5rem;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: 0.02em;
    color: #ffffff;
    margin: 0;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
    max-width: 900px;
}

.iridescence-description {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.5rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    line-height: 1.6;
    letter-spacing: 0.02em;
}

/* Mobile responsive for iridescence section */
@media (max-width: 768px) {
    .iridescence-section {
        height: 70vh;
        min-height: 400px;
    }
    .iridescence-hero-content {
        gap: 1.5rem;
        padding: 1.5rem 20px;
    }
    .iridescence-label {
        font-size: 0.8rem;
        padding: 0.4rem 1.2rem;
    }
    .iridescence-main-title {
        font-size: 2rem;
    }
    .iridescence-description {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .iridescence-section {
        height: 60vh;
        min-height: 300px;
    }
    .iridescence-hero-content {
        gap: 1rem;
        padding: 1rem 15px;
    }
    .iridescence-label {
        font-size: 0.7rem;
        padding: 0.35rem 1rem;
    }
    .iridescence-main-title {
        font-size: 1.5rem;
    }
    .iridescence-description {
        font-size: 1rem;
    }
}

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

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.5rem 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: transparent;
}

.nav-container {
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(139, 127, 184, 0.15);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.logo-text {
    font-family: 'Orbitron', monospace;
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(45deg, var(--bright-purple) 0%, var(--dark-blue) 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-blue));
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-img {
    height: 34px;
    width: auto;
    max-width: 190px;
    object-fit: contain;
    transition: all 0.3s ease;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

.nav-links a {
    font-family: 'Space Grotesk', sans-serif;
    text-decoration: none;
    color: #ffffff;
    font-weight: 500;
    transition: all 0.3s ease;
    letter-spacing: 0.02em;
    font-size: 1rem;
    padding: 0.5rem 0;
}

.nav-links a:hover {
    color: rgba(255, 255, 255, 0.8);
    transform: translateY(-2px);
}

.hero {
    min-height: 100vh;
    background: #000000;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    text-align: center;
    color: white;
    position: relative;
    overflow: visible;
    padding-top: 40px;
    padding-bottom: 4rem;
}

.mission-hero {
    min-height: auto;
    padding-top: 100px;
    padding-bottom: 0;
}

.features-hero {
    min-height: auto;
    padding-top: 100px;
    padding-bottom: 0;
}

.about-us-hero {
    min-height: auto;
    padding-top: 100px;
    padding-bottom: 0;
}

.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: 1200px;
    padding: 2rem 20px;
    width: 100%;
}

.hero-super-title {
    font-family: 'Orbitron', monospace;
    font-size: 1.2rem;
    font-weight: 900;
    margin-top: 0.8cm;
    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(--bright-purple), var(--dark-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-blue));
}

.hero-title {
    font-family: 'Rajdhani', sans-serif;
    font-size: 4.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(--dark-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-blue));
}

@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-blue);
}

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

.hero-partners-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    gap: 3rem;
}

.hero-investors-section {
    width: 100%;
    text-align: center;
    margin-top: 3rem;
}

.hero-trusted-section {
    flex: unset;
    width: 100%;
    margin-top: 3rem;
    padding: 0;
    text-align: center;
}

.hero-investors-title,
.hero-trusted-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: #ffffff;
    text-align: center;
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.hero-investors-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 0.75rem;
    width: 100%;
    justify-items: center;
}

.hero-trusted-grid {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    gap: 0.75rem;
    width: 100%;
    justify-items: center;
}

.hero-investor-card {
    background: #f5f5f5;
    border-radius: 8px;
    padding: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 85px;
    width: 100%;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.hero-investor-logo {
    max-width: 100%;
    max-height: 45px;
    width: auto;
    height: auto;
    object-fit: contain;
}

.hero-trusted-card {
    background: #f5f5f5;
    border-radius: 8px;
    padding: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 75px;
    width: 100%;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
}

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

.hero-trusted-logo {
    max-width: 100%;
    max-height: 40px;
    width: auto;
    height: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.hero-trusted-card:hover .hero-trusted-logo {
    transform: scale(1.05);
}

@media (max-width: 1024px) {
    .hero-investors-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    .hero-trusted-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 600px) {
    .hero-investors-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .hero-trusted-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.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(--dark-blue));
    color: #ffffff;
    border: none;
    box-shadow: 0 0 10px var(--glow-purple), 0 0 15px var(--glow-blue);
}

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

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

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

.section-title {
    font-family: 'Orbitron', monospace;
    text-align: left;
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 3rem;
    background: linear-gradient(45deg, var(--bright-purple), var(--dark-blue));
    -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-blue));
}


/* Leader Badge Section */

.barriers-section {
    padding: 6rem 0;
    background: #000000;
    position: relative;
}

.barriers-content {
    margin-top: 3rem;
}

.barriers-cards-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 3rem;
}

.barriers-section .problem-cards,
.barriers-section .opportunity-cards {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.barriers-section .problem-card,
.barriers-section .opportunity-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(139, 127, 184, 0.2);
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.barriers-section .problem-card:hover,
.barriers-section .opportunity-card:hover {
    transform: translateY(-5px);
    border-color: rgba(139, 127, 184, 0.4);
    box-shadow: 0 8px 25px rgba(139, 127, 184, 0.2);
}

.barriers-section .card-title {
    color: #ffffff;
    -webkit-text-fill-color: #ffffff;
    background: none;
    background-clip: unset;
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0;
    line-height: 1.4;
    text-align: left;
}

.solution-section {
    padding: 6rem 0;
    background: #000000;
    position: relative;
}

.workflow-content {
    margin-top: 3rem;
}

.workflow-subtitle {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    text-align: center;
    margin-bottom: 4rem;
    line-height: 1.2;
    letter-spacing: 0.02em;
}

.leader-badge-section {
    padding: 0;
    margin-top: 3rem;
    background: #000000;
    position: relative;
}

.leader-badge-section-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: #ffffff;
    text-align: left;
    margin-bottom: 2rem;
    margin-top: 0;
    padding-top: 0;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.leader-badge-carousel {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    padding: 0 50px 4rem 50px;
    box-sizing: border-box;
}

.leader-badge-slides-container {
    position: relative;
    overflow: hidden;
    min-height: 350px;
    display: flex;
    justify-content: center;
    align-items: center;

}

.leader-badge-slides-wrapper {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
    width: 100%;
    justify-content: flex-start;
    gap: 1rem;

}

.leader-badge-slide {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    padding: 1.25rem;
    background: linear-gradient(135deg, rgba(139, 127, 184, 0.15) 0%, rgba(184, 168, 118, 0.1) 100%);
    border-radius: 12px;
    border: 1px solid rgba(139, 127, 184, 0.2);
    width: calc(33.333% - 0.67rem);
    min-width: calc(33.333% - 0.67rem);
    max-width: calc(33.333% - 0.67rem);
    flex-shrink: 0;
    box-sizing: border-box;
}

.leader-badge-image-container {
    position: relative;
    width: 100%;
    max-width: 90%;
    border-radius: 8px;
    overflow: hidden;
    order: -1; /* Image appears first in vertical layout */
}

.leader-badge-card {
    display: flex;
    flex-direction: column;
}

.leader-badge-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    object-fit: contain;
    max-height: 180px;
}

.leader-badge-content {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    align-items: center;
    text-align: center;
    width: 100%;
    flex: 1;
    justify-content: flex-start;
}

.leader-badge-learn-more {
    align-self: center;
    margin-top: auto;
}

.leader-badge-carousel .btn-primary,
.leader-badge-carousel .btn-secondary {
    margin: 0;
    font-size: 1rem;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
    letter-spacing: 0.05em;
}

.leader-badge-tag {
    display: inline-block;
    background: #00ff88;
    color: #000000;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    width: fit-content;
}

.leader-badge-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.3;
    margin: 0;
    text-align: center;
    min-height: 3.5rem;
}

.leader-badge-description {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.85rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.4;
    margin: 0;
    text-align: center;
    flex: 1; 
}

.leader-badge-learn-more {
    display: inline-block;
    padding: 0.875rem 2rem;
    background: transparent;
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
    font-size: 0.875rem;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    white-space: nowrap;
    width: fit-content;
    margin-top: auto;
    align-self: center;
}

.leader-badge-learn-more:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

.leader-badge-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.leader-badge-btn-try-it-now {
    display: inline-block;
    padding: 1rem 2rem;
    background: #000000;
    color: #ffffff;
    border: 2px solid var(--bright-purple);
    border-radius: 50px;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    white-space: nowrap;
}

.leader-badge-btn-try-it-now:hover {
    background: rgba(139, 127, 184, 0.1);
    border-color: var(--bright-purple);
    transform: translateY(-2px);
    box-shadow: 0 0 15px rgba(139, 127, 184, 0.3);
}

.leader-badge-nav {
    position: absolute;
    top: calc(50% - 1.8cm);
    transform: translateY(-50%);
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.6);
    cursor: pointer;
    padding: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
    height: fit-content;
}

.leader-badge-nav:hover {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.leader-badge-nav-prev {
    left: 0;
}

.leader-badge-nav-next {
    right: 0;
}

.leader-badge-pagination {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 2rem;
}

.leader-badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.leader-badge-dot.active {
    background: #ffffff;
    width: 24px;
    border-radius: 4px;
}

.leader-badge-dot:hover {
    background: rgba(255, 255, 255, 0.6);
}


/* Mobile responsive for leader badge section */

@media (max-width: 768px) {
    .mission-section .container {
        padding: 0 15px;
    }
    .mission-section-title {
        font-size: 1.2rem;
        margin-bottom: 1.5rem;
        text-align: center;
    }
    .mission-section .problem-cards,
    .mission-section .opportunity-cards {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    .leader-badge-section-title {
        font-size: 1.2rem;
        margin-bottom: 1.5rem;
        text-align: center;
    }
    .leader-badge-carousel {
        padding: 2rem 15px;
    }
    .leader-badge-slides-wrapper {
        gap: 0.75rem;
    }
    .leader-badge-slide {
        flex-direction: column;
        gap: 0.875rem;
        padding: 1rem;
        margin: 0;
        width: calc(33.333% - 0.5rem);
        min-width: calc(33.333% - 0.5rem);
        max-width: none;
    }
    .leader-badge-image {
        max-height: 140px;
    }
    .leader-badge-title {
        font-size: 1.4rem;
    }
    .leader-badge-description {
        font-size: 1rem;
    }
    .leader-badge-nav {
        padding: 0.75rem;
    }
    .leader-badge-nav-prev {
        left: 0.5rem;
    }
    .leader-badge-nav-next {
        right: 0.5rem;
    }
    .leader-badge-buttons {
        margin-top: 1.5rem;
    }
}

@media (max-width: 480px) {
    .leader-badge-section-title {
        font-size: 1rem;
        margin-bottom: 1rem;
        text-align: center;
    }
    .leader-badge-carousel {
        padding: 1.5rem 10px;
    }
    .leader-badge-slides-container {
        overflow: hidden;
    }
    .leader-badge-slides-wrapper {
        gap: 0.5rem;
    }
    .leader-badge-slide {
        padding: 0.875rem;
        gap: 0.625rem;
        margin: 0;
        width: calc(100% - 1rem);
        min-width: calc(100% - 1rem);
        max-width: none;
    }
    .leader-badge-image {
        max-height: 110px;
    }
    .leader-badge-title {
        font-size: 1.15rem;
    }
    .leader-badge-description {
        font-size: 0.95rem;
    }
    .leader-badge-learn-more {
        font-size: 0.8rem;
        padding: 0.75rem 1.5rem;
    }
    .leader-badge-buttons {
        flex-direction: column;
        margin-top: 1.5rem;
    }
    .leader-badge-carousel .btn-primary,
    .leader-badge-carousel .btn-secondary,
    .leader-badge-btn-try-it-now {
        width: 100%;
        max-width: 280px;
    }
    .leader-badge-nav {
        padding: 0.5rem;
    }
    .leader-badge-nav svg {
        width: 20px;
        height: 20px;
    }
}


/* Solana Hackathon Section */

.solana-hackathon-section {
    padding: 4rem 0;
    background: #000000;
    position: relative;
}

.solana-hackathon-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    padding: 3rem 4rem;
    background: linear-gradient(135deg, rgba(139, 127, 184, 0.15) 0%, rgba(184, 168, 118, 0.1) 100%);
    border-radius: 16px;
    border: 1px solid rgba(139, 127, 184, 0.2);
}

.solana-hackathon-button-side {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
    border-radius: 12px;
    overflow: hidden;
}

.solana-hackathon-button-side:hover {
    transform: translateY(-4px);
    opacity: 0.9;
}

.solana-hackathon-image-side {
    position: relative;
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
}

.solana-hackathon-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
    transition: transform 0.3s ease;
}

.solana-hackathon-button-side:hover .solana-hackathon-image {
    transform: scale(1.02);
}

.solana-hackathon-text-side {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: flex-start;
    padding: 1rem;
}

.solana-hackathon-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.2;
    margin: 0;
    transition: color 0.3s ease;
}

.solana-hackathon-button-side:hover .solana-hackathon-title {
    color: var(--bright-purple);
}

.solana-hackathon-title strong {
    font-weight: 700;
    color: #ffffff;
}

.solana-hackathon-button-side:hover .solana-hackathon-title strong {
    color: var(--dark-blue);
}

.solana-hackathon-description {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.6rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin: 0;
    text-align: left;
}


/* Mobile responsive for Solana hackathon section */

@media (max-width: 768px) {
    .solana-hackathon-section {
        padding: 2rem 0;
    }
    .solana-hackathon-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 2rem 3rem;
    }
    .solana-hackathon-title {
        font-size: 1.4rem;
    }
    .solana-hackathon-description {
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    .solana-hackathon-container {
        padding: 1.5rem 2rem;
        gap: 1.5rem;
    }
    .solana-hackathon-title {
        font-size: 1.15rem;
    }
    .solana-hackathon-description {
        font-size: 1.2rem;
    }
}


/* Co-creation Section */

.co-creation-section {
    padding: 2rem 0 4rem 0;
    background: #111111;
    position: relative;
}

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

.co-creation-img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
}


/* Mobile responsive for co-creation section */

@media (max-width: 768px) {
    .co-creation-section {
        padding: 2rem 0 3rem 0;
    }
    .co-creation-container {
        padding: 0 20px;
    }
}


/* On-Chain Payments Section */

.on-chain-payments-section {
    padding: 2rem 0 4rem 0;
    background: #000000;
    position: relative;
}

.on-chain-container {
    display: flex;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    align-items: flex-start;
}

.on-chain-content {
    flex: 1;
    display: flex;
    align-items: flex-start;
}

.on-chain-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #e2e8f0;
    margin: 0;
    text-align: left;
}

.on-chain-images {
    flex: 1;
    display: flex;
    flex-direction: row;
    gap: 1.5rem;
    align-items: flex-start;
    justify-content: center;
}

.on-chain-image-item {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.on-chain-img {
    width: 100%;
    height: auto;
    max-height: 400px;
    object-fit: contain;
    border-radius: 10px;
}


/* Mobile responsive for on-chain payments section */

@media (max-width: 768px) {
    .on-chain-payments-section {
        padding: 2rem 0 3rem 0;
    }
    .on-chain-container {
        flex-direction: column;
        gap: 2rem;
    }
    .on-chain-text {
        font-size: 1rem;
    }
    .on-chain-images {
        gap: 1rem;
    }
}


/* Quote Section */

.quote-section {
    padding: 6rem 0 3rem 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);
    }
    .about-stats {
        grid-template-columns: 160px 160px;
        gap: 0.5rem;
        max-width: 100%;
        padding: 0 1rem;
        justify-content: center;
    }
    .stat-card {
        min-height: 90px;
        padding: 0.8rem;
    }
    .stat-number {
        font-size: 1.4rem;
    }
    .stat-label {
        font-size: 0.65rem;
    }
    .featured-quote {
        font-size: 1.6rem;
    }
    .quote-attribution {
        font-size: 1rem;
    }
}


/* Problem Section */

.problem-section {
    padding: 2rem 0 5rem 0;
    background: #0a0a0a;
}

/* Mission page: vertical layout, no card styling, left-aligned */
.mission-problem-section .problem-cards {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: stretch;
}

.mission-problem-section .problem-card {
    background: transparent;
    border: none;
    border-radius: 0;
    box-shadow: none;
    padding: 0 0 2rem 0;
    min-height: 0;
}

.mission-problem-section .problem-card:hover {
    transform: none;
    border-color: transparent;
    box-shadow: none;
}

.mission-problem-section .problem-card:first-child .card-content {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 2rem;
    align-items: flex-start;
}

.mission-problem-section .problem-card:first-child .card-text {
    flex: 1;
    min-width: 280px;
    order: 1;
}

.mission-problem-section .problem-card:first-child .market-chart {
    flex: 1;
    min-width: 280px;
    order: 2;
}

/* Second problem card: side-by-side (card-text left, subscription block right) */
.mission-problem-section .problem-card:nth-child(2) .card-content {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 2rem;
    align-items: flex-start;
}

.mission-problem-section .problem-card:nth-child(2) .card-text {
    flex: 1;
    min-width: 280px;
    order: 1;
}

.mission-problem-section .problem-card:nth-child(2) .subscription-block {
    flex: 1;
    min-width: 280px;
    order: 2;
}

.mission-problem-section .card-title,
.mission-problem-section .card-text,
.mission-problem-section .card-text p,
.mission-problem-section .card-content,
.mission-problem-section .market-chart,
.mission-problem-section .chart-container,
.mission-problem-section .subscription-visual,
.mission-problem-section .subscription-title,
.mission-problem-section .subscription-block {
    text-align: left;
}

.mission-problem-section .chart-container {
    justify-content: flex-start;
}

.mission-problem-section .chart-container p {
    text-align: left;
}

/* Mission page: opportunities section (same layout as problem section) */
.mission-opportunity-section .opportunity-cards {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: stretch;
}

.mission-opportunity-section .opportunity-card {
    background: transparent;
    border: none;
    border-radius: 0;
    box-shadow: none;
    padding: 0 0 2rem 0;
    min-height: 0;
}

.mission-opportunity-section .opportunity-card:hover {
    transform: none;
    border-color: transparent;
    box-shadow: none;
}

.mission-opportunity-section .opportunity-card:first-child .card-content {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 2rem;
    align-items: flex-start;
}

.mission-opportunity-section .opportunity-card:first-child .card-text {
    flex: 1;
    min-width: 280px;
    order: 1;
}

.mission-opportunity-section .opportunity-card:first-child .news-image-container {
    flex: 1;
    min-width: 280px;
    order: 2;
}

.mission-opportunity-section .opportunity-card:nth-child(2) .card-content {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 2rem;
    align-items: flex-start;
}

.mission-opportunity-section .opportunity-card:nth-child(2) .card-text {
    flex: 1;
    min-width: 280px;
    order: 1;
}

.mission-opportunity-section .opportunity-card:nth-child(2) .comparison-table-container {
    flex: 1;
    min-width: 280px;
    order: 2;
}

.mission-opportunity-section .card-title,
.mission-opportunity-section .card-text,
.mission-opportunity-section .card-text p,
.mission-opportunity-section .news-image-container,
.mission-opportunity-section .comparison-table-container {
    text-align: left;
}

.opportunity-section {
    padding: 5rem 0;
    background: #0a0a0a;
}

.problem-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: start;
}

.opportunity-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: start;
}

.problem-card {
    background: #1a1a1a;
    border: 1px solid #333;
    border-radius: 15px;
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(139, 127, 184, 0.2);
    transition: all 0.3s ease;
    overflow: hidden;
    position: relative;
    min-height: 120px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.problem-card .card-content {
    opacity: 1;
    max-height: none;
    overflow: visible;
    transition: all 0.4s ease;
    transform: translateY(0);
}

.problem-card:hover {
    transform: translateY(-5px);
    border-color: #8b7fb8;
    box-shadow: 0 15px 35px rgba(139, 127, 184, 0.3);
    min-height: auto;
}

.opportunity-card {
    background: #1a1a1a;
    border: 1px solid #333;
    border-radius: 15px;
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(139, 127, 184, 0.2);
    transition: all 0.3s ease;
    overflow: hidden;
    position: relative;
    min-height: 120px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.opportunity-card .card-content {
    opacity: 1;
    max-height: none;
    overflow: visible;
    transition: all 0.4s ease;
    transform: translateY(0);
}

.opportunity-card:hover {
    transform: translateY(-5px);
    border-color: #8b7fb8;
    box-shadow: 0 15px 35px rgba(139, 127, 184, 0.3);
    min-height: auto;
}

.card-title {
    background: linear-gradient(45deg, var(--bright-purple), var(--dark-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 1.4rem;
    font-weight: 700;
    margin: 0 0 1.5rem 0;
    line-height: 1.3;
    text-align: center;
    transition: all 0.3s ease;
}


/* Subscription Visual Styles */

.subscription-visual {
    margin-top: 1.5rem;
    text-align: center;
}

.subscription-logos {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.subscription-logo {
    height: 40px;
    width: auto;
    max-width: 60px;
    object-fit: contain;
    background: #2a2a2a;
    padding: 0.3rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.subscription-logo:hover {
    transform: scale(1.1);
}

.plus-sign {
    color: #8b7fb8;
    font-size: 1.2rem;
    font-weight: bold;
    margin: 0 0.3rem;
}

.subscription-title {
    text-align: center;
    font-size: 1.2rem;
    font-weight: 600;
    color: #e2e8f0;
    margin-bottom: 0.5rem;
    margin-top: 1rem;
}


/* LLM Comparison Table Styles */

.comparison-table-container {
    margin-top: 1.5rem;
    overflow-x: auto;
}

.llm-comparison-table {
    width: 100%;
    border-collapse: collapse;
    background: #1a1a1a;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(139, 127, 184, 0.2);
}

.llm-comparison-table th {
    background: linear-gradient(45deg, var(--bright-purple), var(--dark-blue));
    color: #000;
    padding: 1rem 0.8rem;
    text-align: left;
    font-weight: 700;
    font-size: 0.9rem;
    border: none;
}

.llm-comparison-table td {
    padding: 1rem 0.8rem;
    border-bottom: 1px solid #333;
    color: #e2e8f0;
    font-size: 0.85rem;
    line-height: 1.4;
    vertical-align: top;
}

.llm-comparison-table td:first-child {
    background: #2a2a2a;
    font-weight: 600;
    color: #8b7fb8;
    width: 20%;
}

.llm-comparison-table td:nth-child(2) {
    background: rgba(139, 127, 184, 0.05);
    width: 40%;
}

.llm-comparison-table td:nth-child(3) {
    background: rgba(184, 168, 118, 0.05);
    width: 40%;
}

.llm-comparison-table tr:hover td {
    background: rgba(139, 127, 184, 0.1);
}

.llm-comparison-table tr:hover td:first-child {
    background: #333;
}

.llm-comparison-table tr:hover td:nth-child(2) {
    background: rgba(139, 127, 184, 0.15);
}

.llm-comparison-table tr:hover td:nth-child(3) {
    background: rgba(184, 168, 118, 0.15);
}


/* News Image Styles */

.news-image-container {
    margin-top: 1.5rem;
    text-align: center;
}

.news-image {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.news-image:hover {
    transform: translateY(-3px);
}

.card-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.card-text {
    flex: 1;
}


/* Special styling for first card with chart */

.problem-card:first-child .card-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.problem-card:first-child .card-text {
    order: 1;
}

.problem-card:first-child .market-chart {
    order: 2;
}


/* Special styling for first opportunity card with chart */

.opportunity-card:first-child .card-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.opportunity-card:first-child .card-text {
    order: 1;
}

.opportunity-card:first-child .news-image-container {
    order: 2;
}

.opportunity-card:first-child .market-chart {
    order: 2;
}

.column-title {
    background: linear-gradient(45deg, var(--bright-purple), var(--dark-blue));
    -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(--dark-blue));
    -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: center;
    width: 100%;
    max-width: 600px;
}

.chart-container p {
    text-align: center;
    font-size: 1.2rem;
    font-weight: 600;
    color: #e2e8f0;
    margin-bottom: 0.5rem;
}

.fan-chart {
    position: relative;
    margin: 1rem 0;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.chart-svg {
    width: 100%;
    height: auto;
    max-width: 350px;
    margin: 0 auto;
    display: block;
    filter: drop-shadow(0 0 15px rgba(139, 127, 184, 0.3));
}

.company-tooltip {
    position: absolute;
    background: linear-gradient(45deg, var(--bright-purple), var(--dark-blue));
    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: default;
    filter: brightness(1);
}

/* Hover effect removed - information is now always visible */

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


/* Mobile responsive for problem section */

@media (max-width: 768px) {
    .problem-section {
        padding: 3rem 0;
    }
    .opportunity-section {
        padding: 3rem 0;
    }
    .problem-cards {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    .mission-problem-section .problem-card:first-child .card-content {
        flex-direction: column;
    }
    .mission-problem-section .problem-card:first-child .card-text,
    .mission-problem-section .problem-card:first-child .market-chart {
        min-width: 0;
    }
    .mission-problem-section .problem-card:nth-child(2) .card-content {
        flex-direction: column;
    }
    .mission-problem-section .problem-card:nth-child(2) .card-text,
    .mission-problem-section .problem-card:nth-child(2) .subscription-block {
        min-width: 0;
    }
    .mission-opportunity-section .opportunity-card:first-child .card-content {
        flex-direction: column;
    }
    .mission-opportunity-section .opportunity-card:first-child .card-text,
    .mission-opportunity-section .opportunity-card:first-child .news-image-container {
        min-width: 0;
    }
    .mission-opportunity-section .opportunity-card:nth-child(2) .card-content {
        flex-direction: column;
    }
    .mission-opportunity-section .opportunity-card:nth-child(2) .card-text,
    .mission-opportunity-section .opportunity-card:nth-child(2) .comparison-table-container {
        min-width: 0;
    }
    .opportunity-cards {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    .problem-card {
        padding: 2rem;
        min-height: 100px;
    }
    .opportunity-card {
        padding: 2rem;
        min-height: 100px;
    }
    .card-title {
        font-size: 1.2rem;
        margin-bottom: 1rem;
    }
    .problem-card:first-child .card-content {
        gap: 2rem;
    }
    .opportunity-card:first-child .card-content {
        gap: 2rem;
    }
    .fan-chart {
        margin: 0.8rem 0;
        min-height: 250px;
    }
    .chart-svg {
        max-width: 280px;
    }
    .chart-legend {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
        margin-top: 1.5rem;
        padding: 0.75rem;
    }
    .chart-legend > div > span {
        font-size: 0.85rem;
    }
    .subscription-logos {
        gap: 0.3rem;
    }
    .subscription-logo {
        height: 35px;
        max-width: 50px;
        padding: 0.2rem;
    }
    .plus-sign {
        font-size: 1rem;
        margin: 0 0.2rem;
    }
    .subscription-title {
        font-size: 1.1rem;
    }
    .llm-comparison-table th {
        padding: 0.8rem 0.6rem;
        font-size: 0.8rem;
    }
    .llm-comparison-table td {
        padding: 0.8rem 0.6rem;
        font-size: 0.8rem;
    }
    .news-image {
        max-width: 100%;
        border-radius: 10px;
    }
    .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 {
    position: relative;
    padding: 6rem 0;
    background: #000000;
    overflow: hidden;
    min-height: 400px;
}

.remodeling-section .container {
    max-width: 100%;
    padding: 0 4rem;
}

.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;
}

.logo-combination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin: 2rem 0 3rem 0;
    padding: 1rem;
}

.logo-main {
    height: 45px;
    width: auto;
    max-width: 230px;
    object-fit: contain;
    filter: drop-shadow(0 4px 12px rgba(139, 127, 184, 0.3));
}

.logo-partner {
    height: 50px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 4px 12px rgba(139, 127, 184, 0.2));
    transition: transform 0.3s ease;
}

.logo-partner:hover {
    transform: scale(1.1);
}

.equals-sign,
.multiply-sign {
    font-size: 2rem;
    font-weight: 700;
    color: var(--bright-purple);
    text-shadow: 0 0 10px var(--glow-purple);
    margin: 0 0.5rem;
}

.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;
    }
    .logo-combination {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem;
        margin: 1.5rem 0 2rem 0;
    }
    .logo-main {
        height: 40px;
    }
    .logo-partner {
        height: 40px;
    }
    .equals-sign,
    .multiply-sign {
        font-size: 1.5rem;
        margin: 0.5rem 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(2, 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;
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: space-between;
}

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


/* Coming Soon Card Styles */

.coming-soon-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 200px;
    /* Keep the same background as other feature cards */
    background: #1a1a1a;
    border: 1px solid #333;
}

.coming-soon-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #8b7fb8;
}

.coming-soon-text {
    font-size: 1.2rem;
    font-weight: 500;
    color: #8b7fb8;
    text-align: center;
    margin: 0;
    /* Remove all borders, backgrounds, and effects */
}

.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);
}

.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;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
    align-self: flex-start;
}

.feature-list li {
    font-family: 'Exo 2', sans-serif;
    color: #a0aec0;
    line-height: 1.6;
    letter-spacing: 0.02em;
    font-weight: 400;
    margin-bottom: 0.8rem;
    position: relative;
    padding-left: 1.5rem;
}

.feature-list li:last-child {
    margin-bottom: 0;
}

.feature-list li::before {
    content: "•";
    color: var(--bright-purple);
    font-weight: bold;
    position: absolute;
    left: 0;
    top: 0;
    font-size: 1.2rem;
}

.feature-gif-placeholder {
    margin-top: 1.5rem;
    width: 100%;
    aspect-ratio: 4/3;
    background: linear-gradient(135deg, rgba(139, 127, 184, 0.1) 0%, rgba(184, 168, 118, 0.1) 100%);
    border: 2px dashed rgba(139, 127, 184, 0.3);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.feature-gif-placeholder:hover {
    border-color: rgba(139, 127, 184, 0.5);
    background: linear-gradient(135deg, rgba(139, 127, 184, 0.15) 0%, rgba(184, 168, 118, 0.15) 100%);
    transform: translateY(-2px);
}

.feature-gif-container {
    margin-top: 1.5rem;
    width: 100%;
    aspect-ratio: 4/3;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(139, 127, 184, 0.2);
    transition: all 0.3s ease;
}

.feature-gif-container:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(139, 127, 184, 0.3);
}

.feature-gif {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
}

.learn-more-btn {
    background: linear-gradient(45deg, var(--bright-purple), var(--dark-blue));
    color: #000;
    border: none;
    padding: 0.5rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin: 1rem 0 1rem auto;
    box-shadow: 0 4px 15px rgba(139, 127, 184, 0.3);
    width: fit-content;
    display: block;
}

.learn-more-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(139, 127, 184, 0.4);
}


/* Modal Styles */

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

.modal-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 20px;
    width: 90%;
    max-width: 800px;
    background: #1a1a1a;
    border-radius: 15px;
    box-shadow: 0 20px 60px rgba(139, 127, 184, 0.3);
    border: 1px solid #333;
}

.close {
    position: absolute;
    top: 15px;
    right: 20px;
    color: #aaa;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    z-index: 1001;
    transition: color 0.3s ease;
}

.close:hover {
    color: var(--bright-purple);
}

.modal-image {
    width: 100%;
    height: auto;
    border-radius: 10px;
    display: block;
}

.placeholder-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: rgba(160, 174, 192, 0.7);
}

.placeholder-icon {
    font-size: 2rem;
    opacity: 0.6;
}

.placeholder-text {
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.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;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    visibility: hidden;
    pointer-events: none;
}

.comparison-table.active {
    opacity: 1;
    transform: translateY(0);
    position: relative;
    visibility: visible;
    pointer-events: auto;
}

.tab-navigation {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin: 3rem 0;
    flex-wrap: wrap;
}

.tab-button {
    background: #2a2a2a;
    border: 2px solid #333;
    color: #e2e8f0;
    padding: 1rem 2rem;
    border-radius: 8px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.tab-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(139, 127, 184, 0.2), transparent);
    transition: left 0.5s ease;
}

.tab-button:hover::before {
    left: 100%;
}

.tab-button:hover {
    border-color: #8b7fb8;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(139, 127, 184, 0.3);
}

.tab-button.active {
    background: var(--bright-purple);
    border-color: var(--bright-purple);
    color: white;
    box-shadow: 0 5px 15px rgba(139, 127, 184, 0.4);
}

.tables-container {
    position: relative;
    min-height: 400px;
}


/* Table 2 specific styles for 4 columns */

#table2 .comparison-header {
    grid-template-columns: 1fr 1fr 1fr 1fr;
}

#table2 .comparison-row {
    grid-template-columns: 1fr 1fr 1fr 1fr;
}

.comparison-header {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    background: linear-gradient(45deg, var(--bright-purple) 0%, var(--dark-blue) 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 0 4rem 0;
    text-align: left;
    max-width: 100%;
}

.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(--dark-blue));
    -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: block;
    width: 100%;
    max-width: 100%;
}

.about-text {
    min-width: 0;
    width: 100%;
    max-width: 100%;
}

.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: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 1rem;
    width: 100%;
    margin-bottom: 3rem;
}

.about-stats .stat-card {
    width: 100%;
    min-width: 0;
}

.stat-card {
    background: #1a1a1a;
    padding: 1rem;
    border-radius: 8px;
    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;
    min-height: 100px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    box-sizing: border-box;
    flex: 1;
    min-width: 0;
    overflow: hidden;
}

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

.stat-number {
    font-size: 1.6rem;
    font-weight: 700;
    background: linear-gradient(45deg, var(--bright-purple), var(--dark-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.1rem;
    display: block;
    line-height: 1;
}

.stat-label {
    color: #a0aec0;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    font-weight: 500;
    line-height: 1.1;
}

.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(--dark-blue));
    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 .container {
    max-width: 100%;
    padding: 0 4rem;
}

.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;
}


/* Multi-Layer Revenue Engine Section */

.revenue-engine {
    padding: 5rem 0;
    background: #000000;
}

.revenue-layers {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-width: 1000px;
    margin: 0 auto;
}


/* Revenue Layer Animation */

.revenue-layer {
    opacity: 0;
    transform: translateX(-100px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.revenue-layer:nth-child(2) {
    transform: translateX(100px);
}

.revenue-layer:nth-child(3) {
    transform: translateX(-100px);
}

.revenue-layer.animate-in {
    opacity: 1;
    transform: translateX(0);
}

.revenue-layer {
    background: #1a1a1a;
    border: 1px solid #333;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(139, 127, 184, 0.2);
    transition: all 0.3s ease;
    overflow: hidden;
}

.revenue-layer:hover {
    transform: translateY(-5px);
    border-color: #8b7fb8;
    box-shadow: 0 15px 35px rgba(139, 127, 184, 0.3);
}

.layer-header {
    padding: 2rem;
    text-align: center;
    cursor: pointer;
    position: relative;
}

.layer-header h3 {
    color: #e2e8f0;
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0;
}

.layer-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: #2a2a2a;
    border-top: 1px solid #333;
}

.layer-points {
    padding: 2rem;
    margin: 0;
    list-style: none;
    text-align: left;
    max-width: 600px;
    margin: 0 auto;
}

.layer-points li {
    color: #cbd5e1;
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.layer-points li::before {
    content: "•";
    color: #8b7fb8;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.layer-points li:last-child {
    margin-bottom: 0;
}

.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(--dark-blue));
    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(--dark-blue);
    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(--dark-blue);
}

.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(--dark-blue)) 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(--dark-blue));
    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: 30px 0 20px 0;
        min-height: auto;
        padding-top: 30px;
    }
    .hero-content {
        padding: 1rem 15px;
        max-width: 100%;
    }
    .hero-super-title {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }
    .hero-title {
        font-size: 1.8rem;
        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;
        margin-bottom: 2rem;
    }
    .btn-primary,
    .btn-secondary {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
        width: 100%;
        max-width: 280px;
    }
    .hero-partners-container {
        flex-direction: column;
        gap: 2rem;
        margin-top: 5rem;
        padding: 0 15px;
    }
    .hero-investors-section {
        width: 100%;
        padding: 0;
        margin-top: 0;
    }
    .hero-investors-title {
        font-size: 1.2rem;
        margin-bottom: 1.5rem;
        text-align: center;
    }
    .hero-investors-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }
    .hero-investor-logo[alt="Orion Parrott"] {
        max-height: 58px;
    }
    .hero-investor-logo[alt="Orange DAO"] {
        max-height: 58px;
    }
    .hero-investor-card {
        padding: 1rem;
        min-height: 90px;
    }
    .hero-investor-logo {
        max-height: 52px;
    }
    .hero-trusted-section {
        width: 100%;
        margin-top: 0;
        padding: 0;
    }
    .hero-trusted-title {
        font-size: 1.2rem;
        font-weight: 600;
        color: #ffffff;
        margin-bottom: 1rem;
        text-align: center;
    }
    .hero-trusted-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }
    .hero-trusted-card {
        padding: 1rem;
        min-height: 85px;
    }
    .hero-trusted-logo {
        max-height: 52px;
    }
    .container {
        padding: 0 15px;
    }
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    .feature-card {
        padding: 1.5rem;
    }
    .feature-gif-placeholder {
        aspect-ratio: 4/3;
        margin-top: 1rem;
    }
    .feature-gif-container {
        aspect-ratio: 4/3;
        margin-top: 1rem;
    }
    .learn-more-btn {
        padding: 0.4rem 0.6rem;
        font-size: 0.7rem;
        margin: 0.8rem 0 0.8rem auto;
        width: fit-content;
        display: block;
    }
    .modal-content {
        width: 95%;
        padding: 15px;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }
    .close {
        top: 10px;
        right: 15px;
        font-size: 24px;
    }
    .placeholder-icon {
        font-size: 1.5rem;
    }
    .placeholder-text {
        font-size: 0.8rem;
    }
    .feature-list li {
        margin-bottom: 0.6rem;
        padding-left: 1.2rem;
        font-size: 0.9rem;
    }
    .feature-list li::before {
        font-size: 1rem;
    }
    .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(--dark-blue) 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 0 3rem 0;
    }
    .conclusion-text {
        font-size: 1.1rem;
        line-height: 1.7;
    }
    .tab-navigation {
        flex-direction: column;
        gap: 0.8rem;
        margin: 2rem 0;
    }
    .tab-button {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
    .tables-container {
        min-height: 300px;
    }
    .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.8rem 1.5rem;
        border-radius: 40px;
    }
    
    .navbar {
        padding: 1rem 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-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: #ffffff;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 90px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 40px);
    max-width: 600px;
    background: rgba(139, 127, 184, 0.15);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    z-index: 999;
    padding: 1rem 0;
    margin: 0 20px;
}

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

.mobile-menu a {
    display: block;
    padding: 1rem 2rem;
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    font-family: 'Space Grotesk', sans-serif;
}

.mobile-menu a:hover {
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.9);
}

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

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


/* Extra small screens */

@media (max-width: 480px) {
    .about-stats {
        grid-template-columns: 1fr;
        gap: 0.5rem;
        padding: 0 0.5rem;
        justify-content: center;
    }
    .stat-card {
        min-height: 80px;
        padding: 0.7rem;
    }
    .stat-number {
        font-size: 1.3rem;
    }
    .stat-label {
        font-size: 0.6rem;
    }
    .vitalik-content {
        gap: 1.5rem;
    }
    .meeting-photo {
        width: 200px;
    }
    .vitalik-quote {
        font-size: 1.3rem;
    }
    .vitalik-quote::before,
    .vitalik-quote::after {
        font-size: 2rem;
    }
    .vitalik-attribution {
        font-size: 0.9rem;
    }
    .problem-card {
        padding: 1.5rem;
        min-height: 80px;
    }
    .opportunity-card {
        padding: 1.5rem;
        min-height: 80px;
    }
    .card-title {
        font-size: 1.1rem;
        margin-bottom: 0.8rem;
    }
    .problem-card:first-child .card-content {
        gap: 1.5rem;
    }
    .opportunity-card:first-child .card-content {
        gap: 1.5rem;
    }
    .fan-chart {
        margin: 0.5rem 0;
        min-height: 200px;
    }
    .chart-svg {
        max-width: 220px;
    }
    .chart-legend {
        grid-template-columns: 1fr;
        gap: 0.5rem;
        margin-top: 1rem;
        padding: 0.5rem;
    }
    .chart-legend > div > span {
        font-size: 0.8rem;
    }
    .subscription-logos {
        gap: 0.2rem;
    }
    .subscription-logo {
        height: 30px;
        max-width: 45px;
        padding: 0.15rem;
    }
    .plus-sign {
        font-size: 0.9rem;
        margin: 0 0.15rem;
    }
    .subscription-title {
        font-size: 1rem;
    }
    .llm-comparison-table th {
        padding: 0.6rem 0.4rem;
        font-size: 0.75rem;
    }
    .llm-comparison-table td {
        padding: 0.6rem 0.4rem;
        font-size: 0.75rem;
    }
    .news-image {
        border-radius: 8px;
    }
    .hero-super-title {
        font-size: 0.8rem;
        margin-bottom: 1rem;
    }
    .hero-title {
        font-size: 1.5rem;
        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;
    }
    .hero-partners-container {
        flex-direction: column;
        gap: 1.5rem;
        margin-top: 4rem;
        padding: 0 10px;
    }
    .hero-investors-section {
        width: 100%;
        padding: 0;
        margin-top: 0;
    }
    .hero-investors-title {
        font-size: 1rem;
        margin-bottom: 1rem;
    }
    .hero-investors-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.8rem;
    }
    .hero-investor-logo[alt="Orion Parrott"] {
        max-height: 52px;
    }
    .hero-investor-logo[alt="Orange DAO"] {
        max-height: 52px;
    }
    .hero-investor-card {
        padding: 0.8rem;
        min-height: 80px;
    }
    .hero-investor-logo {
        max-height: 48px;
    }
    .hero-trusted-section {
        width: 100%;
        margin-top: 0;
        padding: 0;
    }
    .hero-trusted-title {
        font-size: 1rem;
        font-weight: 600;
        color: #ffffff;
        margin-bottom: 0.8rem;
    }
    .hero-trusted-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.8rem;
    }
    .hero-trusted-card {
        padding: 0.8rem;
        min-height: 75px;
    }
    .hero-trusted-logo {
        max-height: 48px;
    }
    .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(3, 1fr);
    gap: 2.5rem;
    max-width: 900px;
    margin: 0 auto;
    margin: 2rem auto 0 auto;
}

.profile-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(139, 127, 184, 0.3);
    padding: 2rem 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;
    padding-bottom: 2rem;
}

.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-headshot {
    width: 80px;
    height: 80px;
    margin: 0 auto 2rem auto;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
}

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

.headshot-placeholder {
    width: 100%;
    height: 100%;
    background: #2a2a2a;
    border: 2px solid #333;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.headshot-icon {
    font-size: 2rem;
    color: #666;
}

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

.profile-title {
    color: #ffffff;
    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-headshot {
        width: 70px;
        height: 70px;
    }
    .headshot-icon {
        font-size: 1.5rem;
    }
    .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 Section Styling */

.advisor-section {
    margin-top: 4rem;
    width: 100%;
}


/* Investors & Partners Title Section Styling */

.investors-partners-title-section {
    margin-top: 4rem;
    width: 100%;
}

.investors-partners-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #e2e8f0;
    margin-bottom: 2rem;
    margin-top: 0;
}

.advisor-section-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #e2e8f0;
    margin-bottom: 2rem;
    margin-top: 0;
}


/* Advisor Profiles Styling */

.advisor-profiles {
    display: flex;
    flex-direction: row;
    gap: 2rem;
    width: 100%;
    box-sizing: border-box;
}

.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;
    flex: 1 1 calc(50% - 1rem);
    min-width: 0;
    box-sizing: border-box;
}

.advisor-card>a {
    width: 100%;
    display: flex;
    flex: 1;
}

.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: #a0aec0;
    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-profiles {
        flex-direction: column;
    }
    .advisor-card {
        padding: 1.5rem;
        flex-direction: column;
        text-align: left;
        gap: 1rem;
    }
    .advisor-card a {
        display: flex !important;
        flex-direction: column !important;
        gap: 1rem !important;
        align-items: flex-start !important;
    }
    .advisor-photo {
        width: 100px;
        height: 100px;
        margin: 0;
        align-self: flex-start;
    }
    .advisor-info {
        width: 100%;
    }
    .advisor-info h4 {
        font-size: 1.1rem;
        text-align: left;
    }
    .advisor-title {
        font-size: 0.9rem;
        text-align: left;
    }
    .advisor-description {
        font-size: 0.85rem;
        text-align: left;
        width: 100%;
    }
    .advisor-description.credentials {
        font-size: 0.8rem;
        text-align: left;
        width: 100%;
    }
}


/* University Logos in About Stats */

.university-logos {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    column-gap: 0.5rem;
    row-gap: 1.5rem;
    width: 100%;
    margin: 2rem 0;
}

.university-logo {
    height: 80px;
    width: 100%;
    object-fit: contain;
    background: #ffffff;
    padding: 0.4rem;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);

}

.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;
        width: 100%;
        max-width: 400px;
    }
    .university-logo {
        height: 70px;
        max-width: 150px;
        padding: 0.3rem;
    }
    .vitalik-content {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }
    .meeting-photo {
        width: 250px;
    }
    .vitalik-quote {
        font-size: 1.5rem;
    }
    .vitalik-quote::before,
    .vitalik-quote::after {
        font-size: 2.5rem;
    }
}

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


/* Vitalik Comment Section */

.vitalik-comment-section {
    padding: 4rem 0;
    background: #000000;
}

.vitalik-content {
    display: flex;
    align-items: center;
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
}

.vitalik-image {
    flex: 0 0 auto;
}

.meeting-photo {
    width: 300px;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(139, 127, 184, 0.2);
    border: 1px solid #333;
}

.vitalik-text {
    flex: 1;
}

.vitalik-quote {
    font-size: 1.8rem;
    font-weight: 600;
    color: #e2e8f0;
    line-height: 1.4;
    margin: 0 0 1.5rem 0;
    font-style: italic;
    position: relative;
}

.vitalik-quote::before {
    content: '"';
    font-size: 3rem;
    color: var(--bright-purple);
    position: absolute;
    top: -10px;
    left: -20px;
    font-family: serif;
}

.vitalik-quote::after {
    content: '"';
    font-size: 3rem;
    color: var(--bright-purple);
    position: absolute;
    bottom: -20px;
    right: -10px;
    font-family: serif;
}

.vitalik-attribution {
    font-size: 1rem;
    color: #a0aec0;
    line-height: 1.6;
    margin: 0;
    font-style: italic;
}


/* 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: nowrap;
}

.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: 0;
    flex: 1;
}

.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(--dark-blue));
    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(--dark-blue));
    -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) {
    .barriers-section {
        padding: 4rem 0;
    }
    .barriers-cards-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .solution-section {
        padding: 4rem 0;
    }
    .workflow-subtitle {
        font-size: 2rem;
        margin-bottom: 3rem;
    }
    .workflow-section {
        padding: 4rem 0;
    }
    .workflow-flow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin: 4rem 0;
    flex-wrap: nowrap;
}
    .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;
    }
}


/* Investor & Partner Logos Scrolling Styles */

.investor-logos-container {
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    background: #ffffff;
    padding: 2rem 0;
    margin-top: 0.5rem;
    overflow: hidden;
    position: relative;
}

.investor-logos-scroll {
    display: flex;
    animation: scroll-logos 40s linear infinite;
    gap: 3rem;
    align-items: center;
    width: fit-content;
}

.investor-logo-item {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 80px;
    padding: 0 1rem;
}

.investor-logo {
    max-height: 60px;
    max-width: 150px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: grayscale(100%) opacity(0.7);
    transition: all 0.3s ease;
}

.investor-logo:hover {
    filter: grayscale(0%) opacity(1);
    transform: scale(1.05);
}


/* Specific styling for OnePiece Solana logo */

.investor-logo[alt="OnePiece Solana"] {
    max-height: 80px;
    max-width: 200px;
}

@keyframes scroll-logos {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}


/* Pause animation on hover */

.investor-logos-container:hover .investor-logos-scroll {
    animation-play-state: paused;
}


/* Mobile responsive */

@media (max-width: 768px) {
    .investor-logos-container {
        padding: 1.5rem 0;
    }
    .investor-logos-scroll {
        gap: 2rem;
    }
    .investor-logo-item {
        height: 60px;
        padding: 0 0.5rem;
    }
    .investor-logo {
        max-height: 40px;
        max-width: 120px;
    }
    /* Mobile specific styling for OnePiece Solana logo */
    .investor-logo[alt="OnePiece Solana"] {
        max-height: 60px;
        max-width: 160px;
    }
}


/* Statistics Cards Styles */

.stats-container {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    padding: 3rem 0;
    flex-wrap: nowrap;
    overflow-x: auto;
    max-width: 1200px;
    margin: 0 auto;
}

.stats-container .stat-card {
    background: #1a1a1a;
    border: 1px solid #333;
    border-radius: 12px;
    padding: 2rem 1.5rem;
    text-align: center;
    min-width: 200px;
    flex: 0 0 auto;
    max-width: 250px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(139, 127, 184, 0.2);
}

.stats-container .stat-card:hover {
    transform: translateY(-5px);
    border-color: #8b7fb8;
    box-shadow: 0 0 15px rgba(139, 127, 184, 0.3);
}

.stats-container .stat-number {
    font-family: 'Rajdhani', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #8b7fb8;
    margin-bottom: 0.5rem;
    text-shadow: 0 0 10px rgba(139, 127, 184, 0.3);
}

.stats-container .stat-label {
    font-family: 'Exo 2', sans-serif;
    font-size: 1rem;
    color: #cbd5e1;
    font-weight: 500;
    line-height: 1.4;
}


/* Mobile responsive for revenue engine */

@media (max-width: 768px) {
    .revenue-engine {
        padding: 3rem 0;
    }
    .revenue-layers {
        gap: 1rem;
        padding: 0 1rem;
    }
    .revenue-layer {
        transform: translateX(-50px);
    }
    .revenue-layer:nth-child(2) {
        transform: translateX(50px);
    }
    .revenue-layer:nth-child(3) {
        transform: translateX(-50px);
    }
    .layer-header {
        padding: 1.5rem;
    }
    .layer-header h3 {
        font-size: 1.3rem;
    }
    .layer-points {
        padding: 1.5rem;
        max-width: 100%;
    }
    .layer-points li {
        font-size: 0.9rem;
        margin-bottom: 0.8rem;
    }
}

@media (max-width: 480px) {
    .revenue-engine {
        padding: 2rem 0;
    }
    .revenue-layers {
        gap: 0.8rem;
        padding: 0 0.5rem;
    }
    .revenue-layer {
        transform: translateX(-30px);
    }
    .revenue-layer:nth-child(2) {
        transform: translateX(30px);
    }
    .revenue-layer:nth-child(3) {
        transform: translateX(-30px);
    }
    .layer-header {
        padding: 1rem;
    }
    .layer-header h3 {
        font-size: 1.1rem;
    }
    .layer-points {
        padding: 1rem;
    }
    .layer-points li {
        font-size: 0.85rem;
        margin-bottom: 0.6rem;
    }
}


/* Mobile responsive for stats */

@media (max-width: 768px) {
    .stats-container {
        gap: 1rem;
        padding: 2rem 1rem;
        justify-content: flex-start;
        max-width: 100%;
    }
    .stats-container .stat-card {
        min-width: 150px;
        padding: 1.5rem 1rem;
    }
    .stats-container .stat-number {
        font-size: 2rem;
    }
    .stats-container .stat-label {
        font-size: 0.9rem;
    }
    /* Mobile logo size adjustment */
    .logo-img {
        height: 32px;
        max-width: 170px;
    }
}

@media (max-width: 480px) {
    .stats-container {
        gap: 0.8rem;
        padding: 1.5rem 0.5rem;
    }
    .stats-container .stat-card {
        min-width: 120px;
        padding: 1rem 0.8rem;
    }
    .stats-container .stat-number {
        font-size: 1.5rem;
    }
    .stats-container .stat-label {
        font-size: 0.8rem;
    }
    /* Extra small screens logo size */
    .logo-img {
        height: 28px;
        max-width: 150px;
    }
}


@media (max-width: 480px) {
    .barriers-section {
        padding: 3rem 0;
    }
    .barriers-cards-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    .barriers-section .card-title {
        font-size: 1rem;
    }
}
