.page--narrow {
    max-width: 640px;
    padding-top: 1.25rem;
    padding-bottom: 3rem;
}

.page--narrow header {
    padding-bottom: 1.25rem;
    margin-bottom: 1.5rem;
}

.page--narrow .hero {
    margin-bottom: 1.5rem;
}

.page--narrow .hero-badge {
    margin-bottom: 0.6rem;
}

.page--narrow .hero h1 {
    margin-bottom: 0.6rem;
}

.page--narrow .hero p {
    font-size: 1.05rem;
    line-height: 1.5;
}

.page--narrow .lead-bullets {
    margin-bottom: 1.25rem;
    gap: 0.5rem;
}

.page--narrow .lead-form-card {
    margin-bottom: 2rem;
    padding: 1.5rem;
}

.lead-bullets {
    list-style: none;
    margin: 0 0 2rem;
    padding: 0;
    display: grid;
    gap: 0.75rem;
}

.lead-bullets li {
    position: relative;
    padding-left: 1.5rem;
    color: var(--ink-soft);
}

.lead-bullets li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--gold);
    font-weight: 700;
}

.lead-form-card {
    background: #fff;
    border: 1px solid rgba(26, 35, 50, 0.07);
    border-radius: var(--radius);
    padding: 1.75rem;
    box-shadow: var(--shadow);
    margin-bottom: 2.5rem;
}

.lead-form {
    display: grid;
    gap: 1.25rem;
}

.field label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.4rem;
    font-size: 0.95rem;
}

.field-optional {
    font-weight: 400;
    color: var(--ink-soft);
}

.field input[type="text"],
.field input[type="email"] {
    width: 100%;
    padding: 0.75rem 0.9rem;
    border: 1px solid rgba(26, 35, 50, 0.15);
    border-radius: 8px;
    font: inherit;
    background: #fff;
}

.field input:focus {
    outline: 2px solid rgba(192, 57, 43, 0.25);
    border-color: var(--accent);
}

.hp-field {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.check-option {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
}

.check-option input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.check-option-box {
    flex-shrink: 0;
    width: 1.25rem;
    height: 1.25rem;
    margin-top: 0.15rem;
    border: 2px solid rgba(26, 35, 50, 0.25);
    border-radius: 4px;
    background: #fff;
}

.check-option input:checked + .check-option-box {
    background: var(--accent);
    border-color: var(--accent);
    box-shadow: inset 0 0 0 2px #fff;
}

.check-option-text {
    font-size: 0.9rem;
    line-height: 1.45;
    color: var(--ink-soft);
}

.check-option-text strong {
    display: block;
    font-size: 0.95rem;
}

.check-option-text small {
    display: block;
    color: var(--ink-soft);
    font-size: 0.85rem;
    margin-top: 0.15rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: none;
    border-radius: 8px;
    font: inherit;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.2s, transform 0.2s;
}

.btn--primary {
    background: var(--accent);
    color: #fff;
    padding: 0.85rem 1.25rem;
    font-size: 0.95rem;
}

.btn--primary:hover:not(:disabled) {
    background: #a93226;
    transform: translateY(-1px);
}

.btn--primary:disabled {
    background: rgba(192, 57, 43, 0.4);
    cursor: not-allowed;
    transform: none;
}

.alert {
    border-radius: 10px;
    padding: 1.25rem 1.35rem;
}

.alert h2 {
    font-size: 1.15rem;
    margin-bottom: 0.5rem;
}

.alert--ok {
    background: rgba(39, 174, 96, 0.08);
    border: 1px solid rgba(39, 174, 96, 0.25);
    color: #1e5631;
}

.alert--error {
    background: rgba(192, 57, 43, 0.08);
    border: 1px solid rgba(192, 57, 43, 0.25);
    color: #7b241c;
    margin-bottom: 1rem;
}

.alert-note {
    margin-top: 0.75rem;
    font-size: 0.9rem;
    opacity: 0.85;
}

.page--narrow .status-page {
    padding: 0.5rem 0 0.75rem;
}

.page--narrow .status-page h1 {
    margin-bottom: 0.5rem;
}

.page--narrow .status-page p {
    margin-bottom: 1rem;
}

.status-page {
    text-align: center;
    padding: 2rem 0 1rem;
}

.status-page h1 {
    font-size: clamp(1.6rem, 4vw, 2rem);
    margin-bottom: 0.75rem;
}

.status-page p {
    color: var(--ink-soft);
    max-width: 28rem;
    margin: 0 auto 1.25rem;
}

.status-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
}

.btn--ghost {
    background: transparent;
    color: var(--ink);
    border: 1px solid rgba(26, 35, 50, 0.15);
    padding: 0.75rem 1.25rem;
}

.btn--ghost:hover {
    border-color: var(--accent);
    color: var(--accent);
}
