/* ====================================================
   Bio Peptides UK Landing — Full-Screen Offer Page
   Brand: cyan-blue (#0f8dd6) on white/near-black navy,
   Poppins for display type, Inter for body copy —
   matched to the live biopeptides.uk site.
   ==================================================== */
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&family=Poppins:wght@600;700&display=swap");

:root {
    --bpuk-brand: #0f8dd6;
    --bpuk-brand-light: #29a8e0;
    --bpuk-brand-deep: #0b6fae;
    --bpuk-brand-wash: #eaf6fd;
    --bpuk-ink: #12181f;
    --bpuk-ink-soft: #5b6472;
    --bpuk-ink-faint: #9aa3af;
    --bpuk-paper: #ffffff;
    --bpuk-line: #e1e7ed;
}

body.page-template-template-full-offer {
    margin: 0;
    overflow: hidden;
    background: var(--bpuk-paper);
    -webkit-font-smoothing: antialiased;
}
body.page-template-template-full-offer * ,
body.page-template-template-full-offer *::before,
body.page-template-template-full-offer *::after {
    box-sizing: border-box;
}

.bpuk-offer-page {
    width: 100vw;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    background: radial-gradient(120% 100% at 50% 0%, var(--bpuk-brand-wash) 0%, #fff 60%);
    font-family: "Inter", sans-serif;
    color: var(--bpuk-ink);
}

.bpuk-offer-card {
    width: 100%;
    max-width: 440px;
    text-align: center;
}

/* ---------- Logo ---------- */
.bpuk-offer-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    margin-bottom: 26px;
}
.bpuk-offer-logo img,
.bpuk-offer-logo .custom-logo {
    display: block;
    width: 100%;
    max-width: 180px;
    height: auto;
    max-height: 42px;
    margin: 0 auto;
}
.bpuk-offer-logo-mark {
    width: 30px;
    height: 30px;
    color: var(--bpuk-brand);
    flex-shrink: 0;
}
.bpuk-offer-logo-mark svg {
    width: 100%;
    height: 100%;
}
.bpuk-offer-logo-text {
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    font-size: 19px;
    color: var(--bpuk-ink);
    letter-spacing: -0.01em;
}

/* ---------- Badge ---------- */
.bpuk-offer-badge {
    width: 76px;
    height: 76px;
    margin: 0 auto 22px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--bpuk-brand-light), var(--bpuk-brand-deep));
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "Poppins", sans-serif;
    font-size: 19px;
    font-weight: 700;
    box-shadow: 0 16px 32px -12px rgba(15, 141, 214, 0.55);
}

/* ---------- Copy ---------- */
.bpuk-eyebrow {
    font-family: "Inter", sans-serif;
    font-size: 12px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--bpuk-brand);
    font-weight: 600;
}
.bpuk-offer-eyebrow {
    display: block;
    margin-bottom: 14px;
}
.bpuk-offer-heading {
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    font-size: clamp(28px, 4.2vw, 42px);
    line-height: 1.14;
    letter-spacing: -0.01em;
    color: var(--bpuk-ink);
    margin: 0 0 14px;
}
.bpuk-offer-lede {
    font-size: 15px;
    color: var(--bpuk-ink-soft);
    line-height: 1.6;
    margin: 0 0 28px;
}

/* ---------- Form ---------- */
.bpuk-offer-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.bpuk-offer-field {
    display: flex;
    gap: 8px;
}
.bpuk-offer-field input[type="email"] {
    flex: 1;
    min-width: 0;
    padding: 14px 18px;
    border: 1.5px solid var(--bpuk-line);
    border-radius: 8px;
    font-size: 14.5px;
    font-family: "Inter", sans-serif;
    color: var(--bpuk-ink);
    background: #fff;
    outline: none;
    transition: border-color 0.2s;
}
.bpuk-offer-field input[type="email"]:focus {
    border-color: var(--bpuk-brand);
}
.bpuk-offer-field input[type="email"]::placeholder {
    color: var(--bpuk-ink-faint);
}

.bpuk-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 22px;
    border-radius: 8px;
    font-size: 14.5px;
    font-weight: 600;
    border: 1.5px solid transparent;
    transition: all 0.2s;
    cursor: pointer;
    white-space: nowrap;
    flex-shrink: 0;
}
.bpuk-btn-primary {
    background: var(--bpuk-brand);
    color: #fff;
}
.bpuk-btn-primary:hover {
    background: var(--bpuk-brand-deep);
    transform: translateY(-1px);
    box-shadow: 0 12px 26px -12px rgba(15, 141, 214, 0.55);
}
.bpuk-btn-primary:disabled {
    opacity: 0.7;
    cursor: default;
    transform: none;
}

.bpuk-offer-recaptcha {
    display: flex;
    justify-content: center;
}

/* Honeypots — unlabeled, off-screen; not display:none so a blind bot
   form-filler still catches them, but nothing here for autofill to match. */
.bpuk-offer-hp {
    position: absolute;
    left: -9999px;
    top: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.bpuk-offer-error {
    font-size: 13px;
    color: #dc2626;
    margin: 10px 0 0;
}

.bpuk-offer-success {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 6px 0 0;
}
.bpuk-offer-success svg {
    width: 40px;
    height: 40px;
    color: var(--bpuk-brand);
}
.bpuk-offer-success p {
    font-size: 15px;
    color: var(--bpuk-ink);
    margin: 0;
}

.bpuk-offer-fine {
    font-size: 11.5px;
    letter-spacing: 0.01em;
    color: var(--bpuk-ink-faint);
    margin: 22px 0 0;
    line-height: 1.5;
}

@media (max-width: 480px) {
    .bpuk-offer-field {
        flex-direction: column;
    }
}
