/* ─── GATED RESOURCE LANDING PAGE ─── */

.gate-page {
    margin-top: 64px;
    min-height: calc(100vh - 64px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 24px;
    background: var(--cream);
}
.gate-card {
    max-width: 520px;
    width: 100%;
    background: var(--white);
    border-radius: 6px;
    box-shadow: 0 2px 16px rgba(0,0,0,0.06);
    padding: 56px 48px;
    text-align: center;
}
.gate-card .eyebrow {
    margin-bottom: 16px;
}
.gate-card h1 {
    font-family: 'Libre Baskerville', serif;
    font-style: italic;
    font-weight: 400;
    font-size: clamp(24px, 3vw, 32px);
    color: var(--navy);
    line-height: 1.3;
    margin-bottom: 16px;
}
.gate-card .gate-desc {
    font-size: 15px;
    color: var(--text-mid);
    line-height: 1.7;
    margin-bottom: 36px;
}
.gate-card .tag {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--coral);
    background: rgba(232, 90, 79, 0.08);
    padding: 4px 12px;
    border-radius: 3px;
    margin-bottom: 24px;
}
.gate-form {
    display: flex;
    flex-direction: column;
    gap: 14px;
    text-align: left;
}
.gate-form label {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--navy);
    margin-bottom: -8px;
}
.gate-form input[type="text"],
.gate-form input[type="email"] {
    width: 100%;
    padding: 14px 16px;
    font-size: 15px;
    font-family: 'Inter', sans-serif;
    border: 1px solid var(--rule);
    border-radius: 4px;
    background: var(--cream);
    color: var(--text);
    transition: border-color 0.2s;
}
.gate-form input:focus {
    outline: none;
    border-color: var(--navy);
}
.gate-form .btn-cta {
    margin-top: 8px;
    width: 100%;
    text-align: center;
}
.gate-card .gate-fine {
    font-size: 12px;
    color: var(--text-light);
    margin-top: 16px;
    line-height: 1.5;
}

/* ─── SUCCESS STATE ─── */
.gate-success {
    display: none;
}
.gate-success h2 {
    font-family: 'Libre Baskerville', serif;
    font-style: italic;
    font-weight: 400;
    font-size: 28px;
    color: var(--navy);
    line-height: 1.3;
    margin-bottom: 12px;
}
.gate-success p {
    font-size: 15px;
    color: var(--text-mid);
    line-height: 1.7;
    margin-bottom: 28px;
}
.gate-success .btn-cta {
    display: inline-block;
}
.gate-success .back-link {
    display: block;
    margin-top: 20px;
    font-size: 14px;
    color: var(--text-light);
}
.gate-success .back-link:hover {
    color: var(--coral);
}

/* ─── RESPONSIVE ─── */
@media (max-width: 768px) {
    .gate-card {
        padding: 40px 28px;
    }
}
