:root {
    --accent: #5ECDC4;
    --accent-dark: #2ac6bc;
    --accent-faded: #24807a;
    --accent-gradient: linear-gradient(135deg, #5ECDC4 0%, #24807a 100%);
}

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

:global(body) {
    font-family: 'Inter', sans-serif;
    background: #000000;
    color: white;
    min-height: 100vh;
    padding: 40px 20px;
    overflow-x: hidden;
}

html, body {
    width: 100vw;
    max-width: 100vw;
    overflow-x: hidden !important;
}

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

/* Header */
.site-header {
    background: white;
    border-bottom: 1px solid #e5e5e5;
    padding: 16px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
}

.site-header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 24px;
    font-weight: 600;
    color: #1a1a1a;
    text-decoration: none;
}

.logo-icon {
    width: 32px;
    height: 32px;
    background: #000000;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #4ade80;
    font-weight: 700;
    font-size: 18px;
}

.nav-cta {
    background: var(--accent);
    color: #000000;
    padding: 10px 20px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    transition: all 0.2s ease;
}

.nav-cta:hover {
    background: var(--accent-dark);
    transform: translateY(-1px);
}

/* Hero Section */
.hero {
    background: #000000;
    color: #ffffff;
    padding: 120px 0 100px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 20%, rgba(74, 222, 128, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(74, 222, 128, 0.05) 0%, transparent 50%);
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: 56px;
    font-weight: 700;
    margin-bottom: 24px;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.hero h1 .highlight {
    color: var(--accent);
}

.hero-subtitle {
    font-size: 20px;
    margin-bottom: 40px;
    opacity: 0.8;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.5;
    font-weight: 400;
}

.hero-stats {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
}

.hero-stats > * {
    flex: 1;
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: 64px;
    font-weight: 700;
    display: block;
    color: var(--accent);
    line-height: 1;
}

.stat-label {
    font-size: 14px;
    opacity: 0.7;
    margin-top: 8px;
    font-weight: 400;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--accent);
    color: #000000;
    padding: 14px 28px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.2s ease;
    margin-top: 40px;
}

.cta-button:hover {
    background: var(--accent-dark);
    transform: translateY(-2px);
}

.cta-button-secondary {
    background: transparent;
    color: #ffffff;
    border: 1px solid #333333;
}

.cta-button-secondary:hover {
    border-color: #4ade80;
    color: #4ade80;
}

/* Section Styles */
.section {
    padding: 100px 0;
    background: #ffffff;
}

.section-gray {
    background: #fafafa url('/assets/images/board-background.jpg') no-repeat center center;
    background-size: cover;
    position: relative;
}

.section-gray::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 250, 250, 0.95);
    z-index: 1;
}

.section-gray .container {
    position: relative;
    z-index: 2;
}

.section-dark {
    background: #000000 url('/assets/icons/rose-petals.svg') no-repeat center center;
    background-size: cover;
    position: relative;
    z-index: 10;
}

.section-dark-2 {
    background: #000000;
    background-size: cover;
    position: relative;
    z-index: 10;
}

.section-title {
    font-size: 48px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 24px;
    color: #1a1a1a;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.section-dark .section-title {
    color: #ffffff;
}

.section-dark-2 .section-title {
    color: #ffffff;
}

.section-subtitle {
    font-size: 20px;
    text-align: center;
    color: #666666;
    max-width: 800px;
    margin: 0 auto 80px;
    line-height: 1.5;
    font-weight: 400;
}

.section-dark .section-subtitle {
    color: #a0a0a0;
    position: relative;
    z-index: 10;
}

.section-dark-2 .section-subtitle {
    color: #ffffff;
}

/* Problem Section */
.problem-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 32px;
    margin-top: 60px;
}

.problem-card {
    background: #ffffff;
    padding: 40px;
    border-radius: 12px;
    border: 1px solid #e5e5e5;
    transition: all 0.3s ease;
}

.problem-highlight {
    color: #c01010;
    font-weight: 600;
}

.problem-card:hover {
    border-color: #c01010;
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.problem-icon {
    width: 100px;
    height: 100px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    font-size: 24px;
}

.problem-title {
    font-size: 30px;
    font-weight: 600;
    margin-bottom: 16px;
    color: #1a1a1a;
    line-height: 1.3;
}

.problem-card p {
    color: #666666;
    line-height: 1.6;
}

/* Solution Features */
.solution-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.feature {
    text-align: left;
    padding: 0;
}

.feature-number {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
}

.feature-num {
    width: 32px;
    height: 32px;
    background: var(--accent);
    color: #000000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 16px;
}

.feature h3 {
    font-size: 24px;
    font-weight: 600;
    color: #ffffff;
    line-height: 1.3;
}

.feature h3 .highlight {
    color: var(--accent);
}

.feature p {
    color: #a0a0a0;
    line-height: 1.6;
    font-size: 16px;
}

.feature-text {
    color: #666666;
    line-height: 1.6;
    font-size: 16px;
    margin-top: 10px;
}

/* Demo Flow */
#demo.section {
    position: relative;
    overflow: hidden;
    z-index: 0;
}

.demo-flow {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
}

/* Orbital Animation Background */
.orbital-ring-1,
.orbital-ring-2,
.orbital-ring-3,
.orbital-ring-4,
.orbital-ring-5 {
    position: absolute;
    top: 50%;
    left: 50%;
    border-radius: 50%;
    z-index: 0;
    pointer-events: none;
}

.orbital-ring-1 {
    width: 1000px;
    height: 1000px;
    margin-left: -500px;
    margin-top: -500px;
    border: 1px solid #16a34a; /* Darker green */
    animation: rotate 40s linear infinite;
    opacity: 0.3;
}

.orbital-ring-2 {
    width: 800px;
    height: 800px;
    margin-left: -400px;
    margin-top: -400px;
    border: 1px solid var(--accent-dark); /* Your green */
    animation: rotate 30s linear infinite reverse;
    opacity: 0.6;
}

.orbital-ring-3 {
    width: 600px;
    height: 600px;
    margin-left: -300px;
    margin-top: -300px;
    border: 1px solid #d3d3d3; 
    animation: rotate 25s linear infinite;
    opacity: 0.4;
}

.orbital-ring-4 {
    width: 1400px;
    height: 1400px;
    margin-left: -700px;
    margin-top: -700px;
    border: 1px solid #999999; /* Medium grey */
    animation: rotate 20s linear infinite reverse;
    opacity: 0.5;
}

.orbital-ring-5 {
    width: 1200px;
    height: 1200px;
    margin-left: -600px;
    margin-top: -600px;
    border: 1px solid #999999;
    animation: rotate 15s linear infinite;
    opacity: 0.7;
}

/* Enhanced shimmer effect */
@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes shimmer {
    0%, 100% { opacity: 0.2; }
    50% { opacity: 0.5; }
}

/* Add shimmer to all rings */
.orbital-ring-1,
.orbital-ring-2,
.orbital-ring-3,
.orbital-ring-4,
.orbital-ring-5 {
    animation-name: rotate, shimmer;
    animation-duration: 30s, 5s;
    animation-timing-function: linear, ease-in-out;
    animation-iteration-count: infinite, infinite;
}

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

.flex-row {
    flex-direction: row;
    gap: 24px;
}

.step-content-text {
    flex: 1;
}

.demo-step {
    display: flex;
    align-items: flex-start;
    margin-bottom: 48px;
    background: #ffffff;
    border-radius: 12px;
    padding: 40px;
    border: 1px solid #e5e5e5;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}


.demo-step:hover {
    border-color: var(--accent);
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.step-number {
    background: var(--accent);
    color: #000000;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    margin-right: 32px;
    flex-shrink: 0;
}

.step-content h3 {
    font-size: 24px;
    color: #1a1a1a;
    margin-bottom: 16px;
    font-weight: 600;
    line-height: 1.3;
}

.step-content p {
    color: #666666;
    margin-bottom: 20px;
    line-height: 1.6;
    font-size: 16px;
}

.demo-highlight {
    background: #f0f9ff;
    border-left: 3px solid var(--accent);
    padding: 16px 20px;
    border-radius: 0 8px 8px 0;
    color: #1a1a1a;
    font-weight: 500;
    font-size: 18px;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 32px;
}

.demo-cta {
    text-align: center;
    margin-top: 60px;
}

/* Products Section */
.products {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.product-card {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #e5e5e5;
    transition: all 0.3s ease;
}

.product-card:hover {
    border-color: var(--accent);
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.product-card-header {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 40px;
    position: relative;
}

.product-title {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #1a1a1a;
    line-height: 1.3;
}

.product-subtitle {
    color: var(--accent);
    font-size: 20px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.product-content {
    padding: 40px;
}

.product-content p {
    color: #666666;
    line-height: 1.6;
    margin-bottom: 24px;
}

.product-content-text {
    color: #000000;
    line-height: 1.6;
    margin-bottom: 4px;
    font-size: 24px;
}

.product-content-container {
    border: 2px solid #000000;
    border-radius: 8px;
    padding: 0px;
    margin-bottom: 16px;
    display: flex;
    align-items: stretch;
    gap: 4px;
}

.product-content-icon {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #ffffff;
    padding: 24px;
    border-right: 2px solid #000000;
    border-radius: 4px;
    margin-right: 8px;
}

.product-features {
    list-style: none;
}

.product-features li {
    padding: 8px 0;
    position: relative;
    padding-left: 24px;
    color: #666666;
    line-height: 1.5;
    font-size: 24px;
}

.product-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: 600;
}

.problem-list {
    list-style: none;
}

.problem-list li {
    padding: 8px 0;
    position: relative;
    padding-left: 24px;
    color: #666666;
    line-height: 1.5;
}

.problem-list li::before {
    content: 'X';
    position: absolute;
    left: 0;
    color: #ff0000;
    font-weight: 600;
}

.problem-text {
    margin-top: 10px;
    font-size: 20px;
}

/* Team Section */
.team-grid {
    display: flex;
    justify-content: center;
    margin-top: 60px;
}

.team-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 40px;
    border: 1px solid #e5e5e5;
    max-width: 800px;
    width: 100%;
}

.team-photo {
    margin-bottom: 32px;
    display: flex;
    justify-content: center;
}

.photo-placeholder {
    width: 120px;
    height: 120px;
    background: #4ade80;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    font-size: 32px;
    font-weight: 700;
    color: #000000;
}

.team-name {
    font-size: 32px;
    font-weight: 700;
    color: #1a1a1a;
    text-align: center;
    margin-bottom: 8px;
    line-height: 1.2;
}

.team-title {
    font-size: 18px;
    color: var(--accent);
    text-align: center;
    margin-bottom: 32px;
    font-weight: 500;
}

.team-highlights {
    display: flex;
    justify-content: space-around;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 20px;
}

.highlight {
    text-align: center;
    flex: 1;
    min-width: 200px;
    color: var(--accent);
}

.highlight-number {
    display: block;
    font-size: 40px;
    font-weight: 700;
    color: var(--accent);
    line-height: 1;
}

.highlight-icon {
    display: block;
    font-size: 32px;
    margin-bottom: 8px;
}

.highlight-label {
    font-size: 14px;
    color: #666666;
    font-weight: 400;
    line-height: 1.4;
}

.team-experience {
    margin-bottom: 32px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.team-experience h4 {
    color: #1a1a1a;
    margin-bottom: 16px;
    font-size: 18px;
    font-weight: 600;
}

.team-experience ul {
    list-style: none;
    padding-left: 0;
    text-align: left;
}

.team-experience li {
    padding: 6px 0;
    position: relative;
    padding-left: 24px;
    color: #666666;
    line-height: 1.5;
}

.team-experience li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: 600;
}

.team-education {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.education-item {
    text-align: center;
    color: #666666;
    font-size: 14px;
}

.team-value-prop {
    background: #fafafa;
    padding: 32px;
    border-radius: 12px;
    margin-top: 40px;
    border-left: 3px solid var(--accent);
}

.team-value-prop p {
    color: #666666;
    font-size: 16px;
    line-height: 1.6;
    margin: 0;
}

/* Final CTA */
.final-cta {
    background: #000000;
    color: #ffffff;
    text-align: center;
    padding: 100px 0;
}

.final-cta h2 {
    font-size: 48px;
    margin-bottom: 20px;
    font-weight: 700;
    line-height: 1.2;
}

.final-cta p {
    font-size: 20px;
    margin-bottom: 40px;
    opacity: 0.8;
    line-height: 1.5;
}   

/* Responsive */
@media (max-width: 768px) {
    :global(body) {
        padding: 0;
        overflow-x: hidden;
    }
    
    .hero h1 {
        font-size: 40px;
    }
    
    .hero-subtitle {
        font-size: 18px;
    }
    
    .hero-stats {
        gap: 20px;
    }
    
    .stat-number {
        font-size: 36px;
    }
    
    .section-title {
        font-size: 36px;
    }
    
    .products {
        grid-template-columns: 1fr;
    }

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

    .solution-features {
        grid-template-columns: 1fr;
    }

    .container {
        padding: 0 16px;
        max-width: 100%;
        width: 100%;
    }

    .section {
        padding: 60px 0;
        width: 100%;
    }

    .demo-step {
        flex-direction: column;
        text-align: center;
    }

    .demo-image-wrapper {
        margin: 32px auto;
        border-radius: 12px;
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
        border: 1px solid #e5e5e5;
        max-width: 600px;
        overflow: hidden; 
    }

    .demo-image {
        width: 100%;
        height: auto;
        display: block;
    }

    .step-number {
        margin-right: 0;
        margin-bottom: 20px;
    }
    
    .site-header {
        padding: 16px 20px;
    }
    
    .hero {
        padding: 80px 0 60px;
        width: 100%;
    }
}

.experience-logos {
    margin: 40px 0;
    padding: 40px 0;
    border-top: 1px solid rgba(229, 229, 229, 0.5);
    border-bottom: 1px solid rgba(229, 229, 229, 0.5);
}

.logo-section {
    margin-bottom: 32px;
}

.logo-section h4 {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #666666;
    text-align: center;
    margin-bottom: 20px;
}

.logo-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.logo-item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px 24px;
    background: rgba(250, 250, 250, 0.8);
    border-radius: 8px;
    border: 1px solid rgba(229, 229, 229, 0.6);
    transition: all 0.3s ease;
    min-width: 120px;
    height: 80px;
}

.logo-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border-color: var(--accent-dark);
}

.logo-item img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: grayscale(100%) opacity(0.7);
    transition: filter 0.3s ease;
}

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

/* Responsive logo grid */
@media (max-width: 768px) {
    .logo-grid {
        gap: 20px;
    }
    
    .logo-item {
        min-width: 100px;
        height: 60px;
        padding: 12px 16px;
    }
}

.team-section {
    background: #000000 url('/assets/icons/pattern-randomized.svg') no-repeat center center;
    background-size: cover;
    position: relative;
    z-index: 10;
}

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

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

body {
    font-family: 'Inter', sans-serif;
    background: #000000;
    color: white;
    min-height: 100vh;
    padding: 40px 20px;
    overflow-x: auto;
}

.container {
    max-width: 1600px;
    margin: 0 auto;
    position: relative;
}

.product-diagram-header {
    text-align: center;
    margin-bottom: 60px;
}

.logo {
    font-size: 2.5rem;
    font-weight: 700;
    letter-spacing: 3px;
    margin-bottom: 10px;
}

.tagline {
    font-size: 1.2rem;
    color: #64ffda;
    font-weight: 300;
    letter-spacing: 1px;
}

/* Product Sections */
.product-section {
    margin-bottom: 80px;
    position: relative;
}

.product-diagram-header {
    text-align: center;
    margin-bottom: 60px;
}

.product-diagram-header .logo {
    color: #ffffff;
}

.product-title {
    background: transparent;
    border: 2px solid rgba(100, 255, 218, 0.4);
    border-radius: 20px;
    padding: 20px 40px;
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: 1px;
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(100, 255, 218, 0.2);
    color: #ffffff;
}

.investor-section .product-title {
    background: linear-gradient(135deg, rgba(100, 255, 218, 0.2) 0%, rgba(79, 172, 254, 0.2) 100%);
    border-color: var(--accent);
}

.portco-section .product-title {
    background: linear-gradient(135deg, rgba(90, 110, 174, 0.2) 0%, rgba(70, 130, 150, 0.2) 100%);
    border-color: #5A6EAE;
    color: #ffffff;
}

/* Feature Cards */
.features-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.feature-card {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 24px 20px;
    min-width: 280px;
    max-width: 320px;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.investor-section .feature-card {
    border-color: rgba(100, 255, 218, 0.3);
}

.investor-section .feature-card:hover {
    transform: translateY(-5px);
    border-color: #64ffda;
    box-shadow: 0 15px 40px rgba(100, 255, 218, 0.2);
}

.portco-section .feature-card {
    border-color: #5A6EAE;
}

.portco-section .feature-card:hover {
    transform: translateY(-5px);
    border-color: #5A6EAE;
    box-shadow: 0 15px 40px #5A6EAE;
}

.feature-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 16px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.investor-section .feature-icon {
    background: linear-gradient(135deg, #64ffda, #4facfe);
}

.portco-section .feature-icon {
    background: linear-gradient(135deg, #5A6EAE, #5667db);
}

.feature-title {
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.4;
    color: #ffffff;
    margin-bottom: 8px;
}

.feature-description {
    font-size: 0.85rem;
    color: #a0a0a0;
    line-height: 1.4;
}

/* Central Hub */
.central-hub {
    position: relative;
    margin: 60px 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hub-container {
    width: 280px;
    height: 120px;
    background: transparent;
    border: 2px solid rgba(100, 255, 218, 0.4);
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(20px);
    box-shadow: 0 0 40px rgba(100, 255, 218, 0.3);
    position: relative;
}

.hub-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 4px;
}

.hub-subtitle {
    font-size: 0.9rem;
    color: #64ffda;
    font-weight: 400;
}

/* Portfolio Companies */
.portfolio-companies {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin: 60px 0;
    flex-wrap: wrap;
}

.portfolio-company {
    width: 140px;
    height: 100px;
    background: transparent;
    border: 1px solid rgba(90, 110, 174, 0.4);
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    position: relative;
}

.portfolio-company:hover {
    transform: translateY(-3px);
    border-color: #5A6EAE;
    box-shadow: 0 10px 25px #5A6EAE;
}

.company-icon {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, #5A6EAE, #5667db);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    margin-bottom: 8px;
}

.company-name {
    font-size: 0.8rem;
    font-weight: 500;
    text-align: center;
    line-height: 1.2;
}

/* Connection Lines */
.connection-lines {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 1;
}

.connection-line {
    position: absolute;
    background: linear-gradient(90deg, transparent, rgba(100, 255, 218, 0.6), transparent);
    height: 2px;
}

.vertical-line {
    width: 2px;
    background: linear-gradient(0deg, transparent, rgba(100, 255, 218, 0.6), transparent);
    left: 50%;
    transform: translateX(-50%);
}

/* Data flow indicators */
.data-flow {
    position: absolute;
    width: 8px;
    height: 8px;
    background: var(--accent);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

.section-divider {
    width: 75%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    margin: 40px auto;
}

@keyframes pulse {
    0%, 100% { opacity: 0.4; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.2); }
}

/* Responsive Design */
@media (max-width: 1200px) {
    .features-grid {
        gap: 20px;
    }
    
    .portfolio-companies {
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 16px;
        max-width: 100%;
        width: 100%;
    }
    
    .logo {
        font-size: 2rem;
    }
    
    .features-grid {
        flex-direction: column;
        align-items: center;
    }
    
    .portfolio-companies {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .feature-card {
        min-width: 260px;
        max-width: 300px;
    }

    .flex-container.flex-row {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
        text-align: center;
    }

    .flex-container.flex-row img {
        width: 50% !important;
        height: auto !important;
        margin-bottom: 1rem;
    }

    .step-content-text {
        width: 100%;
    }

    .step-content-text h3 {
        margin-bottom: 0.5rem;
    }

    .step-content-text p {
        margin: 0;
        line-height: 1.5;
    }

    /* Product layout mobile fixes */
    .product-layout {
        flex-direction: column;
        gap: 2rem;
    }
    .product-layout .investor-section,
    .product-layout .portco-section {
        width: 100%;
        justify-content: center;
        align-items: center;
        display: flex;
    }
    .product-layout .product-title {
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .product-layout .product-title img {
        width: 100%;
        max-width: 350px;
        height: auto;
        object-fit: contain;
    }
    .spacer {
        display: none;
    }
}

.product-picture .container {
    background: transparent;
    border-radius: 16px;
    padding: 20px;
}

.faq-section {
    max-width: 700px;
    margin: 80px auto 0 auto;
    margin-bottom: 0px;
    padding: 40px 24px;
    background: rgba(255,255,255,0.02);
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.08);
}

.faq-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 32px;
    text-align: center;
    color: var(--accent);
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding-left: 20px;
}

.faq-item {
    border-radius: 8px;
    background: rgba(255,255,255,0.04);
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    outline: none;
    font-size: 1.1rem;
    font-weight: 600;
    color: #fff;
    padding: 20px;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.2s;
}

.faq-question:hover {
    background: var(--accent-faded);
}

.faq-icon {
    font-size: 1.5rem;
    color: var(--accent);
    margin-left: 16px;
}

.faq-answer {
    padding: 20px 20px 20px 20px;
    color: #ffffff;
    font-size: 1rem;
    animation: fadeIn 0.2s;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-8px);}
    to { opacity: 1; transform: translateY(0);}
}

/* Tailwind replacement classes */
.my-8 {
    margin-top: 2rem;
    margin-bottom: 2rem;
}

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

.max-w-700px {
    max-width: 700px;
}

.overflow-hidden {
    overflow: hidden;
}

.rounded-xl {
    border-radius: 0.75rem;
}

.border {
    border-width: 1px;
}

.border-gray-200 {
    border-color: #e5e7eb;
}

.shadow-2xl {
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.block {
    display: block;
}

.h-auto {
    height: auto;
}

.w-full {
    width: 100%;
}

.flex {
    display: flex;
}

.flex-row {
    flex-direction: row;
}

.justify-between {
    justify-content: space-between;
}

.gap-8 {
    gap: 2rem;
}

.flex-1 {
    flex: 1 1 0%;
}

.product-layout {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
}

.product-flex {
    flex: 1 1 0%;
}

.header-container {
    width: 100%;
    max-width: none;
    padding-left: 2rem;
    padding-right: 2rem;
}

.italics {
    font-style: italic;
    font-weight: inherit;
    color: inherit;
}

#demo .section-title {
    position: relative;
    z-index: 2;
    background: transparent;
}

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

.modal-image {
    max-width: 90%;
    max-height: 90vh;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.demo-image {
    cursor: pointer;
    transition: transform 0.2s ease;
}

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