:root {
    --cream: #f5f1eb;
    --warm-beige: #ede4d3;
    --dusty-rose: #d4a5a5;
    --mauve: #c79fb0;
    --muted-brown: #a67c5a;
    --dusty-pink: #e8b4b8;
    --soft-pink: #f0d0d0;
    --dark-brown: #3c2415;
    --charcoal: #4a4a4a;
    --text-primary: #3c2415;
    --text-secondary: #6b5b4a;
    --text-muted: #8b7a6a;
}

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

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.7;
    color: var(--text-primary);
    background: linear-gradient(180deg, var(--cream) 0%, var(--warm-beige) 30%, var(--dusty-rose) 60%, var(--muted-brown) 100%);
    min-height: 100vh;
    overflow-x: hidden;
    font-weight: 300;
}

.beta-container {
    min-height: 100vh;
}

/* Navigation */
.beta-nav {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(245, 241, 235, 0.9);
    backdrop-filter: blur(20px);
    z-index: 1000;
    border-bottom: 1px solid rgba(212, 165, 165, 0.1);
    padding: 0 20px;
}

.nav-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.4rem;
    font-weight: 600;
    color: var(--text-primary);
    letter-spacing: 2px;
    text-transform: uppercase;
}

.nav-links {
    display: flex;
    gap: 40px;
    align-items: center;
}

.nav-links a {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 400;
    font-size: 0.9rem;
    font-family: 'Montserrat', sans-serif;
    transition: all 0.3s ease;
    position: relative;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.nav-links a:hover {
    color: var(--dusty-rose);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--dusty-rose);
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

/* Hero Section */
.hero {
    padding: 140px 20px 100px;
    max-width: 1200px;
    margin: 0 auto;
    min-height: 80vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: start;
    gap: 60px;
    position: relative;
}

.hero-content {
    max-width: 500px;
    margin: 0;
}

.phases-section {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.phases-square {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 20px;
    max-width: 500px;
    aspect-ratio: 1;
}

.phase-card {
    background: rgba(255, 255, 255, 0.8);
    padding: 15px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 120px;
}

.phase-card:hover {
    transform: translateY(-5px);
}

.phase-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 10px;
}

.phase-card p {
    font-family: 'Playfair Display', serif;
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.5;
    font-weight: 400;
}

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

.coffee-cups {
    max-width: 450px;
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.headline {
    font-family: 'Cormorant Garamond', serif;
    font-size: 4.8rem;
    font-weight: 300;
    line-height: 1.1;
    margin-bottom: 40px;
    color: var(--text-primary);
    letter-spacing: -1px;
}

.subheadline {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    color: var(--text-primary);
    margin-bottom: 40px;
    line-height: 1.8;
    font-weight: 300;
    letter-spacing: 0.3px;
    max-width: 600px;
    margin-left: 0;
    margin-right: 0;
}

.cta-section {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-top: 40px;
    gap: 20px;
}

.copyright {
    font-family: 'Playfair Display', serif;
    font-size: 0.8rem;
    color: var(--text-secondary);
    font-weight: 400;
    opacity: 0.8;
    margin-top: 40px;
}

/* Form Input Styles */
.form-field {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.field-label {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    color: var(--text-primary);
    font-weight: 500;
    margin-bottom: 5px;
}

.name-fields {
    display: flex;
    gap: 15px;
}

.name-input {
    flex: 1;
}

.message-input {
    min-height: 80px;
    resize: vertical;
    font-family: 'Montserrat', sans-serif;
}

.form-input {
    padding: 12px 15px;
    border: 1px solid rgba(212, 165, 165, 0.3);
    background: rgba(255, 255, 255, 0.7);
    border-radius: 8px;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    font-weight: 300;
    letter-spacing: 0.3px;
    color: var(--text-primary);
    outline: none;
    transition: all 0.3s ease;
    width: 100%;
}

.form-input:focus {
    border-color: var(--dusty-rose);
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 0 0 2px rgba(212, 165, 165, 0.2);
}

.form-input::placeholder {
    color: var(--text-muted);
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
}

/* Signup Section */
.signup-section {
    padding: 80px 20px;
    background: var(--cream);
    border-top: 1px solid rgba(212, 165, 165, 0.2);
}

.signup-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.signup-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3.5rem;
    font-weight: 400;
    margin-bottom: 20px;
    color: var(--text-primary);
    letter-spacing: -0.5px;
}

.signup-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 50px;
    font-weight: 300;
    letter-spacing: 0.3px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.signup-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
    max-width: 500px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.8);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.signup-button {
    padding: 18px 45px;
    background: linear-gradient(135deg, var(--dusty-pink), var(--soft-pink));
    color: var(--text-primary);
    border: none;
    border-radius: 25px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 0.9rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(232, 180, 184, 0.4);
    margin-top: 20px;
    align-self: center;
    width: fit-content;
}

.signup-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(232, 180, 184, 0.5);
}

/* Footer */
.footer {
    padding: 40px 20px;
    text-align: center;
    background: transparent;
    position: relative;
    z-index: 10;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    color: var(--cream);
    font-weight: 300;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
    margin: 0;
}

.footer-link {
    color: var(--cream);
    text-decoration: none;
    font-family: 'Cormorant Garamond', serif;
    font-weight: 300;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
    transition: opacity 0.3s ease;
}

.footer-link:hover {
    opacity: 0.8;
    text-decoration: underline;
}

.cta-button {
    border: none;
    cursor: pointer;
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 0.9rem;
    letter-spacing: 1.5px;
    transition: all 0.3s ease;
    border-radius: 25px;
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
}

.cta-button.primary {
    background: linear-gradient(135deg, var(--dusty-pink), var(--soft-pink));
    color: var(--text-primary);
    padding: 18px 45px;
    box-shadow: 0 8px 25px rgba(232, 180, 184, 0.4);
}

.cta-button.secondary {
    background: linear-gradient(135deg, var(--dusty-pink), var(--soft-pink));
    color: var(--text-primary);
    padding: 16px 40px;
    box-shadow: 0 6px 20px rgba(232, 180, 184, 0.3);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(232, 180, 184, 0.5);
}

/* Problem Section */
.problem-section {
    padding: 100px 20px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.section-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 80px;
    align-items: center;
}

.stat-highlight {
    text-align: center;
}

.stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 6rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 15px;
    opacity: 0.9;
}

.stat-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.problem-text h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: var(--text-primary);
    margin-bottom: 25px;
    line-height: 1.3;
    font-weight: 600;
}

.problem-text p {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    color: var(--text-secondary);
    line-height: 1.8;
    font-weight: 400;
}

/* Solution Section */
.solution-section {
    padding: 100px 20px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3.5rem;
    font-weight: 400;
    margin-bottom: 20px;
    color: var(--text-primary);
    letter-spacing: -0.5px;
}

.section-subtitle {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    color: var(--text-muted);
    font-style: italic;
    font-weight: 400;
}

.phases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.phase-card {
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(10px);
    padding: 50px 35px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.4s ease;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.phase-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.35);
    box-shadow: 0 20px 50px rgba(212, 165, 165, 0.2);
}

.phase-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    color: var(--text-primary);
    margin-bottom: 20px;
    font-weight: 500;
    letter-spacing: -0.2px;
}

.phase-card p {
    font-family: 'Montserrat', sans-serif;
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.7;
    font-weight: 300;
    letter-spacing: 0.2px;
}

/* Beta Signup */
.beta-signup {
    padding: 100px 20px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.signup-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.signup-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3.5rem;
    font-weight: 400;
    margin-bottom: 20px;
    color: var(--text-primary);
    letter-spacing: -0.5px;
}

.signup-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 50px;
    font-weight: 300;
    letter-spacing: 0.3px;
}

.beta-form {
    display: flex;
    flex-direction: column;
    gap: 30px;
    align-items: center;
}


.checkbox-group {
    display: flex;
    align-items: center;
    gap: 12px;
    text-align: left;
    max-width: 400px;
}

.checkbox-group input[type="checkbox"] {
    width: 20px;
    height: 20px;
    accent-color: var(--dusty-rose);
}

.checkbox-group label {
    margin: 0;
    font-size: 1rem;
    color: var(--text-secondary);
    font-family: 'Playfair Display', serif;
    font-weight: 400;
}

.success-message {
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(10px);
    padding: 50px 40px;
    border-radius: 20px;
    border: 2px solid var(--dusty-rose);
    box-shadow: 0 15px 40px rgba(212, 165, 165, 0.2);
}

.success-message h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: var(--text-primary);
    margin-bottom: 20px;
    font-weight: 600;
}

.success-message p {
    font-family: 'Playfair Display', serif;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 15px;
    font-weight: 400;
}

.next-steps {
    font-weight: 500;
    color: var(--text-primary);
    font-size: 1rem;
}


/* Responsive Design */
@media (max-width: 768px) {
    .nav-content {
        padding: 0 20px;
    }
    
    .nav-links {
        display: none;
    }
    
    .hero {
        padding: 120px 20px 80px;
    }
    
    .headline {
        font-size: 3.2rem;
    }
    
    .section-content {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }
    
    .section-title,
    .signup-title {
        font-size: 2.5rem;
    }
    
    .stat-number {
        font-size: 4.5rem;
    }
    
    .phases-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .problem-text h3 {
        font-size: 2rem;
    }
    
    .logo {
        font-size: 1.8rem;
    }
    
    .name-fields {
        flex-direction: column;
        gap: 8px;
    }
    
    .signup-section {
        padding: 60px 20px;
    }
    
    .signup-title {
        font-size: 2.5rem;
    }
    
    .signup-form {
        padding: 30px 20px;
        max-width: 90%;
    }
    
    .name-fields {
        flex-direction: column;
        gap: 8px;
    }
}