/* ====================================================
   BioPura Landing — Stylesheet
   Assembled from the main BioPura theme's Hero/Quality/
   Science/Credentials/Newsletter/FAQ sections, plus a
   custom lightweight header/footer for this theme.
   ==================================================== */

/* ====================================================
   BioPura Blocks — Frontend Stylesheet
   All sections use .bp- prefix to avoid conflicts.
   ==================================================== */

/* ---------- CSS Variables ---------- */
:root {
    --bp-paper: #fbf9fd;
    --bp-paper-2: #f4effa;
    --bp-paper-3: #ebe2f4;
    --bp-ink: #241531;
    --bp-ink-soft: #665473;
    --bp-ink-faint: #9c8dab;
    --bp-line: #ebe3f3;
    --bp-line-2: #dccfea;
    --bp-brand: #5b2b82;
    --bp-brand-2: #9d80d6;
    --bp-brand-deep: #3d1b5c;
    --bp-brand-wash: #f1eaf9;
    --bp-gold: #be9c50;
    --bp-gold-2: #d8be78;
    --bp-maxw: 1240px;
    --bp-r: 14px;
}

/* ---------- Base / Body ---------- */
body {
    background: var(--bp-paper);
    color: var(--bp-ink);
    font-family: "Hanken Grotesk", sans-serif;
    -webkit-font-smoothing: antialiased;
    line-height: 1.55;
    overflow-x: hidden;
}
*,
*::before,
*::after {
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
}
a {
    color: inherit;
    text-decoration: none;
}
img {
    display: block;
    max-width: 100%;
}
button {
    font-family: inherit;
    cursor: pointer;
}

/* ---------- Utilities ---------- */
.bp-wrap {
    max-width: var(--bp-maxw);
    margin: 0 auto;
    padding: 0 32px;
}
.bp-eyebrow {
    font-family: "IBM Plex Mono", monospace;
    font-size: 11.5px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--bp-brand);
    font-weight: 500;
}
.bp-serif {
    font-family: "Newsreader", serif;
    font-weight: 300;
    letter-spacing: -0.01em;
}
.bp-mono {
    font-family: "IBM Plex Mono", monospace;
}

/* ---------- Buttons ---------- */
.bp-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 26px;
    border-radius: 100px;
    font-size: 14.5px;
    font-weight: 600;
    border: 1px solid transparent;
    transition: all 0.22s;
    cursor: pointer;
}
.bp-btn-primary {
    background: var(--bp-brand);
    color: #fff;
}
.bp-btn-primary:hover {
    background: var(--bp-brand-deep);
    transform: translateY(-2px);
    box-shadow: 0 12px 30px -12px rgba(91, 43, 130, 0.55);
}
.bp-btn-ghost {
    background: transparent;
    color: var(--bp-ink);
    border-color: var(--bp-line-2);
}
.bp-btn-ghost:hover {
    border-color: var(--bp-ink);
    background: var(--bp-paper-2);
}
.bp-btn .arr {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    transition: transform 0.22s;
}
.bp-btn:hover .arr {
    transform: translateX(4px);
}

/* ---------- Section Heading ---------- */
.wp-block-biopura-bp-hero,
.wp-block-biopura-bp-catalog,
.wp-block-biopura-bp-quality,
.wp-block-biopura-bp-science,
.wp-block-biopura-bp-credentials,
.wp-block-biopura-bp-newsletter,
.wp-block-biopura-bp-faq {
    padding: 0;
    margin: 0;
}

.bp-section {
    padding: 96px 0;
}

.bp-sec-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 30px;
    margin-bottom: 46px;
}
.bp-sec-head h2 {
    font-family: "Newsreader", serif;
    font-weight: 300;
    font-size: clamp(32px, 3.8vw, 52px);
    line-height: 1.02;
    letter-spacing: -0.022em;
    max-width: 18ch;
}
.bp-sec-head h2 em {
    font-style: italic;
    color: var(--bp-brand);
}
.bp-sec-head .bp-eyebrow {
    margin-bottom: 16px;
    display: block;
}
.bp-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.bp-link svg {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
}
.bp-sec-head .bp-link {
    font-size: 14px;
    font-weight: 600;
    color: var(--bp-brand);
    display: inline-flex;
    gap: 8px;
    align-items: center;
    white-space: nowrap;
}
.bp-sec-head .bp-link .arr {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
    transition: transform 0.22s;
}
.bp-sec-head .bp-link:hover .arr {
    transform: translateX(4px);
}

/* ---------- Reveal Animation ---------- */
.bp-reveal {
    transition:
        opacity 0.7s cubic-bezier(0.2, 0.7, 0.3, 1),
        transform 0.7s cubic-bezier(0.2, 0.7, 0.3, 1);
}
html.js .bp-reveal {
    opacity: 0;
    transform: translateY(26px);
}
html.js .bp-reveal.in {
    opacity: 1;
    transform: none;
}
@media (prefers-reduced-motion: reduce) {
    html.js .bp-reveal {
        opacity: 1;
        transform: none;
        transition: none;
    }
}


   HERO SECTION
   ==================================================== */
.bp-hero {
    padding: 96px 0;
    position: relative;
}
.bp-hero-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 48px;
    align-items: center;
}
.bp-hero h1 {
    font-family: "Newsreader", serif;
    font-weight: 300;
    font-size: clamp(44px, 5.6vw, 82px);
    line-height: 0.98;
    letter-spacing: -0.025em;
}
.bp-hero h1 em {
    font-style: italic;
    color: var(--bp-brand);
}
.bp-hero .bp-lede {
    font-size: 18.5px;
    color: var(--bp-ink-soft);
    max-width: 30ch;
    margin-top: 26px;
    line-height: 1.55;
}
.bp-hero-cta {
    display: flex;
    gap: 14px;
    margin-top: 34px;
    flex-wrap: wrap;
}
.bp-hero-stats {
    display: flex;
    gap: 34px;
    margin-top: 46px;
    padding-top: 30px;
    border-top: 1px solid var(--bp-line);
}
.bp-hstat .bp-n {
    font-family: "Newsreader", serif;
    font-size: 34px;
    font-weight: 400;
    letter-spacing: -0.02em;
    line-height: 1;
}
.bp-hstat .bp-n small {
    font-size: 18px;
    color: var(--bp-brand);
}
.bp-hstat .bp-l {
    font-family: "IBM Plex Mono", monospace;
    font-size: 11px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--bp-ink-faint);
    margin-top: 8px;
}

/* ---------- Hero image (replaces vial when uploaded) ---------- */
.bp-hero-stage {
    position: relative;
}
.bp-hero-img-wrap {
    position: relative;
    width: 100%;
    aspect-ratio: 1/1.04;
    border-radius: 26px;
    overflow: hidden;
    background: var(--bp-brand-wash);
    box-shadow: 0 40px 80px -50px rgba(20, 22, 14, 0.4);
}
.bp-hero-img {
    width: 110%;
    height: 110%;
    object-fit: cover;
    display: block;
    animation: bp-hero-drift 18s ease-in-out infinite;
    transform-origin: center center;
    will-change: transform;
}
@keyframes bp-hero-drift {
    0%   { transform: translate(0%,    0%)    scale(1);    }
    15%  { transform: translate(1.8%,  -2.2%) scale(1.02); }
    30%  { transform: translate(-1.5%, 1.5%)  scale(1.01); }
    45%  { transform: translate(2.2%,  1.2%)  scale(1.03); }
    60%  { transform: translate(-1%,  -1.8%)  scale(1.01); }
    75%  { transform: translate(1.5%,  2.5%)  scale(1.02); }
    90%  { transform: translate(-2%,   0.8%)  scale(1.01); }
    100% { transform: translate(0%,    0%)    scale(1);    }
}
@media (prefers-reduced-motion: reduce) {
    .bp-hero-img { animation: none; }
}

/* ---------- Product Stage / Vial ---------- */
.bp-stage {
    position: relative;
    aspect-ratio: 1/1.04;
    border-radius: 26px;
    background: radial-gradient(
        120% 90% at 50% 8%,
        #ffffff 0%,
        var(--bp-paper-2) 55%,
        var(--bp-paper-3) 100%
    );
    border: 1px solid var(--bp-line);
    overflow: hidden;
    display: grid;
    place-items: center;
    box-shadow: 0 40px 80px -50px rgba(20, 22, 14, 0.4);
}
.bp-stage::before {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 62%;
    height: 30%;
    background: radial-gradient(ellipse at center, rgba(91, 43, 130, 0.14), transparent 70%);
}
.bp-stage .bp-grid-bg {
    position: absolute;
    inset: 0;
    opacity: 0.5;
    background-image:
        linear-gradient(var(--bp-line) 1px, transparent 1px),
        linear-gradient(90deg, var(--bp-line) 1px, transparent 1px);
    background-size: 38px 38px;
    -webkit-mask-image: radial-gradient(circle at 50% 45%, #000, transparent 72%);
    mask-image: radial-gradient(circle at 50% 45%, #000, transparent 72%);
}
.bp-badge-coa {
    position: absolute;
    top: 22px;
    left: 22px;
    z-index: 5;
    display: flex;
    align-items: center;
    gap: 9px;
    background: rgba(251, 250, 246, 0.85);
    backdrop-filter: blur(6px);
    border: 1px solid var(--bp-line);
    padding: 8px 13px;
    border-radius: 100px;
}
.bp-badge-coa .bp-seal {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--bp-brand);
    display: grid;
    place-items: center;
}
.bp-badge-coa .bp-seal svg {
    width: 11px;
    height: 11px;
}
.bp-badge-coa span {
    font-family: "IBM Plex Mono", monospace;
    font-size: 11px;
    letter-spacing: 0.08em;
    color: var(--bp-ink);
}

/* Vial — CSS-only animated component */
.bp-vial {
    position: relative;
    width: 138px;
    height: 336px;
    filter: drop-shadow(0 26px 30px rgba(36, 21, 49, 0.26));
    animation: bp-float 6s ease-in-out infinite;
}
@keyframes bp-float {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-12px);
    }
}
.bp-vial .bp-cap {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 78px;
    height: 30px;
    border-radius: 9px 9px 5px 5px;
    z-index: 4;
    background: linear-gradient(
        90deg,
        #3f1c5e 0%,
        #6a3a92 20%,
        #8a55b0 48%,
        #5d2d85 75%,
        #371751 100%
    );
    box-shadow:
        inset 0 -4px 6px rgba(0, 0, 0, 0.28),
        inset 0 3px 4px rgba(255, 255, 255, 0.25);
}
.bp-vial .bp-cap::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 5px;
    transform: translateX(-50%);
    width: 54px;
    height: 7px;
    border-radius: 50%;
    background: radial-gradient(ellipse, #9b66c0, #5d2d85);
}
.bp-vial .bp-goldband {
    position: absolute;
    top: 28px;
    left: 50%;
    transform: translateX(-50%);
    width: 72px;
    height: 22px;
    border-radius: 3px;
    z-index: 3;
    background: linear-gradient(
        90deg,
        #8a6e2b 0%,
        #d9bd72 18%,
        #f3e3a8 38%,
        #c9a64e 60%,
        #a07f33 82%,
        #7c5f24 100%
    );
    box-shadow:
        inset 0 -3px 4px rgba(0, 0, 0, 0.25),
        inset 0 2px 3px rgba(255, 255, 255, 0.5);
}
.bp-vial .bp-crimp {
    position: absolute;
    top: 48px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 14px;
    border-radius: 0 0 4px 4px;
    z-index: 2;
    background: linear-gradient(90deg, #3f1c5e, #7a4aa6 50%, #3f1c5e);
}
.bp-vial .bp-neck {
    position: absolute;
    top: 50px;
    left: 50%;
    transform: translateX(-50%);
    width: 64px;
    height: 26px;
    z-index: 1;
    background: linear-gradient(
        90deg,
        rgba(216, 206, 224, 0.35),
        rgba(248, 245, 251, 0.7) 40%,
        rgba(216, 206, 224, 0.35)
    );
    border-radius: 0 0 4px 4px;
}
.bp-vial .bp-body {
    position: absolute;
    top: 64px;
    left: 50%;
    transform: translateX(-50%);
    width: 118px;
    height: 270px;
    border-radius: 8px 8px 24px 24px;
    overflow: hidden;
    background: linear-gradient(
        90deg,
        rgba(255, 255, 255, 0.1) 0%,
        rgba(238, 232, 246, 0.42) 12%,
        rgba(255, 255, 255, 0.78) 40%,
        rgba(226, 216, 238, 0.4) 72%,
        rgba(255, 255, 255, 0.12) 100%
    );
    border: 1px solid rgba(255, 255, 255, 0.55);
    box-shadow: inset 0 0 26px rgba(91, 43, 130, 0.05);
}
.bp-vial .bp-shine {
    position: absolute;
    top: 66px;
    left: 50%;
    transform: translateX(-50%);
    width: 118px;
    height: 270px;
    border-radius: 8px 8px 24px 24px;
    pointer-events: none;
    background: linear-gradient(
        90deg,
        transparent 58%,
        rgba(255, 255, 255, 0.6) 70%,
        transparent 78%
    );
}
.bp-vial .bp-label {
    position: absolute;
    left: 50%;
    top: 146px;
    transform: translateX(-50%);
    width: 118px;
    z-index: 5;
    background: linear-gradient(180deg, #ffffff, #f7f4fb);
    padding: 12px 8px 0;
    text-align: center;
    overflow: hidden;
    box-shadow: 0 1px 6px rgba(36, 21, 49, 0.08);
}
.bp-vial .bp-lmark {
    width: 18px;
    height: 14px;
    margin: 0 auto 5px;
    color: var(--bp-gold);
}
.bp-vial .bp-lmark svg {
    width: 100%;
    height: 100%;
    display: block;
}
.bp-vial .bp-lbrand {
    font-family: "Hanken Grotesk", sans-serif;
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 0.18em;
    color: #3a2350;
}
.bp-vial .bp-lseries {
    font-family: "IBM Plex Mono", monospace;
    font-size: 5px;
    letter-spacing: 0.2em;
    color: var(--bp-gold);
    margin-top: 3px;
}
.bp-vial .bp-lname {
    font-family: "Newsreader", serif;
    font-size: 19px;
    font-weight: 400;
    letter-spacing: 0.02em;
    color: #4a2a6b;
    margin-top: 7px;
}
.bp-vial .bp-lmg {
    display: inline-block;
    font-family: "IBM Plex Mono", monospace;
    font-size: 7px;
    letter-spacing: 0.06em;
    color: #4a2a6b;
    border: 1px solid var(--bp-line-2);
    border-radius: 3px;
    padding: 2px 8px;
    margin-top: 6px;
}
.bp-vial .bp-lruo {
    font-family: "IBM Plex Mono", monospace;
    font-size: 6px;
    letter-spacing: 0.14em;
    color: #7a6a86;
    margin: 7px 0 9px;
}
.bp-vial .bp-lband {
    background: var(--bp-brand);
    color: #fff;
    font-family: "IBM Plex Mono", monospace;
    font-size: 5.5px;
    letter-spacing: 0.1em;
    padding: 3.5px 0;
    margin: 0 -8px;
}

/* Floating chips */
.bp-chip {
    position: absolute;
    z-index: 6;
    background: rgba(251, 250, 246, 0.9);
    backdrop-filter: blur(6px);
    border: 1px solid var(--bp-line);
    border-radius: 12px;
    padding: 11px 14px;
    box-shadow: 0 14px 30px -18px rgba(20, 22, 14, 0.5);
}
.bp-chip .bp-ck {
    font-family: "IBM Plex Mono", monospace;
    font-size: 9.5px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--bp-ink-faint);
}
.bp-chip .bp-cv {
    font-family: "Newsreader", serif;
    font-size: 23px;
    font-weight: 400;
    letter-spacing: -0.02em;
    line-height: 1;
    margin-top: 3px;
}
.bp-chip .bp-cv small {
    color: var(--bp-brand);
    font-size: 14px;
}
.bp-chip-1 {
    top: 30%;
    right: -10px;
}
.bp-chip-2 {
    bottom: 16%;
    left: -14px;
}
.bp-chip-3 {
    bottom: 24px;
    right: 20px;
}
.bp-chip-3 .bp-cv {
    font-size: 14px;
    font-family: "IBM Plex Mono", monospace;
}

/* ====================================================
   TRUST BAR
   ==================================================== */
.bp-trustbar {
    border-top: 1px solid var(--bp-line);
    border-bottom: 1px solid var(--bp-line);
    margin-top: 54px;
    background: var(--bp-paper-2);
}
.bp-trust-in {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}
.bp-trust-cell {
    padding: 30px 28px;
    border-right: 1px solid var(--bp-line);
    display: flex;
    gap: 15px;
    align-items: flex-start;
}
.bp-trust-cell:last-child {
    border-right: none;
}
.bp-trust-cell .bp-ti {
    flex: none;
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: var(--bp-paper);
    border: 1px solid var(--bp-line);
    display: grid;
    place-items: center;
    color: var(--bp-brand);
}
.bp-trust-cell .bp-ti svg,
.bp-trust-cell .bp-ti i {
    width: 19px;
    height: 19px;
}
.bp-trust-cell h4 {
    font-size: 14.5px;
    font-weight: 600;
    letter-spacing: -0.01em;
    margin: 0;
    padding: 0;
}
.bp-trust-cell p {
    font-size: 12.5px;
    color: var(--bp-ink-soft);
    margin-top: 3px;
    line-height: 1.45;
}

/* ====================================================

   QUALITY / COA SECTION
   ==================================================== */
.bp-quality {
    background: var(--bp-ink);
    color: var(--bp-paper);
    padding: 96px 0;
}
.bp-quality .bp-quality-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}
.bp-quality .bp-eyebrow {
    color: var(--bp-brand-2);
}
.bp-quality h2 {
    font-family: "Newsreader", serif;
    font-weight: 300;
    font-size: clamp(34px, 4vw, 56px);
    line-height: 1.02;
    letter-spacing: -0.022em;
    margin: 16px 0 22px;
}
.bp-quality h2 em {
    font-style: italic;
    color: #c9b2f0;
}
.bp-quality .bp-qbody {
    font-size: 16.5px;
    color: #cdbfe0;
    line-height: 1.6;
    max-width: 46ch;
}
.bp-qlist {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.bp-qrow {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}
.bp-qrow .bp-qi {
    flex: none;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 1px solid rgba(201, 178, 240, 0.4);
    display: grid;
    place-items: center;
    color: #c9b2f0;
}
.bp-qrow .bp-qi svg,
.bp-qrow .bp-qi i {
    width: 15px;
    height: 15px;
}
.bp-qrow .bp-qt {
    font-size: 15px;
    font-weight: 500;
}
.bp-qrow .bp-qv {
    margin-left: auto;
    font-family: "IBM Plex Mono", monospace;
    font-size: 13px;
    color: #d8be78;
}

/* COA Document */
.bp-coa {
    background: var(--bp-paper);
    color: var(--bp-ink);
    border-radius: 16px;
    padding: 0;
    overflow: hidden;
    box-shadow: 0 50px 90px -50px rgba(0, 0, 0, 0.7);
    transform: rotate(-1.4deg);
    transition: transform 0.4s;
}
.bp-coa-img-wrap {
    width: 100%;
    min-height: 400px;
    display: flex;
}
.bp-coa-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.bp-quality:hover .bp-coa {
    transform: rotate(0deg);
}
.bp-coa-h {
    background: var(--bp-brand);
    color: #fff;
    padding: 20px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.bp-coa-h .bp-ttl {
    font-family: "Newsreader", serif;
    font-size: 20px;
}
.bp-coa-h .bp-sub {
    font-family: "IBM Plex Mono", monospace;
    font-size: 10px;
    letter-spacing: 0.1em;
    opacity: 0.85;
    margin-top: 2px;
}
.bp-coa-h .bp-seal {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.5);
    display: grid;
    place-items: center;
    font-family: "IBM Plex Mono", monospace;
    font-size: 8px;
    text-align: center;
    line-height: 1.1;
}
.bp-coa-b {
    padding: 22px 24px;
}
.bp-coa-row {
    display: flex;
    justify-content: space-between;
    padding: 11px 0;
    border-bottom: 1px dashed var(--bp-line);
    font-size: 13px;
}
.bp-coa-row .bp-k {
    color: var(--bp-ink-soft);
    font-family: "IBM Plex Mono", monospace;
    font-size: 11px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}
.bp-coa-row .bp-v {
    font-weight: 600;
}
.bp-coa-row .bp-v.hl {
    color: var(--bp-brand);
}
.bp-chart {
    height: 90px;
    margin: 18px 0 6px;
    position: relative;
    border-left: 1px solid var(--bp-line);
    border-bottom: 1px solid var(--bp-line);
}
.bp-chart svg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}
.bp-coa-foot {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: "IBM Plex Mono", monospace;
    font-size: 9.5px;
    color: var(--bp-ink-faint);
    letter-spacing: 0.06em;
    padding-top: 6px;
}

/* ====================================================
   SCIENCE SECTION
   ==================================================== */
.bp-science-section {
    padding: 96px 0;
}
.bp-sci-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.bp-sci-card {
    background: #fff;
    border: 1px solid var(--bp-line);
    border-radius: var(--bp-r);
    padding: 30px 26px;
    transition:
        border-color 0.25s,
        transform 0.25s;
}
.bp-sci-card:hover {
    border-color: var(--bp-brand);
    transform: translateY(-4px);
}
.bp-sci-card .bp-num {
    font-family: "IBM Plex Mono", monospace;
    font-size: 12px;
    color: var(--bp-brand);
    letter-spacing: 0.1em;
}
.bp-sci-card h3 {
    font-family: "Newsreader", serif;
    font-size: 25px;
    font-weight: 400;
    margin: 18px 0 10px;
    letter-spacing: -0.01em;
}
.bp-sci-card p {
    font-size: 14.5px;
    color: var(--bp-ink-soft);
    line-height: 1.6;
}
.bp-sci-photo {
    grid-column: span 3;
    border-radius: var(--bp-r);
    overflow: hidden;
    border: 1px solid var(--bp-line);
    margin-top: 4px;
}
.bp-sci-photo img {
    width: 100%;
    height: 340px;
    object-fit: cover;
}

/* ====================================================
   CREDENTIALS SECTION
   ==================================================== */
.bp-creds {
    background: var(--bp-paper-2);
    border-top: 1px solid var(--bp-line);
    border-bottom: 1px solid var(--bp-line);
    padding: 96px 0;
}
.bp-creds-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 56px;
    align-items: center;
}
.bp-creds h2 {
    font-family: "Newsreader", serif;
    font-weight: 300;
    font-size: clamp(32px, 3.8vw, 52px);
    line-height: 1.02;
    letter-spacing: -0.022em;
    margin: 16px 0 18px;
}
.bp-creds p.bp-creds-body {
    color: var(--bp-ink-soft);
    font-size: 16px;
    max-width: 40ch;
    line-height: 1.6;
}
.bp-creds-image {
    margin-top: 26px;
    border-radius: 14px;
    overflow: hidden;
}
.bp-creds-image img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}
.bp-cert-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
}
.bp-cert {
    background: #fff;
    border: 1px solid var(--bp-line);
    border-radius: 12px;
    padding: 20px;
    display: flex;
    gap: 14px;
    align-items: center;
    transition:
        transform 0.2s,
        box-shadow 0.2s;
}
.bp-cert:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 34px -24px rgba(20, 22, 14, 0.4);
}
.bp-cert .bp-cseal {
    flex: none;
    width: 44px;
    height: 44px;
    border-radius: 10px;
    border: 1.5px solid var(--bp-brand);
    color: var(--bp-brand);
    display: grid;
    place-items: center;
}
.bp-cert .bp-cseal svg,
.bp-cert .bp-cseal i {
    width: 22px;
    height: 22px;
}
.bp-cert .bp-ct {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: -0.01em;
}
.bp-cert .bp-cs {
    font-family: "IBM Plex Mono", monospace;
    font-size: 10.5px;
    color: var(--bp-ink-faint);
    margin-top: 2px;
    letter-spacing: 0.04em;
}

/* ====================================================
   NEWSLETTER SECTION
   ==================================================== */
.bp-newsletter-section {
    padding: 96px 0;
}
.bp-newsletter-box {
    background: var(--bp-brand);
    color: #fff;
    border-radius: 24px;
    padding: 64px 56px;
    display: grid;
    grid-template-columns: 1fr 0.9fr;
    gap: 48px;
    align-items: center;
    position: relative;
    overflow: hidden;
}
.bp-newsletter-box::before {
    content: "";
    position: absolute;
    right: -80px;
    top: -80px;
    width: 340px;
    height: 340px;
    border-radius: 50%;
    background: radial-gradient(circle, #8255b6, transparent 70%);
    opacity: 0.55;
}
.bp-newsletter-box .bp-eyebrow {
    color: #d8c2f0;
}
.bp-newsletter-box h2 {
    font-family: "Newsreader", serif;
    font-weight: 300;
    font-size: clamp(30px, 3.4vw, 46px);
    line-height: 1.04;
    margin: 14px 0;
    letter-spacing: -0.02em;
}
.bp-newsletter-box p {
    color: #e0d2f2;
    font-size: 15.5px;
    max-width: 42ch;
}
.bp-news-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
    position: relative;
    z-index: 2;
}
.bp-news-form .bp-field {
    display: flex;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 100px;
    padding: 6px 6px 6px 22px;
    backdrop-filter: blur(6px);
}
.bp-news-form input {
    flex: 1;
    background: none;
    border: none;
    color: #fff;
    font-family: inherit;
    font-size: 15px;
    outline: none;
}
.bp-news-form input::placeholder {
    color: #c9b6e6;
}
.bp-news-form button {
    background: #fff;
    color: var(--bp-brand);
    border: none;
    padding: 13px 26px;
    border-radius: 100px;
    font-weight: 600;
    font-size: 14px;
    transition: transform 0.2s;
}
.bp-news-form button:hover {
    transform: scale(1.04);
}
.bp-news-fine {
    font-family: "IBM Plex Mono", monospace;
    font-size: 10.5px;
    color: #d8c2f0;
    letter-spacing: 0.04em;
}
.bp-news-error {
    font-family: 'Hanken Grotesk', sans-serif;
    font-size: 13px;
    color: #fca5a5;
    background: rgba(220, 38, 38, 0.15);
    border: 1px solid rgba(220, 38, 38, 0.35);
    border-radius: 8px;
    padding: 10px 14px;
    margin-bottom: 12px;
}

/* Newsletter AJAX success — override the 2-col grid, center everything */
.bp-newsletter-box.bp-news-subscribed {
    display: flex;
    align-items: center;
    justify-content: center;
}
.bp-news-success {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 48px 20px;
    text-align: center;
    width: 100%;
}
.bp-news-success svg {
    width: 44px;
    height: 44px;
    color: #c4b5fd;
    flex-shrink: 0;
}
.bp-news-success p {
    font-family: 'Newsreader', serif;
    font-size: 26px;
    font-style: italic;
    color: #fff;
    margin: 0;
}

/* Submit button loading state */
.bp-btn-loading { pointer-events: none; opacity: 0.75; }
@keyframes bp-btn-spin { to { transform: rotate(360deg); } }
.bp-btn-spinner {
    display: inline-block;
    width: 14px;
    height: 14px;
    border: 2px solid rgba(255, 255, 255, 0.35);
    border-top-color: #fff;
    border-radius: 50%;
    animation: bp-btn-spin 0.65s linear infinite;
    vertical-align: middle;
    margin-right: 6px;
    flex-shrink: 0;
}

/* Contact form inline AJAX error */
.bp-contact-error-ajax {
    background: #fff5f5;
    border: 1.5px solid #f87171;
    color: #991b1b;
    border-radius: 10px;
    padding: 11px 14px;
    font-family: 'Hanken Grotesk', sans-serif;
    font-size: 13.5px;
    line-height: 1.5;
    margin-bottom: 16px;
}

/* ====================================================
   FAQ SECTION
   ==================================================== */
.bp-faq-section {
    padding: 96px 0;
}
.bp-faq-grid {
    display: grid;
    grid-template-columns: 0.7fr 1.3fr;
    gap: 56px;
    align-items: start;
}
.bp-faq-grid h2 {
    font-family: "Newsreader", serif;
    font-weight: 300;
    font-size: clamp(30px, 3.4vw, 46px);
    line-height: 1.04;
    letter-spacing: -0.02em;
    margin-top: 16px;
}
.bp-faq-list {
    display: flex;
    flex-direction: column;
}
.bp-faq-item {
    border-top: 1px solid var(--bp-line);
}
.bp-faq-item:last-child {
    border-bottom: 1px solid var(--bp-line);
}
.bp-faq-q {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    padding: 24px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    font-family: "Newsreader", serif;
    font-size: 21px;
    font-weight: 400;
    color: var(--bp-ink);
    letter-spacing: -0.01em;
    cursor: pointer;
}
.bp-faq-q .bp-pm {
    flex: none;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 1px solid var(--bp-line-2);
    display: grid;
    place-items: center;
    transition: all 0.25s;
    position: relative;
}
.bp-faq-q .bp-pm::before,
.bp-faq-q .bp-pm::after {
    content: "";
    position: absolute;
    background: var(--bp-ink);
    transition: transform 0.25s;
}
.bp-faq-q .bp-pm::before {
    width: 12px;
    height: 1.5px;
}
.bp-faq-q .bp-pm::after {
    width: 1.5px;
    height: 12px;
}
.bp-faq-item.open .bp-pm {
    background: var(--bp-brand);
    border-color: var(--bp-brand);
}
.bp-faq-item.open .bp-pm::before,
.bp-faq-item.open .bp-pm::after {
    background: #fff;
}
.bp-faq-item.open .bp-pm::after {
    transform: scaleY(0);
}
.bp-faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
}
.bp-faq-a p {
    padding: 0 60px 26px 0;
    font-size: 15px;
    color: var(--bp-ink-soft);
    line-height: 1.65;
}

/* ====================================================

/* ====================================================
   RESPONSIVE
   ==================================================== */
@media (max-width: 980px) {
    .bp-hero-grid,
    .bp-quality .bp-quality-inner,
    .bp-creds-grid,
    .bp-faq-grid,
    .bp-newsletter-box {
        grid-template-columns: 1fr;
    }
    .bp-pgrid {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }
    .bp-trust-in {
        grid-template-columns: 1fr;
    }
    .bp-trust-cell {
        border-right: none;
        border-bottom: 1px solid var(--bp-line);
    }
    .bp-trust-cell:last-child {
        border-bottom: none;
    }
    .bp-sec-head {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }
    .bp-sci-grid {
        grid-template-columns: 1fr;
    }
    .bp-sci-photo {
        grid-column: span 1;
    }
    .bp-nav-links,
    .bp-icon-btn span {
        display: none;
    }
    #bp-search-btn {
        display: none;
    }
    .custom-logo {
        max-width: 120px !important;
    }
    .bp-foot-top {
        grid-template-columns: 1fr 1fr;
    }
}
@media (max-width: 560px) {
    .bp-wrap {
        padding: 0 20px;
    }
    .bp-pgrid {
        grid-template-columns: repeat(2, 1fr);
    }
    .bp-card h3 {
        font-size: 15px;
    }
    .bp-card .bp-pbody {
        padding-left: 10px;
        padding-right: 10px;
    }
    .bp-card .bp-prow {
        margin-top: 10px;
        padding-top: 10px;
        gap: 6px;
    }
    .bp-card .bp-price {
        font-size: 15px;
    }
    .bp-card .bp-price del {
        font-size: 12px;
        opacity: 0.55;
    }
    .bp-card .bp-price ins {
        font-size: 15px;
        text-decoration: none;
    }
    .bp-card .bp-add,
    .bp-card .bp-add-arrow {
        width: 32px;
        height: 32px;
        flex-shrink: 0;
    }
    .bp-cert-row {
        grid-template-columns: 1fr;
    }
    .bp-foot-top {
        grid-template-columns: 1fr;
    }
    .bp-newsletter-box {
        padding: 40px 20px;
    }
    /* Strip the shared pill container so input + button appear as separate elements */
    .bp-news-form .bp-field {
        flex-direction: column;
        background: transparent;
        border: none;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        padding: 0;
        gap: 10px;
    }
    /* Give the input its own pill look */
    .bp-news-form input {
        min-width: 0;
        width: 100%;
        box-sizing: border-box;
        background: rgba(255, 255, 255, 0.12);
        border: 1px solid rgba(255, 255, 255, 0.3);
        border-radius: 100px;
        padding: 14px 22px;
        backdrop-filter: blur(6px);
        -webkit-backdrop-filter: blur(6px);
    }
    /* Button full-width pill */
    .bp-news-form .bp-field button {
        width: 100%;
        border-radius: 100px;
        padding: 14px 20px;
        text-align: center;
    }
}

/* ====================================================

/* ====================================================
   HEADER
   ==================================================== */
.bp-l-header {
    border-bottom: 1px solid var(--bp-line);
    background: var(--bp-paper);
    position: sticky;
    top: 0;
    z-index: 200;
}
.bp-l-header-in {
    display: flex;
    align-items: center;
    gap: 32px;
    padding: 18px 32px;
}
.bp-l-logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}
.bp-l-logo .custom-logo-link {
    display: flex;
    align-items: center;
}
.bp-l-logo img,
.bp-l-logo .custom-logo {
    display: block;
    width: 100%;
    max-width: 160px;
    height: auto;
    max-height: 40px;
}
.bp-l-logo-text {
    font-family: "Newsreader", serif;
    font-size: 22px;
    font-weight: 500;
    color: var(--bp-ink);
    letter-spacing: -0.01em;
}
.bp-l-nav {
    flex: 1 1 auto;
}
.bp-l-nav-links {
    display: flex;
    align-items: center;
    gap: 28px;
    list-style: none;
    margin: 0;
    padding: 0;
}
.bp-l-nav-links a {
    font-size: 14.5px;
    font-weight: 500;
    color: var(--bp-ink-soft);
    text-decoration: none;
    transition: color 0.2s;
}
.bp-l-nav-links a:hover {
    color: var(--bp-brand);
}
.bp-l-header-actions {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-shrink: 0;
}
.bp-l-header-cta {
    padding: 11px 20px;
    font-size: 13.5px;
}
.bp-l-menu-toggle {
    display: none;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 1px solid var(--bp-line-2);
    border-radius: 10px;
    background: none;
    color: var(--bp-ink);
}
.bp-l-menu-toggle i,
.bp-l-menu-toggle svg {
    width: 20px;
    height: 20px;
}
.bp-l-mobile-nav {
    display: none;
    flex-direction: column;
    gap: 16px;
    padding: 20px 32px 26px;
    border-top: 1px solid var(--bp-line);
}
.bp-l-mobile-nav.is-open {
    display: flex;
}
.bp-l-mobile-nav-links {
    display: flex;
    flex-direction: column;
    gap: 4px;
    list-style: none;
    margin: 0;
    padding: 0;
}
.bp-l-mobile-nav-links a {
    display: block;
    padding: 10px 0;
    font-size: 15px;
    font-weight: 500;
    color: var(--bp-ink);
    text-decoration: none;
    border-bottom: 1px solid var(--bp-line);
}
@media (max-width: 780px) {
    .bp-l-nav,
    .bp-l-header-cta {
        display: none;
    }
    .bp-l-menu-toggle {
        display: flex;
    }
    .bp-l-header-in {
        padding: 16px 20px;
    }
}

/* ====================================================
   MAIN
   ==================================================== */
.bp-l-main {
    overflow-x: hidden;
}

/* ====================================================
   FOOTER
   ==================================================== */
.bp-l-footer {
    background: var(--bp-ink);
    color: #b7a9c6;
    padding: 56px 0 0;
    margin-top: 40px;
}
.bp-l-footer-in {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}
.bp-l-footer-brand .bp-l-logo-text,
.bp-l-footer-brand .custom-logo-link img {
    color: var(--bp-paper);
}
.bp-l-footer-brand .custom-logo-link img {
    max-height: 36px;
    width: auto;
    filter: brightness(0) invert(1);
}
.bp-l-footer-blurb {
    font-size: 14px;
    color: #a99bb8;
    margin-top: 12px;
    max-width: 34ch;
    line-height: 1.6;
}
.bp-l-footer-in .bp-btn-primary {
    flex-shrink: 0;
}
.bp-l-footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
    padding: 22px 0;
    font-family: "IBM Plex Mono", monospace;
    font-size: 11px;
    letter-spacing: 0.04em;
    color: #8a7c99;
}
@media (max-width: 560px) {
    .bp-l-footer-in {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* ====================================================
   SHOP PERMISSION POPUP
   ==================================================== */
.bp-gate-overlay {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.35s ease, visibility 0.35s ease;
}
.bp-gate-overlay.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}
.bp-gate-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(20, 10, 30, 0.55);
    backdrop-filter: blur(2px);
}
.bp-gate-card {
    position: relative;
    width: 100%;
    max-width: 440px;
    background: var(--bp-paper);
    border-radius: 20px;
    box-shadow: 0 32px 80px -20px rgba(20, 10, 30, 0.45);
    padding: 40px 36px;
    text-align: center;
    transform: translateY(18px) scale(0.97);
    opacity: 0;
    transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.3, 1), opacity 0.35s ease;
}
.bp-gate-overlay.is-open .bp-gate-card {
    transform: none;
    opacity: 1;
}
.bp-gate-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    background: var(--bp-paper-2);
    border-radius: 50%;
    color: var(--bp-ink-soft);
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
}
.bp-gate-close:hover {
    background: var(--bp-line-2);
    color: var(--bp-ink);
}
.bp-gate-close svg {
    width: 16px;
    height: 16px;
}
.bp-gate-body .bp-eyebrow {
    display: block;
    margin-bottom: 14px;
}
.bp-gate-body h2 {
    font-size: clamp(24px, 3vw, 30px);
    line-height: 1.1;
    margin: 0 0 12px;
}
.bp-gate-lede {
    font-size: 14.5px;
    color: var(--bp-ink-soft);
    line-height: 1.6;
    margin: 0 0 26px;
}
.bp-gate-form {
    display: flex;
    flex-direction: column;
    gap: 14px;
}
/* Honeypots — kept in the DOM and focusable-looking to bots, but invisible
   and unreachable for real visitors (off-screen, not display:none, which
   some crawlers skip when deciding what to fill in). */
.bp-gate-hp {
    position: absolute;
    left: -9999px;
    top: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}
.bp-gate-field input[type="email"] {
    width: 100%;
    box-sizing: border-box;
    padding: 14px 18px;
    border: 1px solid var(--bp-line-2);
    border-radius: 100px;
    font-size: 14.5px;
    font-family: "Hanken Grotesk", sans-serif;
    color: var(--bp-ink);
    background: #fff;
    outline: none;
    transition: border-color 0.2s;
}
.bp-gate-field input[type="email"]:focus {
    border-color: var(--bp-brand);
}
.bp-gate-recaptcha {
    display: flex;
    justify-content: center;
}
.bp-gate-submit {
    width: 100%;
    justify-content: center;
}
.bp-gate-error {
    font-size: 13px;
    color: #dc2626;
    margin: 0;
}
.bp-gate-success {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 20px 0 4px;
}
.bp-gate-success svg {
    width: 40px;
    height: 40px;
    color: var(--bp-brand);
}
.bp-gate-success p {
    font-size: 15px;
    color: var(--bp-ink);
    margin: 0;
}
html.bp-gate-locked {
    overflow: hidden;
}
