/* GPS Action Network — Advocate Landing Page & Sign-Up Form */

/* Landing Page */
.gps-an-advocate-page {
    max-width: 720px;
}

.gps-an-hero {
    text-align: center;
    padding: 0 0 2em;
    border-bottom: 2px solid #c9a84c;
    margin-bottom: 2em;
}

.gps-an-hero-title {
    color: #c9a84c;
    font-size: 2.2em;
    font-weight: 800;
    margin: 0 0 0.4em;
    letter-spacing: -0.5px;
}

.gps-an-hero-subtitle {
    color: #ccc;
    font-size: 1.15em;
    line-height: 1.6;
    max-width: 560px;
    margin: 0 auto;
}

.gps-an-section-title {
    color: #e0e0e0;
    font-size: 1.4em;
    font-weight: 700;
    margin: 0 0 0.8em;
}

.gps-an-explainer {
    margin-bottom: 2.5em;
}

.gps-an-explainer p {
    color: #bbb;
    font-size: 1em;
    line-height: 1.7;
    margin: 0 0 1em;
}

.gps-an-explainer strong {
    color: #e0e0e0;
}

/* How It Works Steps */
.gps-an-how-it-works {
    margin-bottom: 2.5em;
}

.gps-an-steps {
    display: flex;
    flex-direction: column;
    gap: 1.2em;
}

.gps-an-step {
    background: #141418;
    border: 1px solid #2a2a35;
    border-radius: 10px;
    padding: 1.2em 1.5em;
    display: flex;
    align-items: flex-start;
    gap: 1em;
    flex-wrap: wrap;
}

.gps-an-step-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    min-width: 36px;
    background: #c9a84c;
    color: #1a1a2e;
    border-radius: 50%;
    font-weight: 800;
    font-size: 1em;
}

.gps-an-step h3 {
    color: #e0e0e0;
    font-size: 1em;
    font-weight: 700;
    margin: 0.3em 0 0.2em;
    flex: 1 1 200px;
}

.gps-an-step p {
    color: #999;
    font-size: 0.9em;
    line-height: 1.5;
    margin: 0;
    flex: 1 1 100%;
    padding-left: 52px;
}

/* FAQ */
.gps-an-faq {
    margin-top: 2.5em;
    padding-top: 2em;
    border-top: 1px solid #2a2a35;
}

.gps-an-faq-item {
    margin-bottom: 1.5em;
}

.gps-an-faq-item h3 {
    color: #e0e0e0;
    font-size: 1em;
    font-weight: 700;
    margin: 0 0 0.3em;
}

.gps-an-faq-item p {
    color: #999;
    font-size: 0.9em;
    line-height: 1.6;
    margin: 0;
}

/* Sign-Up Form */

.gps-an-signup-section {
    margin: 40px 0 20px;
}

.gps-an-signup-card {
    background: #1a1a2e;
    border: 2px solid #c9a84c;
    border-radius: 12px;
    padding: 32px;
    color: #e0e0e0;
}

.gps-an-signup-header {
    text-align: center;
    margin-bottom: 28px;
}

.gps-an-signup-title {
    color: #c9a84c;
    font-size: 28px;
    font-weight: 700;
    margin: 0 0 12px;
}

.gps-an-signup-desc {
    font-size: 16px;
    line-height: 1.5;
    color: #ccc;
    max-width: 600px;
    margin: 0 auto;
}

.gps-an-public-stats {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-top: 16px;
    flex-wrap: wrap;
}

.gps-an-public-stat {
    font-size: 14px;
    color: #c9a84c;
    font-weight: 600;
    padding: 4px 12px;
    border: 1px solid rgba(201, 168, 76, 0.3);
    border-radius: 20px;
}

/* Form */
.gps-an-signup-form {
    max-width: 600px;
    margin: 0 auto;
    position: relative;
}

.gps-an-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.gps-an-form-grid-3 {
    grid-template-columns: 1fr auto auto;
}

.gps-an-field {
    margin-bottom: 16px;
}

.gps-an-field-small {
    max-width: 100px;
}

.gps-an-field label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: #aaa;
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.gps-an-field input {
    width: 100%;
    padding: 10px 14px;
    background: #0f0f23;
    border: 1px solid #333;
    border-radius: 6px;
    color: #e0e0e0;
    font-size: 15px;
    transition: border-color 0.2s;
    box-sizing: border-box;
}

.gps-an-field input:focus {
    border-color: #c9a84c;
    outline: none;
}

.gps-an-field input[readonly] {
    opacity: 0.6;
    cursor: not-allowed;
}

/* Consent */
.gps-an-consent {
    margin: 20px 0;
    font-size: 13px;
    line-height: 1.5;
    color: #aaa;
}

.gps-an-consent input[type="checkbox"] {
    margin-right: 8px;
    accent-color: #c9a84c;
}

/* Submit */
.gps-an-submit-row {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 8px;
}

.gps-an-btn-submit {
    background: #c9a84c;
    color: #1a1a2e;
    border: none;
    padding: 12px 32px;
    font-size: 16px;
    font-weight: 700;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.2s, transform 0.1s;
}

.gps-an-btn-submit:hover {
    background: #d4b85c;
    transform: translateY(-1px);
}

.gps-an-btn-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.gps-an-loading {
    font-size: 14px;
    color: #c9a84c;
    animation: gps-an-pulse 1.5s ease-in-out infinite;
}

@keyframes gps-an-pulse {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

.gps-an-privacy {
    font-size: 12px;
    color: #666;
    margin-top: 12px;
    text-align: center;
}

/* Results */
.gps-an-result {
    text-align: center;
    padding: 20px 0;
}

.gps-an-result h3 {
    color: #c9a84c;
    font-size: 24px;
    margin: 0 0 12px;
}

.gps-an-result p {
    font-size: 15px;
    color: #ccc;
    margin: 8px 0;
}

.gps-an-result-note {
    font-size: 13px !important;
    color: #888 !important;
    margin-top: 16px !important;
}

.gps-an-legislators-list {
    list-style: none;
    padding: 0;
    margin: 16px 0;
}

.gps-an-legislators-list li {
    font-size: 16px;
    color: #e0e0e0;
    padding: 6px 0;
    font-weight: 500;
}

.gps-an-legislators-list li::before {
    content: "• ";
    color: #c9a84c;
}

.gps-an-result-error .gps-an-error-message {
    color: #e57373;
}

/* Unsubscribe page */
.gps-an-unsubscribe-page {
    text-align: center;
    padding: 60px 20px;
    color: #e0e0e0;
}

.gps-an-unsubscribe-page h1 {
    color: #c9a84c;
    margin-bottom: 16px;
}

.gps-an-unsubscribe-page a {
    color: #c9a84c;
}

/* Responsive */
@media (max-width: 600px) {
    .gps-an-hero-title {
        font-size: 1.7em;
    }

    .gps-an-hero-subtitle {
        font-size: 1em;
    }

    .gps-an-step p {
        padding-left: 0;
    }

    .gps-an-signup-card {
        padding: 20px 16px;
    }

    .gps-an-form-grid,
    .gps-an-form-grid-3 {
        grid-template-columns: 1fr;
    }

    .gps-an-field-small {
        max-width: none;
    }

    .gps-an-signup-title {
        font-size: 22px;
    }
}
