/*
 * paywall.css — Trial Code Gate Styles
 * ======================================
 *
 * Styles for the trial code entry page.
 * Full-viewport centered layout matching the landing page aesthetic.
 */


/* ─── Full-Viewport Container ────────────────────────────────────────────── */
.paywall {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.paywall__content {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px 24px;
    text-align: center;
}


/* ─── Lock Icon ──────────────────────────────────────────────────────────── */
.paywall__icon-wrap {
    margin-bottom: 24px;
    animation: fadeUp 0.5s ease both;
}

.paywall__icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(37, 99, 235, 0.1);
    border: 1px solid rgba(37, 99, 235, 0.3);
    font-size: 32px;
    margin: 0 auto;
}


/* ─── Heading ────────────────────────────────────────────────────────────── */
.paywall__title {
    font-family: 'Inter', sans-serif;
    font-size: clamp(24px, 5vw, 36px);
    font-weight: 900;
    color: var(--text);
    margin-bottom: 12px;
    animation: fadeUp 0.5s ease 0.1s both;
}

.paywall__subtitle {
    font-size: 16px;
    color: var(--text-muted);
    max-width: 420px;
    line-height: 1.6;
    margin-bottom: 32px;
    animation: fadeUp 0.5s ease 0.2s both;
}


/* ─── Form ───────────────────────────────────────────────────────────────── */
.paywall__form {
    width: 100%;
    max-width: 400px;
    animation: fadeUp 0.5s ease 0.3s both;
}

.paywall__label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--accent);
    text-align: left;
    margin-bottom: 8px;
    letter-spacing: 0.5px;
}

.paywall__input {
    width: 100%;
    padding: 14px 16px;
    font-size: 18px;
    font-family: 'Inter', monospace;
    letter-spacing: 2px;
    text-align: center;
    color: var(--text);
    background: var(--bg-input);
    border: 1px solid var(--border);
    border-radius: 10px;
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    margin-bottom: 16px;
}

.paywall__input::placeholder {
    color: var(--text-dim);
    letter-spacing: 3px;
}

.paywall__input:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.15);
}

.paywall__submit {
    width: 100%;
    margin-top: 8px;
}


/* ─── Help Box ───────────────────────────────────────────────────────────── */
.paywall__help {
    margin-top: 32px;
    max-width: 400px;
    animation: fadeUp 0.5s ease 0.4s both;
}


/* ─── Back Link ──────────────────────────────────────────────────────────── */
.paywall__back {
    display: inline-block;
    margin-top: 24px;
    font-size: 14px;
    color: var(--text-muted);
    transition: color 0.2s ease;
    animation: fadeUp 0.5s ease 0.5s both;
}

.paywall__back:hover {
    color: var(--accent);
}
