/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    background-color: #1a1a1a;
    color: #c3b6a6;
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

/* Logo Section */
.logo-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-top: 32px;
    margin-bottom: 1.25px;
}

.brand-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 600;
    color: #c3b6a6;
    margin-top: 10px;
    margin-bottom: 25px;
    text-align: center;
}

.logo {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Headline Section */
.headline-section {
    text-align: center;
    max-width: 800px;
}

.main-headline {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 30px;
    color: #c3b6a6;
}

.main-headline .line {
    display: block;
}

.sub-headline {
    font-size: clamp(1rem, 2vw, 1.25rem);
    font-weight: 300;
    color: #c3b6a6;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button {
    background: transparent;
    border: 1px solid #9d825d;
    color: #c3b6a6;
    padding: 15px 40px;
    font-size: 1rem;
    font-weight: 400;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    letter-spacing: 0.18em;
}

.cta-button:hover {
    background-color: #9d825d;
    color: #1a1a1a;
    transform: translateY(-2px);
}

/* Features Section */
.features-section {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1200px;
    width: 100%;
}

.feature-block {
    text-align: center;
    padding: 20px;
}

.feature-icon {
    display: flex;
    justify-content: center;
    margin-bottom: 25px;
}

.feature-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.875rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #c3b6a6;
}

.feature-description {
    font-size: 1rem;
    color: #c3b6a6;
    line-height: 1.6;
    max-width: 280px;
    margin: 0 auto;
}

/* Early Access Section */
.early-access-section {
    text-align: center;
    max-width: 500px;
    width: 100%;
}

.exclusivity-headline {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 600;
    margin-bottom: 40px;
    color: #c3b6a6;
}

.early-access-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    width: 100%;
}

.form-group input {
    width: 100%;
    padding: 15px 20px;
    background: transparent;
    border: 1px solid #444;
    border-radius: 8px;
    color: #c3b6a6;
    font-size: 1rem;
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    transition: border-color 0.3s ease;
}

.form-group input:focus {
    outline: none;
    border-color: #9d825d;
}

.form-group input::placeholder {
    color: rgba(195, 182, 166, 0.8);
}

.submit-button {
    background: #1a1a1a;
    border: 1px solid #9d825d;
    color: #c3b6a6;
    padding: 15px 40px;
    font-size: 1rem;
    font-weight: 400;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    margin-top: 10px;
    letter-spacing: 0.18em;
}

.submit-button:hover {
    background-color: #9d825d;
    color: #1a1a1a;
    transform: translateY(-2px);
}

.submit-button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

/* 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 {
    background-color: #2a2a2a;
    margin: 15% auto;
    padding: 0;
    border: 1px solid #444;
    border-radius: 12px;
    width: 90%;
    max-width: 500px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 30px;
    border-bottom: 1px solid #444;
}

.modal-header h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    color: #9d825d;
    margin: 0;
}

.close {
    color: #888;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s ease;
}

.close:hover {
    color: #c3b6a6;
}

.modal-body {
    padding: 30px;
}

.modal-body p {
    color: #c3b6a6;
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .container {
        gap: 60px;
        padding: 40px 20px;
    }
    
    .features-section {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .feature-block {
        padding: 10px;
    }
    
    .main-headline {
        font-size: 2.5rem;
    }
    
    .exclusivity-headline {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .container {
        gap: 40px;
        padding: 20px 15px;
    }
    
    .main-headline {
        font-size: 2rem;
    }
    
    .sub-headline {
        font-size: 1rem;
    }
    
    .cta-button, .submit-button {
        padding: 12px 30px;
        font-size: 0.9rem;
    }
    
    .modal-content {
        margin: 20% auto;
        width: 95%;
    }
    
    .modal-header, .modal-body {
        padding: 20px;
    }
}

/* Loading Animation */
.loading {
    position: relative;
    color: transparent;
}

.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    border: 2px solid #D4AF37;
    border-top: 2px solid transparent;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}

/* Success Animation */
.success-animation {
    animation: successPulse 0.6s ease-in-out;
}

@keyframes successPulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

/* Footer */
.footer {
    background-color: #1a1a1a;
    padding: 20px 0;
    text-align: center;
    border-top: 1px solid #333;
    margin-top: 60px;
}

.footer p {
    color: #c3b6a6;
    font-size: 0.9rem;
    margin: 0;
    opacity: 0.8;
}
