
:root {
    --navy:     #3d4b6e;
    --navy-dk:  #2d3a57;
    --navy-lt:  #4a5578;
    --brand:    #3979f9;
    --brand-dk: #2563eb;
    --brand-lt: #eff6ff;
    --ink:      #1a2340;
    --ink-mid:  #4a5568;
    --ink-soft: #718096;
    --line:     #e2e8f0;
    --shadow-card:   0 1px 3px rgba(0,0,0,.04);
    --shadow-float:  0 14px 30px -10px rgba(30,41,90,.18), 0 4px 12px -4px rgba(30,41,90,.08);
    --shadow-window: 0 30px 60px -20px rgba(30,41,90,.18), 0 12px 28px -12px rgba(30,41,90,.12);
    --shadow-cta:    0 6px 18px rgba(57,121,249,.40);
}

*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 100%; }
body {      font-family: 'Inter',sans-serif; color: var(--ink); background: #fff; -webkit-font-smoothing: antialiased; padding-top: 64px; }
img { max-width: 100%; display: block; }
a { text-decoration: none!important; transition: color .2s; }
ul { list-style: none; padding: 0; margin: 0; }
p { margin: 0; }

.font-display { font-family: 'Outfit', sans-serif; }
.font-serif-italic { font-family: 'Instrument Serif', serif; font-style: italic; }


.bb-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--navy);
    height: 64px;
    display: flex;
    align-items: center;
}
.bb-nav__inner {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    position: relative;
}
.bb-nav__logo {
    margin-right: 56px;
    display: flex;
    align-items: center;
    z-index: 1001;
}
.bb-nav__logo img {
    height: 20px;
    width: auto;
}
.bb-nav__links {
    display: flex;
    align-items: center;
    gap: 4px;
}
.bb-nav__link {
    border-radius: 6px;
    padding: 6px 12px;
    font-size: 14px;
    font-weight: 500;
    color: rgba(255,255,255,.75);
    transition: color .2s;
    text-decoration: none;
}
.bb-nav__link:hover {
    color: #fff;
}
.bb-nav__spacer {
    flex: 1;
}
.bb-nav__auth {
    display: flex;
    align-items: center;
    gap: 6px;
}
.bb-nav__login {
    border-radius: 6px;
    padding: 8px 16px;
    font-size: 14px;
    font-weight: 500;
    color: rgba(255,255,255,.75);
    transition: color .2s;
    text-decoration: none;
}
.bb-nav__login:hover {
    color: #fff;
}
.bb-nav__trial {
    border-radius: 999px;
    padding: 8px 20px;
    background: var(--brand);
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    transition: background .2s;
    text-decoration: none;
}
.bb-nav__trial:hover {
    background: var(--brand-dk);
    color: #fff;
}

.bb-nav__hamburger {
    display: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    background: none;
    border: none;
    margin-left: auto;
    z-index: 1001;
    position: relative;
}
.bb-nav__hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.bb-nav__mobile {
    display: none;
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    background: var(--navy);
    padding: 12px 24px 24px;
    flex-direction: column;
    gap: 2px;
    box-shadow: 0 8px 24px rgba(0,0,0,.25);
    z-index: 999;
    transform: translateY(-10px);
    opacity: 0;
    transition: transform 0.3s ease, opacity 0.3s ease;
}
.bb-nav__mobile.is-open {
    display: flex;
    transform: translateY(0);
    opacity: 1;
}
.bb-nav__mobile-link {
    display: block;
    padding: 14px 12px;
    font-size: 16px;
    font-weight: 500;
    color: rgba(255,255,255,.85) !important;
    border-radius: 8px;
    text-decoration: none;
    transition: background 0.2s;
}
.bb-nav__mobile-link:hover {
    background: rgba(255,255,255,.1);
    color: #fff !important;
}
.bb-nav__mobile-divider {
    height: 1px;
    background: rgba(255,255,255,.15);
    margin: 8px 0;
}
.bb-nav__mobile-trial {
    display: block;
    text-align: center;
    margin-top: 8px;
    padding: 14px 20px;
    font-size: 16px;
    font-weight: 600;
    background: var(--brand);
    color: #fff !important;
    border-radius: 999px;
    text-decoration: none;
    transition: background 0.2s;
}
.bb-nav__mobile-trial:hover {
    background: var(--brand-dk);
    color: #fff !important;
}


.bb-hero {
    position: relative; overflow: hidden;
    background: #fff;
    padding: 56px 24px 80px;
}
.bb-hero__inner {
    max-width: 1240px; margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
    align-items: center;
}
.bb-hero__badge {
    display: inline-flex; align-items: center; gap: 10px;
    border-radius: 999px; border: 1px solid #cdd9eb;
    background: #fff; padding: 6px 16px 6px 6px;
    box-shadow: 0 1px 4px rgba(0,0,0,.06);
    margin-bottom: 28px;
}
.bb-hero__badge-rank {
    display: inline-flex; align-items: center; justify-content: center;
    width: 28px; height: 28px; border-radius: 50%;
    background: var(--brand);
    font-size: 11px; font-weight: 800; color: #fff;
}
.bb-hero__badge-text { font-size: 13px; font-weight: 600; color: var(--ink); }
.bb-hero__headline {
    font-family: 'Outfit', sans-serif;
    font-size: 44px; font-weight: 800;
    line-height: 1.02; letter-spacing: -2.5px;
    color: var(--ink); margin-bottom: 28px;
    text-wrap: balance;
}
.bb-hero__headline em {
    font-family: 'Instrument Serif', serif;
    font-style: italic; font-weight: 400;
    color: var(--brand); letter-spacing: -1px;
}
.bb-hero__subhead {
    font-size: 17px; line-height: 1.65; color: var(--ink-mid);
    max-width: 480px; margin-bottom: 28px;
}
.bb-hero__ctas { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 28px; }
.bb-hero__btn-primary {
    display: inline-flex; align-items: center; gap: 8px;
    border-radius: 10px; background: var(--brand);
    padding: 14px 24px; font-size: 15px; font-weight: 600;
    color: #fff; box-shadow: var(--shadow-cta);
    transition: background .2s;
}
.bb-hero__btn-primary:hover { background: var(--brand-dk); color: #fff; }
.bb-hero__btn-secondary {
    display: inline-flex; align-items: center; gap: 8px;
    border-radius: 10px; border: 1.5px solid var(--line);
    padding: 14px 24px; font-size: 15px; font-weight: 600;
    color: var(--ink); background: #fff;
    transition: border-color .2s;
}
.bb-hero__btn-secondary:hover { border-color: #94a3b8; color: var(--ink); }
.bb-hero__trust {
    display: flex; flex-wrap: wrap; align-items: center; gap: 14px;
    font-size: 13px; color: var(--ink-mid);
}
.bb-hero__stars { display: flex; gap: 2px; }
.bb-hero__trust-dot {
    width: 3px; height: 3px; border-radius: 50%;
    background: var(--ink-soft); display: inline-block;
}

.bb-hero__visual { position: relative; min-height: 460px; }
.bb-hero__window {
    position: relative; z-index: 2;
    border-radius: 16px; border: 1px solid var(--line);
    background: #fff; overflow: hidden;
    box-shadow: var(--shadow-window);
}
.bb-hero__chrome {
    display: flex; align-items: center; gap: 8px;
    border-bottom: 1px solid var(--line);
    background: #fafbfc; padding: 12px 16px;
}
.bb-hero__dots { display: flex; gap: 6px; }
.bb-hero__dots span { display: block; width: 11px; height: 11px; border-radius: 50%; }
.bb-hero__url-bar {
    flex: 1; display: flex; justify-content: center;
}
.bb-hero__url-bar span {
    min-width: 220px; border-radius: 6px; border: 1px solid var(--line);
    background: #fff; padding: 4px 14px;
    font-size: 11.5px; color: var(--ink-soft); text-align: center;
}
.bb-hero__dashboard { display: grid; grid-template-columns: 168px 1fr; min-height: 440px; }
.bb-hero__sidebar {
    border-right: 1px solid var(--line); background: #fcfcfd;
    padding: 16px 10px;
}
.bb-hero__sidebar-label {
    font-size: 9.5px; font-weight: 700; letter-spacing: .08em;
    color: var(--ink-soft); padding: 0 8px; margin-bottom: 10px;
}
.bb-hero__sidebar-item {
    display: flex; align-items: center; gap: 8px;
    border-radius: 6px; padding: 8px 10px;
    font-size: 12px; font-weight: 500; color: var(--ink-mid);
    margin-bottom: 2px;
}
.bb-hero__sidebar-item--active {
    background: var(--brand-lt); font-weight: 600; color: var(--brand);
}
.bb-hero__main { padding: 16px 18px; }
.bb-hero__main-header {
    display: flex; align-items: center; justify-content: space-between;
    margin-bottom: 12px;
}
.bb-hero__main-title {
    font-family: 'Outfit', sans-serif; font-size: 16px; font-weight: 700; color: var(--ink);
}
.bb-hero__main-badge {
    border-radius: 999px; background: var(--brand-lt);
    padding: 2px 10px; font-size: 10.5px; font-weight: 600; color: var(--brand);
}
.bb-hero__book-card {
    border: 1px solid var(--line); border-radius: 10px; padding: 14px; margin-bottom: 10px;
}
.bb-hero__book-inner { display: flex; gap: 12px; }
.bb-hero__book-thumb {
    width: 44px; height: 56px; flex-shrink: 0;
    border-radius: 6px; display: flex; align-items: center; justify-content: center;
    background: linear-gradient(135deg, var(--brand), var(--brand-dk));
}
.bb-hero__book-info { flex: 1; min-width: 0; }
.bb-hero__book-top { display: flex; align-items: flex-start; justify-content: space-between; gap: 8px; }
.bb-hero__book-title { font-family: 'Outfit',sans-serif; font-size: 12.5px; font-weight: 700; color: var(--ink); }
.bb-hero__book-status {
    white-space: nowrap; border-radius: 999px;
    background: #dcfce7; padding: 2px 8px;
    font-size: 9.5px; font-weight: 600; color: #15803d;
}
.bb-hero__mini-stars { display: flex; gap: 1px; margin: 6px 0; }
.bb-hero__progress-bar { height: 4px; background: var(--line); border-radius: 4px; margin-bottom: 6px; overflow: hidden; }
.bb-hero__progress-fill { height: 100%; width: 70%; background: var(--brand); border-radius: 4px; }
.bb-hero__progress-text { font-size: 10px; color: var(--ink-soft); margin-bottom: 8px; }
.bb-hero__tags { display: flex; flex-wrap: wrap; gap: 6px; }
.bb-hero__tag {
    border-radius: 4px; background: var(--brand-lt);
    padding: 2px 6px; font-size: 9.5px; font-weight: 500; color: var(--brand);
}
.bb-hero__mini-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.bb-hero__mini-card { border: 1px solid var(--line); border-radius: 8px; padding: 10px; }
.bb-hero__mini-stars-sm { display: flex; gap: 1px; margin-bottom: 6px; }
.bb-hero__mini-bar { height: 5px; border-radius: 4px; background: var(--line); margin-bottom: 8px; }
.bb-hero__mini-bar-sm { height: 4px; width: 70%; border-radius: 4px; background: #eef2f7; margin-bottom: 8px; }
.bb-hero__mini-row { display: flex; align-items: center; gap: 6px; }
.bb-hero__mini-avatar { width: 14px; height: 14px; border-radius: 50%; background: #dbeafe; flex-shrink: 0; }
.bb-hero__mini-line { flex: 1; height: 4px; border-radius: 4px; background: #eef2f7; }
.bb-hero__toast {
    position: absolute; bottom: 14px; left: 14px;
    display: inline-flex; align-items: center; gap: 6px;
    border-radius: 999px; background: var(--brand);
    padding: 8px 14px; font-size: 12px; font-weight: 600; color: #fff;
    box-shadow: var(--shadow-cta);
}

.bb-hero__pill {
    display: none;
    position: absolute;
    align-items: center; gap: 6px;
    border-radius: 10px; border: 1px solid var(--line);
    background: #fff; padding: 8px 12px;
    box-shadow: var(--shadow-card); z-index: 2;
}
.bb-hero__pill-icon {
    width: 20px; height: 20px; border-radius: 4px;
    display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.bb-hero__pill-text { font-size: 11px; font-weight: 600; color: var(--ink); white-space: nowrap; }
.bb-hero__pill-connectors { display: none; }

.bb-hero__stat {
    display: none;
    position: absolute;
    align-items: center; gap: 12px;
    border-radius: 16px; border: 1px solid var(--line);
    background: #fff; padding: 12px 16px;
    box-shadow: var(--shadow-float); z-index: 3;
}
.bb-hero__stat-icon {
    width: 32px; height: 32px; border-radius: 8px;
    display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.bb-hero__stat-num {
    font-family: 'Outfit', sans-serif; font-size: 18px;
    font-weight: 800; letter-spacing: -.5px; color: var(--ink); line-height: 1;
}
.bb-hero__stat-label { font-size: 10.5px; color: var(--ink-soft); margin-top: 2px; }


.bb-section {
    border-top: 1px solid var(--line);
    background: #fff;
    padding: 80px 24px;
}
.bb-section__inner { max-width: 1240px; margin: 0 auto; }
.bb-section__inner--narrow { max-width: 1100px; margin: 0 auto; }
.bb-section__inner--narrower { max-width: 800px; margin: 0 auto; }
.bb-section-header { text-align: center; margin-bottom: 56px; }
.bb-eyebrow {
    font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .1em;
    color: var(--brand); display: block; margin-bottom: 14px;
}
.bb-h2 {
    font-family: 'Outfit', sans-serif; font-weight: 800;
    font-size: clamp(28px, 4vw, 42px);
    line-height: 1.1; letter-spacing: -1px; color: var(--ink);
}
.bb-h2--lg { font-size: clamp(32px, 5vw, 56px); letter-spacing: -1.5px; }
.bb-lead { font-size: 15px; color: var(--ink-mid); margin-top: 12px; }


.platforms__layout {
    display: grid; grid-template-columns: 1fr; gap: 24px;
}
.platforms__side { display: none; }
.platforms__bottom { display: flex; justify-content: center; }
.platforms__col-header { text-align: center; margin-bottom: 18px; }
.platforms__col-title {
    font-family: 'Outfit', sans-serif;
    font-size: 26px; font-weight: 700; color: var(--ink);
    letter-spacing: -.5px; margin-bottom: 4px;
}
.platforms__col-underline { display: block; width: 100%; height: 10px; margin: 2px auto 0; max-width: 360px; }
.platforms__card {
    border-radius: 18px; border: 1px solid var(--line);
    background: #fff; padding: 24px;
    box-shadow: var(--shadow-card);
}
.platforms__card ul { display: flex; flex-direction: column; gap: 10px; }
.platform-badge {
    display: flex; align-items: center; gap: 10px;
    background: #fff; border: 1px solid var(--line); border-radius: 10px;
    padding: 9px 14px; font-size: 13px; font-weight: 500; color: var(--ink);
    white-space: nowrap; box-shadow: var(--shadow-card);
}
.platform-badge__icon {
    width: 22px; height: 22px; border-radius: 6px;
    display: inline-flex; align-items: center; justify-content: center;
    font-size: 10px; font-weight: 800; flex-shrink: 0;
}
.callout {
    background: var(--c-bg); border: 1px solid var(--c-border);
    border-radius: 14px; padding: 14px 16px;
    box-shadow: 0 8px 22px -10px rgba(15,23,42,.18), 0 2px 6px -2px rgba(15,23,42,.06);
    transform: rotate(var(--c-rotate, 0deg)); width: 220px; max-width: 100%;
}
.callout__title {
    font-family: 'Outfit', sans-serif; font-size: 13.5px; font-weight: 700;
    color: var(--c-title); letter-spacing: -.2px; line-height: 1.25; margin: 0;
}
.callout__divider { border: 0; border-top: 1.5px dashed var(--c-dash); margin: 9px 0; }
.callout__body { font-size: 12px; color: var(--ink-mid); line-height: 1.4; margin: 0; }


.steps__grid { display: grid; grid-template-columns: 1fr; gap: 20px; }
.step {
    background: #fff; border: 1.5px solid var(--step-color);
    border-radius: 20px; padding: 32px 22px 28px;
    text-align: center; display: flex; flex-direction: column;
    align-items: center; gap: 12px; position: relative; list-style: none;
}
.step__num {
    position: absolute; top: 14px; right: 14px;
    display: inline-flex; align-items: center; justify-content: center;
    width: 26px; height: 26px; border-radius: 50%;
    background: var(--step-color); color: #fff; font-size: 12px; font-weight: 700;
}
.step__title {
    font-family: 'Outfit', sans-serif; font-size: 14px; font-weight: 700;
    color: var(--ink); line-height: 1.35; margin: 0;
}
.step__body { font-size: 12px; color: var(--ink-mid); line-height: 1.6; margin: 0; }


.why__grid { display: grid; grid-template-columns: 1fr; gap: 24px; }
.why-card {
    background: #fff; border: 1px solid var(--line);
    border-radius: 18px; padding: 28px 24px;
    transition: box-shadow .2s, transform .2s;
}
.why-card:hover { box-shadow: 0 6px 24px rgba(0,0,0,.07); transform: translateY(-2px); }
.why-card__icon { display: block; margin-bottom: 16px; }
.why-card__title {
    font-size: 12px; font-weight: 700; color: var(--navy);
    line-height: 1.5; letter-spacing: .04em; margin: 0 0 10px;
}
.why-card__body { font-size: 13.5px; color: var(--ink-mid); line-height: 1.65; margin: 0; }


.testimonials__grid { display: grid; grid-template-columns: 1fr; gap: 16px; }
.testimonial {
    background: #fff; border: 1px solid var(--line); border-radius: 18px;
    padding: 24px; display: flex; flex-direction: column; gap: 14px;
    transition: box-shadow .2s, transform .2s;
}
.testimonial:hover { box-shadow: 0 6px 20px rgba(0,0,0,.07); transform: translateY(-2px); }
.testimonial__stars { color: #f59e0b; font-size: 13px; letter-spacing: 1px; }
.testimonial__quote { font-size: 13.5px; line-height: 1.85; color: var(--ink); flex: 1; margin: 0; }
.testimonial__quote mark {
    background: linear-gradient(105deg, transparent 0%, #fff176 6%, #fff176 94%, transparent 100%);
    background-repeat: no-repeat; background-position: 0 65%; background-size: 100% 78%;
    padding: 1px 3px; border-radius: 3px 6px 4px 7px;
    font-weight: 600; color: var(--ink);
}
.testimonial__author {
    display: flex; align-items: center; gap: 10px;
    padding-top: 12px; border-top: 1px solid var(--line);
}
.testimonial__avatar {
    width: 36px; height: 36px; border-radius: 50%;
    background: var(--brand-lt); flex-shrink: 0;
    display: flex; align-items: center; justify-content: center;
    font-size: 12px; font-weight: 700; color: var(--brand);
}
.testimonial__name { font-size: 13px; font-weight: 600; color: var(--ink); }
.testimonial__role { font-size: 12px; color: var(--ink-soft); }


.pricing__toggle {
    display: inline-flex; gap: 2px; border-radius: 9px;
    border: 1px solid var(--line); background: #f8fafc; padding: 4px;
}
.pricing__toggle-btn {
    padding: 8px 24px; border-radius: 7px; border: none;
    cursor: pointer; font-size: 13px; font-weight: 600;
    background: transparent; color: var(--ink-soft); transition: all .2s;
}
.pricing__toggle-btn--active { background: #fff; color: var(--ink); box-shadow: 0 1px 4px rgba(0,0,0,.1); }
.pricing__grid { display: grid; grid-template-columns: 1fr; gap: 16px; margin-top: 48px; }
.plan {
    background: #fff; border: 1px solid var(--line); border-radius: 20px;
    padding: 26px 22px; position: relative;
}
.plan--highlight {
    background: var(--navy); border: 2px solid var(--brand); color: #fff;
    box-shadow: 0 16px 40px rgba(61,75,110,.2);
}
.plan__badge {
    position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
    background: var(--brand); color: #fff;
    font-size: 11px; font-weight: 700; padding: 3px 14px;
    border-radius: 999px; white-space: nowrap;
}
.plan__name {
    font-size: 11px; font-weight: 700; text-transform: uppercase;
    letter-spacing: .07em; color: var(--ink-soft); margin-bottom: 10px;
}
.plan--highlight .plan__name { color: rgba(255,255,255,.45); }
.plan__price { display: flex; align-items: baseline; gap: 2px; margin-bottom: 10px; }
.plan__amount {
    font-family: 'Outfit', sans-serif; font-size: 36px; font-weight: 800;
    letter-spacing: -.8px; color: var(--ink);
}
.plan--highlight .plan__amount { color: #fff; }
.plan__period { font-size: 13px; color: var(--ink-soft); }
.plan--highlight .plan__period { color: rgba(255,255,255,.4); }
.plan__yearly { font-size: 12px; font-weight: 600; color: var(--brand); margin-bottom: 10px; }
.plan--highlight .plan__yearly { color: #93c5fd; }
.plan__desc { font-size: 12.5px; color: var(--ink-soft); line-height: 1.55; margin-bottom: 18px; }
.plan--highlight .plan__desc { color: rgba(255,255,255,.5); }
.plan__cta {
    display: block; padding: 12px 0; border-radius: 8px; text-align: center;
    font-size: 13.5px; font-weight: 700; text-decoration: none;
    background: transparent; color: var(--ink); border: 1.5px solid var(--line);
    margin-bottom: 20px; transition: all .15s; cursor: pointer;
}
.plan__cta:hover { background: #f8fafc; color: var(--ink); }
.plan--highlight .plan__cta { background: var(--brand); color: #fff; border: none; }
.plan--highlight .plan__cta:hover { background: var(--navy-dk); color: #fff; }
.plan__features { display: flex; flex-direction: column; gap: 9px; }
.plan__feature {
    position: relative; padding-left: 22px;
    font-size: 12.5px; color: var(--ink-soft); line-height: 1.5;
}
.plan--highlight .plan__feature { color: rgba(255,255,255,.65); }
.plan__feature::before {
    content: ""; position: absolute; left: 0; top: 4px; width: 14px; height: 14px;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 15 15' fill='none'><path d='M2.5 7.5l3.5 3.5 6-7' stroke='%233979f9' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/></svg>");
    background-repeat: no-repeat;
}
.plan--highlight .plan__feature::before {
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 15 15' fill='none'><path d='M2.5 7.5l3.5 3.5 6-7' stroke='%2393c5fd' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/></svg>");
}
.plan__feature--excluded { color: #94a3b8; text-decoration: line-through; }
.plan__feature--excluded::before {
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 15 15' fill='none'><path d='M4 4l7 7M11 4l-7 7' stroke='%23dc2626' stroke-width='1.8' stroke-linecap='round'/></svg>");
}


.trial-cta { border-top: none; border-bottom: 1px solid var(--line); padding: 0 24px 80px; }
.trial-cta__inner {
    max-width: 700px; margin: 0 auto;
    border-radius: 20px; border: 1px solid #c3ddf5;
    background: var(--brand-lt); padding: 56px 40px; text-align: center;
}
.trial-cta__title { font-family: 'Outfit',sans-serif; font-size: clamp(20px,3vw,26px); font-weight: 700; color: var(--ink); }
.trial-cta__sub { margin: 8px 0 24px; font-size: 15px; color: var(--ink-mid); }
.trial-cta__btn {
    display: inline-flex; align-items: center; gap: 8px;
    border-radius: 999px; background: var(--brand);
    padding: 12px 28px; font-size: 15px; font-weight: 600; color: #fff;
    transition: background .2s;
}
.trial-cta__btn:hover { background: var(--navy-dk); color: #fff; }


.faqs__list { display: flex; flex-direction: column; gap: 8px; }
.faq {
    background: #fff; border: 1px solid var(--line); border-radius: 12px;
    overflow: hidden; transition: border-color .2s;
}
.faq[open] { border-color: #93c5fd; }
.faq__q {
    list-style: none; cursor: pointer;
    padding: 17px 20px;
    display: flex; align-items: center; justify-content: space-between; gap: 16px;
    font-family: 'Outfit', sans-serif; font-size: 15px; font-weight: 600;
    color: var(--ink); line-height: 1.4;
}
.faq__q::-webkit-details-marker { display: none; }
.faq__q::after { content: "▾"; color: var(--ink-soft); transition: transform .22s; }
.faq[open] .faq__q::after { transform: rotate(180deg); }
.faq__a { padding: 0 20px 18px; font-size: 14px; color: var(--ink-mid); line-height: 1.75; }
.faq__a a { color: var(--brand); }
.faq__a a:hover { color: var(--brand-dk); }


.bb-footer {
    background: var(--navy); padding: 56px 24px 32px;
}
.bb-footer__inner { max-width: 1100px; margin: 0 auto; }
.bb-footer__top {
    display: grid; grid-template-columns: 1fr; gap: 48px; margin-bottom: 48px;
}
.bb-footer__logo img { height: 22px; width: auto; margin-bottom: 16px; }
.bb-footer__tagline { font-size: 13.5px; line-height: 1.65; color: rgba(255,255,255,.55); }
.bb-footer__col-title { font-size: 15px; font-weight: 700; color: #fff; margin-bottom: 16px; }
.bb-footer__links { display: flex; flex-direction: column; gap: 12px; }
.bb-footer__link { font-size: 13.5px; color: rgba(255,255,255,.6); transition: color .2s; }
.bb-footer__link:hover { color: #fff; }
.bb-footer__bottom {
    border-top: 1px solid rgba(255,255,255,.1); padding-top: 24px;
    text-align: center;
}
.bb-footer__copy { font-size: 13px; color: rgba(255,255,255,.35); }


.bb-modal-overlay {
    display: none; position: fixed; inset: 0; z-index: 2000;
    background: rgba(0,0,0,.5); align-items: center; justify-content: center; padding: 24px;
}
.bb-modal-overlay.is-open { display: flex; }
.bb-modal {
    background: #fff; border-radius: 16px; width: 100%; max-width: 680px;
    max-height: 80vh; overflow-y: auto; padding: 32px;
    box-shadow: 0 24px 48px rgba(0,0,0,.2);
    scrollbar-width: none;
}
.bb-modal::-webkit-scrollbar { display: none; }
.bb-modal__header {
    display: flex; align-items: center; justify-content: space-between;
    margin-bottom: 24px;
}
.bb-modal__title { font-family: 'Outfit',sans-serif; font-size: 20px; font-weight: 700; color: var(--ink); }
.bb-modal__close {
    background: none; border: none; cursor: pointer; font-size: 24px;
    color: var(--ink-soft); line-height: 1; padding: 4px;
}
.bb-modal__close:hover { color: var(--ink); }
.bb-modal h4 { font-family: 'Outfit',sans-serif; font-size: 16px; font-weight: 700; color: var(--ink); margin: 24px 0 12px; text-align: center; }
.bb-modal p, .bb-modal li { font-size: 14px; color: var(--ink-mid); line-height: 1.75; }
.bb-modal ul { list-style: disc; padding-left: 24px; display: flex; flex-direction: column; gap: 8px; margin-top: 8px; }
.bb-modal a { color: var(--brand); }


.bb-announcement {
    background: #fef3c7; border-bottom: 1px solid #fde68a;
    padding: 10px 24px; text-align: center;
    font-size: 13.5px; color: var(--ink);
}
.bb-announcement strong { color: #d97706; }


@media (min-width: 640px) {
    .steps__grid { grid-template-columns: 1fr 1fr; }
    .why__grid { grid-template-columns: 1fr 1fr; }
    .testimonials__grid { grid-template-columns: 1fr 1fr; }
    .pricing__grid { grid-template-columns: 1fr 1fr; }
}

@media (min-width: 768px) {
    .bb-hero__inner { grid-template-columns: .95fr 1.1fr; gap: 80px; }
    .bb-hero__headline { font-size: 52px; }
    .bb-hero__stat { display: flex; }
    .bb-footer__top { grid-template-columns: 2fr 1fr 1fr; }
    .bb-section { padding: 96px 24px; }
}

@media (min-width: 1024px) {
    .bb-nav__hamburger { display: none; }
    .bb-nav__links { display: flex; }
    .bb-nav__auth { display: flex; }
    .bb-nav__mobile { display: none !important; transform: translateY(-10px); opacity: 0; }

    .bb-hero__headline { font-size: 62px; }
    .bb-hero__pill { display: flex; }
    .bb-hero__pill-connectors { display: block; }
    .bb-hero__stat--top { top: -20px; right: -16px; }
    .bb-hero__stat--bottom { bottom: -20px; right: -10px; }

    .steps__grid { grid-template-columns: repeat(4, 1fr); }
    .why__grid { grid-template-columns: repeat(3, 1fr); }
    .testimonials__grid { grid-template-columns: repeat(3, 1fr); }
    .pricing__grid { grid-template-columns: repeat(4, 1fr); }

    .platforms__layout {
        display: grid;
        grid-template-columns: 230px 1fr 1fr 230px;
        grid-template-rows: auto auto;
        column-gap: 24px; row-gap: 90px;
    }
    .platforms__side { display: flex; flex-direction: column; gap: 80px; padding-top: 80px; }
    .platforms__side--left  { grid-column: 1; grid-row: 1; }
    .platforms__col:nth-of-type(1) { grid-column: 3; grid-row: 1; }
    .platforms__col:nth-of-type(2) { grid-column: 2; grid-row: 1; }
    .platforms__side--right { grid-column: 4; grid-row: 1; }
    .platforms__bottom--books { grid-column: 2; grid-row: 2; }
    .platforms__bottom--audio { grid-column: 3; grid-row: 2; }
}

@media (max-width: 1023px) {
    .bb-nav__hamburger { display: flex; }
    .bb-nav__links,
    .bb-nav__auth { display: none; }
    .bb-nav__inner { padding: 0 16px; }
    .bb-nav__logo { margin-right: 0; }

    .platforms__layout > .platforms__col { order: 0; }
    .platforms__layout > .platforms__bottom,
    .platforms__layout > .platforms__side { order: 1; }
    .platforms__layout { grid-template-columns: 1fr 1fr; }
    .platforms__side { display: flex; flex-direction: row; flex-wrap: wrap; gap: 16px; grid-column: span 2; }
    .platforms__bottom { grid-column: span 1; }
}

@media (max-width: 767px) {
    .bb-hero__inner { gap: 32px; }
    .bb-hero__headline { font-size: 36px; letter-spacing: -1.5px; }
    .bb-hero__subhead { font-size: 15px; }
    .bb-hero__ctas { flex-direction: column; }
    .bb-hero__btn-primary,
    .bb-hero__btn-secondary { width: 100%; justify-content: center; text-align: center; }
    .bb-hero__visual { min-height: 340px; }
    .bb-hero__dashboard { grid-template-columns: 1fr; }
    .bb-hero__sidebar { display: none; }
    .bb-hero__toast { bottom: 8px; left: 8px; padding: 6px 12px; font-size: 10px; }
    .bb-hero__window { border-radius: 12px; }
    .bb-hero__chrome { padding: 8px 12px; }
    .bb-hero__url-bar span { min-width: 140px; font-size: 10px; padding: 3px 10px; }
    .bb-hero__main { padding: 12px; }
    .bb-hero__book-card { padding: 10px; }
    .bb-hero__book-title { font-size: 11px; }
    .bb-hero__tags { gap: 4px; }
    .bb-hero__tag { font-size: 8.5px; padding: 2px 5px; }

    .bb-section { padding: 48px 16px; }
    .bb-section-header { margin-bottom: 36px; }
    .bb-h2 { font-size: 28px; }
    .bb-h2--lg { font-size: 32px; }
    .bb-eyebrow { font-size: 11px; margin-bottom: 10px; }
    .bb-lead { font-size: 14px; }

    .platforms__layout { grid-template-columns: 1fr; gap: 16px; }
    .platforms__side { grid-column: span 1; flex-direction: column; gap: 12px; }
    .platforms__bottom { grid-column: span 1; }
    .platforms__col-title { font-size: 22px; }
    .platforms__card { padding: 16px; }
    .callout { width: 100%; }

    .steps__grid { gap: 14px; }
    .step { padding: 24px 16px 20px; }

    .why__grid { gap: 14px; }
    .why-card { padding: 20px 16px; }

    .testimonials__grid { gap: 12px; }
    .testimonial { padding: 18px; }

    .pricing__grid { gap: 12px; margin-top: 32px; }
    .plan { padding: 22px 16px; }
    .plan__amount { font-size: 30px; }

    .trial-cta { padding: 0 16px 48px; }
    .trial-cta__inner { padding: 36px 20px; }
    .trial-cta__title { font-size: 20px; }
    .trial-cta__sub { font-size: 14px; }
    .trial-cta__btn { padding: 12px 24px; font-size: 14px; }

    .faqs__list { gap: 6px; }
    .faq__q { padding: 14px 16px; font-size: 14px; }
    .faq__a { padding: 0 16px 14px; font-size: 13px; }

    .bb-footer { padding: 40px 16px 24px; }
    .bb-footer__top { gap: 32px; margin-bottom: 32px; }
    .bb-footer__col-title { margin-bottom: 12px; }
    .bb-footer__links { gap: 8px; }

    .bb-announcement { padding: 8px 16px; font-size: 12px; }
    .bb-modal { padding: 24px; max-width: 95%; }
    .bb-modal__title { font-size: 18px; }
}

@media (max-width: 480px) {
    .bb-hero { padding: 24px 12px 40px; }
    .bb-hero__headline { font-size: 28px; letter-spacing: -1px; }
    .bb-hero__subhead { font-size: 14px; }
    .bb-hero__badge { padding: 4px 12px 4px 4px; gap: 6px; }
    .bb-hero__badge-rank { width: 24px; height: 24px; font-size: 10px; }
    .bb-hero__badge-text { font-size: 11px; }
    .bb-hero__trust { gap: 8px; font-size: 11px; }
    .bb-hero__stars svg { width: 13px; height: 13px; }
    .bb-hero__visual { min-height: 280px; }
    .bb-hero__mini-grid { grid-template-columns: 1fr; }
    .bb-hero__btn-primary,
    .bb-hero__btn-secondary { padding: 12px 18px; font-size: 14px; }

    .bb-nav__inner { padding: 0 12px; }
    .bb-nav__mobile { padding: 10px 16px 20px; }
    .bb-nav__mobile-link { padding: 12px 10px; font-size: 15px; }
    .bb-nav__mobile-trial { padding: 12px 18px; font-size: 15px; }

    .platforms__card { padding: 12px; }
    .platform-badge { padding: 7px 10px; font-size: 12px; gap: 8px; }
    .platforms__col-title { font-size: 20px; }

    .plan__amount { font-size: 26px; }
    .plan__name { font-size: 10px; }
    .plan__feature { font-size: 11px; padding-left: 18px; }
    .plan__desc { font-size: 11px; }
    .plan__cta { font-size: 12px; padding: 10px 0; }
    .pricing__toggle-btn { padding: 7px 16px; font-size: 12px; }

    .faq__q { font-size: 13px; padding: 12px 14px; }
    .faq__a { font-size: 12px; padding: 0 14px 12px; }

    .trial-cta__inner { padding: 28px 16px; }
    .trial-cta__title { font-size: 18px; }
}
