:root {
    --cream: #f5e8c7;
    --paper: #fff8e8;
    --maple: #e8c878;
    --blue: #245f9f;
    --blue-deep: #123f72;
    --red: #b53a32;
    --green: #426b4a;
    --brown: #6f4528;
    --walnut: #2d1b12;
    --charcoal: #273035;
    --muted: #665d51;
    --line: rgba(45, 27, 18, 0.18);
    --shadow: 0 28px 80px rgba(45, 27, 18, 0.22);
    --soft-shadow: 0 16px 42px rgba(45, 27, 18, 0.12);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body.bib-theme {
    --mouse-x: 50%;
    --mouse-y: 50%;
    --depth-x: 0px;
    --depth-y: 0px;
    margin: 0;
    background:
        repeating-linear-gradient(92deg, rgba(111, 69, 40, 0.055) 0 1px, transparent 1px 34px),
        repeating-linear-gradient(3deg, rgba(255, 250, 240, 0.38) 0 2px, transparent 2px 22px),
        var(--cream);
    color: var(--charcoal);
    font-family: Inter, Arial, Helvetica, sans-serif;
    letter-spacing: 0;
}

body.bib-theme::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: -3;
    pointer-events: none;
    background:
        linear-gradient(90deg, rgba(255, 248, 232, 0.18), rgba(255, 248, 232, 0)),
        repeating-linear-gradient(90deg, rgba(111, 69, 40, 0.09) 0 1px, transparent 1px 46px),
        repeating-linear-gradient(0deg, rgba(45, 27, 18, 0.04) 0 1px, transparent 1px 16px);
    opacity: 0.72;
    mix-blend-mode: multiply;
}

.bib-depth-field {
    position: fixed;
    inset: 0;
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
    opacity: 0.34;
}

.bib-depth-field::before,
.bib-depth-field::after {
    content: "";
    position: absolute;
    inset: -18%;
    background:
        radial-gradient(circle at var(--mouse-x) var(--mouse-y), rgba(36, 95, 159, 0.18), transparent 22%),
        linear-gradient(115deg, transparent 0 42%, rgba(255, 248, 232, 0.3) 42% 44%, transparent 44% 100%),
        repeating-linear-gradient(60deg, rgba(45, 27, 18, 0.08) 0 1px, transparent 1px 34px);
    transform: translate3d(var(--depth-x), var(--depth-y), 0) rotate(0.001deg);
    transition: transform 80ms linear;
}

.bib-depth-field::after {
    inset: -28%;
    opacity: 0.45;
    background:
        radial-gradient(circle at calc(100% - var(--mouse-x)) calc(100% - var(--mouse-y)), rgba(181, 58, 50, 0.14), transparent 19%),
        repeating-linear-gradient(135deg, rgba(18, 63, 114, 0.08) 0 1px, transparent 1px 42px);
    transform: translate3d(calc(var(--depth-x) * -0.65), calc(var(--depth-y) * -0.65), 0);
}

.bib-depth-field span {
    position: absolute;
    width: 18px;
    height: 18px;
    border: 2px solid rgba(36, 95, 159, 0.2);
    border-radius: 4px;
    transform: rotate(45deg) translate3d(var(--depth-x), var(--depth-y), 0);
}

.bib-depth-field span:nth-child(1) {
    top: 18%;
    left: 8%;
}

.bib-depth-field span:nth-child(2) {
    top: 34%;
    right: 10%;
    border-color: rgba(181, 58, 50, 0.22);
    transform: rotate(18deg) translate3d(calc(var(--depth-x) * -0.5), var(--depth-y), 0);
}

.bib-depth-field span:nth-child(3) {
    bottom: 20%;
    left: 18%;
    width: 34px;
    height: 34px;
}

.bib-depth-field span:nth-child(4) {
    right: 20%;
    bottom: 12%;
    border-radius: 50%;
    transform: translate3d(calc(var(--depth-x) * -1), calc(var(--depth-y) * 0.8), 0);
}

.bib-header,
main,
.bib-footer {
    position: relative;
}

main,
.bib-footer {
    z-index: 1;
}

.skip-link {
    position: fixed;
    left: 16px;
    top: -80px;
    z-index: 100000;
    padding: 10px 14px;
    background: var(--walnut);
    color: #fffaf0;
}

.skip-link:focus {
    top: 16px;
}

body.admin-bar .bib-header {
    top: 48px;
}

.bib-header {
    position: fixed;
    top: 16px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 50;
    width: min(1280px, calc(100% - 32px));
    min-height: 66px;
    display: grid;
    grid-template-columns: minmax(120px, 190px) minmax(0, 1fr) auto;
    align-items: center;
    gap: 10px;
    padding: 8px 10px 8px 14px;
    border: 1px solid rgba(255, 255, 255, 0.72);
    border-radius: 10px;
    background: rgba(255, 248, 232, 0.72);
    box-shadow: 0 18px 48px rgba(45, 27, 18, 0.16);
    backdrop-filter: blur(18px);
    transition: background 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.bib-menu-toggle {
    display: none;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 44px;
    padding: 0 12px;
    border: 1px solid rgba(45, 27, 18, 0.18);
    border-radius: 10px;
    background: rgba(255, 248, 232, 0.78);
    color: var(--walnut);
    font: inherit;
    font-weight: 800;
}

.bib-header.is-scrolled {
    background: rgba(255, 248, 232, 0.9);
    box-shadow: 0 16px 44px rgba(45, 27, 18, 0.2);
}

body.home .bib-header {
    grid-template-columns: minmax(0, 1fr) auto;
}

body.home .bib-brand {
    display: none;
}

.bib-brand,
.bib-nav a,
.bib-header-cta,
.bib-button,
.bib-footer a {
    text-decoration: none;
}

.bib-brand {
    display: inline-flex;
    align-items: center;
    min-width: 0;
}

.bib-brand-wordmark {
    width: min(170px, 100%);
    max-height: 40px;
    object-fit: contain;
}

.bib-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2px;
    min-width: 0;
    overflow: hidden;
    color: var(--walnut);
    font-size: clamp(0.72rem, 0.84vw, 0.84rem);
    font-weight: 800;
}

.bib-footer i {
    font-size: 1rem;
    line-height: 0;
}

.bib-menu {
    display: flex;
    gap: 24px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.bib-menu a,
.bib-nav > a {
    display: inline-flex;
    align-items: center;
    min-height: 40px;
    padding: 0 8px;
    border-radius: 999px;
    color: var(--walnut);
    white-space: nowrap;
}

.bib-nav > a:hover {
    background: rgba(36, 95, 159, 0.1);
}

.bib-header-cta,
.bib-button {
    gap: 9px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    min-height: 48px;
    padding: 0 16px;
    border-radius: 10px;
    border: 0;
    font-weight: 800;
    line-height: 1;
    white-space: nowrap;
    transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.bib-header-cta,
.bib-button-primary {
    background: var(--red);
    color: #fffaf0;
    box-shadow: 0 12px 28px rgba(181, 58, 50, 0.28);
}

.bib-button-secondary {
    border: 2px solid var(--blue);
    color: var(--blue-deep);
    background: rgba(255, 248, 232, 0.86);
}

.bib-button-disabled {
    background: #d9d0bd;
    color: #716b60;
    pointer-events: none;
    box-shadow: none;
}

.bib-header-cta:hover,
.bib-button:hover {
    transform: translateY(-2px);
}

.bib-hero {
    position: relative;
    min-height: 100vh;
    display: grid;
    grid-template-columns: minmax(0, 0.98fr) minmax(410px, 0.72fr);
    grid-template-rows: auto minmax(0, 1fr);
    align-items: center;
    align-content: center;
    column-gap: 48px;
    row-gap: 28px;
    padding: 124px max(26px, calc((100vw - 1180px) / 2)) 86px;
    overflow: hidden;
    background: var(--walnut);
}

.bib-hero::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -1px;
    height: 80px;
    background: var(--blue-deep);
    clip-path: polygon(0 55%, 100% 0, 100% 100%, 0 100%);
    z-index: 2;
}

.bib-hero-media {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.bib-hero-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(1.05) contrast(1.05);
}

.bib-home-hero .bib-hero-media img {
    object-position: 52% 58%;
}

.bib-hero-media::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 74% 34%, rgba(232, 200, 120, 0.18), transparent 32%),
        linear-gradient(90deg, rgba(45, 27, 18, 0.94) 0%, rgba(45, 27, 18, 0.76) 44%, rgba(18, 63, 114, 0.28) 100%),
        linear-gradient(0deg, rgba(45, 27, 18, 0.66), rgba(45, 27, 18, 0.04) 46%, rgba(45, 27, 18, 0.58));
}

.bib-home-hero .bib-hero-media::after {
    background:
        radial-gradient(circle at 62% 36%, rgba(242, 217, 139, 0.16), transparent 30%),
        linear-gradient(90deg, rgba(45, 27, 18, 0.9) 0%, rgba(45, 27, 18, 0.7) 42%, rgba(18, 63, 114, 0.26) 100%),
        linear-gradient(0deg, rgba(45, 27, 18, 0.72), rgba(45, 27, 18, 0.08) 48%, rgba(45, 27, 18, 0.44));
}

.bib-hero-content,
.bib-hero-card {
    position: relative;
    z-index: 3;
}

.bib-hero-content {
    max-width: 790px;
    padding-bottom: 16px;
}

.bib-hero-logo-lockup {
    position: relative;
    z-index: 3;
    grid-column: 1 / -1;
    justify-self: center;
    width: min(960px, 94vw);
    display: grid;
    place-items: center;
    margin: -8px auto 8px;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    filter: drop-shadow(0 18px 30px rgba(0, 0, 0, 0.26));
}

.bib-hero-logo-lockup img {
    width: 100%;
    max-height: clamp(132px, 18vw, 238px);
    height: auto;
    display: block;
    object-fit: contain;
}

.bib-tagline {
    width: max-content;
    max-width: 100%;
    margin: 14px 0 0;
    padding: 9px 12px;
    border: 1px solid rgba(242, 217, 139, 0.38);
    border-radius: 999px;
    background: rgba(255, 248, 232, 0.12);
    color: #f2d98b;
    font-family: "Space Mono", monospace;
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
}

.bib-eyebrow,
.bib-status,
.bib-episode span,
.bib-queue span {
    margin: 0;
    color: var(--maple);
    font-family: "Space Mono", monospace;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0;
    text-transform: uppercase;
}

.bib-story .bib-eyebrow,
.bib-how .bib-eyebrow,
.bib-box .bib-eyebrow,
.bib-values .bib-eyebrow,
.bib-pricing .bib-eyebrow,
.bib-trust .bib-eyebrow,
.bib-faq .bib-eyebrow {
    color: var(--blue);
}

h1,
h2,
h3 {
    margin: 0;
    color: var(--walnut);
    font-family: Montserrat, Inter, sans-serif;
    font-weight: 800;
    letter-spacing: 0;
}

.bib-hero h1 {
    margin-top: 18px;
    max-width: 820px;
    color: #fffaf0;
    font-size: clamp(2.75rem, 4.65vw, 4.9rem);
    line-height: 1.08;
    text-wrap: balance;
}

.bib-hero-copy {
    max-width: 650px;
    margin: 22px 0 0;
    color: #f6ead3;
    font-size: clamp(1.06rem, 1.8vw, 1.34rem);
    line-height: 1.65;
}

.bib-actions,
.bib-proof {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 24px;
}

.bib-proof span {
    max-width: 290px;
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    padding: 11px 13px;
    border: 1px solid rgba(255, 248, 232, 0.26);
    border-radius: 10px;
    background: rgba(255, 248, 232, 0.13);
    color: #fff8e8;
    font-weight: 800;
    font-size: 0.92rem;
    backdrop-filter: blur(10px);
}

.bib-hero-rhythm {
    width: min(720px, 100%);
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    margin-top: 22px;
}

.bib-hero-rhythm article {
    min-height: 84px;
    display: grid;
    grid-template-columns: 38px 1fr;
    align-content: center;
    column-gap: 12px;
    padding: 14px;
    border: 1px solid rgba(255, 248, 232, 0.2);
    border-radius: 10px;
    background: rgba(255, 248, 232, 0.12);
    color: #fff8e8;
    backdrop-filter: blur(12px);
}

.bib-hero-rhythm i {
    grid-row: span 2;
    display: grid;
    place-items: center;
    width: 38px;
    height: 38px;
    border-radius: 9px;
    background: rgba(36, 95, 159, 0.92);
    color: #fff8e8;
    font-size: 1.05rem;
}

.bib-hero-rhythm strong {
    color: #fffaf0;
    font-family: Montserrat, sans-serif;
    font-size: 0.98rem;
}

.bib-hero-rhythm span {
    margin-top: 2px;
    color: #f2dfb6;
    font-size: 0.78rem;
    line-height: 1.45;
}

.bib-hero-card {
    align-self: center;
    display: grid;
    align-content: end;
    gap: 16px;
}

.bib-hero-photo {
    margin: 0 0 0 auto;
    width: min(560px, 100%);
    min-height: 340px;
    overflow: hidden;
    border: 1px solid rgba(255, 248, 232, 0.32);
    border-radius: 14px;
    box-shadow: var(--shadow);
}

.bib-hero-photo img {
    width: 100%;
    height: 100%;
    min-height: 340px;
    object-fit: cover;
}

.bib-kit-preview {
    display: grid;
    grid-template-columns: 92px 1fr;
    gap: 20px;
    align-items: center;
    padding: 22px;
    border: 1px solid rgba(255, 248, 232, 0.36);
    border-radius: 14px;
    background:
        linear-gradient(135deg, rgba(255, 248, 232, 0.95), rgba(245, 232, 199, 0.88)),
        rgba(255, 248, 232, 0.9);
    box-shadow: var(--shadow);
    backdrop-filter: blur(14px);
}

.bib-project-mark {
    position: relative;
    display: block;
    width: 92px;
    height: 92px;
    overflow: hidden;
    border-radius: 20px;
    background:
        linear-gradient(145deg, rgba(36, 95, 159, 0.96), rgba(18, 63, 114, 0.98));
    box-shadow:
        inset 0 0 0 3px rgba(255, 248, 232, 0.16),
        0 14px 24px rgba(18, 63, 114, 0.22);
}

.bib-project-mark::before {
    content: "";
    position: absolute;
    top: 27px;
    left: 19px;
    right: 19px;
    height: 12px;
    border-radius: 999px;
    background: #f2d98b;
    box-shadow: 0 25px 0 #f7e5ad;
}

.bib-project-mark::after {
    content: "";
    position: absolute;
    top: 38px;
    bottom: 20px;
    left: 30px;
    right: 30px;
    border-left: 7px solid var(--red);
    border-right: 7px solid var(--red);
}

.bib-project-mark i,
.bib-project-mark b {
    position: absolute;
    display: block;
    left: 25px;
    width: 42px;
}

.bib-project-mark i {
    top: 16px;
    height: 16px;
    border: 3px solid var(--red);
    border-bottom: 0;
    border-radius: 14px 14px 0 0;
}

.bib-project-mark b {
    bottom: 17px;
    height: 6px;
    border-radius: 999px;
    background: var(--red);
}

.bib-kit-preview span {
    display: block;
    color: var(--red);
    font-family: "Space Mono", monospace;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
}

.bib-kit-preview strong {
    display: block;
    margin-top: 5px;
    color: var(--walnut);
    font-family: Montserrat, sans-serif;
    font-size: 1.45rem;
}

.bib-kit-preview p {
    margin-top: 4px;
    color: var(--muted);
    line-height: 1.45;
}

.bib-kit-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin-top: 12px;
}

.bib-kit-tags em {
    display: inline-flex;
    min-height: 28px;
    align-items: center;
    padding: 5px 9px;
    border: 1px solid rgba(18, 63, 114, 0.18);
    border-radius: 999px;
    background: rgba(36, 95, 159, 0.08);
    color: var(--blue-deep);
    font-size: 0.72rem;
    font-style: normal;
    font-weight: 800;
}

.bib-founder-video {
    display: grid;
    grid-template-columns: minmax(340px, 0.84fr) minmax(440px, 1.16fr);
    gap: 48px;
    align-items: center;
    background:
        radial-gradient(circle at 92% 24%, rgba(36, 95, 159, 0.18), transparent 32%),
        radial-gradient(circle at 10% 80%, rgba(181, 58, 50, 0.08), transparent 28%),
        linear-gradient(135deg, rgba(255, 248, 232, 0.98), rgba(245, 232, 199, 0.88)),
        var(--paper);
}

.bib-founder-video-copy h2 {
    margin-top: 12px;
    font-size: clamp(2rem, 3.45vw, 3.35rem);
    line-height: 1.12;
    text-wrap: balance;
}

.bib-founder-video-copy p:not(.bib-eyebrow) {
    margin-top: 18px;
    max-width: 650px;
    color: #51463d;
    font-size: clamp(1rem, 1.35vw, 1.16rem);
}

.bib-video-points {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    margin-top: 28px;
}

.bib-video-points span {
    display: grid;
    grid-template-columns: 36px minmax(0, 1fr);
    align-items: center;
    gap: 10px;
    min-height: 56px;
    padding: 9px 10px;
    border: 1px solid rgba(18, 63, 114, 0.16);
    border-radius: 12px;
    background: rgba(255, 250, 240, 0.76);
    color: var(--blue-deep);
    font-weight: 800;
    box-shadow: 0 12px 28px rgba(45, 27, 18, 0.08);
}

.bib-video-points i {
    display: grid;
    place-items: center;
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: rgba(36, 95, 159, 0.12);
    color: var(--blue);
    line-height: 1;
}

.bib-video-stage {
    position: relative;
    min-height: 430px;
    display: grid;
    place-items: center;
    padding: clamp(18px, 2vw, 28px);
    border-radius: 24px;
    background:
        linear-gradient(135deg, rgba(18, 63, 114, 0.92), rgba(45, 27, 18, 0.78)),
        url("../images/hero-family-workshop.jpg") center / cover;
    box-shadow: var(--shadow);
    overflow: hidden;
}

.bib-video-stage::before {
    content: "";
    position: absolute;
    inset: 18px;
    border: 1px solid rgba(255, 248, 232, 0.28);
    border-radius: 18px;
    pointer-events: none;
}

.bib-video-frame {
    position: relative;
    z-index: 1;
    width: min(560px, 100%);
    aspect-ratio: 16 / 9;
    display: grid;
    grid-template-columns: 96px 1fr;
    align-items: center;
    gap: 24px;
    padding: clamp(22px, 3vw, 34px);
    border: 1px solid rgba(255, 248, 232, 0.4);
    border-radius: 20px;
    background: rgba(255, 248, 232, 0.14);
    color: #fffaf0;
    box-shadow: 0 28px 72px rgba(18, 63, 114, 0.22);
    backdrop-filter: blur(14px);
}

.bib-video-stage iframe {
    position: relative;
    z-index: 1;
    width: min(760px, 100%);
    aspect-ratio: 16 / 9;
    border: 0;
    border-radius: 20px;
    box-shadow: 0 28px 72px rgba(18, 63, 114, 0.28);
}

.bib-play-button {
    display: grid;
    place-items: center;
    width: 88px;
    height: 88px;
    border-radius: 50%;
    background: var(--red);
    color: #fffaf0;
    box-shadow:
        0 18px 42px rgba(181, 58, 50, 0.35),
        0 0 0 13px rgba(255, 248, 232, 0.13);
}

.bib-play-button i {
    display: grid;
    place-items: center;
    transform: translateX(2px);
    font-size: 1.62rem;
    line-height: 1;
}

.bib-video-frame small {
    display: inline-flex;
    margin-bottom: 9px;
    color: var(--maple);
    font-family: "Space Mono", monospace;
    font-weight: 700;
    text-transform: uppercase;
}

.bib-video-frame strong {
    display: block;
    color: #fffaf0;
    font-family: Montserrat, sans-serif;
    font-size: clamp(1.6rem, 2.8vw, 2.55rem);
    line-height: 1.12;
}

.bib-video-frame p {
    margin-top: 11px;
    color: #f6ead3;
}

.bib-slider-section {
    background:
        radial-gradient(circle at 88% 10%, rgba(36, 95, 159, 0.14), transparent 34%),
        radial-gradient(circle at 10% 84%, rgba(181, 58, 50, 0.07), transparent 28%),
        linear-gradient(180deg, rgba(255, 248, 232, 0.98), rgba(245, 232, 199, 0.82)),
        var(--paper);
}

.bib-slider-intro {
    align-items: center;
    gap: 38px;
}

.bib-slider-heading {
    max-width: 720px;
}

.bib-slider-heading h2 {
    margin-top: 12px;
    font-size: clamp(2.05rem, 3.4vw, 3.35rem);
    line-height: 1.14;
    text-wrap: balance;
}

.bib-slider-heading > p:last-child {
    margin-top: 14px;
    color: var(--blue);
    font-weight: 800;
    font-size: 1.05rem;
}

.bib-slider-summary {
    display: grid;
    gap: 18px;
    padding: 22px 0 22px 26px;
    border-left: 4px solid rgba(181, 58, 50, 0.62);
}

.bib-slider-summary p {
    max-width: 700px;
    color: #51463d;
    font-size: clamp(1rem, 1.38vw, 1.18rem);
    line-height: 1.72;
}

.bib-rhythm-points {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
}

.bib-rhythm-points span {
    display: grid;
    grid-template-columns: 34px minmax(0, 1fr);
    align-items: center;
    gap: 9px;
    min-height: 50px;
    padding: 8px 10px;
    border: 1px solid rgba(18, 63, 114, 0.14);
    border-radius: 10px;
    background: rgba(255, 248, 232, 0.7);
    color: var(--blue-deep);
    font-weight: 800;
    box-shadow: 0 10px 24px rgba(45, 27, 18, 0.06);
}

.bib-rhythm-points i {
    display: grid;
    place-items: center;
    width: 34px;
    height: 34px;
    border-radius: 9px;
    background: rgba(36, 95, 159, 0.12);
    color: var(--blue);
    line-height: 1;
}

.bib-slider {
    position: relative;
    margin-top: 34px;
    border-radius: 18px;
    overflow: hidden;
    min-height: 540px;
    background: var(--walnut);
    box-shadow: var(--shadow);
}

.bib-slider-track {
    position: relative;
    min-height: 540px;
}

.bib-slide {
    position: absolute;
    inset: 0;
    display: grid;
    align-items: end;
    padding: clamp(24px, 3vw, 42px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 620ms ease, transform 900ms ease;
    transform: scale(1.025);
}

.bib-slide.is-active {
    opacity: 1;
    pointer-events: auto;
    transform: scale(1);
}

.bib-slide img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.bib-slide::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(45, 27, 18, 0.84), rgba(45, 27, 18, 0.38), rgba(18, 63, 114, 0.08)),
        linear-gradient(0deg, rgba(45, 27, 18, 0.58), transparent 55%);
}

.bib-slide div {
    position: relative;
    z-index: 2;
    width: min(460px, calc(100% - 112px));
    padding: 24px;
    border: 1px solid rgba(255, 248, 232, 0.34);
    border-radius: 14px;
    background: rgba(45, 27, 18, 0.42);
    box-shadow: 0 20px 50px rgba(45, 27, 18, 0.2);
    backdrop-filter: blur(14px);
}

.bib-slide span {
    display: inline-flex;
    min-height: 30px;
    align-items: center;
    padding: 5px 9px;
    border-radius: 999px;
    background: rgba(242, 217, 139, 0.14);
    color: var(--maple);
    font-family: "Space Mono", monospace;
    font-weight: 700;
}

.bib-slide h3 {
    margin-top: 8px;
    color: #fffaf0;
    font-size: clamp(1.85rem, 3.2vw, 2.9rem);
    line-height: 1.1;
}

.bib-slide p {
    margin-top: 12px;
    color: #f6ead3;
    font-size: 1.08rem;
}

.bib-slider-controls {
    position: absolute;
    right: 28px;
    bottom: 28px;
    z-index: 4;
    display: flex;
    gap: 10px;
}

.bib-slider-controls button {
    display: grid;
    place-items: center;
    width: 48px;
    height: 48px;
    border: 1px solid rgba(255, 248, 232, 0.42);
    border-radius: 999px;
    background: rgba(255, 248, 232, 0.2);
    color: #fffaf0;
    cursor: pointer;
    backdrop-filter: blur(10px);
}

p {
    margin: 0;
    color: var(--muted);
    font-size: 1rem;
    line-height: 1.7;
}

.bib-section {
    position: relative;
    overflow: hidden;
    padding: 98px max(26px, calc((100vw - 1180px) / 2));
}

.bib-section::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    opacity: 0.28;
    background:
        radial-gradient(circle at var(--mouse-x) var(--mouse-y), rgba(255, 255, 255, 0.42), transparent 17%),
        repeating-linear-gradient(120deg, rgba(45, 27, 18, 0.08) 0 1px, transparent 1px 42px),
        repeating-linear-gradient(4deg, rgba(111, 69, 40, 0.035) 0 2px, transparent 2px 18px);
    transform: translate3d(calc(var(--depth-x) * 0.35), calc(var(--depth-y) * 0.35), 0);
}

.bib-section > * {
    position: relative;
    z-index: 1;
}

.bib-quote {
    position: relative;
    z-index: 4;
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    align-items: center;
    gap: 36px;
    min-height: 360px;
    padding: 78px max(26px, calc((100vw - 1180px) / 2));
    background:
        linear-gradient(135deg, rgba(18, 63, 114, 0.95), rgba(36, 95, 159, 0.95)),
        var(--blue-deep);
    color: #fffaf0;
    text-align: center;
}

.bib-quote p {
    color: #fffaf0;
    font-family: Montserrat, sans-serif;
    font-size: clamp(2.5rem, 5.6vw, 5.45rem);
    font-weight: 800;
    line-height: 1;
    white-space: nowrap;
}

.bib-quote span {
    display: block;
    margin-top: 18px;
    color: #f2d98b;
    font-weight: 800;
}

.bib-quote-cards {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    text-align: left;
}

.bib-quote-cards article {
    min-height: 170px;
    padding: 22px;
    border: 1px solid rgba(255, 248, 232, 0.22);
    border-radius: 14px;
    background: rgba(255, 248, 232, 0.1);
    backdrop-filter: blur(12px);
}

.bib-quote-cards i {
    display: grid;
    place-items: center;
    width: 46px;
    height: 46px;
    margin-bottom: 22px;
    border-radius: 14px;
    background: rgba(242, 217, 139, 0.16);
    color: #f2d98b;
    font-size: 1.35rem;
}

.bib-quote-cards strong {
    display: block;
    color: #fffaf0;
    font-family: Montserrat, sans-serif;
    font-size: 1.1rem;
}

.bib-quote-cards small {
    display: block;
    margin-top: 8px;
    color: #d9e6f4;
    font-size: 0.9rem;
    line-height: 1.55;
}

.bib-mission {
    display: grid;
    grid-template-columns: minmax(360px, 0.92fr) minmax(0, 1.08fr);
    gap: 28px;
    align-items: center;
    background:
        radial-gradient(circle at 9% 16%, rgba(181, 58, 50, 0.08), transparent 28%),
        radial-gradient(circle at 88% 72%, rgba(36, 95, 159, 0.14), transparent 30%),
        linear-gradient(135deg, rgba(255, 248, 232, 0.96), rgba(245, 232, 199, 0.92)),
        var(--paper);
}

.bib-mission-copy {
    position: relative;
    min-height: 0;
    display: grid;
    align-content: center;
    overflow: hidden;
    padding: clamp(28px, 4vw, 44px);
    border: 1px solid var(--line);
    border-radius: 16px;
    background:
        linear-gradient(135deg, rgba(255, 250, 240, 0.96), rgba(255, 248, 232, 0.9)),
        var(--paper);
    box-shadow: var(--soft-shadow);
}

.bib-mission-copy::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(120deg, transparent 0 48%, rgba(36, 95, 159, 0.07) 48% 49%, transparent 49% 100%),
        repeating-linear-gradient(0deg, rgba(111, 69, 40, 0.055) 0 1px, transparent 1px 28px);
    opacity: 0.3;
    pointer-events: none;
}

.bib-mission-copy > * {
    position: relative;
}

.bib-mission h2 {
    margin-top: 12px;
    color: var(--walnut);
    font-size: clamp(1.95rem, 2.85vw, 2.8rem);
    line-height: 1.14;
    overflow-wrap: normal;
    text-wrap: balance;
}

.bib-mission-copy p:not(.bib-eyebrow) {
    margin-top: 20px;
    font-size: 1.04rem;
    color: #51463d;
}

.bib-mission-note {
    display: grid;
    gap: 6px;
    margin-top: 28px;
    padding: 16px 18px;
    border-left: 4px solid var(--red);
    border-radius: 10px;
    background: rgba(36, 95, 159, 0.08);
}

.bib-mission-note span {
    color: var(--blue);
    font-family: "Space Mono", monospace;
    font-size: 0.74rem;
    font-weight: 700;
    text-transform: uppercase;
}

.bib-mission-note strong {
    color: var(--walnut);
    font-family: Montserrat, sans-serif;
    font-size: 1.05rem;
    line-height: 1.35;
}

.bib-mission-board {
    display: grid;
    gap: 16px;
}

.bib-mission-photo {
    position: relative;
    min-height: 300px;
    margin: 0;
    overflow: hidden;
    border: 1px solid rgba(45, 27, 18, 0.18);
    border-radius: 16px;
    box-shadow: var(--soft-shadow);
}

.bib-mission-photo img {
    width: 100%;
    height: 100%;
    min-height: 300px;
    object-fit: cover;
    filter: saturate(1.08) contrast(1.06) brightness(0.94);
}

.bib-mission-photo::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(45, 27, 18, 0), rgba(45, 27, 18, 0.76)),
        radial-gradient(circle at 18% 15%, rgba(242, 217, 139, 0.2), transparent 28%);
}

.bib-mission-photo figcaption {
    position: absolute;
    right: 18px;
    bottom: 18px;
    left: 18px;
    z-index: 2;
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 16px;
    color: #fff8e8;
}

.bib-mission-photo figcaption span {
    flex: 0 0 auto;
    color: var(--maple);
    font-family: "Space Mono", monospace;
    font-size: 0.74rem;
    font-weight: 700;
    text-transform: uppercase;
}

.bib-mission-photo figcaption strong {
    max-width: 360px;
    color: #fffaf0;
    font-family: Montserrat, sans-serif;
    font-size: 1.45rem;
    line-height: 1.12;
    text-align: right;
}

.bib-principles {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.bib-principles article {
    position: relative;
    min-height: 234px;
    display: flex;
    flex-direction: column;
    padding: 22px;
    border: 1px solid rgba(18, 63, 114, 0.18);
    border-radius: 14px;
    background: rgba(255, 248, 232, 0.84);
    box-shadow: var(--soft-shadow);
}

.bib-principles span {
    display: grid;
    place-items: center;
    width: 48px;
    height: 48px;
    margin-bottom: 20px;
    border: 1px solid rgba(36, 95, 159, 0.16);
    border-radius: 12px;
    background:
        linear-gradient(145deg, rgba(36, 95, 159, 0.16), rgba(36, 95, 159, 0.06)),
        rgba(255, 248, 232, 0.9);
    color: var(--blue-deep);
}

.bib-principles span i {
    display: block;
    font-size: 1.2rem;
    line-height: 1;
}

.bib-principles h3 {
    font-size: clamp(1.08rem, 1.32vw, 1.26rem);
    line-height: 1.2;
}

.bib-principles p {
    margin-top: 10px;
    font-size: 0.94rem;
    line-height: 1.58;
}

.bib-story {
    display: grid;
    grid-template-columns: minmax(0, 0.86fr) minmax(430px, 1.14fr);
    gap: 52px;
    align-items: center;
    background:
        radial-gradient(circle at 82% 18%, rgba(36, 95, 159, 0.12), transparent 28%),
        radial-gradient(circle at 16% 78%, rgba(232, 200, 120, 0.3), transparent 30%),
        var(--paper);
}

.bib-story-copy {
    padding: clamp(26px, 3.4vw, 38px);
    border: 1px solid rgba(45, 27, 18, 0.14);
    border-radius: 18px;
    background:
        linear-gradient(135deg, rgba(255, 250, 240, 0.98), rgba(255, 248, 232, 0.9)),
        var(--paper);
    box-shadow: var(--soft-shadow);
}

.bib-story h2,
.bib-how h2,
.bib-season h2,
.bib-box h2,
.bib-values h2,
.bib-pricing h2,
.bib-trust h2 {
    margin-top: 12px;
    font-size: clamp(1.95rem, 3.55vw, 3.2rem);
    line-height: 1.14;
}

.bib-story h2 {
    max-width: 620px;
}

.bib-story-copy > p {
    max-width: 660px;
    margin-top: 22px;
    color: #4f453b;
    font-size: 1.08rem;
    line-height: 1.76;
}

.bib-founder-note {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 30px;
    padding: 22px 24px;
    border-left: 6px solid var(--red);
    border-radius: 12px;
    background:
        linear-gradient(135deg, rgba(245, 232, 199, 0.96), rgba(255, 248, 232, 0.78)),
        #f4e3bc;
    box-shadow: var(--soft-shadow);
}

.bib-founder-note span {
    padding: 8px 10px;
    border-radius: 999px;
    background: var(--blue-deep);
    color: #fffaf0;
    font-family: "Space Mono", monospace;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
}

.bib-founder-note strong {
    flex-basis: 100%;
    color: var(--walnut);
    font-family: Montserrat, sans-serif;
    font-size: clamp(1.3rem, 2vw, 1.78rem);
    line-height: 1.24;
}

.bib-story-images {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(190px, 0.64fr);
    gap: 14px;
    align-items: stretch;
    min-height: 560px;
}

.bib-story-images figure {
    position: relative;
    min-width: 0;
    margin: 0;
    overflow: hidden;
    border: 1px solid rgba(45, 27, 18, 0.14);
    border-radius: 16px;
    background: var(--walnut);
    box-shadow: var(--shadow);
}

.bib-story-images figure::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(45, 27, 18, 0) 62%, rgba(45, 27, 18, 0.68)),
        radial-gradient(circle at 20% 14%, rgba(242, 217, 139, 0.06), transparent 24%);
}

.bib-story-main {
    min-height: 560px;
}

.bib-story-stack {
    display: grid;
    gap: 14px;
}

.bib-story-stack figure {
    min-height: 273px;
}

.bib-story-images img {
    width: 100%;
    height: 100%;
    min-height: 100%;
    object-fit: cover;
    display: block;
    filter: saturate(1.12) contrast(1.07) brightness(1.02);
}

.bib-box-photo img {
    width: 100%;
    min-height: 360px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.bib-story-images figcaption {
    position: absolute;
    right: 16px;
    bottom: 16px;
    left: 16px;
    z-index: 2;
    color: #fffaf0;
    font-weight: 800;
    line-height: 1.24;
    text-shadow: 0 2px 14px rgba(45, 27, 18, 0.42);
}

.bib-story-main figcaption {
    display: grid;
    gap: 6px;
}

.bib-story-main figcaption span {
    color: var(--maple);
    font-family: "Space Mono", monospace;
    font-size: 0.76rem;
    text-transform: uppercase;
}

.bib-story-main figcaption strong {
    max-width: 360px;
    font-family: Montserrat, sans-serif;
    font-size: clamp(1.35rem, 2vw, 1.85rem);
    line-height: 1.12;
}

.bib-story-stack figcaption {
    font-family: Montserrat, sans-serif;
    font-size: 1rem;
}

.bib-how {
    background: #f0d98f;
}

.bib-how-layout {
    display: grid;
    grid-template-columns: minmax(360px, 0.88fr) minmax(0, 1.12fr);
    gap: 48px;
    align-items: center;
}

.bib-how-media {
    min-height: 620px;
    overflow: hidden;
    border-radius: 18px;
    box-shadow: var(--shadow);
    transform: rotate(-1.2deg);
}

.bib-how-media img {
    width: 100%;
    height: 100%;
    min-height: 620px;
    object-fit: cover;
}

.bib-how h2 {
    max-width: 820px;
}

.bib-steps,
.bib-trust-grid,
.bib-faq-grid,
.bib-price-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.bib-steps {
    margin-top: 30px;
    grid-template-columns: 1fr;
}

.bib-steps article,
.bib-episode,
.bib-price-card,
.bib-values-grid article,
.bib-trust-grid article,
.bib-faq-grid article {
    border: 1px solid var(--line);
    border-radius: 10px;
    background: rgba(255, 248, 232, 0.86);
    box-shadow: var(--soft-shadow);
}

.bib-steps article {
    min-height: 0;
    padding: 28px;
    display: grid;
    grid-template-columns: 76px 1fr;
    column-gap: 22px;
    align-items: start;
}

.bib-steps span {
    display: grid;
    place-items: center;
    width: 52px;
    height: 52px;
    margin-bottom: 0;
    border-radius: 50%;
    background: var(--blue);
    color: #fffaf0;
    font-family: "Space Mono", monospace;
    font-weight: 700;
}

.bib-steps span i {
    font-size: 1.35rem;
}

.bib-steps h3,
.bib-values-grid h3,
.bib-trust-grid h3,
.bib-faq-grid h3 {
    margin-bottom: 12px;
    font-size: 1.3rem;
}

.bib-steps article h3,
.bib-steps article p {
    grid-column: 2;
}

.bib-section-row {
    display: grid;
    grid-template-columns: minmax(0, 1.06fr) minmax(320px, 0.94fr);
    gap: 46px;
    align-items: end;
}

.bib-section-row + .bib-home-path,
.bib-section-row + .bib-home-benefit-grid,
.bib-section-row + .bib-season-preview-grid,
.bib-section-row + .bib-faq-grid,
.bib-section-row + .bib-price-grid,
.bib-section-row + .bib-trust-grid,
.bib-section-row + .bib-page-grid,
.bib-section-row + .bib-page-feature-grid,
.bib-section-row + .bib-page-season-grid {
    margin-top: clamp(30px, 4vw, 56px);
}

.bib-season {
    background: var(--blue-deep);
}

.bib-season h2,
.bib-season .bib-eyebrow {
    color: #fffaf0;
}

.bib-season .bib-section-row p {
    color: #d9e6f4;
}

.bib-episode-rail {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: 282px;
    gap: 16px;
    margin-top: 42px;
    padding-bottom: 18px;
    overflow-x: auto;
    scrollbar-color: #f2d98b rgba(255, 255, 255, 0.14);
}

.bib-episode {
    min-height: 276px;
    padding: 24px;
    background: linear-gradient(180deg, #fff8e8, #f5e8c7);
}

.bib-episode span {
    color: var(--red);
}

.bib-episode h3 {
    min-height: 64px;
    margin-top: 16px;
}

.bib-episode strong {
    display: block;
    margin-top: 16px;
    color: var(--blue-deep);
    font-family: Montserrat, sans-serif;
}

.bib-episode p {
    margin-top: 16px;
    font-size: 0.92rem;
}

.bib-episode small {
    display: block;
    margin-top: 12px;
    color: var(--muted);
    font-size: 0.82rem;
    line-height: 1.5;
}

.bib-season-showcase {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
    gap: 28px;
    align-items: stretch;
    margin-top: 34px;
    padding: 18px;
    border: 1px solid rgba(255, 248, 232, 0.2);
    border-radius: 18px;
    background: rgba(255, 248, 232, 0.08);
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.18);
}

.bib-season-showcase img {
    width: 100%;
    min-height: 380px;
    object-fit: cover;
    border-radius: 14px;
}

.bib-season-showcase div {
    display: grid;
    align-content: center;
    padding: 28px;
}

.bib-season-showcase h3 {
    margin-top: 12px;
    color: #fffaf0;
    font-size: 2.4rem;
    line-height: 1.05;
}

.bib-season-showcase p:last-child {
    margin-top: 16px;
    color: #d9e6f4;
    font-size: 1.05rem;
}

.bib-box {
    display: grid;
    grid-template-columns: minmax(0, 0.82fr) minmax(360px, 1.18fr);
    gap: 48px;
    align-items: center;
    background: var(--paper);
}

.bib-box-copy p {
    margin-top: 22px;
    font-size: 1.08rem;
}

.bib-box-grid {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 12px;
}

.bib-box-grid span {
    gap: 10px;
    grid-auto-flow: row;
    min-height: 112px;
    display: grid;
    place-items: center;
    padding: 14px;
    border: 2px solid rgba(18, 63, 114, 0.22);
    border-radius: 10px;
    background: var(--cream);
    color: var(--walnut);
    text-align: center;
    font-family: Montserrat, sans-serif;
    font-weight: 800;
}

.bib-box-grid i {
    color: currentColor;
    font-size: 1.6rem;
}

.bib-box-grid span:nth-child(2),
.bib-box-grid span:nth-child(5) {
    background: var(--blue);
    color: #fffaf0;
}

.bib-box-grid span:nth-child(3) {
    background: var(--red);
    color: #fffaf0;
}

.bib-values {
    background: #f1e1bb;
}

.bib-values h2 {
    max-width: 780px;
}

.bib-values-grid {
    display: grid;
    grid-template-columns: 1.12fr 0.88fr 1fr;
    gap: 18px;
    margin-top: 38px;
}

.bib-values-grid article {
    min-height: 190px;
    padding: 26px;
}

.bib-values-grid article > i,
.bib-trust-grid article > i,
.bib-page-card > i {
    display: grid;
    place-items: center;
    width: 52px;
    height: 52px;
    margin-bottom: 18px;
    border-radius: 50%;
    background: rgba(36, 95, 159, 0.1);
    color: var(--blue);
    font-size: 1.35rem;
}

.bib-values-grid article:nth-child(1),
.bib-values-grid article:nth-child(5) {
    grid-row: span 2;
    display: grid;
    align-content: center;
    background: var(--blue);
}

.bib-values-grid article:nth-child(1) h3,
.bib-values-grid article:nth-child(1) p,
.bib-values-grid article:nth-child(1) > i,
.bib-values-grid article:nth-child(5) h3,
.bib-values-grid article:nth-child(5) p,
.bib-values-grid article:nth-child(5) > i {
    color: #fffaf0;
}

.bib-values-grid article:nth-child(1) > i,
.bib-values-grid article:nth-child(5) > i {
    background: rgba(255, 248, 232, 0.18);
}

.bib-pricing {
    background: var(--paper);
}

.bib-queue {
    display: grid;
    grid-template-columns: 280px 1fr 340px;
    gap: 22px;
    align-items: center;
    margin-top: 40px;
    padding: 22px;
    border: 1px solid rgba(255, 248, 232, 0.24);
    border-radius: 10px;
    background: var(--blue-deep);
    box-shadow: var(--shadow);
}

.bib-queue strong {
    display: block;
    margin-top: 4px;
    color: #fffaf0;
    font-family: Montserrat, sans-serif;
    font-size: 1.4rem;
}

.bib-queue p {
    color: #d9e6f4;
    font-size: 0.95rem;
}

.bib-meter {
    height: 18px;
    padding: 3px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.2);
}

.bib-meter i {
    display: block;
    width: 38%;
    height: 100%;
    border-radius: 999px;
    background: var(--maple);
}

.bib-founder-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 22px;
}

.bib-price-card {
    position: relative;
    min-height: 356px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    padding: 28px;
}

.bib-price-card.is-active {
    border-color: rgba(181, 58, 50, 0.48);
    background: #fff5dd;
}

.bib-price-card.is-featured {
    border-color: rgba(36, 95, 159, 0.5);
    background: #eef5ff;
}

.bib-price-card.is-locked,
.bib-price-card.is-muted,
.bib-price-card.is-sold {
    background: #eee5d4;
}

.bib-price-card.is-sold::after {
    content: "Sold Out";
    position: absolute;
    top: 22px;
    right: 22px;
    padding: 9px 12px;
    border-radius: 999px;
    background: var(--walnut);
    color: #fffaf0;
    font-family: "Space Mono", monospace;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
}

.bib-price-card.is-sold .bib-price {
    color: #7f786b;
    text-decoration: line-through;
}

.bib-status {
    width: max-content;
    padding: 7px 10px;
    border-radius: 999px;
    background: rgba(36, 95, 159, 0.1);
    color: var(--blue);
}

.bib-price {
    color: var(--walnut);
    font-family: Montserrat, sans-serif;
    font-size: clamp(2.1rem, 3.8vw, 2.85rem);
    font-weight: 800;
    line-height: 1.08;
}

.bib-price-card .bib-button {
    margin-top: auto;
}

.bib-price-actions {
    display: grid;
    gap: 10px;
    margin-top: auto;
}

.bib-price-actions .bib-button {
    width: 100%;
    margin-top: 0;
}

.bib-regular {
    margin-top: 40px;
}

.bib-regular-heading {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 28px;
    margin-bottom: 18px;
}

.bib-regular-heading h3 {
    font-size: 1.55rem;
}

.bib-regular-heading p {
    max-width: 430px;
}

.bib-trust {
    display: grid;
    grid-template-columns: 0.78fr 1.22fr;
    gap: 48px;
    background: #d9e7d4;
}

.bib-trust-copy img {
    width: 100%;
    min-height: 300px;
    margin-top: 28px;
    border-radius: 18px;
    object-fit: cover;
    box-shadow: var(--shadow);
}

.bib-trust-grid {
    margin-top: 0;
    align-self: stretch;
}

.bib-trust-grid article,
.bib-faq-grid article {
    min-height: 210px;
    padding: 24px;
}

.bib-trust-grid article {
    display: grid;
    align-content: center;
}

.bib-faq {
    background:
        linear-gradient(180deg, rgba(245, 232, 199, 0.96), rgba(255, 248, 232, 0.92)),
        var(--cream);
}

.bib-faq-heading {
    max-width: 850px;
}

.bib-faq-heading h2 {
    margin-top: 12px;
    font-size: clamp(2.05rem, 3.9vw, 3.45rem);
    line-height: 1.14;
}

.bib-faq-heading p:last-child {
    margin-top: 18px;
    font-size: 1.08rem;
}

.bib-faq-layout {
    display: grid;
    grid-template-columns: minmax(300px, 0.78fr) minmax(0, 1.22fr);
    gap: 24px;
    align-items: start;
    margin-top: 34px;
}

.bib-faq-feature {
    position: sticky;
    top: 110px;
    padding: 30px;
    border: 1px solid rgba(255, 248, 232, 0.2);
    border-radius: 18px;
    background:
        linear-gradient(145deg, rgba(18, 63, 114, 0.98), rgba(36, 95, 159, 0.9)),
        var(--blue-deep);
    box-shadow: var(--shadow);
}

.bib-faq-feature > i {
    display: grid;
    place-items: center;
    width: 58px;
    height: 58px;
    margin-bottom: 22px;
    border-radius: 18px;
    background: rgba(242, 217, 139, 0.16);
    color: #f2d98b;
    font-size: 1.55rem;
}

.bib-faq-feature h3 {
    color: #fffaf0;
    font-size: 2rem;
    line-height: 1.06;
}

.bib-faq-feature p {
    margin-top: 16px;
    color: #d9e6f4;
}

.bib-faq-feature a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 24px;
    color: #f2d98b;
    font-weight: 800;
    text-decoration: none;
}

.bib-faq-list {
    display: grid;
    gap: 12px;
}

.bib-faq-item {
    overflow: hidden;
    border: 1px solid rgba(45, 27, 18, 0.14);
    border-radius: 14px;
    background: rgba(255, 248, 232, 0.92);
    box-shadow: var(--soft-shadow);
}

.bib-faq-item button {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 18px;
    padding: 22px 24px;
    border: 0;
    background: transparent;
    color: var(--walnut);
    font: inherit;
    font-family: Montserrat, sans-serif;
    font-size: 1.08rem;
    font-weight: 800;
    text-align: left;
    cursor: pointer;
}

.bib-faq-item button i {
    flex: 0 0 auto;
    color: var(--blue);
    font-size: 1.35rem;
    transition: transform 180ms ease;
}

.bib-faq-item.is-open button i {
    transform: rotate(180deg);
}

.bib-faq-answer {
    display: none;
    padding: 0 24px 24px;
}

.bib-faq-item.is-open .bib-faq-answer {
    display: block;
}

.bib-faq-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    margin-top: 26px;
}

.bib-footer {
    position: relative;
    display: grid;
    grid-template-columns: minmax(270px, 0.72fr) minmax(0, 1.68fr);
    gap: 28px;
    align-items: stretch;
    padding: 64px max(26px, calc((100vw - 1180px) / 2)) 30px;
    background:
        radial-gradient(circle at 78% 24%, rgba(242, 217, 139, 0.13), transparent 28%),
        linear-gradient(120deg, rgba(45, 27, 18, 0.98), rgba(18, 63, 114, 0.88)),
        var(--walnut);
    color: #fffaf0;
}

.bib-footer img {
    width: min(315px, 100%);
    border-radius: 10px;
}

.bib-footer p {
    margin-top: 16px;
    color: #f2d98b;
    font-weight: 800;
    font-size: 1.08rem;
}

.bib-footer small {
    display: block;
    max-width: 440px;
    margin-top: 10px;
    color: #d9e6f4;
    font-size: 0.92rem;
    line-height: 1.6;
}

.bib-footer-cta {
    width: max-content;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-top: 18px;
    padding: 13px 16px;
    border-radius: 10px;
    background: var(--red);
    color: #fffaf0;
    font-weight: 800;
}

.bib-footer-grid {
    display: grid;
    grid-template-columns: minmax(220px, 0.74fr) minmax(360px, 1.26fr);
    gap: 18px;
    min-width: 0;
}

.bib-footer-column {
    min-width: 0;
    min-height: 0;
    padding: 22px;
    border: 1px solid rgba(255, 248, 232, 0.18);
    border-radius: 16px;
    background: rgba(255, 248, 232, 0.07);
    backdrop-filter: blur(12px);
}

.bib-footer-column h2 {
    margin-bottom: 18px;
    color: #fffaf0;
    font-size: 1.1rem;
}

.bib-footer nav {
    display: grid;
    grid-template-columns: 1fr;
    gap: 9px;
}

.bib-footer nav a,
.bib-footer-contact > a {
    display: grid;
    grid-template-columns: 28px minmax(0, 1fr);
    align-items: center;
    gap: 8px;
    min-width: 0;
    padding: 10px 11px;
    border: 1px solid rgba(255, 248, 232, 0.16);
    border-radius: 10px;
    color: #fffaf0;
    font-weight: 700;
    line-height: 1.22;
}

.bib-footer nav a span,
.bib-footer-contact > a > span,
.bib-footer-contact > span > span {
    min-width: 0;
}

.bib-footer nav a i,
.bib-footer-contact > a i {
    display: grid;
    place-items: center;
    width: 28px;
    min-width: 28px;
    line-height: 1;
}

.bib-footer-contact {
    display: grid;
    gap: 10px;
    margin-bottom: 16px;
    color: #f6ead3;
}

.bib-footer-contact > span,
.bib-footer-contact > a {
    display: grid;
    grid-template-columns: 32px minmax(0, 1fr);
    align-items: start;
    gap: 10px;
    min-width: 0;
    padding: 10px 12px;
    border-radius: 10px;
    background: rgba(255, 248, 232, 0.08);
    overflow-wrap: anywhere;
}

.bib-footer-contact > span > i,
.bib-footer-contact > a > i {
    display: grid;
    place-items: center;
    width: 32px;
    min-width: 32px;
    color: #f2d98b;
    line-height: 1;
}

.bib-contact-panel {
    display: grid;
    grid-template-columns: minmax(0, 0.86fr) minmax(360px, 1.14fr);
    gap: 28px;
    align-items: start;
    margin-top: 42px;
    padding: 30px;
    border: 1px solid rgba(45, 27, 18, 0.16);
    border-radius: 18px;
    background:
        radial-gradient(circle at 12% 18%, rgba(242, 217, 139, 0.28), transparent 26%),
        linear-gradient(135deg, rgba(18, 63, 114, 0.96), rgba(36, 95, 159, 0.82)),
        var(--blue-deep);
    box-shadow: var(--shadow);
}

.bib-contact-intro h2 {
    margin-top: 12px;
    color: #fffaf0;
    font-size: clamp(1.9rem, 3vw, 2.75rem);
    line-height: 1.14;
}

.bib-contact-intro > p {
    margin-top: 16px;
    color: #d9e6f4;
}

.bib-contact-methods {
    display: grid;
    gap: 10px;
    margin-top: 24px;
}

.bib-contact-methods > a,
.bib-contact-methods > span {
    display: grid;
    grid-template-columns: 38px minmax(0, 1fr);
    align-items: center;
    gap: 10px;
    min-height: 54px;
    padding: 10px 12px;
    border: 1px solid rgba(255, 248, 232, 0.14);
    border-radius: 10px;
    background: rgba(255, 248, 232, 0.09);
    color: #fffaf0;
    font-weight: 800;
    overflow-wrap: anywhere;
}

.bib-contact-methods > a > i,
.bib-contact-methods > span > i {
    display: grid;
    place-items: center;
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: rgba(242, 217, 139, 0.14);
    color: #f2d98b;
}

.bib-contact-methods > a > span,
.bib-contact-methods > span > span {
    min-width: 0;
}

.bib-contact-form {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    align-content: start;
    padding: 22px;
    border: 1px solid rgba(255, 248, 232, 0.18);
    border-radius: 14px;
    background: rgba(255, 248, 232, 0.1);
    backdrop-filter: blur(12px);
}

.bib-contact-form label {
    display: grid;
    gap: 6px;
    min-width: 0;
}

.bib-contact-form label span {
    color: #f2d98b;
    font-family: "Space Mono", monospace;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
}

.bib-contact-form input,
.bib-contact-form textarea {
    width: 100%;
    min-height: 48px;
    border: 1px solid rgba(255, 248, 232, 0.2);
    border-radius: 9px;
    background: rgba(255, 248, 232, 0.11);
    color: #fffaf0;
    font: inherit;
    line-height: 1.4;
    padding: 11px 12px;
    outline: none;
    transition: border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.bib-contact-form textarea {
    min-height: 150px;
    resize: vertical;
}

.bib-contact-form input:focus,
.bib-contact-form textarea:focus {
    border-color: rgba(242, 217, 139, 0.74);
    background: rgba(255, 248, 232, 0.16);
    box-shadow: 0 0 0 3px rgba(242, 217, 139, 0.12);
}

.bib-contact-message,
.bib-contact-form button,
.bib-contact-form .bib-form-message {
    grid-column: 1 / -1;
}

.bib-contact-honey {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.bib-contact-form button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    min-height: 46px;
    border: 0;
    border-radius: 10px;
    background: var(--red);
    color: #fffaf0;
    font: inherit;
    font-weight: 800;
    cursor: pointer;
    box-shadow: 0 12px 28px rgba(181, 58, 50, 0.24);
}

.bib-contact-form button i {
    line-height: 1;
}

.bib-form-message {
    margin: 0 0 12px;
    padding: 10px 12px;
    border-radius: 10px;
    font-size: 0.9rem;
    font-weight: 800;
}

.bib-form-message.is-success {
    background: rgba(66, 107, 74, 0.24);
    color: #e9f6df;
}

.bib-form-message.is-error {
    background: rgba(181, 58, 50, 0.24);
    color: #fff0ec;
}

.bib-footer-credit {
    grid-column: 1 / -1;
    display: flex;
    justify-content: space-between;
    gap: 12px;
    padding-top: 26px;
    border-top: 1px solid rgba(255, 248, 232, 0.16);
    color: #dacaa8;
}

.bib-footer-credit a {
    padding: 0;
    border: 0;
    color: #f2d98b;
}

.bib-inner-hero {
    position: relative;
    min-height: 560px;
    display: grid;
    align-items: end;
    padding: 170px max(26px, calc((100vw - 1180px) / 2)) 82px;
    overflow: hidden;
    background: var(--walnut);
}

.bib-inner-media {
    position: absolute;
    inset: 0;
}

.bib-inner-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.bib-inner-media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(45, 27, 18, 0.86), rgba(45, 27, 18, 0.42), rgba(18, 63, 114, 0.28));
}

.bib-inner-copy {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.bib-inner-copy h1 {
    margin-top: 14px;
    color: #fffaf0;
    font-size: clamp(2.25rem, 4.65vw, 4.25rem);
    line-height: 1.1;
}

.bib-inner-copy p:last-child {
    max-width: 680px;
    margin-top: 20px;
    color: #f6ead3;
    font-size: 1.16rem;
}

.bib-page-content {
    background: var(--paper);
}

.bib-page-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.bib-page-card {
    min-height: 280px;
    padding: 28px;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: #fff8e8;
    box-shadow: var(--soft-shadow);
}

.bib-page-card h2 {
    font-size: 1.45rem;
}

.bib-page-card p {
    margin-top: 12px;
}

.bib-page-narrative,
.bib-page-feature,
.bib-page-season,
.bib-page-faq {
    margin-top: 42px;
}

.bib-page-narrative {
    display: grid;
    grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
    gap: 36px;
    align-items: start;
    padding: 34px;
    border: 1px solid rgba(45, 27, 18, 0.14);
    border-radius: 18px;
    background: rgba(245, 232, 199, 0.66);
    box-shadow: var(--soft-shadow);
}

.bib-page-narrative h2,
.bib-page-feature h2,
.bib-page-season h2,
.bib-page-faq h2 {
    margin-top: 12px;
    font-size: clamp(1.8rem, 3.25vw, 2.75rem);
    line-height: 1.14;
}

.bib-page-narrative-copy {
    display: grid;
    gap: 16px;
}

.bib-page-feature {
    display: grid;
    grid-template-columns: minmax(0, 0.74fr) minmax(0, 1.26fr);
    gap: 28px;
    padding: 28px;
    border-radius: 18px;
    background:
        linear-gradient(140deg, rgba(18, 63, 114, 0.96), rgba(36, 95, 159, 0.86)),
        var(--blue-deep);
    box-shadow: var(--shadow);
}

.bib-page-feature h2,
.bib-page-feature .bib-eyebrow {
    color: #fffaf0;
}

.bib-page-feature > div > p:last-child {
    margin-top: 16px;
    color: #d9e6f4;
}

.bib-page-feature-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}

.bib-page-feature-grid article {
    min-height: 210px;
    padding: 22px;
    border: 1px solid rgba(255, 248, 232, 0.18);
    border-radius: 14px;
    background: rgba(255, 248, 232, 0.1);
}

.bib-page-feature-grid i {
    color: #f2d98b;
    font-size: 1.45rem;
}

.bib-page-feature-grid h3 {
    margin-top: 18px;
    color: #fffaf0;
    font-size: 1.18rem;
}

.bib-page-feature-grid p {
    margin-top: 10px;
    color: #d9e6f4;
    font-size: 0.94rem;
}

.bib-page-season-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin-top: 28px;
}

.bib-page-season-grid article {
    min-height: 270px;
    padding: 22px;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: rgba(255, 248, 232, 0.9);
    box-shadow: var(--soft-shadow);
}

.bib-page-season-grid span {
    color: var(--red);
    font-family: "Space Mono", monospace;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
}

.bib-page-season-grid h3 {
    margin-top: 14px;
    font-size: 1.18rem;
}

.bib-page-season-grid strong {
    display: block;
    margin-top: 12px;
    color: var(--blue-deep);
    font-family: Montserrat, sans-serif;
}

.bib-page-season-grid p {
    margin-top: 10px;
    font-size: 0.9rem;
}

.bib-page-faq {
    padding: 30px;
    border-radius: 18px;
    background: rgba(245, 232, 199, 0.78);
    box-shadow: var(--soft-shadow);
}

.bib-page-faq .bib-faq-list {
    margin-top: 24px;
}

.bib-mini-pricing {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    margin-top: 36px;
}

.bib-mini-pricing a {
    min-height: 140px;
    display: grid;
    align-content: center;
    gap: 8px;
    padding: 22px;
    border-radius: 12px;
    background: var(--blue-deep);
    color: #fffaf0;
    text-decoration: none;
    box-shadow: var(--soft-shadow);
}

.bib-mini-pricing strong {
    font-family: Montserrat, sans-serif;
    font-size: 2rem;
}

.bib-mini-pricing i {
    justify-self: end;
}

.bib-page-arrows {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    padding: 26px max(26px, calc((100vw - 1180px) / 2));
    background: var(--cream);
}

.bib-page-arrows a {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    min-height: 48px;
    padding: 0 16px;
    border-radius: 10px;
    background: #fff8e8;
    color: var(--blue-deep);
    font-weight: 800;
    text-decoration: none;
    box-shadow: var(--soft-shadow);
}

.bib-tilt {
    transform-style: preserve-3d;
    will-change: transform;
}

.bib-basic-page {
    min-height: 70vh;
    padding: 160px max(26px, calc((100vw - 960px) / 2)) 80px;
    background: var(--paper);
}

.bib-basic-page h1 {
    font-size: clamp(2.1rem, 4vw, 3.35rem);
    line-height: 1.12;
}

.bib-reveal {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 620ms ease, transform 620ms ease;
}

.bib-reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 1100px) {
    .bib-header {
        grid-template-columns: minmax(180px, 1fr) auto;
    }

    .bib-menu-toggle {
        display: inline-flex;
    }

    .bib-nav {
        grid-column: 1 / -1;
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 4px;
        padding: 10px;
        border-radius: 10px;
        background: rgba(255, 248, 232, 0.9);
    }

    .bib-nav.is-open {
        display: flex;
    }

    .bib-nav a {
        min-height: 46px;
        padding: 0 10px;
        border-radius: 8px;
        white-space: normal;
    }

    .bib-nav a:hover {
        background: rgba(36, 95, 159, 0.08);
    }

    .bib-header-cta {
        display: none;
    }

    .bib-hero,
    .bib-mission,
	.bib-story,
	.bib-how-layout,
	.bib-founder-video,
	.bib-section-row,
    .bib-box,
    .bib-trust,
    .bib-season-showcase,
    .bib-faq-layout,
    .bib-page-narrative,
    .bib-page-feature,
    .bib-contact-panel,
    .bib-footer {
        grid-template-columns: 1fr;
    }

    .bib-hero-card {
        align-self: auto;
    }

    .bib-mission-board {
        grid-template-columns: 1fr;
    }

    .bib-queue {
        grid-template-columns: 1fr;
    }

    .bib-quote,
    .bib-footer-grid {
        grid-template-columns: 1fr;
    }

	.bib-quote {
	    text-align: left;
	}

    .bib-hero-logo-lockup {
        width: min(860px, 92vw);
    }

    .bib-faq-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .bib-page-grid,
    .bib-page-feature-grid,
    .bib-page-season-grid,
    .bib-mini-pricing {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .bib-box-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .bib-faq-feature {
        position: relative;
        top: auto;
    }
}

@media (max-width: 760px) {
    body.admin-bar .bib-header {
        top: 54px;
    }

	.bib-header {
	    top: 8px;
	    width: calc(100% - 16px);
	    min-height: 64px;
	    grid-template-columns: minmax(0, 1fr) auto;
        gap: 10px;
        padding: 8px;
    }

    body.home .bib-menu-toggle {
        justify-self: end;
    }

    .bib-brand-wordmark {
        max-height: 42px;
    }

    .bib-header-cta {
        display: none;
    }

	.bib-hero {
	    min-height: 0;
	    padding: 104px 18px 78px;
	    align-items: start;
        row-gap: 22px;
	}

    .bib-hero-logo-lockup {
        width: min(520px, 96vw);
        margin-top: -2px;
        padding: 0;
    }

    .bib-hero-logo-lockup img {
        width: 100%;
        max-height: 136px;
    }

	.bib-hero h1 {
	    font-size: 2.7rem;
	    line-height: 1.1;
    }

    .bib-hero-media::after {
        background:
            linear-gradient(180deg, rgba(45, 27, 18, 0.82), rgba(45, 27, 18, 0.72)),
            rgba(45, 27, 18, 0.5);
    }

    .bib-actions,
    .bib-proof,
    .bib-regular-heading {
        flex-direction: column;
        align-items: stretch;
    }

    .bib-button,
    .bib-header-cta {
        width: 100%;
    }

    .bib-kit-preview {
        grid-template-columns: 70px 1fr;
        padding: 14px;
        gap: 14px;
    }

    .bib-project-mark {
        width: 70px;
        height: 70px;
        border-radius: 16px;
    }

    .bib-project-mark::before {
        top: 21px;
        left: 15px;
        right: 15px;
        height: 9px;
        box-shadow: 0 18px 0 #f7e5ad;
    }

    .bib-project-mark::after {
        top: 29px;
        bottom: 14px;
        left: 22px;
        right: 22px;
        border-left-width: 5px;
        border-right-width: 5px;
    }

    .bib-project-mark i {
        top: 12px;
        left: 19px;
        width: 32px;
        height: 12px;
        border-width: 2px;
    }

    .bib-project-mark b {
        bottom: 13px;
        left: 20px;
        width: 30px;
        height: 5px;
    }

    .bib-hero-rhythm {
        grid-template-columns: 1fr;
    }

    .bib-hero-rhythm article {
        min-height: 0;
        grid-template-columns: 42px 1fr;
    }

    .bib-hero-rhythm i {
        width: 42px;
        height: 42px;
    }

    .bib-slider,
    .bib-slider-track {
        min-height: 420px;
    }

    .bib-slide {
        padding: 18px;
    }

    .bib-slide div {
        width: 100%;
        margin-bottom: 68px;
        padding: 20px;
    }

    .bib-slider-controls {
        right: 18px;
        bottom: 18px;
    }

    .bib-slider-summary {
        padding: 18px 0 0;
        border-top: 4px solid rgba(181, 58, 50, 0.62);
        border-left: 0;
    }

	.bib-rhythm-points {
	    grid-template-columns: 1fr;
	}

    .bib-founder-video {
        gap: 28px;
    }

    .bib-video-points {
        grid-template-columns: 1fr;
    }

    .bib-video-stage {
        min-height: 320px;
        border-radius: 18px;
    }

    .bib-video-frame {
        grid-template-columns: 1fr;
        gap: 18px;
        aspect-ratio: auto;
        min-height: 250px;
        text-align: center;
    }

    .bib-play-button {
        justify-self: center;
        width: 76px;
        height: 76px;
    }

    .bib-hero-photo,
    .bib-hero-photo img,
    .bib-how-media,
    .bib-how-media img,
    .bib-season-showcase img,
    .bib-trust-copy img {
        min-height: 280px;
        transform: none;
    }

    .bib-section {
        padding: 72px 18px;
    }

    .bib-story-images {
        grid-template-columns: 1fr;
        min-height: 0;
    }

    .bib-story-main,
    .bib-story-stack figure {
        min-height: 280px;
    }

    .bib-story-stack {
        grid-template-columns: 1fr;
    }

    .bib-story-images img,
    .bib-box-photo img {
        min-height: 280px;
        transform: none;
    }

    .bib-steps,
    .bib-trust-grid,
    .bib-quote-cards,
    .bib-principles,
    .bib-faq-grid,
    .bib-page-grid,
    .bib-page-feature-grid,
    .bib-page-season-grid,
    .bib-price-grid,
    .bib-founder-grid,
    .bib-values-grid,
    .bib-box-grid {
        grid-template-columns: 1fr;
    }

    .bib-steps article {
        grid-template-columns: 58px 1fr;
        column-gap: 16px;
        padding: 20px;
    }

    .bib-steps span {
        width: 48px;
        height: 48px;
    }

    .bib-values-grid article:nth-child(1),
    .bib-values-grid article:nth-child(5) {
        grid-row: auto;
    }

    .bib-footer {
        padding: 46px 18px;
    }

    .bib-footer nav,
    .bib-footer-contact,
    .bib-footer-credit {
        justify-content: flex-start;
    }

    .bib-footer-credit {
        flex-direction: column;
    }

    .bib-footer nav {
        grid-template-columns: 1fr;
    }

    .bib-contact-form {
        grid-template-columns: 1fr;
    }

    .bib-footer-contact > span,
    .bib-footer-contact > a {
        align-items: center;
    }

    .bib-mission-copy,
    .bib-page-narrative,
    .bib-page-feature,
    .bib-contact-panel,
    .bib-page-faq {
        padding: 22px;
    }

    .bib-contact-form {
        padding: 18px;
    }

    .bib-principles article {
        padding: 22px;
        min-height: 0;
    }

    .bib-principles span {
        display: grid;
        margin-bottom: 18px;
    }

    .bib-mission-photo {
        min-height: 260px;
    }

    .bib-mission-photo img {
        min-height: 260px;
    }

    .bib-mission-photo figcaption {
        display: grid;
        justify-items: start;
    }

    .bib-mission-photo figcaption strong {
        max-width: 100%;
        font-size: 1.2rem;
        text-align: left;
    }

    .bib-faq-item button {
        padding: 18px;
    }

    .bib-faq-answer {
        padding: 0 18px 18px;
    }

    .bib-inner-hero {
        min-height: 500px;
        padding: 130px 18px 64px;
    }

    .bib-page-arrows {
        flex-direction: column;
        padding: 22px 18px;
    }

    .bib-reveal {
        opacity: 1;
        transform: none;
    }
}

@media (max-width: 420px) {
    .bib-hero h1 {
        font-size: 2.42rem;
    }

    .bib-quote p {
        font-size: 2.08rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    .bib-reveal,
    .bib-header,
    .bib-button,
    .bib-header-cta {
        transition: none;
    }
}

.bib-home-path,
.bib-home-benefit-grid,
.bib-season-preview-grid,
.bib-how-detail-grid,
.bib-join-plan-grid,
.bib-join-shipping {
    display: grid;
    gap: 18px;
}

.bib-home-path {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.bib-home-path article,
.bib-home-benefit-grid article,
.bib-season-preview-grid article,
.bib-how-detail-grid article,
.bib-join-plan,
.bib-join-shipping article {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(43, 22, 15, 0.12);
    border-radius: 18px;
    background: rgba(255, 250, 240, 0.92);
    box-shadow: 0 18px 46px rgba(43, 22, 15, 0.08);
}

.bib-home-path article {
    min-height: 220px;
    padding: 28px;
}

.bib-home-path span,
.bib-home-benefit-grid i,
.bib-how-detail-grid i,
.bib-join-shipping i {
    display: grid;
    width: 54px;
    height: 54px;
    margin-bottom: 22px;
    place-items: center;
    border-radius: 16px;
    background: var(--blue);
    color: #fffaf0;
    font-size: 1.35rem;
}

.bib-home-path h3,
.bib-home-benefit-grid h3,
.bib-season-preview-grid h3,
.bib-how-detail-grid h3,
.bib-join-plan h3,
.bib-join-shipping h3 {
    margin: 0 0 10px;
    color: var(--walnut);
    font-size: clamp(1.2rem, 1.1vw, 1.55rem);
    line-height: 1.12;
}

.bib-home-path p,
.bib-home-benefit-grid p,
.bib-season-preview-grid p,
.bib-how-detail-grid p,
.bib-join-plan p,
.bib-join-shipping p {
    margin: 0;
    color: var(--muted);
    line-height: 1.65;
}

.bib-home-volume-card,
.bib-founder-preview,
.bib-home-cta-card,
.bib-page-placeholder-note,
.bib-founder-video.bib-page-video,
.bib-how-framework,
.bib-join-detail {
    border: 1px solid rgba(43, 22, 15, 0.12);
    border-radius: 24px;
    background: rgba(255, 250, 240, 0.9);
    box-shadow: 0 22px 70px rgba(43, 22, 15, 0.1);
}

.bib-home-volume-card {
    display: grid;
    grid-template-columns: minmax(280px, 0.86fr) minmax(0, 1.14fr);
    gap: 34px;
    align-items: center;
    padding: 24px;
}

.bib-home-volume-card figure {
    min-height: 420px;
    margin: 0;
    overflow: hidden;
    border-radius: 18px;
    background: #eadbbd;
}

.bib-home-volume-card img {
    width: 100%;
    height: 100%;
    min-height: 420px;
    object-fit: cover;
}

.bib-home-volume-card h2,
.bib-home-cta-card h2 {
    max-width: 780px;
}

.bib-home-overview-grid,
.bib-home-next-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(18px, 2vw, 28px);
    margin-top: clamp(30px, 4vw, 56px);
}

.bib-home-overview-card,
.bib-home-snapshot-card,
.bib-home-next-grid article {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(43, 22, 15, 0.12);
    border-radius: 22px;
    background: rgba(255, 250, 240, 0.92);
    box-shadow: 0 18px 46px rgba(43, 22, 15, 0.08);
}

.bib-home-overview-card,
.bib-home-next-grid article {
    display: flex;
    min-height: 310px;
    padding: clamp(24px, 2.6vw, 34px);
    flex-direction: column;
    align-items: flex-start;
}

.bib-home-overview-card > i,
.bib-home-next-grid article > i {
    display: grid;
    width: 58px;
    height: 58px;
    margin-bottom: 24px;
    place-items: center;
    border-radius: 18px;
    background: var(--blue);
    color: #fffaf0;
    font-size: 1.4rem;
}

.bib-home-overview-card h3,
.bib-home-next-grid h3 {
    margin: 0 0 12px;
    color: var(--walnut);
    font-size: clamp(1.45rem, 1.7vw, 2rem);
    line-height: 1.12;
}

.bib-home-overview-card p,
.bib-home-next-grid p {
    margin: 0;
    color: var(--muted);
    line-height: 1.68;
}

.bib-home-overview-card .bib-inline-link {
    margin-top: auto;
    padding-top: 24px;
}

.bib-home-overview-card-image {
    min-height: 360px;
    justify-content: flex-end;
    color: #fffaf0;
    background: var(--walnut);
}

.bib-home-overview-card-image img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.78;
}

.bib-home-overview-card-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(45, 27, 18, 0.1), rgba(45, 27, 18, 0.82));
}

.bib-home-overview-card-image > div {
    position: relative;
    z-index: 1;
}

.bib-home-overview-card-image h3,
.bib-home-overview-card-image p,
.bib-home-overview-card-image .bib-eyebrow {
    color: #fffaf0;
}

.bib-home-mini-list {
    display: grid;
    width: 100%;
    gap: 10px;
    margin-top: 22px;
}

.bib-home-mini-list span {
    display: flex;
    gap: 10px;
    align-items: center;
    padding: 10px 12px;
    border-radius: 12px;
    background: rgba(36, 95, 159, 0.08);
    color: var(--walnut);
    font-weight: 850;
}

.bib-home-mini-list i {
    color: var(--blue);
}

.bib-home-snapshot {
    padding-top: clamp(54px, 6vw, 88px);
    padding-bottom: clamp(54px, 6vw, 88px);
}

.bib-home-snapshot-card {
    display: grid;
    grid-template-columns: minmax(0, 0.86fr) minmax(360px, 1.14fr);
    gap: clamp(24px, 4vw, 58px);
    align-items: center;
    padding: clamp(28px, 5vw, 58px);
    background:
        linear-gradient(135deg, rgba(255, 250, 240, 0.96), rgba(240, 204, 98, 0.22)),
        rgba(255, 250, 240, 0.94);
}

.bib-home-snapshot-card h2 {
    margin-bottom: 16px;
}

.bib-home-snapshot-card p {
    max-width: 62ch;
    color: var(--muted);
    font-size: clamp(1.02rem, 1.15vw, 1.18rem);
    line-height: 1.72;
}

.bib-home-benefit-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-content: center;
}

.bib-home-benefit-pills span {
    display: inline-flex;
    gap: 10px;
    align-items: center;
    min-height: 48px;
    padding: 10px 14px;
    border: 1px solid rgba(36, 95, 159, 0.15);
    border-radius: 999px;
    background: rgba(255, 250, 240, 0.88);
    color: var(--walnut);
    font-weight: 900;
    box-shadow: 0 12px 28px rgba(43, 22, 15, 0.06);
}

.bib-home-benefit-pills i {
    color: var(--blue);
}

.bib-home-next-grid article .bib-button {
    margin-top: auto;
}

.bib-home-pricing {
    padding-top: clamp(56px, 6vw, 92px);
    background:
        linear-gradient(180deg, rgba(255, 248, 232, 0.98), rgba(245, 232, 199, 0.92)),
        var(--paper);
}

.bib-home-price-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(18px, 2vw, 28px);
    margin-top: clamp(30px, 4vw, 52px);
}

.bib-home-price-card {
    position: relative;
    display: flex;
    min-height: 350px;
    padding: clamp(24px, 2.7vw, 34px);
    flex-direction: column;
    gap: 14px;
    border: 1px solid rgba(43, 22, 15, 0.12);
    border-radius: 22px;
    background: rgba(255, 250, 240, 0.94);
    box-shadow: 0 18px 46px rgba(43, 22, 15, 0.08);
}

.bib-home-price-card.is-active {
    border-color: rgba(181, 58, 50, 0.42);
    background: linear-gradient(145deg, #fffaf0, rgba(240, 204, 98, 0.22));
}

.bib-home-price-card.is-featured {
    border-color: rgba(36, 95, 159, 0.38);
    background: linear-gradient(145deg, #fffaf0, rgba(36, 95, 159, 0.1));
}

.bib-home-price-card h3 {
    margin: 4px 0 0;
    color: var(--walnut);
    font-size: clamp(1.35rem, 1.55vw, 1.9rem);
    line-height: 1.12;
}

.bib-home-price-card p {
    margin: 0;
    color: var(--muted);
    line-height: 1.68;
}

.bib-home-price-card .bib-button {
    width: 100%;
    margin-top: auto;
}

.bib-volume-facts {
    display: grid;
    gap: 10px;
    margin: 24px 0;
}

.bib-volume-facts span {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    padding: 12px 14px;
    border-radius: 14px;
    background: rgba(20, 83, 145, 0.08);
    color: var(--walnut);
    font-weight: 800;
    line-height: 1.35;
}

.bib-volume-facts i {
    color: var(--blue);
}

.bib-inline-link {
    display: inline-flex;
    gap: 10px;
    align-items: center;
    margin-top: 22px;
    color: var(--blue);
    font-weight: 900;
    text-decoration: none;
}

.bib-home-benefit-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: clamp(18px, 1.6vw, 28px);
}

.bib-home-benefit-grid article {
    display: flex;
    min-height: 330px;
    padding: clamp(26px, 2.1vw, 34px);
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
}

.bib-home-benefits .bib-section-row {
    align-items: start;
}

.bib-home-benefits .bib-section-row h2 {
    max-width: 920px;
    line-height: 1.12;
}

.bib-home-benefits .bib-section-row > p {
    max-width: 660px;
    margin: 0;
    padding-top: 4px;
    font-size: clamp(1.04rem, 1.35vw, 1.32rem);
    line-height: 1.7;
}

.bib-home-benefit-grid i {
    width: 58px;
    height: 58px;
    margin-bottom: clamp(22px, 3vw, 38px);
    border-radius: 18px;
}

.bib-home-benefit-grid h3 {
    margin-bottom: 14px;
    line-height: 1.15;
}

.bib-home-benefit-grid p {
    max-width: 28ch;
    font-size: clamp(1rem, 0.96vw, 1.08rem);
    line-height: 1.72;
}

.bib-season-preview-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.bib-season-preview-grid article {
    min-height: 260px;
    padding: 28px;
    background: linear-gradient(145deg, rgba(255, 250, 240, 0.96), rgba(234, 219, 189, 0.74));
}

.bib-season-preview-grid article > span,
.bib-season-preview-grid strong {
    display: inline-flex;
    width: fit-content;
    border-radius: 999px;
    font-family: "Space Mono", monospace;
    font-weight: 900;
    text-transform: uppercase;
}

.bib-season-preview-grid article > span {
    margin-bottom: 28px;
    padding: 8px 12px;
    background: var(--blue);
    color: #fffaf0;
}

.bib-season-preview-grid strong {
    margin-top: 24px;
    padding: 9px 12px;
    background: rgba(201, 60, 53, 0.1);
    color: var(--red);
}

.bib-center-action {
    display: flex;
    justify-content: center;
    margin-top: 28px;
}

.bib-founder-preview {
    display: grid;
    grid-template-columns: minmax(280px, 0.95fr) minmax(0, 1.05fr);
    gap: 38px;
    align-items: center;
}

.bib-founder-preview .bib-story-images {
    min-height: 460px;
}

.bib-founder-preview .bib-story-copy {
    padding-right: clamp(26px, 5vw, 72px);
}

.bib-home-cta-card {
    padding: clamp(34px, 6vw, 76px);
    text-align: center;
    background:
        linear-gradient(135deg, rgba(23, 35, 56, 0.94), rgba(20, 83, 145, 0.92)),
        var(--blue);
}

.bib-home-cta-card .bib-eyebrow,
.bib-home-cta-card h2,
.bib-home-cta-card p {
    color: #fffaf0;
}

.bib-home-cta-card .bib-actions {
    justify-content: center;
}

.bib-page-placeholder-note {
    margin-bottom: 34px;
    padding: clamp(24px, 4vw, 38px);
    background: linear-gradient(135deg, rgba(240, 204, 98, 0.2), rgba(255, 250, 240, 0.96));
}

.bib-page-placeholder-note h2 {
    margin-bottom: 10px;
    font-size: clamp(1.8rem, 3vw, 3rem);
}

.bib-page-video {
    display: grid;
    grid-template-columns: minmax(0, 0.85fr) minmax(300px, 1.15fr);
    gap: 32px;
    align-items: center;
    margin-top: 34px;
    padding: clamp(24px, 4vw, 38px);
}

.bib-how-framework,
.bib-join-detail {
    margin-top: 34px;
    padding: clamp(22px, 4vw, 38px);
}

.bib-how-detail-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.bib-how-detail-grid article {
    min-height: 270px;
    padding: 24px;
}

.bib-page-season {
    margin-top: 34px;
}

.bib-season-journey {
    display: grid;
    gap: clamp(34px, 5vw, 58px);
}

.bib-season-chapter {
    position: relative;
    padding: clamp(22px, 4vw, 38px);
    border: 1px solid rgba(43, 22, 15, 0.14);
    border-radius: 28px;
    background: rgba(255, 250, 240, 0.88);
    box-shadow: 0 22px 70px rgba(43, 22, 15, 0.08);
}

.bib-season-chapter-heading {
    display: grid;
    max-width: 940px;
    gap: 10px;
    margin-bottom: 26px;
}

.bib-season-chapter-heading > span,
.bib-main-volume > div:last-child > span,
.bib-between-releases span,
.bib-join-plan > span {
    font-family: "Space Mono", monospace;
    font-weight: 900;
    letter-spacing: 0;
    text-transform: uppercase;
}

.bib-season-chapter-heading > span {
    width: fit-content;
    padding: 8px 12px;
    border-radius: 999px;
    background: var(--blue);
    color: #fffaf0;
}

.bib-season-chapter-heading h2 {
    margin: 0;
    color: var(--walnut);
    font-size: clamp(2rem, 3.8vw, 4.1rem);
    line-height: 1.04;
}

.bib-season-chapter-heading p {
    max-width: 760px;
    margin: 0;
    color: var(--muted);
    font-size: 1.05rem;
    line-height: 1.7;
}

.bib-season-volume-flow {
    display: grid;
    gap: 18px;
}

.bib-main-volume {
    display: grid;
    grid-template-columns: minmax(180px, 260px) minmax(0, 1fr);
    gap: 24px;
    align-items: stretch;
    padding: 18px;
    border: 1px solid rgba(20, 83, 145, 0.22);
    border-radius: 22px;
    background: #fffaf0;
}

.bib-volume-link-card {
    color: inherit;
    text-decoration: none;
    transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.bib-volume-link-card:hover,
.bib-volume-link-card:focus-visible {
    border-color: rgba(201, 60, 53, 0.42);
    box-shadow: 0 24px 62px rgba(43, 22, 15, 0.12);
    transform: translateY(-4px);
}

.bib-volume-cover-placeholder,
.bib-plan-image-placeholder {
    display: grid;
    min-height: 230px;
    place-items: center;
    gap: 12px;
    border: 2px dashed rgba(20, 83, 145, 0.34);
    border-radius: 18px;
    background:
        linear-gradient(135deg, rgba(20, 83, 145, 0.08), rgba(240, 204, 98, 0.16)),
        rgba(255, 250, 240, 0.86);
    color: var(--blue);
    text-align: center;
    font-weight: 900;
}

.bib-volume-cover-placeholder i,
.bib-plan-image-placeholder i {
    font-size: 2rem;
}

.bib-main-volume h3 {
    margin: 8px 0 8px;
    color: var(--walnut);
    font-size: clamp(1.45rem, 2.2vw, 2.25rem);
}

.bib-main-volume strong {
    color: var(--red);
}

.bib-main-volume p,
.bib-main-volume li {
    color: var(--muted);
    line-height: 1.55;
}

.bib-main-volume ul {
    display: grid;
    gap: 8px;
    margin: 16px 0 0;
    padding-left: 18px;
}

.bib-volume-card-cta {
    width: fit-content;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-top: 20px;
    padding: 10px 14px;
    border-radius: 999px;
    background: var(--blue);
    color: #fffaf0;
    font-size: 0.86rem;
}

.bib-volume-card-cta i {
    line-height: 1;
}

.bib-between-releases {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    padding-left: clamp(0px, 8vw, 160px);
}

.bib-mini-release-card {
    display: grid;
    grid-template-columns: 126px minmax(0, 1fr);
    gap: 14px;
    align-items: stretch;
    padding: 18px;
    border: 1px solid rgba(43, 22, 15, 0.1);
    border-radius: 16px;
    background: rgba(223, 238, 222, 0.78);
    color: inherit;
    text-decoration: none;
    transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.bib-mini-release-card:hover,
.bib-mini-release-card:focus-visible {
    border-color: rgba(20, 83, 145, 0.28);
    box-shadow: 0 18px 46px rgba(43, 22, 15, 0.1);
    transform: translateY(-3px);
}

.bib-mini-release-image {
    display: grid;
    place-items: center;
    min-height: 128px;
    padding: 12px;
    border: 1px dashed rgba(20, 83, 145, 0.28);
    border-radius: 13px;
    background: rgba(255, 250, 240, 0.7);
    color: var(--blue);
    text-align: center;
}

.bib-mini-release-image i {
    font-size: 1.55rem;
}

.bib-mini-release-image span {
    margin-top: 8px;
    font-size: 0.68rem;
}

.bib-between-releases h4 {
    margin: 8px 0;
    color: var(--walnut);
}

.bib-between-releases p {
    margin: 0;
    color: var(--muted);
}

.bib-mini-release-card em {
    display: inline-flex;
    margin-top: 12px;
    color: var(--blue);
    font-style: normal;
    font-weight: 900;
}

.bib-volume-hero {
    position: relative;
    min-height: 720px;
    display: grid;
    align-items: end;
    padding: 164px max(24px, calc((100vw - 1180px) / 2)) 78px;
    overflow: hidden;
    color: #fffaf0;
    background: var(--walnut);
}

.bib-volume-hero-bg {
    position: absolute;
    inset: 0;
}

.bib-volume-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(1.05) contrast(1.05);
}

.bib-volume-hero-bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 72% 32%, rgba(242, 217, 139, 0.22), transparent 28%),
        linear-gradient(90deg, rgba(45, 27, 18, 0.94), rgba(45, 27, 18, 0.72) 48%, rgba(18, 63, 114, 0.48)),
        linear-gradient(0deg, rgba(45, 27, 18, 0.76), transparent 52%, rgba(45, 27, 18, 0.48));
}

.bib-volume-hero-inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 430px);
    gap: clamp(28px, 5vw, 72px);
    align-items: end;
}

.bib-volume-hero-copy h1 {
    max-width: 760px;
    margin: 14px 0 0;
    font-size: clamp(3rem, 7vw, 6.4rem);
    line-height: 0.98;
    color: #fffaf0;
}

.bib-volume-build-label {
    width: fit-content;
    margin: 22px 0 0;
    padding: 10px 16px;
    border: 1px solid rgba(242, 217, 139, 0.38);
    border-radius: 999px;
    background: rgba(18, 63, 114, 0.62);
    color: #f2d98b;
    font-family: "Space Mono", monospace;
    font-weight: 900;
    text-transform: uppercase;
}

.bib-volume-hero-copy > p:last-of-type {
    max-width: 680px;
    margin-top: 20px;
    color: #f7ead5;
    font-size: 1.14rem;
    line-height: 1.72;
}

.bib-volume-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
}

.bib-volume-cover,
.bib-volume-project-image,
.bib-story-life-grid figure {
    margin: 0;
}

.bib-volume-cover {
    position: relative;
    padding: 16px;
    border: 1px solid rgba(255, 250, 240, 0.22);
    border-radius: 28px;
    background: rgba(255, 250, 240, 0.14);
    box-shadow: 0 28px 90px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(12px);
    transform: rotate(1.5deg);
}

.bib-volume-cover img {
    width: 100%;
    aspect-ratio: 4 / 5;
    display: block;
    object-fit: cover;
    border-radius: 18px;
}

.bib-volume-cover figcaption,
.bib-volume-project-image figcaption,
.bib-story-life-grid figcaption,
.bib-volume-gallery span,
.bib-volume-closeups span {
    font-family: "Space Mono", monospace;
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0;
    text-transform: uppercase;
}

.bib-volume-cover figcaption {
    margin-top: 12px;
    color: #f2d98b;
}

.bib-volume-gallery-section,
.bib-volume-story,
.bib-volume-build,
.bib-story-to-life,
.bib-next-volume {
    background:
        radial-gradient(circle at var(--mouse-x) var(--mouse-y), rgba(36, 95, 159, 0.08), transparent 26%),
        var(--paper);
}

.bib-volume-gallery {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
    margin-top: 26px;
}

.bib-volume-gallery a,
.bib-volume-closeups a {
    position: relative;
    min-height: 260px;
    overflow: hidden;
    border: 1px solid rgba(43, 22, 15, 0.12);
    border-radius: 20px;
    background: #fffaf0;
    color: #fffaf0;
    box-shadow: 0 16px 40px rgba(43, 22, 15, 0.08);
    text-decoration: none;
}

.bib-volume-gallery img,
.bib-volume-closeups img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform 280ms ease;
}

.bib-volume-gallery a::after,
.bib-volume-closeups a::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(45, 27, 18, 0.72), transparent 56%);
}

.bib-volume-gallery span,
.bib-volume-closeups span {
    position: absolute;
    z-index: 2;
    left: 16px;
    right: 16px;
    bottom: 16px;
}

.bib-volume-gallery a:hover img,
.bib-volume-closeups a:hover img {
    transform: scale(1.04);
}

.bib-volume-quote-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.bib-volume-quote-grid blockquote {
    position: relative;
    min-height: 220px;
    margin: 0;
    padding: 30px;
    border: 1px solid rgba(20, 83, 145, 0.18);
    border-radius: 26px;
    background:
        linear-gradient(145deg, rgba(255, 250, 240, 0.92), rgba(240, 204, 98, 0.18)),
        #fffaf0;
    box-shadow: 0 22px 60px rgba(43, 22, 15, 0.08);
}

.bib-volume-quote-grid blockquote::before {
    content: '"';
    position: absolute;
    top: -26px;
    right: 24px;
    color: rgba(20, 83, 145, 0.18);
    font-family: Georgia, serif;
    font-size: 7rem;
    line-height: 1;
}

.bib-volume-quote-grid span {
    color: var(--blue);
    font-family: "Space Mono", monospace;
    font-size: 0.82rem;
    font-weight: 900;
    text-transform: uppercase;
}

.bib-volume-quote-grid p {
    position: relative;
    margin: 18px 0 0;
    color: var(--walnut);
    font-size: clamp(1.3rem, 2.1vw, 2rem);
    font-weight: 900;
    line-height: 1.16;
}

.bib-volume-build-grid {
    display: grid;
    grid-template-columns: minmax(320px, 0.88fr) minmax(0, 1.12fr);
    gap: clamp(24px, 4vw, 54px);
    align-items: start;
}

.bib-volume-project-image {
    position: sticky;
    top: 112px;
    overflow: hidden;
    border-radius: 28px;
    box-shadow: 0 24px 70px rgba(43, 22, 15, 0.14);
}

.bib-volume-project-image img {
    width: 100%;
    min-height: 540px;
    display: block;
    object-fit: cover;
}

.bib-volume-project-image figcaption {
    position: absolute;
    left: 18px;
    right: 18px;
    bottom: 18px;
    padding: 12px 14px;
    border-radius: 14px;
    background: rgba(18, 63, 114, 0.82);
    color: #fffaf0;
    backdrop-filter: blur(10px);
}

.bib-volume-build-copy h2 {
    margin: 12px 0 0;
    color: var(--walnut);
    font-size: clamp(2.4rem, 4.6vw, 5rem);
    line-height: 1.02;
}

.bib-volume-build-copy > p {
    max-width: 760px;
    margin-top: 18px;
    color: var(--muted);
    font-size: 1.06rem;
    line-height: 1.72;
}

.bib-volume-build-facts {
    display: grid;
    gap: 14px;
    margin-top: 28px;
}

.bib-volume-build-facts article {
    display: grid;
    grid-template-columns: 54px minmax(0, 1fr);
    gap: 4px 16px;
    padding: 20px;
    border: 1px solid rgba(43, 22, 15, 0.12);
    border-radius: 18px;
    background: #fffaf0;
}

.bib-volume-build-facts i {
    grid-row: span 2;
    width: 54px;
    height: 54px;
    display: grid;
    place-items: center;
    border-radius: 16px;
    background: var(--blue);
    color: #fffaf0;
    font-size: 1.45rem;
}

.bib-volume-build-facts h3 {
    margin: 0;
    color: var(--walnut);
    font-size: 1.18rem;
}

.bib-volume-build-facts ul {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 5px 0 0;
    padding: 0;
    list-style: none;
}

.bib-volume-build-facts li {
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(240, 204, 98, 0.24);
    color: var(--muted);
    font-weight: 800;
}

.bib-volume-closeups {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    margin-top: 18px;
}

.bib-volume-closeups a {
    min-height: 320px;
}

.bib-story-life-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 72px minmax(0, 1fr);
    gap: 20px;
    align-items: center;
    margin-top: 28px;
}

.bib-story-life-grid figure {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(43, 22, 15, 0.12);
    border-radius: 28px;
    background: #fffaf0;
    box-shadow: 0 22px 60px rgba(43, 22, 15, 0.08);
}

.bib-story-life-grid img {
    width: 100%;
    min-height: 440px;
    display: block;
    object-fit: cover;
}

.bib-story-life-grid figcaption {
    position: absolute;
    left: 18px;
    bottom: 18px;
    padding: 10px 12px;
    border-radius: 999px;
    background: rgba(255, 250, 240, 0.9);
    color: var(--walnut);
}

.bib-story-life-arrow {
    width: 72px;
    height: 72px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: var(--red);
    color: #fffaf0;
    font-size: 1.8rem;
    box-shadow: 0 18px 42px rgba(181, 58, 50, 0.24);
}

.bib-next-volume {
    display: grid;
    gap: 18px;
}

.bib-next-volume-card {
    position: relative;
    display: grid;
    gap: 8px;
    padding: clamp(24px, 4vw, 44px);
    overflow: hidden;
    border-radius: 28px;
    background:
        radial-gradient(circle at 88% 22%, rgba(242, 217, 139, 0.22), transparent 24%),
        linear-gradient(120deg, rgba(18, 63, 114, 0.96), rgba(45, 27, 18, 0.94));
    color: #fffaf0;
    text-decoration: none;
}

.bib-next-volume-card span {
    color: #f2d98b;
    font-family: "Space Mono", monospace;
    font-weight: 900;
    text-transform: uppercase;
}

.bib-next-volume-card strong {
    max-width: 720px;
    color: #fffaf0;
    font-size: clamp(2rem, 4.8vw, 4.8rem);
    line-height: 1;
}

.bib-next-volume-card p {
    margin: 0;
    color: #f6ead3;
    font-size: 1.12rem;
}

.bib-next-volume-card > i {
    position: absolute;
    right: 34px;
    bottom: 34px;
    width: 58px;
    height: 58px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: #f2d98b;
    color: var(--walnut);
}

.bib-mini-hero {
    position: relative;
    min-height: 640px;
    display: grid;
    align-items: end;
    padding: 152px max(24px, calc((100vw - 1180px) / 2)) 70px;
    overflow: hidden;
    color: #fffaf0;
    background: var(--blue-deep);
}

.bib-mini-hero-media {
    position: absolute;
    inset: 0;
}

.bib-mini-hero-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(1.05) contrast(1.04);
}

.bib-mini-hero-media::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(18, 63, 114, 0.92), rgba(45, 27, 18, 0.68) 58%, rgba(45, 27, 18, 0.34)),
        linear-gradient(0deg, rgba(18, 63, 114, 0.76), transparent 46%, rgba(45, 27, 18, 0.42));
}

.bib-mini-hero-inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 390px);
    gap: clamp(24px, 5vw, 62px);
    align-items: end;
}

.bib-mini-hero-copy h1 {
    max-width: 780px;
    margin: 14px 0 0;
    color: #fffaf0;
    font-size: clamp(2.7rem, 6vw, 5.4rem);
    line-height: 1.02;
}

.bib-mini-hero-copy > p:last-of-type {
    max-width: 680px;
    margin-top: 20px;
    color: #f7ead5;
    font-size: 1.1rem;
    line-height: 1.72;
}

.bib-mini-placeholder-card {
    margin: 0;
    padding: 14px;
    border: 1px solid rgba(255, 250, 240, 0.24);
    border-radius: 24px;
    background: rgba(255, 250, 240, 0.14);
    box-shadow: 0 24px 72px rgba(0, 0, 0, 0.28);
    backdrop-filter: blur(12px);
}

.bib-mini-placeholder-card img {
    width: 100%;
    aspect-ratio: 1 / 1;
    display: block;
    object-fit: cover;
    border-radius: 16px;
}

.bib-mini-placeholder-card figcaption {
    margin-top: 12px;
    color: #f2d98b;
    font-family: "Space Mono", monospace;
    font-size: 0.78rem;
    font-weight: 900;
    text-transform: uppercase;
}

.bib-mini-detail,
.bib-mini-connected {
    background:
        radial-gradient(circle at var(--mouse-x) var(--mouse-y), rgba(36, 95, 159, 0.08), transparent 26%),
        var(--paper);
}

.bib-mini-detail-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    margin-top: 26px;
}

.bib-mini-detail-grid article {
    min-height: 230px;
    padding: 24px;
    border: 1px solid rgba(43, 22, 15, 0.12);
    border-radius: 20px;
    background: #fffaf0;
    box-shadow: 0 16px 42px rgba(43, 22, 15, 0.08);
}

.bib-mini-detail-grid i {
    width: 54px;
    height: 54px;
    display: grid;
    place-items: center;
    margin-bottom: 18px;
    border-radius: 16px;
    background: var(--blue);
    color: #fffaf0;
    font-size: 1.4rem;
}

.bib-mini-detail-grid h3 {
    margin: 0;
    color: var(--walnut);
}

.bib-mini-detail-grid p {
    margin-top: 12px;
    color: var(--muted);
    line-height: 1.65;
}

.bib-mini-connected-card {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 20px;
    align-items: center;
    padding: clamp(24px, 4vw, 42px);
    border-radius: 26px;
    background:
        radial-gradient(circle at 88% 22%, rgba(242, 217, 139, 0.22), transparent 24%),
        linear-gradient(120deg, rgba(18, 63, 114, 0.96), rgba(45, 27, 18, 0.94));
    color: #fffaf0;
}

.bib-mini-connected-card h2 {
    margin-top: 10px;
    color: #fffaf0;
    font-size: clamp(2rem, 4vw, 3.8rem);
    line-height: 1.05;
}

.bib-mini-connected-card p {
    margin: 10px 0 0;
    color: #f6ead3;
}

.bib-mini-connected-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: flex-end;
}

.bib-back-link {
    width: fit-content;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--blue);
    font-weight: 900;
    text-decoration: none;
}

.bib-lightbox {
    position: fixed;
    z-index: 99999;
    inset: 0;
    display: none;
    place-items: center;
    padding: 24px;
    background: rgba(18, 12, 9, 0.84);
}

.bib-lightbox.is-open {
    display: grid;
}

.bib-lightbox-inner {
    width: min(1040px, 100%);
    display: grid;
    gap: 12px;
}

.bib-lightbox img {
    width: 100%;
    max-height: 82vh;
    object-fit: contain;
    border-radius: 18px;
    background: #fffaf0;
}

.bib-lightbox-caption {
    color: #fffaf0;
    font-weight: 900;
    text-align: center;
}

.bib-lightbox button {
    position: fixed;
    top: 18px;
    right: 18px;
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    border: 0;
    border-radius: 50%;
    background: #fffaf0;
    color: var(--walnut);
    cursor: pointer;
    font-size: 1.1rem;
}

.bib-join-plan-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.bib-join-plan {
    display: grid;
    gap: 14px;
    align-content: start;
    min-height: 520px;
    padding: 20px;
}

.bib-join-plan.is-founder,
.bib-join-plan.is-annual {
    border-color: rgba(201, 60, 53, 0.38);
    background: linear-gradient(145deg, #fffaf0, rgba(240, 204, 98, 0.22));
}

.bib-join-plan > span {
    color: var(--blue);
}

.bib-join-plan strong {
    color: var(--walnut);
    font-size: clamp(2rem, 3vw, 3rem);
    line-height: 1;
}

.bib-join-plan .bib-button {
    align-self: end;
    justify-content: center;
    width: 100%;
}

.bib-join-shipping {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 18px;
}

.bib-join-shipping article {
    padding: 24px;
}

@media (max-width: 1180px) {
    .bib-home-benefit-grid,
    .bib-home-overview-grid,
    .bib-home-next-grid,
    .bib-home-price-grid,
    .bib-how-detail-grid,
    .bib-join-plan-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .bib-home-snapshot-card {
        grid-template-columns: 1fr;
    }

    .bib-home-benefit-grid article {
        min-height: 280px;
    }

    .bib-page-video,
    .bib-founder-preview,
    .bib-home-volume-card,
    .bib-volume-hero-inner,
    .bib-volume-build-grid,
    .bib-mini-hero-inner,
    .bib-mini-connected-card {
        grid-template-columns: 1fr;
    }

    .bib-volume-gallery,
    .bib-volume-quote-grid,
    .bib-mini-detail-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .bib-story-life-grid {
        grid-template-columns: 1fr;
    }

    .bib-story-life-arrow {
        transform: rotate(90deg);
        justify-self: center;
    }

    .bib-volume-project-image {
        position: relative;
        top: auto;
    }
}

@media (max-width: 760px) {
    .bib-home-path,
    .bib-home-benefit-grid,
    .bib-home-overview-grid,
    .bib-home-next-grid,
    .bib-home-price-grid,
    .bib-season-preview-grid,
    .bib-how-detail-grid,
    .bib-join-plan-grid,
    .bib-join-shipping,
    .bib-between-releases,
    .bib-volume-gallery,
    .bib-volume-quote-grid,
    .bib-volume-closeups,
    .bib-mini-detail-grid {
        grid-template-columns: 1fr;
    }

    .bib-mini-release-card {
        grid-template-columns: 1fr;
    }

    .bib-main-volume {
        grid-template-columns: 1fr;
    }

    .bib-between-releases {
        padding-left: 0;
    }

    .bib-home-volume-card,
    .bib-founder-preview,
    .bib-home-cta-card,
    .bib-season-chapter,
    .bib-join-detail,
    .bib-how-framework {
        border-radius: 18px;
    }

    .bib-home-volume-card figure,
    .bib-home-volume-card img,
    .bib-volume-cover-placeholder,
    .bib-plan-image-placeholder {
        min-height: 240px;
    }

    .bib-join-plan {
        min-height: 0;
    }

    .bib-home-overview-card,
    .bib-home-next-grid article,
    .bib-home-price-card {
        min-height: 0;
    }

    .bib-home-overview-card-image {
        min-height: 320px;
    }

    .bib-home-snapshot-card {
        padding: 24px;
    }

    .bib-section-row + .bib-home-path,
    .bib-section-row + .bib-home-benefit-grid,
    .bib-section-row + .bib-home-overview-grid,
    .bib-section-row + .bib-home-next-grid,
    .bib-section-row + .bib-season-preview-grid,
    .bib-section-row + .bib-faq-grid,
    .bib-section-row + .bib-price-grid,
    .bib-section-row + .bib-trust-grid,
    .bib-section-row + .bib-page-grid,
    .bib-section-row + .bib-page-feature-grid,
    .bib-section-row + .bib-page-season-grid {
        margin-top: 26px;
    }

    .bib-home-benefit-grid article {
        min-height: 0;
    }

    .bib-home-benefit-grid i {
        margin-bottom: 18px;
    }

    .bib-volume-hero {
        min-height: 0;
        padding: 124px 18px 54px;
    }

    .bib-mini-hero {
        min-height: 0;
        padding: 124px 18px 54px;
    }

    .bib-volume-hero-copy h1 {
        font-size: clamp(2.7rem, 14vw, 4.4rem);
        line-height: 1.02;
    }

    .bib-mini-hero-copy h1 {
        font-size: clamp(2.35rem, 12vw, 4rem);
        line-height: 1.04;
    }

    .bib-volume-cover {
        transform: none;
    }

    .bib-volume-cover img {
        aspect-ratio: 16 / 11;
    }

    .bib-volume-gallery a,
    .bib-volume-closeups a {
        min-height: 250px;
    }

    .bib-volume-build-copy h2 {
        font-size: clamp(2.2rem, 12vw, 3.7rem);
    }

    .bib-volume-build-facts article {
        grid-template-columns: 1fr;
    }

    .bib-volume-build-facts i {
        grid-row: auto;
    }

    .bib-volume-project-image img,
    .bib-story-life-grid img {
        min-height: 320px;
    }

    .bib-next-volume-card > i {
        position: static;
        margin-top: 14px;
    }

    .bib-mini-connected-actions {
        justify-content: flex-start;
    }
}
