/* Shared utility classes */
.gradient-text {
    background: linear-gradient(135deg, #7A4FFC 0%, #4F74FC 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin: 0;
}

.glass-effect {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 12px;
    box-shadow: 0 0 30px rgba(122, 79, 252, 0.1);
    transition: all 0.3s ease;
}

.glass-effect:hover {
    box-shadow: 0 0 40px rgba(122, 79, 252, 0.15);
    border-color: rgba(122, 79, 252, 0.2);
}

.section-dark {
    background: rgba(0, 0, 0, 0.3);
}

.section-gradient {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(74, 111, 255, 0.1) 100%);
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-align: center;
    background: linear-gradient(135deg, #7A4FFC 0%, #4F74FC 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-subtitle {
    opacity: 0.8;
    text-align: center;
    margin-bottom: 2rem;
}

/* Container styles */
.floating-container {
    width: 100%;
    max-width: 1400px;
    border-radius: 24px;
    padding: 0;
    margin: 2rem auto;
    position: relative;
    overflow: hidden;
}

.floating-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 24px;
    padding: 0px;
    background: linear-gradient(
        135deg,
        rgba(122, 79, 252, 0.2),
        rgba(79, 116, 252, 0.2)
    );
    -webkit-mask: 
        linear-gradient(#fff 0 0) content-box, 
        linear-gradient(#fff 0 0);
    mask: 
        linear-gradient(#fff 0 0) content-box, 
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

/* Specific section containers */
.market-content,
.problem-grid,
.vision-grid,
.platform-content,
.team-grid,
.statement-content,
.invest-content,
.perks-grid {
    position: relative;
    z-index: 1;
}

@media (max-width: 768px) {
    .floating-container {
        padding: 2rem;
        margin: 1rem auto;
    }
}

h1, h2, h3 {
    background: linear-gradient(135deg, #7A4FFC 0%, #4F74FC 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.primary-cta {
    background: linear-gradient(135deg, #7A4FFC 0%, #4F74FC 100%);
    color: white;
    border: none;
    padding: 1rem 2.5rem;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.primary-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(122, 79, 252, 0.3);
}

.hidden-form {
    display: none;
} 