/* Route 1 Atlas — landing page styling (scoped to .atlas-page). */

.atlas-page {
    background: linear-gradient(180deg, #f7f4ef 0%, #ece6d8 100%);
    padding: 4rem 1.25rem 6rem;
    min-height: calc(100vh - 200px);
}

.atlas-hero {
    max-width: 1100px;
    margin: 0 auto;
}

.atlas-hero-inner {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 3rem;
    align-items: center;
}

@media (max-width: 900px) {
    .atlas-hero-inner { grid-template-columns: 1fr; gap: 2rem; }
    .atlas-cover { order: -1; max-width: 360px; margin: 0 auto; }
}

.atlas-eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-size: 0.75rem;
    font-weight: 600;
    color: #7a4f1c;
    margin: 0 0 1rem;
}

.atlas-title {
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    line-height: 1.05;
    color: #1c1a18;
    margin: 0 0 1.25rem;
    font-weight: 700;
    letter-spacing: -0.01em;
}

.atlas-tagline {
    font-size: 1.125rem;
    line-height: 1.6;
    color: #3d3a36;
    margin: 0 0 2rem;
    max-width: 540px;
}

.atlas-alert {
    background: #fff7ed;
    border: 1px solid #fdba74;
    color: #7c2d12;
    padding: 0.625rem 0.875rem;
    border-radius: 6px;
    font-size: 0.9rem;
    margin: 0 0 1.25rem;
    max-width: 540px;
}

.atlas-form {
    max-width: 540px;
    margin: 0 0 1.25rem;
}

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

.atlas-form-row {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.atlas-input {
    flex: 1 1 260px;
    min-width: 0;
    padding: 0.85rem 1rem;
    font-size: 1rem;
    border: 1.5px solid #cbb78f;
    background: #fff;
    border-radius: 6px;
    color: #1c1a18;
    outline: none;
    transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.atlas-input:focus {
    border-color: #7a4f1c;
    box-shadow: 0 0 0 3px rgba(122, 79, 28, 0.15);
}

.atlas-submit {
    padding: 0.85rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    background: #2d6a4f;
    color: #fff;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.15s ease, transform 0.08s ease;
    white-space: nowrap;
}

.atlas-submit:hover:not(:disabled) {
    background: #1f4f3a;
}

.atlas-submit:disabled {
    opacity: 0.7;
    cursor: wait;
}

.atlas-submit-success {
    display: inline-block;
    text-decoration: none;
    margin-top: 0.5rem;
}

.atlas-fineprint {
    margin: 0.75rem 0 0;
    font-size: 0.85rem;
    color: #6b6862;
}

.atlas-error {
    margin: 0.75rem 0 0;
    color: #b91c1c;
    font-size: 0.9rem;
    font-weight: 500;
}

.atlas-success {
    max-width: 540px;
    background: #fff;
    border: 1px solid #d6cdb4;
    border-radius: 8px;
    padding: 1.5rem;
}

.atlas-success h2 {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.5rem;
    margin: 0 0 0.5rem;
    color: #1c1a18;
}

.atlas-success p {
    color: #3d3a36;
    margin: 0 0 1rem;
    line-height: 1.5;
}

.atlas-cover img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 4px;
    box-shadow:
        0 24px 48px rgba(28, 26, 24, 0.25),
        0 8px 16px rgba(28, 26, 24, 0.15);
    transform: rotate(-1.5deg);
}
