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

:root {
    --plum: #6B5B73;
    --plum-dark: #5A4A62;
    --plum-light: #8B7B93;
    --cream: #E8DCC4;
    --cream-light: #F5EFE2;
    --charcoal: #3A3A3A;
    --white: #FAF8F5;
}

body {
    font-family: 'DM Sans', -apple-system, sans-serif;
    background: var(--white);
    color: var(--charcoal);
    line-height: 1.6;
    overflow-x: hidden;
}

/* NAVIGATION */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 25px 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(250, 248, 245, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid rgba(107, 91, 115, 0.1);
    animation: slideDown 0.6s ease;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.logo {
    font-family: 'Cormorant', serif;
    font-size: 32px;
    font-weight: 700;
    color: var(--plum);
    letter-spacing: -0.5px;
}

.nav-cta {
    background: var(--plum);
    color: white;
    padding: 12px 28px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

.nav-cta:hover {
    background: var(--plum-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(107, 91, 115, 0.3);
}

/* HERO SECTION */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 60px 60px;
    position: relative;
    overflow: hidden;
}

.hero:before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(135deg, rgba(107, 91, 115, 0.04) 0%, rgba(232, 220, 196, 0.12) 100%);
    z-index: 0;
}

.hero-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-text {
    animation: fadeInUp 0.8s ease 0.2s backwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-eyebrow {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--plum);
    font-weight: 600;
    margin-bottom: 25px;
    display: inline-block;
}

.hero h1 {
    font-family: 'Cormorant', serif;
    font-size: 64px;
    font-weight: 700;
    color: var(--plum);
    line-height: 1.1;
    margin-bottom: 30px;
    letter-spacing: -2px;
}

.hero-subtitle {
    font-size: 22px;
    color: var(--charcoal);
    line-height: 1.6;
    margin-bottom: 20px;
    max-width: 600px;
    font-weight: 400;
}

.value-prop {
    font-size: 18px;
    color: var(--plum);
    font-weight: 600;
    margin-bottom: 40px;
}

/* SIGNUP FORM */
.signup-card {
    background: white;
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(107, 91, 115, 0.15);
    border-left: 6px solid var(--plum);
    animation: fadeInUp 0.8s ease 0.4s backwards;
}

.signup-card h2 {
    font-family: 'Cormorant', serif;
    font-size: 32px;
    font-weight: 700;
    color: var(--plum);
    margin-bottom: 10px;
}

.signup-card p {
    color: var(--charcoal);
    opacity: 0.8;
    margin-bottom: 30px;
    font-size: 16px;
}

.form-group {
    margin-bottom: 20px;
}

label {
    display: block;
    font-weight: 600;
    color: var(--charcoal);
    margin-bottom: 8px;
    font-size: 14px;
}

label .required {
    color: var(--plum);
}

input,
select,
textarea {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid var(--cream);
    border-radius: 8px;
    font-family: 'DM Sans', sans-serif;
    font-size: 15px;
    transition: all 0.3s;
    background: var(--white);
    height: 50px;
}

textarea {
    height: auto;
    min-height: 100px;
}

input:focus,
select:focus,
textarea:focus {
    outline: none;
    border-color: var(--plum);
    background: white;
}

textarea {
    resize: vertical;
}

.submit-btn {
    width: 100%;
    padding: 16px;
    background: var(--plum);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    font-family: 'DM Sans', sans-serif;
}

.submit-btn:hover:not(:disabled) {
    background: var(--plum-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(107, 91, 115, 0.3);
}

.submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.success-message {
    background: #D4EDDA;
    color: #155724;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 20px;
    border-left: 4px solid #28A745;
}

.error-message {
    background: #F8D7DA;
    color: #721C24;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 20px;
    border-left: 4px solid #DC3545;
}


/* BENEFITS */
.benefits {
    padding: 120px 60px;
    background: var(--white);
}

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

.section-eyebrow {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--plum);
    font-weight: 600;
    margin-bottom: 20px;
}

.section-title {
    font-family: 'Cormorant', serif;
    font-size: 48px;
    font-weight: 700;
    color: var(--plum);
    line-height: 1.2;
    margin-bottom: 25px;
    letter-spacing: -1px;
}

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

.benefit {
    text-align: center;
    padding: 40px 30px;
}

.benefit-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--plum), var(--plum-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    box-shadow: 0 8px 20px rgba(107, 91, 115, 0.2);
}

.benefit-icon svg {
    width: 40px;
    height: 40px;
    stroke: white;
    stroke-width: 2;
    fill: none;
}

.benefit h3 {
    font-family: 'Cormorant', serif;
    font-size: 24px;
    font-weight: 600;
    color: var(--plum);
    margin-bottom: 15px;
}

.benefit p {
    color: var(--charcoal);
    opacity: 0.85;
    line-height: 1.7;
}

/* FOOTER */
footer {
    background: var(--charcoal);
    color: rgba(255, 255, 255, 0.8);
    padding: 60px 60px 40px;
    text-align: center;
}

.footer-logo {
    font-family: 'Cormorant', serif;
    font-size: 36px;
    font-weight: 700;
    color: var(--cream-light);
    margin-bottom: 20px;
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 14px;
    opacity: 0.6;
    margin-top: 30px;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    nav {
        padding: 20px 30px;
    }

    .hero {
        padding: 100px 30px 60px;
    }

    .hero h1 {
        font-size: 42px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .signup-card {
        padding: 30px;
    }

    .benefits {
        padding: 80px 30px;
    }

    .section-title {
        font-size: 36px;
    }

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

.errorlist {
  margin-left: 20px;
}