/**
 * Boo Downloader — shared public-site design layer.
 *
 * Every /site page builds from these boo- classes so the marketing pages stay
 * one system. Colour, type, spacing and radii all come from the tokens in
 * main.css, which means this file never restates the palette.
 */

/* ---------------------------------------------------------------------------
   Homepage. Scoped with a boo- prefix; colour and type come from the shared
   tokens, so this page follows the design system rather than restating it.
   --------------------------------------------------------------------------- */
.boo-hero {
    position: relative;
    padding: 96px 0 88px;
    overflow: hidden;
    background:
        radial-gradient(900px 420px at 78% -10%, var(--primary-glow), transparent 70%),
        linear-gradient(180deg, #ffffff 0%, var(--surface-1) 100%);
}
.boo-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
    gap: 56px;
    align-items: center;
}
.boo-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 13px;
    border-radius: var(--radius-full);
    background: var(--primary-surface);
    border: 1px solid rgba(85, 70, 232, 0.20);
    color: var(--primary);
    font-size: 12.5px;
    font-weight: 600;
    letter-spacing: 0.01em;
}
.boo-hero h1 {
    margin: 20px 0 0;
    font-family: var(--font-display);
    font-size: clamp(2.3rem, 4.4vw, 3.6rem);
    line-height: 1.06;
    letter-spacing: -0.035em;
    color: var(--text);
    text-wrap: balance;
}
.boo-hero h1 em {
    font-style: normal;
    color: var(--primary);
}
.boo-sub {
    margin: 20px 0 0;
    max-width: 34rem;
    font-size: 1.075rem;
    line-height: 1.65;
    color: var(--text-secondary);
}
.boo-cta-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
    margin-top: 30px;
}
.boo-note {
    margin-top: 16px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px 18px;
    color: var(--text-muted);
    font-size: 13px;
}
.boo-note span { display: inline-flex; align-items: center; gap: 7px; }
.boo-note i { color: var(--success); }

/* --- the app window mock ------------------------------------------------- */
.boo-shot {
    border-radius: 14px;
    overflow: hidden;
    background: #ffffff;
    border: 1px solid var(--border);
    box-shadow: 0 2px 6px -2px rgba(16, 20, 28, .08), 0 40px 80px -30px rgba(16, 20, 28, .35);
}
.boo-shot-bar {
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 10px 13px;
    background: var(--surface-1);
    border-bottom: 1px solid var(--border);
}
.boo-dot { width: 10px; height: 10px; border-radius: 50%; background: #d2d7e0; }
.boo-shot-title {
    margin-left: 6px;
    font-size: 11.5px;
    color: var(--text-muted);
    font-weight: 500;
}
.boo-shot-body { display: grid; grid-template-columns: 62px 1fr; min-height: 300px; }
.boo-rail {
    background: linear-gradient(180deg, #262e39, #151a21);
    padding: 12px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 13px;
}
.boo-rail-mark {
    width: 28px; height: 28px; border-radius: 8px;
    background-image: linear-gradient(135deg, #7a6bff, #4f3fe0);
    box-shadow: 0 5px 14px -6px rgba(85, 70, 232, .8);
}
.boo-rail-item { width: 38px; height: 30px; border-radius: 7px; display: grid; place-items: center; }
.boo-rail-item i { color: #8b95a4; font-size: 13px; }
.boo-rail-item.on { background: rgba(255,255,255,.10); position: relative; }
.boo-rail-item.on i { color: #7a6bff; }
.boo-rail-item.on::before {
    content: ''; position: absolute; left: -12px; top: 50%;
    width: 3px; height: 16px; transform: translateY(-50%);
    border-radius: 0 3px 3px 0; background: #6a5bf6;
    box-shadow: 0 0 10px 1px rgba(122,108,255,.5);
}
.boo-pane { padding: 14px 15px; display: flex; flex-direction: column; gap: 10px; min-width: 0; }
.boo-paste {
    border: 1px solid var(--primary);
    border-radius: 9px;
    padding: 9px 11px;
    font-size: 11.5px;
    color: var(--text-secondary);
    box-shadow: 0 0 0 3px rgba(85, 70, 232, .18);
    line-height: 1.7;
}
.boo-queue { display: flex; flex-direction: column; gap: 7px; }
.boo-item {
    display: grid; grid-template-columns: 42px 1fr; gap: 10px;
    padding: 8px; border-radius: 9px;
    background: var(--surface-1); border: 1px solid var(--border);
}
.boo-thumb { height: 30px; border-radius: 5px; background: #e6e9ef; align-self: center; }
.boo-item-body { display: flex; flex-direction: column; gap: 5px; min-width: 0; }
.boo-item-title {
    font-size: 11.5px; font-weight: 600; color: var(--text);
    white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.boo-bar { height: 5px; border-radius: 999px; background: #e6e9ef; overflow: hidden; }
.boo-bar > span { display: block; height: 100%; border-radius: 999px; background: var(--primary); }
.boo-item-meta {
    display: flex; justify-content: space-between; gap: 8px;
    font-size: 10.5px; color: var(--text-muted); font-variant-numeric: tabular-nums;
}
.boo-done { color: var(--success); font-weight: 600; }

/* --- platform strip ------------------------------------------------------ */
.boo-strip {
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    background: #fff;
    padding: 22px 0;
}
.boo-strip-inner {
    display: flex; flex-wrap: wrap; align-items: center;
    justify-content: center; gap: 14px 44px;
}
.boo-strip-label {
    font-size: 11.5px; font-weight: 700; letter-spacing: .1em;
    text-transform: uppercase; color: var(--text-muted);
}
.boo-plat {
    display: inline-flex; align-items: center; gap: 9px;
    font-size: 15px; font-weight: 600; color: var(--text-secondary);
}
.boo-plat i { font-size: 19px; color: var(--primary); }
.boo-plat-more { color: var(--primary); font-weight: 700; }

/* --- generic section ----------------------------------------------------- */
.boo-section { padding: 84px 0; }
.boo-section.alt { background: var(--surface-1); }
.boo-head { max-width: 46rem; margin: 0 auto 48px; text-align: center; }
.boo-head h2 {
    margin: 0;
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 3vw, 2.35rem);
    letter-spacing: -0.028em;
    line-height: 1.15;
    color: var(--text);
    text-wrap: balance;
}
.boo-head p { margin: 14px 0 0; color: var(--text-secondary); font-size: 1.02rem; line-height: 1.6; }

/* --- steps --------------------------------------------------------------- */
.boo-steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 22px; }
.boo-step {
    padding: 26px 24px; border-radius: var(--radius-lg);
    background: #fff; border: 1px solid var(--border);
}
.boo-step-n {
    width: 30px; height: 30px; border-radius: 50%;
    display: grid; place-items: center;
    background: var(--primary); color: #fff;
    font-size: 13px; font-weight: 700;
    font-variant-numeric: tabular-nums;
}
.boo-step h3 { margin: 16px 0 8px; font-size: 1.05rem; font-weight: 700; color: var(--text); }
.boo-step p { margin: 0; color: var(--text-secondary); font-size: 14.5px; line-height: 1.6; }

/* --- features ------------------------------------------------------------ */
.boo-feats { display: grid; grid-template-columns: repeat(auto-fit, minmax(290px, 1fr)); gap: 20px; }
.boo-feat {
    padding: 24px; border-radius: var(--radius-lg);
    background: #fff; border: 1px solid var(--border);
    transition: transform .22s cubic-bezier(.2,.8,.3,1), box-shadow .22s, border-color .22s;
}
.boo-feat:hover {
    transform: translateY(-3px);
    border-color: rgba(85, 70, 232, .30);
    box-shadow: 0 14px 32px -18px rgba(16, 20, 28, .30);
}
.boo-feat-ico {
    width: 40px; height: 40px; border-radius: 11px;
    display: grid; place-items: center;
    background: var(--primary-surface); color: var(--primary);
    font-size: 16px;
}
.boo-feat h3 { margin: 15px 0 8px; font-size: 1rem; font-weight: 700; color: var(--text); }
.boo-feat p { margin: 0; color: var(--text-secondary); font-size: 14px; line-height: 1.62; }

/* --- pricing preview ----------------------------------------------------- */
.boo-plans { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 20px; align-items: start; }
.boo-plan {
    padding: 28px 26px; border-radius: var(--radius-lg);
    background: #fff; border: 1px solid var(--border);
    display: flex; flex-direction: column; gap: 6px;
}
.boo-plan.best {
    border-color: transparent;
    background:
        linear-gradient(#fff, #fff) padding-box,
        linear-gradient(135deg, #7a6bff, #4f3fe0) border-box;
    border: 1.5px solid transparent;
    box-shadow: 0 20px 48px -28px rgba(85, 70, 232, .75);
    position: relative;
}
.boo-plan-tag {
    position: absolute; top: -11px; left: 26px;
    padding: 3px 11px; border-radius: var(--radius-full);
    background: var(--primary); color: #fff;
    font-size: 10.5px; font-weight: 700; letter-spacing: .07em; text-transform: uppercase;
}
.boo-plan h3 { margin: 0; font-size: 1.02rem; font-weight: 700; color: var(--text); }
.boo-price {
    display: flex; align-items: baseline; gap: 5px;
    margin: 10px 0 2px;
    font-family: var(--font-display);
    color: var(--text);
}
.boo-price b { font-size: 2.3rem; font-weight: 800; letter-spacing: -.03em; }
.boo-price span { color: var(--text-muted); font-size: 14px; font-weight: 500; }
.boo-plan-note { margin: 0 0 14px; color: var(--text-secondary); font-size: 13.5px; min-height: 20px; }
.boo-plan ul { list-style: none; margin: 0 0 22px; padding: 0; display: flex; flex-direction: column; gap: 9px; }
.boo-plan li { display: flex; gap: 10px; color: var(--text-secondary); font-size: 14px; line-height: 1.5; }
.boo-plan li i { color: var(--success); margin-top: 3px; font-size: 12.5px; }
.boo-plan .btn { margin-top: auto; }

/* --- currency switch -------------------------------------------------------
   Shared by the homepage and /pricing. Prices are authored per currency
   rather than converted, so this is a switch between two price lists — not a
   display filter over one. */
.boo-currency-row { text-align: center; margin-bottom: 28px; }
.boo-currency {
    display: inline-flex;
    border: 2px solid var(--border, #e5e7eb);
    border-radius: 10px;
    overflow: hidden;
}
.boo-currency__option {
    padding: 8px 22px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-decoration: none;
    color: var(--text-muted, #6b7280);
}
.boo-currency__option + .boo-currency__option {
    border-left: 2px solid var(--border, #e5e7eb);
}
.boo-currency__option.is-active {
    background: var(--primary, #111827);
    color: #fff;
}

/* --- faq ----------------------------------------------------------------- */
.boo-faq { max-width: 50rem; margin: 0 auto; display: flex; flex-direction: column; gap: 10px; }
.boo-faq details {
    border: 1px solid var(--border); border-radius: var(--radius-md);
    background: #fff; overflow: hidden;
}
.boo-faq summary {
    cursor: pointer; list-style: none;
    padding: 17px 20px;
    font-weight: 600; font-size: 15px; color: var(--text);
    display: flex; justify-content: space-between; align-items: center; gap: 16px;
}
.boo-faq summary::-webkit-details-marker { display: none; }
.boo-faq summary::after {
    content: '\f078'; font-family: 'Font Awesome 6 Free'; font-weight: 900;
    font-size: 11px; color: var(--text-muted); transition: transform .2s;
}
.boo-faq details[open] summary::after { transform: rotate(180deg); }
.boo-faq details[open] summary { color: var(--primary); }
.boo-faq p { margin: 0; padding: 0 20px 18px; color: var(--text-secondary); font-size: 14.5px; line-height: 1.68; }

/* --- final cta ----------------------------------------------------------- */
.boo-final {
    padding: 88px 0;
    text-align: center;
    background:
        radial-gradient(700px 320px at 50% 0%, rgba(85, 70, 232, .14), transparent 70%),
        var(--surface-1);
    border-top: 1px solid var(--border);
}
.boo-final h2 {
    margin: 0 auto;
    max-width: 22ch;
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3.4vw, 2.6rem);
    letter-spacing: -.03em; line-height: 1.1;
    color: var(--text); text-wrap: balance;
}
.boo-final p { margin: 16px auto 0; max-width: 40rem; color: var(--text-secondary); font-size: 1.03rem; }

/* --- responsible use ----------------------------------------------------- */
.boo-legal {
    margin-top: 46px; padding: 18px 22px;
    max-width: 48rem; margin-left: auto; margin-right: auto;
    border-radius: var(--radius-md);
    background: var(--surface-1); border: 1px solid var(--border);
    color: var(--text-secondary); font-size: 13.5px; line-height: 1.65; text-align: left;
}
.boo-legal b { color: var(--text); }

@media (max-width: 900px) {
    .boo-hero-grid { grid-template-columns: 1fr; gap: 44px; }
    .boo-hero { padding: 64px 0 60px; }
    .boo-section { padding: 62px 0; }
}
@media (prefers-reduced-motion: reduce) {
    .boo-feat { transition: none; }
    .boo-feat:hover { transform: none; }
}

/* --- comparison table ----------------------------------------------------
   Used on /pricing. Wrapped in .boo-table-wrap so it scrolls on its own
   instead of pushing the page sideways on a phone. */
.boo-table-wrap { overflow-x: auto; border-radius: var(--radius-lg); border: 1px solid var(--border); background: #fff; }
.boo-table { width: 100%; min-width: 560px; border-collapse: collapse; font-size: 14.5px; }
.boo-table th, .boo-table td { padding: 14px 18px; text-align: left; border-bottom: 1px solid var(--border-light); }
.boo-table thead th {
    background: var(--surface-1);
    font-size: 12px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
    color: var(--text-muted);
}
.boo-table thead th:not(:first-child), .boo-table td:not(:first-child) { text-align: center; width: 20%; }
.boo-table tbody tr:last-child td { border-bottom: none; }
.boo-table tbody tr:hover td { background: var(--surface-1); }
.boo-table td:first-child { color: var(--text); font-weight: 500; }
.boo-table .yes { color: var(--success); }
.boo-table .no  { color: var(--text-disabled); }
.boo-table .val { color: var(--text-secondary); font-variant-numeric: tabular-nums; }
.boo-table .col-pro { background: rgba(85, 70, 232, .035); }

/* --- referral / promo banner --------------------------------------------- */
.boo-promo {
    max-width: 46rem; margin: 0 auto 36px;
    padding: 14px 20px; border-radius: var(--radius-md);
    background: var(--primary-surface);
    border: 1px solid rgba(85, 70, 232, .22);
    color: var(--text); font-size: 14.5px; text-align: center;
}
.boo-promo b { color: var(--primary); }

/* --- prose pages (privacy, terms, about) --------------------------------- */
.boo-prose { max-width: 46rem; margin: 0 auto; }
.boo-prose h2 {
    margin: 42px 0 12px;
    font-family: var(--font-display);
    font-size: 1.35rem; letter-spacing: -.02em; color: var(--text);
}
.boo-prose h2:first-child { margin-top: 0; }
.boo-prose h3 { margin: 26px 0 8px; font-size: 1.02rem; font-weight: 700; color: var(--text); }
.boo-prose p { margin: 0 0 14px; color: var(--text-secondary); font-size: 15px; line-height: 1.72; }
.boo-prose ul { margin: 0 0 16px; padding-left: 20px; color: var(--text-secondary); font-size: 15px; line-height: 1.72; }
.boo-prose li { margin-bottom: 7px; }
.boo-prose strong { color: var(--text); font-weight: 600; }
.boo-prose a { color: var(--primary); }
.boo-updated {
    display: inline-block; margin-bottom: 34px;
    padding: 5px 12px; border-radius: var(--radius-full);
    background: var(--surface-1); border: 1px solid var(--border);
    font-size: 12.5px; color: var(--text-muted);
}
.boo-toc {
    margin: 0 0 38px; padding: 18px 22px;
    border-radius: var(--radius-md); background: var(--surface-1);
    border: 1px solid var(--border);
}
.boo-toc h4 { margin: 0 0 10px; font-size: 12px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--text-muted); }
.boo-toc ol { margin: 0; padding-left: 18px; color: var(--text-secondary); font-size: 14px; line-height: 1.9; }
.boo-toc a { color: var(--text-secondary); }
.boo-toc a:hover { color: var(--primary); }

/* --- page header for inner pages ----------------------------------------- */
.boo-page-head {
    padding: 68px 0 44px;
    background: linear-gradient(180deg, #fff 0%, var(--surface-1) 100%);
    border-bottom: 1px solid var(--border);
    text-align: center;
}
.boo-page-head h1 {
    margin: 0 auto; max-width: 24ch;
    font-family: var(--font-display);
    font-size: clamp(2rem, 3.8vw, 2.9rem);
    letter-spacing: -.032em; line-height: 1.08; color: var(--text); text-wrap: balance;
}
.boo-page-head p { margin: 16px auto 0; max-width: 40rem; color: var(--text-secondary); font-size: 1.03rem; line-height: 1.62; }

/* --- contact ------------------------------------------------------------- */
.boo-contact-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr); gap: 40px; align-items: start; }
.boo-card { padding: 26px; border-radius: var(--radius-lg); background: #fff; border: 1px solid var(--border); }
.boo-field { display: flex; flex-direction: column; gap: 7px; margin-bottom: 16px; }
.boo-field label { font-size: 13px; font-weight: 600; color: var(--text); }
.boo-field input, .boo-field textarea, .boo-field select {
    width: 100%; padding: 11px 13px;
    border: 1px solid var(--border); border-radius: var(--radius-sm);
    background: #fff; color: var(--text);
    font-family: inherit; font-size: 14.5px;
    transition: border-color .18s, box-shadow .18s;
}
.boo-field textarea { min-height: 132px; resize: vertical; }
.boo-field input:focus, .boo-field textarea:focus, .boo-field select:focus {
    outline: none; border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(85, 70, 232, .18);
}
.boo-contact-item { display: flex; gap: 14px; padding: 16px 0; border-bottom: 1px solid var(--border-light); }
.boo-contact-item:last-child { border-bottom: none; }
.boo-contact-item i { color: var(--primary); font-size: 15px; margin-top: 3px; }
.boo-contact-item h4 { margin: 0 0 3px; font-size: 14.5px; font-weight: 700; color: var(--text); }
.boo-contact-item p, .boo-contact-item a { margin: 0; font-size: 14px; color: var(--text-secondary); }
.boo-contact-item a:hover { color: var(--primary); }

@media (max-width: 860px) {
    .boo-contact-grid { grid-template-columns: 1fr; gap: 30px; }
}

/* --- download page ------------------------------------------------------- */
.boo-dl-card {
    max-width: 42rem; margin: 0 auto; text-align: center;
    padding: 44px 34px; border-radius: var(--radius-lg);
    background: #fff; border: 1px solid var(--border);
    box-shadow: 0 2px 6px -2px rgba(16,20,28,.06), 0 30px 60px -34px rgba(16,20,28,.30);
}
.boo-dl-mark {
    width: 62px; height: 62px; margin: 0 auto 20px; border-radius: 16px;
    background-image: linear-gradient(135deg, #7a6bff, #4f3fe0);
    box-shadow: 0 10px 26px -10px rgba(85,70,232,.8), inset 0 1px 0 rgba(255,255,255,.35);
    position: relative;
}
.boo-dl-mark::after {
    content: ''; position: absolute; inset: 0; margin: auto;
    width: 38px; height: 38px; background-color: #fff;
    -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23000' fill-rule='evenodd' d='M12 2.6c-4.64 0-8.4 3.76-8.4 8.4v6.4q2.8 3.2 5.6 0 2.8 3.2 5.6 0 2.8 3.2 5.6 0V11c0-4.64-3.76-8.4-8.4-8.4ZM9.1 9.15a1.15 1.55 0 1 0 0 3.1 1.15 1.55 0 0 0 0-3.1ZM14.9 9.15a1.15 1.55 0 1 0 0 3.1 1.15 1.55 0 0 0 0-3.1ZM12 13.1a1.7 1.3 0 1 0 0 2.6 1.7 1.3 0 0 0 0-2.6Z'/%3E%3C/svg%3E") center / contain no-repeat;
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23000' fill-rule='evenodd' d='M12 2.6c-4.64 0-8.4 3.76-8.4 8.4v6.4q2.8 3.2 5.6 0 2.8 3.2 5.6 0 2.8 3.2 5.6 0V11c0-4.64-3.76-8.4-8.4-8.4ZM9.1 9.15a1.15 1.55 0 1 0 0 3.1 1.15 1.55 0 0 0 0-3.1ZM14.9 9.15a1.15 1.55 0 1 0 0 3.1 1.15 1.55 0 0 0 0-3.1ZM12 13.1a1.7 1.3 0 1 0 0 2.6 1.7 1.3 0 0 0 0-2.6Z'/%3E%3C/svg%3E") center / contain no-repeat;
}
.boo-dl-card h2 {
    margin: 0 0 12px; font-family: var(--font-display);
    font-size: 1.6rem; letter-spacing: -.028em; color: var(--text);
}
.boo-dl-meta {
    display: flex; flex-wrap: wrap; justify-content: center; gap: 8px 20px;
    margin: 0 0 26px; color: var(--text-muted); font-size: 13.5px;
}
.boo-dl-meta span { display: inline-flex; align-items: center; gap: 7px; }
.boo-dl-meta i { color: var(--primary); }
.boo-dl-btn { min-width: 260px; }
.boo-dl-sub { margin: 16px 0 0; color: var(--text-muted); font-size: 13.5px; }
.boo-dl-notes {
    margin-top: 30px; padding-top: 24px; border-top: 1px solid var(--border-light); text-align: left;
}
.boo-dl-notes h4 { margin: 0 0 8px; font-size: 13px; font-weight: 700; letter-spacing: .05em; text-transform: uppercase; color: var(--text-muted); }
.boo-dl-notes p { margin: 0; color: var(--text-secondary); font-size: 14.5px; line-height: 1.65; }
.boo-other-builds { max-width: 42rem; margin: 26px auto 0; text-align: center; }
.boo-other-builds h4 { margin: 0 0 10px; font-size: 12px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--text-muted); }
.boo-other-builds a { display: inline-block; margin: 0 10px; color: var(--primary); font-size: 14px; }

/* --- build cards (download page) -----------------------------------------
   One card per platform row in download_links. The grid is auto-fit so one
   build centres nicely and four still line up. */
.boo-builds {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(258px, 1fr));
    gap: 20px;
    max-width: 62rem;
    margin: 0 auto;
}
.boo-build {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 30px 24px 26px;
    border-radius: var(--radius-lg);
    background: #fff;
    border: 1px solid var(--border);
    transition: transform .22s cubic-bezier(.2,.8,.3,1), box-shadow .22s, border-color .22s;
}
.boo-build:hover {
    transform: translateY(-3px);
    border-color: rgba(85, 70, 232, .30);
    box-shadow: 0 16px 36px -20px rgba(16, 20, 28, .34);
}
.boo-build.suggested {
    border-color: transparent;
    background:
        linear-gradient(#fff, #fff) padding-box,
        linear-gradient(135deg, #7a6bff, #4f3fe0) border-box;
    border: 1.5px solid transparent;
    box-shadow: 0 20px 46px -28px rgba(85, 70, 232, .75);
}
.boo-build-tag {
    position: absolute;
    top: -11px; left: 50%; transform: translateX(-50%);
    white-space: nowrap;
    padding: 3px 11px;
    border-radius: var(--radius-full);
    background: var(--primary);
    color: #fff;
    font-size: 10.5px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
}
.boo-build-ico {
    width: 52px; height: 52px; margin-bottom: 16px;
    border-radius: 14px;
    display: grid; place-items: center;
    background: var(--primary-surface);
    color: var(--primary);
    font-size: 22px;
}
.boo-build h3 {
    margin: 0 0 4px;
    font-size: 1.03rem; font-weight: 700; color: var(--text);
}
.boo-build-detail { margin: 0 0 12px; font-size: 13px; color: var(--text-muted); }
.boo-build-meta {
    display: flex; flex-wrap: wrap; justify-content: center; gap: 6px 16px;
    margin: 0 0 20px;
    font-size: 12.5px; color: var(--text-muted);
    font-variant-numeric: tabular-nums;
}
.boo-build-meta span { display: inline-flex; align-items: center; gap: 6px; }
.boo-build-meta i { color: var(--primary); }
.boo-build .btn { width: 100%; margin-top: auto; }
.boo-build-foot {
    margin: 26px auto 0; text-align: center;
    color: var(--text-muted); font-size: 13.5px; line-height: 1.7;
}
.boo-build-foot a { color: var(--primary); }
.boo-release {
    max-width: 46rem; margin: 40px auto 0;
    padding: 22px 26px; border-radius: var(--radius-md);
    background: var(--surface-1); border: 1px solid var(--border);
}
.boo-release h4 {
    margin: 0 0 8px;
    font-size: 12px; font-weight: 700; letter-spacing: .07em; text-transform: uppercase;
    color: var(--text-muted);
}
.boo-release p { margin: 0; color: var(--text-secondary); font-size: 14.5px; line-height: 1.65; }

@media (prefers-reduced-motion: reduce) {
    .boo-build { transition: none; }
    .boo-build:hover { transform: none; }
}

/* --- comparison cards (/compare) ----------------------------------------- */
.boo-compare-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(285px, 1fr)); gap: 20px; }
.boo-compare-card {
    display: flex; flex-direction: column; gap: 10px;
    padding: 26px 24px; border-radius: var(--radius-lg);
    background: #fff; border: 1px solid var(--border); color: inherit;
    transition: transform .22s cubic-bezier(.2,.8,.3,1), box-shadow .22s, border-color .22s;
}
.boo-compare-card:hover {
    transform: translateY(-3px); color: inherit;
    border-color: rgba(85, 70, 232, .30);
    box-shadow: 0 16px 36px -20px rgba(16, 20, 28, .32);
}
.boo-compare-top { display: flex; align-items: center; gap: 11px; }
.boo-compare-ico {
    width: 36px; height: 36px; flex-shrink: 0; border-radius: 10px;
    display: grid; place-items: center;
    background: var(--primary-surface); color: var(--primary); font-size: 15px;
}
.boo-compare-cat {
    font-size: 11px; font-weight: 700; letter-spacing: .07em;
    text-transform: uppercase; color: var(--text-muted);
}
.boo-compare-card h3 {
    margin: 4px 0 0; font-size: 1.08rem; font-weight: 700; color: var(--text);
    font-family: var(--font-display); letter-spacing: -.02em;
}
.boo-compare-card h3 span { color: var(--text-muted); font-weight: 500; }
.boo-compare-card p { margin: 0; color: var(--text-secondary); font-size: 14px; line-height: 1.6; }
.boo-compare-more {
    margin-top: auto; padding-top: 8px;
    color: var(--primary); font-size: 13.5px; font-weight: 600;
    display: inline-flex; align-items: center; gap: 7px;
}
.boo-compare-card:hover .boo-compare-more i { transform: translateX(3px); }
.boo-compare-more i { font-size: 11px; transition: transform .2s; }

/* --- verdict box --------------------------------------------------------- */
.boo-verdict {
    max-width: 46rem; margin: 0 auto;
    padding: 26px 30px; border-radius: var(--radius-lg);
    background: var(--primary-surface);
    border: 1px solid rgba(85, 70, 232, .22);
}
.boo-verdict h2 {
    margin: 0 0 10px; font-family: var(--font-display);
    font-size: 1.15rem; letter-spacing: -.015em; color: var(--primary);
}
.boo-verdict p { margin: 0; color: var(--text); font-size: 15.5px; line-height: 1.68; }

/* --- fair-play list + who-should-pick ------------------------------------ */
.boo-fair-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 11px; }
.boo-fair-list li { display: flex; gap: 11px; color: var(--text-secondary); font-size: 14.5px; line-height: 1.55; }
.boo-fair-list li i { color: var(--success); margin-top: 4px; font-size: 12.5px; }
.boo-who { display: grid; grid-template-columns: repeat(auto-fit, minmax(270px, 1fr)); gap: 20px; margin-top: 26px; }
.boo-who h4 { margin: 0 0 8px; font-size: 14.5px; font-weight: 700; color: var(--text); }
.boo-who p { margin: 0; color: var(--text-secondary); font-size: 14.5px; line-height: 1.62; }
.boo-pricing-note {
    max-width: 46rem; margin: 22px auto 0; padding: 13px 18px;
    border-radius: var(--radius-md); background: var(--surface-1); border: 1px solid var(--border);
    color: var(--text-secondary); font-size: 13.5px; line-height: 1.6;
}
.boo-pricing-note i { color: var(--primary); margin-right: 6px; }

/* --- use-case pages ------------------------------------------------------ */
.boo-usecase-emoji {
    width: 36px; height: 36px; flex-shrink: 0; border-radius: 10px;
    display: grid; place-items: center;
    background: var(--surface-1); border: 1px solid var(--border);
    font-size: 17px; line-height: 1;
}
/* Problem cards use the warning colour so they read as "before", not "feature". */
.boo-feat-ico.boo-pain-ico { background: var(--warning-bg); color: var(--warning); }

/* --- platform pages ------------------------------------------------------ */
.boo-platform-highlight {
    display: inline-block; margin: 26px auto 0;
    padding: 11px 18px; border-radius: var(--radius-md);
    background: var(--primary-surface); border: 1px solid rgba(85, 70, 232, .20);
    color: var(--text-secondary); font-size: 13.5px; line-height: 1.55;
}
.boo-platform-highlight i { color: var(--primary); margin-right: 7px; }

/* --- blog ----------------------------------------------------------------
   The index uses one featured card above a grid; the post page uses the shared
   .boo-prose rules plus a slightly larger measure for long-form reading. */
.boo-post-featured {
    display: block; margin-bottom: 26px;
    padding: 34px 36px; border-radius: var(--radius-lg);
    background: #fff; border: 1px solid var(--border); color: inherit;
    box-shadow: 0 2px 6px -2px rgba(16,20,28,.06), 0 26px 54px -34px rgba(16,20,28,.28);
    transition: transform .22s cubic-bezier(.2,.8,.3,1), border-color .22s;
}
.boo-post-featured:hover { transform: translateY(-3px); color: inherit; border-color: rgba(85,70,232,.30); }
.boo-post-featured h2 {
    margin: 12px 0 10px; font-family: var(--font-display);
    font-size: clamp(1.5rem, 2.6vw, 2rem); letter-spacing: -.028em;
    line-height: 1.16; color: var(--text); text-wrap: balance;
}
.boo-post-featured p { margin: 0 0 16px; color: var(--text-secondary); font-size: 15.5px; line-height: 1.65; max-width: 52rem; }

.boo-post-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(288px, 1fr)); gap: 20px; }
.boo-post-card {
    display: flex; flex-direction: column; gap: 9px;
    padding: 24px; border-radius: var(--radius-lg);
    background: #fff; border: 1px solid var(--border); color: inherit;
    transition: transform .22s cubic-bezier(.2,.8,.3,1), box-shadow .22s, border-color .22s;
}
.boo-post-card:hover {
    transform: translateY(-3px); color: inherit;
    border-color: rgba(85, 70, 232, .30);
    box-shadow: 0 16px 36px -20px rgba(16, 20, 28, .32);
}
.boo-post-card h3 {
    margin: 2px 0 0; font-size: 1.05rem; font-weight: 700; line-height: 1.32;
    color: var(--text); font-family: var(--font-display); letter-spacing: -.018em;
}
.boo-post-card p { margin: 0; color: var(--text-secondary); font-size: 14px; line-height: 1.6; }
.boo-post-date { margin-top: auto; padding-top: 8px; color: var(--text-muted); font-size: 12.5px; }

.boo-post-meta {
    display: flex; flex-wrap: wrap; align-items: center; gap: 8px 14px;
    color: var(--text-muted); font-size: 12.5px;
}
.boo-post-cat {
    padding: 3px 10px; border-radius: var(--radius-full);
    background: var(--primary-surface); color: var(--primary);
    font-size: 11px; font-weight: 700; letter-spacing: .05em; text-transform: uppercase;
}

.boo-post-head {
    padding: 64px 0 40px; text-align: center;
    background: linear-gradient(180deg, #fff 0%, var(--surface-1) 100%);
    border-bottom: 1px solid var(--border);
}
.boo-post-head h1 {
    margin: 18px auto 0; max-width: 22ch;
    font-family: var(--font-display);
    font-size: clamp(1.9rem, 3.8vw, 2.8rem);
    letter-spacing: -.032em; line-height: 1.1; color: var(--text); text-wrap: balance;
}
.boo-post-standfirst {
    margin: 18px auto 0; max-width: 42rem;
    color: var(--text-secondary); font-size: 1.06rem; line-height: 1.62;
}

/* Long-form body: a touch wider and looser than the legal-page prose. */
.boo-article { max-width: 44rem; }
.boo-article p { font-size: 16px; line-height: 1.78; }
.boo-article ul, .boo-article ol { font-size: 16px; line-height: 1.78; margin-bottom: 20px; }
.boo-article h2 {
    margin: 44px 0 14px; font-size: 1.45rem;
    font-family: var(--font-display); letter-spacing: -.022em; color: var(--text);
}
.boo-article h3 { margin: 30px 0 10px; font-size: 1.08rem; font-weight: 700; color: var(--text); }
.boo-article code {
    padding: 2px 6px; border-radius: 5px;
    background: var(--surface-1); border: 1px solid var(--border);
    font-family: var(--font-mono); font-size: .88em; color: var(--text);
}
.boo-article-h2 {
    margin: 0 0 18px; font-family: var(--font-display);
    font-size: 1.45rem; letter-spacing: -.022em; color: var(--text);
    max-width: 44rem; margin-inline: auto;
}
.boo-faq { max-width: 44rem; }

@media (prefers-reduced-motion: reduce) {
    .boo-post-card, .boo-post-featured, .boo-compare-card { transition: none; }
    .boo-post-card:hover, .boo-post-featured:hover, .boo-compare-card:hover { transform: none; }
}

/* --- filter chips (tutorials) -------------------------------------------- */
.boo-chips { display: flex; flex-wrap: wrap; gap: 9px; margin-bottom: 30px; }
.boo-chip {
    padding: 7px 15px; border-radius: var(--radius-full);
    background: #fff; border: 1px solid var(--border);
    color: var(--text-secondary); font-size: 13.5px; font-weight: 500;
    transition: border-color .18s, color .18s, background .18s;
}
.boo-chip:hover { border-color: rgba(85,70,232,.32); color: var(--primary); }
.boo-chip.on { background: var(--primary); border-color: transparent; color: #fff; }

/* --- empty states -------------------------------------------------------- */
.boo-empty {
    max-width: 34rem; margin: 0 auto; text-align: center;
    padding: 52px 30px; border-radius: var(--radius-lg);
    background: #fff; border: 1px dashed var(--border-active);
}
.boo-empty-mark {
    width: 54px; height: 54px; margin: 0 auto 18px; border-radius: 15px;
    display: grid; place-items: center;
    background: var(--primary-surface); color: var(--primary); font-size: 21px;
}
.boo-empty h3 { margin: 0 0 8px; font-size: 1.12rem; font-weight: 700; color: var(--text); }
.boo-empty p { margin: 0 0 20px; color: var(--text-secondary); font-size: 14.5px; line-height: 1.62; }
.boo-empty a:not(.btn) { color: var(--primary); }

/* --- changelog timeline --------------------------------------------------- */
.boo-timeline { max-width: 52rem; margin: 0 auto; display: flex; flex-direction: column; gap: 16px; }
.boo-release-entry {
    display: grid; grid-template-columns: 132px minmax(0, 1fr); gap: 24px;
    padding: 26px 28px; border-radius: var(--radius-lg);
    background: #fff; border: 1px solid var(--border);
}
.boo-release-side { display: flex; flex-direction: column; gap: 5px; align-items: flex-start; }
.boo-release-version {
    font-family: var(--font-mono); font-size: 15px; font-weight: 700;
    color: var(--text); font-variant-numeric: tabular-nums;
}
.boo-release-date { color: var(--text-muted); font-size: 12.5px; }
.boo-release-latest {
    margin-top: 4px; padding: 2px 9px; border-radius: var(--radius-full);
    background: var(--primary); color: #fff;
    font-size: 10px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
}
.boo-release-body h3 { margin: 10px 0 10px; font-size: 1.05rem; font-weight: 700; color: var(--text); }
.boo-release-body p { margin: 0; color: var(--text-secondary); font-size: 14.5px; line-height: 1.65; }
.boo-change-chip {
    display: inline-flex; align-items: center; gap: 6px;
    padding: 3px 10px; border-radius: var(--radius-full);
    font-size: 11px; font-weight: 700; letter-spacing: .05em; text-transform: uppercase;
}
.boo-change-chip i { font-size: 9px; }
.boo-change-chip.add { background: var(--success-bg); color: var(--success); }
.boo-change-chip.imp { background: var(--info-bg); color: var(--info); }
.boo-change-chip.fix { background: var(--warning-bg); color: var(--warning); }
.boo-change-chip.rem { background: var(--danger-bg); color: var(--danger); }

/* --- team ---------------------------------------------------------------- */
.boo-team-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 20px; }
.boo-team-card {
    text-align: center; padding: 30px 22px;
    border-radius: var(--radius-lg); background: #fff; border: 1px solid var(--border);
}
.boo-team-photo {
    width: 78px; height: 78px; margin: 0 auto 16px;
    border-radius: 50%; object-fit: cover; display: block;
}
.boo-team-initials {
    display: grid; place-items: center;
    background-image: linear-gradient(135deg, #7a6bff, #4f3fe0);
    color: #fff; font-family: var(--font-display);
    font-size: 26px; font-weight: 700; letter-spacing: -.01em;
}
.boo-team-card h3 { margin: 0 0 3px; font-size: 1.02rem; font-weight: 700; color: var(--text); }
.boo-team-role { margin: 0 0 10px; color: var(--primary); font-size: 13px; font-weight: 600; }
.boo-team-bio { margin: 0; color: var(--text-secondary); font-size: 13.5px; line-height: 1.6; }

@media (max-width: 640px) {
    .boo-release-entry { grid-template-columns: 1fr; gap: 12px; }
    .boo-release-side { flex-direction: row; align-items: center; gap: 10px; }
}
