/* Human Reset Landing Page Styles */

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

body {
    font-family: 'Crimson Text', serif;
    color: #333;
    background-color: #fff;
    line-height: 1.7;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Navigation */
.navbar {
    background-color: #fff;
    padding: 1.5rem 0;
    border-bottom: 1px solid #eee;
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo a {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: #000;
    text-decoration: none;
}

.nav-menu {
    list-style: none;
    display: flex;
    gap: 2rem;
}

.nav-menu a {
    font-family: 'Crimson Text', serif;
    font-size: 1rem;
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: #000;
}

/* Hero Section */
.hero-section {
    padding: 5rem 0 4rem;
    text-align: center;
    background-color: #fafafa;
}

.page-title {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 600;
    color: #999;
    letter-spacing: 0.05em;
    margin-bottom: 2rem;
    text-transform: uppercase;
}

.hero-headline {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 700;
    color: #000;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.hero-subhead {
    font-size: 1.5rem;
    color: #333;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Hook Section */
.hook-section {
    padding: 5rem 0;
    background-color: #fff;
}

.hook-content {
    max-width: 700px;
    margin: 0 auto;
}

.hook-content p {
    font-size: 1.25rem;
    color: #333;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.hook-content .emphasis {
    font-size: 1.4rem;
    font-weight: 600;
    color: #000;
    font-style: italic;
    margin: 2rem 0;
}

.hook-content .resignation {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    font-weight: 600;
    color: #000;
    text-align: center;
    margin-top: 2.5rem;
}

/* Offer Section */
.offer-section {
    padding: 5rem 0;
    background-color: #fafafa;
}

.offer-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 600;
    color: #000;
    text-align: center;
    margin-bottom: 1.5rem;
}

.offer-intro {
    font-size: 1.3rem;
    color: #333;
    text-align: center;
    margin-bottom: 2rem;
}

.offer-description {
    font-size: 1.15rem;
    color: #333;
    margin-bottom: 3rem;
    line-height: 1.8;
}

.benefits {
    margin-top: 3rem;
}

.benefits h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 600;
    color: #000;
    margin-bottom: 1.5rem;
}

.benefits-list {
    list-style: none;
    padding: 0;
}

.benefits-list li {
    font-size: 1.15rem;
    color: #333;
    margin-bottom: 1.25rem;
    padding-left: 1.5rem;
    position: relative;
}

.benefits-list li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: #000;
    font-weight: bold;
}

.benefits-list strong {
    color: #000;
    font-weight: 600;
}

/* Form Section */
.form-section {
    padding: 5rem 0;
    background-color: #fff;
}

.form-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 600;
    color: #000;
    text-align: center;
    margin-bottom: 1rem;
}

.form-intro {
    font-size: 1.15rem;
    color: #333;
    text-align: center;
    margin-bottom: 3rem;
}

.reset-form {
    max-width: 500px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-size: 1rem;
    font-weight: 600;
    color: #000;
    margin-bottom: 0.5rem;
}

.form-group input {
    width: 100%;
    padding: 0.875rem 1rem;
    font-family: 'Crimson Text', serif;
    font-size: 1rem;
    color: #333;
    border: 2px solid #ddd;
    border-radius: 4px;
    transition: border-color 0.3s ease;
}

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

.submit-btn {
    width: 100%;
    padding: 1.125rem 2rem;
    font-family: 'Playfair Display', serif;
    font-size: 1.125rem;
    font-weight: 600;
    color: #fff;
    background-color: #000;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    margin-top: 1rem;
}

.submit-btn:hover {
    background-color: #333;
    transform: translateY(-2px);
}

.submit-btn:active {
    transform: translateY(0);
}

.submit-btn:disabled {
    background-color: #999;
    cursor: not-allowed;
    transform: none;
}

.form-message {
    margin-top: 1.5rem;
    padding: 1rem 1.5rem;
    border-radius: 4px;
    font-size: 1rem;
    text-align: center;
}

.form-message.success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.form-message.error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Accumbamail result iframe */
#acm_result_60542 {
    margin: 1.5rem auto 0;
    max-width: 500px;
    border-radius: 4px;
    overflow: hidden;
}

#acm_result_60542[style*="display: block"] {
    animation: fadeIn 0.3s ease-in;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Bio Section */
.bio-section {
    padding: 5rem 0;
    background-color: #fafafa;
}

.bio-section h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 600;
    color: #000;
    text-align: center;
    margin-bottom: 1.5rem;
}

.bio-section p {
    font-size: 1.15rem;
    color: #333;
    line-height: 1.8;
    max-width: 700px;
    margin: 0 auto;
}

/* Footer */
.footer {
    padding: 3rem 0;
    background-color: #000;
    text-align: center;
}

.footer p {
    font-size: 0.95rem;
    color: #999;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-headline {
        font-size: 2rem;
    }
    
    .hero-subhead {
        font-size: 1.2rem;
    }
    
    .hook-content p {
        font-size: 1.1rem;
    }
    
    .hook-content .emphasis {
        font-size: 1.25rem;
    }
    
    .hook-content .resignation {
        font-size: 1.35rem;
    }
    
    .offer-section h2 {
        font-size: 2rem;
    }
    
    .benefits-list li {
        font-size: 1rem;
    }
    
    .form-section h2 {
        font-size: 2rem;
    }
    
    .container {
        padding: 0 1.5rem;
    }
}

@media (max-width: 480px) {
    .hero-headline {
        font-size: 1.75rem;
    }
    
    .hero-subhead {
        font-size: 1.1rem;
    }
    
    .page-title {
        font-size: 1.5rem;
    }
}
