/* Investment section styles */
.invest-section {
    padding: 1rem 0;
    width: 100%;
    overflow-x: hidden;
    display: flex;
    justify-content: center;
}

.invest-section .container {
    width: 100%;
    max-width: 1400px;
    padding: 0 2rem;
    display: flex;
    justify-content: center;
    margin: 0 auto;
}

.invest-section .floating-container {
    width: 100%;
    max-width: 800px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.invest-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 1rem;
}

.personal-note {
    text-align: left;
    padding: 2rem;
    margin: 2rem 0;
}

.personal-note h3 {
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.personal-note p {
    margin-bottom: 1rem;
}

.signature {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.signature .title {
    font-size: 0.9rem;
    opacity: 0.7;
}

.investment-terms {
    display: flex;
    justify-content: space-between;
    padding: 2rem;
    margin: 2rem 0;
    gap: 2rem;
}

.term-item {
    flex: 1;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.term-label {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 300;
}

.term-value {
    font-size: 2.5rem;
    font-weight: 600;
    background: linear-gradient(135deg, #7A4FFC 0%, #4F74FC 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-family: 'Space Grotesk', sans-serif;
}

.term-item.highlight .term-value {
    text-decoration: underline;
    text-underline-offset: 8px;
}

.invest-content {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
    text-align: center;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    backdrop-filter: blur(10px);
}

.invest-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.invest-subtitle {
    font-size: 1.2rem;
    opacity: 0.8;
    margin-bottom: 2rem;
}

.form-instructions {
    margin-bottom: 2rem;
    font-size: 1rem;
    opacity: 0.7;
}

.investor-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.form-group {
    width: 100%;
}

.glass-input {
    width: 100%;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: white;
    font-size: 1rem;
}

.glass-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

select.glass-input {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1em;
}

.investor-form button {
    margin-top: 1rem;
    width: 100%;
    padding: 1rem;
    font-size: 1rem;
}

@media (max-width: 768px) {
    .invest-section .container {
        padding: 0;
    }
    
    .invest-content {
        padding: 1.5rem;
        width: 100%;
        max-width: none;
        margin: 0;
        border-radius: 0;
    }
    
    .invest-content h2 {
        font-size: 2rem;
    }
} 