﻿
/* ============================================================
   BSC PAGE — fully namespaced under .bsc-page
   All variables scoped to .bsc-page to avoid :root pollution
   ============================================================ */
.bsc-page {
    --bsc-r: #c1121f;
    --bsc-r2: #9a0e18;
    --bsc-k: #111111;
    --bsc-k2: #222222;
    --bsc-w: #ffffff;
    --bsc-off: #f7f6f3;
    --bsc-off2: #f0ede8;
    --bsc-muted: #6b6b6b;
    --bsc-muted2: #999999;
    --bsc-line: rgba(0,0,0,0.09);
    --bsc-line2: rgba(0,0,0,0.05);
    box-sizing: border-box;
    font-family: 'Instrument Sans', sans-serif;
    line-height: 1.6;
    color: var(--bsc-k);
    overflow-x: hidden;
}

.bsc-page *,
.bsc-page *::before,
.bsc-page *::after {
    box-sizing: border-box;
}

.bsc-page a {
    color: inherit;
    text-decoration: none;
}

/* ── HERO ── */
.bsc-hero {
    min-height: 92vh;
    display: grid;
    grid-template-rows: 1fr auto;
    position: relative;
    overflow: hidden;
    background: var(--bsc-w);
}

.bsc-hero-grid-lines {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(0,0,0,0.033) 1px, transparent 1px), linear-gradient(90deg, rgba(0,0,0,0.033) 1px, transparent 1px);
    background-size: 80px 80px;
    pointer-events: none;
    mask-image: radial-gradient(ellipse 70% 70% at 60% 40%, black 30%, transparent 100%);
    -webkit-mask-image: radial-gradient(ellipse 70% 70% at 60% 40%, black 30%, transparent 100%);
}

.bsc-hero-redblur {
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(193,18,31,0.07) 0%, transparent 70%);
    top: 0;
    right: 0;
    pointer-events: none;
    animation: bsc-drift 9s ease-in-out infinite alternate;
}

@keyframes bsc-drift {
    from {
        transform: translate(0,0) scale(1);
    }

    to {
        transform: translate(-40px,50px) scale(1.08);
    }
}

.bsc-hero-content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 80px 52px 52px;
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
}

.bsc-hero-overline {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 36px;
}

.bsc-hero-overline-line {
    width: 36px;
    height: 1px;
    background: var(--bsc-r);
    flex-shrink: 0;
}

.bsc-hero-overline span {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--bsc-r);
}

.bsc-hero-headline {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(70px, 10.9375vw, 164.5px);
    line-height: 0.87;
    letter-spacing: 2px;
    color: var(--bsc-k);
    margin-bottom: 52px;
}

    .bsc-hero-headline .bsc-outline {
        -webkit-text-stroke: 1.5px rgba(17,17,17,0.18);
        color: transparent;
    }

    .bsc-hero-headline .bsc-red {
        color: var(--bsc-r);
    }

.bsc-hero-bottom {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 52px;
    padding: 36px 52px;
    border-top: 1px solid var(--bsc-line);
    position: relative;
    z-index: 1;
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
}

.bsc-hero-desc {
    font-family: 'Poppins Regular', serif;
    font-size: 20px;
    line-height: 1.65;
    color: var(--bsc-muted);
    max-width: 500px;
}

    .bsc-hero-desc em {
        color: var(--bsc-k);
        font-style: italic;
    }

.bsc-hero-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 16px;
    flex-wrap: wrap;
}

/* ── BUTTONS ── */
.bsc-btn-main {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 16px 34px;
    background: var(--bsc-r);
    color: #fff !important;
    display: inline-block;
    transition: background 0.2s, transform 0.2s;
    box-shadow: 0 8px 28px rgba(193,18,31,0.2);
    border: none;
    cursor: pointer;
}

    .bsc-btn-main:hover {
        background: var(--bsc-r2);
        transform: translateY(-2px);
    }

.bsc-btn-ghost {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 15px 32px;
    border: 1px solid var(--bsc-line);
    color: var(--bsc-muted) !important;
    display: inline-block;
    transition: border-color 0.2s, color 0.2s;
    background: transparent;
    cursor: pointer;
}

    .bsc-btn-ghost:hover {
        border-color: var(--bsc-k);
        color: var(--bsc-k) !important;
    }

.bsc-btn-red {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 15px 30px;
    background: var(--bsc-r);
    color: #fff !important;
    display: inline-block;
    align-self: flex-start;
    transition: background 0.2s;
    box-shadow: 0 6px 20px rgba(193,18,31,0.2);
    border: none;
    cursor: pointer;
}

    .bsc-btn-red:hover {
        background: var(--bsc-r2);
    }

.bsc-btn-wht {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 14px 28px;
    background: transparent;
    color: rgba(255,255,255,0.75) !important;
    border: 1px solid rgba(255,255,255,0.18);
    display: inline-block;
    align-self: flex-start;
    transition: border-color 0.2s, color 0.2s;
    cursor: pointer;
}

    .bsc-btn-wht:hover {
        border-color: rgba(255,255,255,0.55);
        color: #fff !important;
    }

/* ── STATS STRIP ── */
.bsc-stats-strip {
    background: var(--bsc-k);
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.bsc-stat-item {
    padding: 44px 52px;
    border-right: 1px solid rgba(255,255,255,0.06);
    position: relative;
    overflow: hidden;
    transition: background 0.25s;
}

    .bsc-stat-item:last-child {
        border-right: none;
    }

    .bsc-stat-item:hover {
        background: rgba(255,255,255,0.03);
    }

.bsc-stat-num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 54px;
    letter-spacing: 1px;
    color: #fff;
    line-height: 1;
    margin-bottom: 8px;
}

    .bsc-stat-num span {
        color: var(--bsc-r);
    }

.bsc-stat-label {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.4);
}

/* ── SHARED SECTION ELEMENTS ── */
.bsc-section-tag {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--bsc-r);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

    .bsc-section-tag::before {
        content: '';
        display: block;
        width: 22px;
        height: 1px;
        background: var(--bsc-r);
        flex-shrink: 0;
    }

.bsc-section-h {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(44px, 5vw, 68px);
    letter-spacing: 1px;
    line-height: 0.93;
    color: var(--bsc-k);
    margin-bottom: 24px;
}

.bsc-section-body {
    font-family: 'Instrument Serif', serif;
    font-size: 16px;
    color: var(--bsc-muted);
    line-height: 1.8;
}

/* ── HOW IT WORKS ── */
.bsc-how-wrap {
    padding: 130px 52px;
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 340px 1fr;
    gap: 100px;
    align-items: start;
}

.bsc-sticky-label {
    position: sticky;
    top: 88px;
}

.bsc-steps-list {
    display: flex;
    flex-direction: column;
}

.bsc-step-row {
    display: grid;
    grid-template-columns: 72px 1fr;
    gap: 28px;
    padding: 52px 0;
    border-bottom: 1px solid var(--bsc-line);
    align-items: start;
    transition: background 0.25s;
}

    .bsc-step-row:first-child {
        border-top: 1px solid var(--bsc-line);
    }

    .bsc-step-row:hover {
        background: rgba(0,0,0,0.015);
    }

.bsc-step-n {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 66px;
    line-height: 0.88;
    color: rgba(0,0,0,0.07);
    letter-spacing: 1px;
    transition: color 0.3s;
}

.bsc-step-row:hover .bsc-step-n {
    color: rgba(193,18,31,0.2);
}

.bsc-step-icon-bar {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 16px;
}

.bsc-step-icon-sq {
    width: 36px;
    height: 36px;
    background: var(--bsc-r);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

    .bsc-step-icon-sq svg {
        width: 17px;
        height: 17px;
        stroke: #fff;
        fill: none;
        stroke-width: 2;
        stroke-linecap: round;
        stroke-linejoin: round;
    }

.bsc-step-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 30px;
    letter-spacing: 1px;
    color: var(--bsc-k);
}

.bsc-step-p {
    font-size: 20px;
    color: var(--bsc-muted);
    line-height: 1.8;
    max-width: 520px;
}

/* ── STORY ── */
.bsc-section-story {
    background: var(--bsc-off);
    border-top: 1px solid var(--bsc-line);
    border-bottom: 1px solid var(--bsc-line);
}

.bsc-story-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 130px 52px;
}

.bsc-story-kicker {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 72px;
}

.bsc-story-kicker-line {
    flex: 1;
    height: 1px;
    background: var(--bsc-line);
}

.bsc-story-kicker-text {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--bsc-muted2);
    white-space: nowrap;
}

.bsc-story-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1px;
    background: var(--bsc-line);
}

.bsc-story-left {
    background: var(--bsc-w);
    padding: 68px 60px;
}

.bsc-story-right {
    background: var(--bsc-k);
    padding: 68px 60px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
}

    .bsc-story-right::before {
        content: 'BSC';
        position: absolute;
        bottom: -24px;
        right: -12px;
        font-family: 'Bebas Neue', sans-serif;
        font-size: 170px;
        letter-spacing: 4px;
        color: rgba(255,255,255,0.04);
        line-height: 1;
        pointer-events: none;
    }

.bsc-story-biz-tag {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--bsc-r);
    margin-bottom: 24px;
    display: inline-block;
    padding: 7px 14px;
    border: 1px solid rgba(193,18,31,0.3);
    background: rgba(193,18,31,0.04);
}

.bsc-story-biz-name {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 56px;
    letter-spacing: 1px;
    line-height: 0.95;
    color: var(--bsc-k);
    margin-bottom: 26px;
}

.bsc-story-biz-copy {
    font-size: 15px;
    color: var(--bsc-muted);
    line-height: 1.8;
    margin-bottom: 36px;
}

.bsc-blockquote {
    border-left: 2px solid var(--bsc-r);
    padding-left: 22px;
    margin-bottom: 44px;
}

    .bsc-blockquote p {
        font-family: 'Instrument Serif', serif;
        font-size: 19px;
        font-style: italic;
        color: var(--bsc-k);
        line-height: 1.65;
    }

.bsc-story-meta-row {
    display: flex;
    border-top: 1px solid var(--bsc-line);
    padding-top: 28px;
}

.bsc-meta-cell {
    flex: 1;
    padding-right: 20px;
}

    .bsc-meta-cell + .bsc-meta-cell {
        border-left: 1px solid var(--bsc-line);
        padding-left: 20px;
    }

.bsc-meta-label {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--bsc-muted2);
    margin-bottom: 5px;
}

.bsc-meta-val {
    font-size: 13px;
    font-weight: 600;
    color: var(--bsc-k);
}

.bsc-story-right-tag {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.35);
    margin-bottom: 36px;
}

.bsc-story-right-headline {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(44px, 5vw, 68px);
    letter-spacing: 1px;
    line-height: 0.92;
    color: #fff;
    margin-bottom: 32px;
    position: relative;
    z-index: 1;
}

    .bsc-story-right-headline .bsc-accent {
        color: var(--bsc-r);
    }

.bsc-story-right-body {
    font-size: 20px;
    color: rgba(255,255,255,0.55);
    line-height: 1.85;
    margin-bottom: 44px;
    position: relative;
    z-index: 1;
    max-width: 380px;
}

.bsc-story-pills {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1px;
    background: rgba(255,255,255,0.06);
    position: relative;
    z-index: 1;
}

.bsc-story-pill-item {
    background: rgba(255,255,255,0.04);
    padding: 20px;
}

.bsc-story-pill-strong {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 22px;
    letter-spacing: 1px;
    color: #fff;
    display: block;
    margin-bottom: 4px;
}

.bsc-story-pill-sub {
    font-size: 13px;
    color: rgba(255,255,255,0.45);
    line-height: 1.5;
}

/* ── MANIFESTO ── */
.bsc-section-manifesto {
    background: var(--bsc-r);
    position: relative;
    overflow: hidden;
}

.bsc-manifesto-watermark {
    position: absolute;
    right: -30px;
    top: 50%;
    transform: translateY(-50%);
    font-family: 'Bebas Neue', sans-serif;
    font-size: 220px;
    letter-spacing: 4px;
    color: rgba(0,0,0,0.08);
    white-space: nowrap;
    line-height: 1;
    pointer-events: none;
    user-select: none;
}

.bsc-manifesto-inner {
    position: relative;
    z-index: 1;
    max-width: 1400px;
    margin: 0 auto;
    padding: 100px 52px;
    display: grid;
    grid-template-columns: 1fr 480px;
    gap: 80px;
    align-items: center;
}

.bsc-manifesto-quote {
    font-family: 'Instrument Serif', serif;
    font-size: clamp(30px, 3.8vw, 50px);
    line-height: 1.25;
    color: #fff;
}

    .bsc-manifesto-quote em {
        font-style: italic;
        color: rgba(255,255,255,0.7);
    }

.bsc-manifesto-body {
    font-size: 15px;
    color: rgba(255,255,255,0.75);
    line-height: 1.85;
    margin-bottom: 32px;
    border-left: 1px solid rgba(255,255,255,0.3);
    padding-left: 22px;
}

.bsc-manifesto-tag {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.4);
}

/* ── PROMOCORE ── */
.bsc-section-pc {
    background: var(--bsc-w);
    border-top: 1px solid var(--bsc-line);
}

.bsc-pc-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 120px 52px;
}

.bsc-pc-header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    margin-bottom: 72px;
    align-items: end;
    padding-bottom: 56px;
    border-bottom: 1px solid var(--bsc-line);
}

.bsc-pc-sub {
    font-family: 'Instrument Serif', serif;
    font-size: 17px;
    color: var(--bsc-muted);
    line-height: 1.8;
}

.bsc-pc-rows {
    display: flex;
    flex-direction: column;
}

.bsc-pc-row {
    display: grid;
    grid-template-columns: 180px 1fr 160px;
    gap: 44px;
    align-items: center;
    padding: 44px 0;
    border-bottom: 1px solid var(--bsc-line);
    transition: background 0.2s;
}

    .bsc-pc-row:last-child {
        border-bottom: none;
    }

    .bsc-pc-row:hover {
        background: rgba(0,0,0,0.015);
    }

.bsc-pc-row-num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 76px;
    letter-spacing: 1px;
    color: rgba(0,0,0,0.06);
    line-height: 1;
    transition: color 0.3s;
}

.bsc-pc-row:hover .bsc-pc-row-num {
    color: rgba(193,18,31,0.15);
}

.bsc-pc-row-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 26px;
    letter-spacing: 1px;
    color: var(--bsc-k);
    margin-bottom: 8px;
}

.bsc-pc-row-body {
    font-size: 20px;
    color: var(--bsc-muted);
    line-height: 1.75;
}

.bsc-pc-row-tag {
    text-align: right;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--bsc-r);
}

/* ── USE CASES ── */
.bsc-section-uc {
    background: var(--bsc-off);
    border-top: 1px solid var(--bsc-line);
    border-bottom: 1px solid var(--bsc-line);
}

.bsc-uc-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 130px 52px;
}

.bsc-uc-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 68px;
    gap: 40px;
}

.bsc-uc-header-sub {
    font-size: 15px;
    color: var(--bsc-muted);
    max-width: 380px;
    line-height: 1.75;
}

.bsc-uc-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--bsc-line);
}

.bsc-uc-card {
    background: var(--bsc-off);
    padding: 52px 44px;
    position: relative;
    overflow: hidden;
    transition: background 0.25s;
}

    .bsc-uc-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 2px;
        background: var(--bsc-r);
        transform: scaleX(0);
        transform-origin: left;
        transition: transform 0.35s ease;
    }

    .bsc-uc-card:hover {
        background: var(--bsc-w);
    }

        .bsc-uc-card:hover::before {
            transform: scaleX(1);
        }

.bsc-uc-letter {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 96px;
    letter-spacing: 2px;
    color: rgba(0,0,0,0.05);
    line-height: 0.85;
    margin-bottom: 24px;
    transition: color 0.3s;
}

.bsc-uc-card:hover .bsc-uc-letter {
    color: rgba(193,18,31,0.1);
}

.bsc-uc-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 24px;
    letter-spacing: 1px;
    color: var(--bsc-k);
    margin-bottom: 12px;
}

.bsc-uc-body {
    font-size: 20px;
    color: var(--bsc-muted);
    line-height: 1.8;
}

/* ── ROADMAP ── */
.bsc-section-road {
    background: var(--bsc-w);
    border-top: 1px solid var(--bsc-line);
}

.bsc-road-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 120px 52px;
}

.bsc-road-header {
    margin-bottom: 72px;
}

.bsc-road-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--bsc-line);
}

.bsc-road-step {
    background: var(--bsc-w);
    padding: 52px 44px;
}

.bsc-road-step-num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 110px;
    line-height: 0.88;
    letter-spacing: 2px;
    color: rgba(0,0,0,0.05);
    margin-bottom: 28px;
}

.bsc-road-step:first-child .bsc-road-step-num {
    color: rgba(193,18,31,0.12);
}

.bsc-road-step-status {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--bsc-muted2);
    margin-bottom: 16px;
}

.bsc-road-step:first-child .bsc-road-step-status {
    color: var(--bsc-r);
}

.bsc-road-step-status-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: currentColor;
}

.bsc-road-step:first-child .bsc-road-step-status-dot {
    animation: bsc-pdot 1.5s infinite;
}

@keyframes bsc-pdot {
    0%,100% {
        opacity: 1;
    }

    50% {
        opacity: 0.3;
    }
}

.bsc-road-step-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 34px;
    letter-spacing: 1px;
    color: var(--bsc-k);
    margin-bottom: 12px;
}

.bsc-road-step-body {
    font-size: 20px;
    color: var(--bsc-muted);
    line-height: 1.8;
}

/* ── CTA ── */
.bsc-section-cta {
    background: var(--bsc-off);
    border-top: 1px solid var(--bsc-line);
}

.bsc-cta-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 130px 52px;
}

.bsc-cta-header {
    margin-bottom: 56px;
}

.bsc-cta-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1px;
    background: var(--bsc-line);
}

.bsc-cta-pane {
    background: var(--bsc-w);
    padding: 68px 60px;
    display: flex;
    flex-direction: column;
    gap: 22px;
}

    .bsc-cta-pane:last-child {
        background: var(--bsc-k);
    }

.bsc-cta-pane-tag {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--bsc-muted2);
}

.bsc-cta-pane:last-child .bsc-cta-pane-tag {
    color: rgba(255,255,255,0.35);
}

.bsc-cta-pane-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 44px;
    letter-spacing: 1px;
    line-height: 1;
    color: var(--bsc-k);
}

.bsc-cta-pane:last-child .bsc-cta-pane-title {
    color: #fff;
}

.bsc-cta-pane-body {
    font-size: 15px;
    color: var(--bsc-muted);
    line-height: 1.8;
}

.bsc-cta-pane:last-child .bsc-cta-pane-body {
    color: rgba(255,255,255,0.55);
}

.bsc-cta-list {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 11px;
    flex: 1;
}

    .bsc-cta-list li {
        font-size: 13px;
        color: var(--bsc-muted);
        display: flex;
        align-items: flex-start;
        gap: 10px;
        line-height: 1.6;
    }

.bsc-cta-pane:last-child .bsc-cta-list li {
    color: rgba(255,255,255,0.65);
}

.bsc-cta-list li::before {
    content: '';
    width: 14px;
    height: 1px;
    background: var(--bsc-r);
    margin-top: 10px;
    flex-shrink: 0;
}

.bsc-cta-pane:last-child .bsc-cta-list li::before {
    background: rgba(255,255,255,0.3);
}

/* ── SCROLL REVEAL ── */
.bsc-reveal {
    opacity: 0;
    transform: translateY(36px);
    transition: opacity 0.75s cubic-bezier(0.16,1,0.3,1), transform 0.75s cubic-bezier(0.16,1,0.3,1);
}

    .bsc-reveal.bsc-in {
        opacity: 1;
        transform: none;
    }

.bsc-reveal-left {
    opacity: 0;
    transform: translateX(-36px);
    transition: opacity 0.75s cubic-bezier(0.16,1,0.3,1), transform 0.75s cubic-bezier(0.16,1,0.3,1);
}

    .bsc-reveal-left.bsc-in {
        opacity: 1;
        transform: none;
    }

.bsc-d1 {
    transition-delay: 0.1s;
}

.bsc-d2 {
    transition-delay: 0.2s;
}

.bsc-d3 {
    transition-delay: 0.32s;
}

/* ── RESPONSIVE ── */
@media (max-width: 1100px) {
    .bsc-hero-bottom,
    .bsc-manifesto-inner,
    .bsc-pc-header,
    .bsc-cta-grid,
    .bsc-story-layout {
        grid-template-columns: 1fr;
    }

    .bsc-hero-actions {
        justify-content: flex-start;
    }

    .bsc-stats-strip {
        grid-template-columns: repeat(2, 1fr);
    }

    .bsc-how-wrap {
        grid-template-columns: 1fr;
        gap: 52px;
    }

    .bsc-sticky-label {
        position: static;
    }

    .bsc-uc-grid,
    .bsc-road-steps {
        grid-template-columns: 1fr;
    }

    .bsc-uc-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .bsc-pc-row {
        grid-template-columns: 80px 1fr;
    }

    .bsc-pc-row-tag {
        display: none;
    }
}

@media (max-width: 720px) {
    .bsc-hero-content {
        padding: 56px 24px 40px;
    }

    .bsc-hero-bottom,
    .bsc-how-wrap,
    .bsc-story-inner,
    .bsc-pc-inner,
    .bsc-uc-inner,
    .bsc-road-inner,
    .bsc-cta-inner,
    .bsc-manifesto-inner {
        padding-left: 24px;
        padding-right: 24px;
    }

    .bsc-story-left,
    .bsc-story-right,
    .bsc-cta-pane {
        padding: 44px 28px;
    }

    .bsc-stat-item {
        padding: 30px 24px;
    }
}
/* ============================================================
   BSC PROOF SECTION — append to bsc.css
   ============================================================ */

.bsc-section-proof {
    background: #0d0d0d;
    border-top: 1px solid rgba(255,255,255,0.05);
    border-bottom: 1px solid rgba(255,255,255,0.05);
    position: relative;
    overflow: hidden;
}

    .bsc-section-proof::before {
        content: '';
        position: absolute;
        inset: 0;
        background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
        pointer-events: none;
        z-index: 0;
    }

.bsc-proof-glow {
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(193,18,31,0.08) 0%, transparent 65%);
    top: -150px;
    left: -100px;
    pointer-events: none;
    z-index: 0;
}

.bsc-proof-inner {
    position: relative;
    z-index: 1;
    max-width: 1400px;
    margin: 0 auto;
    padding: 110px 52px 120px;
}

/* Header */
.bsc-proof-header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: end;
    margin-bottom: 56px;
    padding-bottom: 56px;
    border-bottom: 1px solid rgba(255,255,255,0.07);
}

.bsc-proof-overline {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: #c1121f;
    margin-bottom: 20px;
}

    .bsc-proof-overline::before {
        content: '';
        display: block;
        width: 22px;
        height: 1px;
        background: #c1121f;
        flex-shrink: 0;
    }

.bsc-proof-headline {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(44px, 5vw, 72px);
    letter-spacing: 1px;
    line-height: 0.92;
    color: #ffffff;
    margin-bottom: 0;
}

    .bsc-proof-headline .bsc-proof-outline {
        -webkit-text-stroke: 1.5px rgba(255,255,255,0.2);
        color: transparent;
    }

.bsc-proof-sub {
    font-family: 'Instrument Serif', serif;
    font-size: 17px;
    color: rgba(255,255,255,0.45);
    line-height: 1.8;
    max-width: 420px;
    align-self: end;
    margin-bottom: 0;
}

    .bsc-proof-sub em {
        color: rgba(255,255,255,0.75);
        font-style: italic;
    }

/* Stats bar */
.bsc-proof-stats {
    display: flex;
    margin-bottom: 72px;
}

.bsc-proof-stat {
    flex: 1;
    padding: 28px 32px;
    border: 1px solid rgba(255,255,255,0.06);
    border-right: none;
}

    .bsc-proof-stat:last-child {
        border-right: 1px solid rgba(255,255,255,0.06);
    }

.bsc-proof-stat-val {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 36px;
    letter-spacing: 1px;
    color: #fff;
    line-height: 1;
    margin-bottom: 6px;
}

    .bsc-proof-stat-val span {
        color: #c1121f;
    }

.bsc-proof-stat-label {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.3);
}

/* Phone grid */
.bsc-proof-phones {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    align-items: end;
}

.bsc-phone-wrap {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.bsc-phone {
    position: relative;
    border-radius: 44px;
    background: #1a1a1a;
    border: 2px solid rgba(255,255,255,0.1);
    box-shadow: 0 0 0 1px rgba(0,0,0,0.5), 0 40px 80px rgba(0,0,0,0.6), 0 0 60px rgba(193,18,31,0.06), inset 0 1px 0 rgba(255,255,255,0.08);
    overflow: hidden;
    aspect-ratio: 9 / 19.5;
    transition: transform 0.4s cubic-bezier(0.16,1,0.3,1), box-shadow 0.4s;
}

    .bsc-phone:hover {
        transform: translateY(-8px) scale(1.015);
        box-shadow: 0 0 0 1px rgba(0,0,0,0.5), 0 60px 100px rgba(0,0,0,0.7), 0 0 80px rgba(193,18,31,0.1), inset 0 1px 0 rgba(255,255,255,0.08);
    }

/* Centre phone — featured treatment */
.bsc-phone--featured {
    transform: translateY(-24px);
    border-color: rgba(193,18,31,0.35) !important;
    box-shadow: 0 0 0 1px rgba(0,0,0,0.5), 0 50px 90px rgba(0,0,0,0.65), 0 0 70px rgba(193,18,31,0.12), inset 0 1px 0 rgba(255,255,255,0.1) !important;
}

    .bsc-phone--featured:hover {
        transform: translateY(-32px) scale(1.015);
    }

.bsc-phone-notch {
    position: absolute;
    top: 14px;
    left: 50%;
    transform: translateX(-50%);
    width: 90px;
    height: 28px;
    background: #0d0d0d;
    border-radius: 20px;
    z-index: 10;
    border: 2px solid rgba(255,255,255,0.06);
}

.bsc-phone img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    display: block;
    border-radius: 42px;
}

.bsc-phone::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 40%;
    background: linear-gradient(180deg, rgba(255,255,255,0.04) 0%, transparent 100%);
    border-radius: 42px 42px 0 0;
    pointer-events: none;
    z-index: 5;
}

/* Phone captions */
.bsc-phone-caption {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.bsc-phone-caption-service {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 18px;
    letter-spacing: 1px;
    color: rgba(255,255,255,0.85);
}

.bsc-phone-caption-meta {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.28);
}

.bsc-proof-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #22c55e;
    flex-shrink: 0;
    box-shadow: 0 0 6px rgba(34,197,94,0.6);
    display: inline-block;
}

.bsc-phone-caption-amt {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 22px;
    letter-spacing: 1px;
    color: #22c55e;
}

/* Trust bar */
.bsc-proof-trust {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 64px;
    padding-top: 40px;
    border-top: 1px solid rgba(255,255,255,0.06);
    flex-wrap: wrap;
    gap: 20px;
}

.bsc-proof-trust-left {
    font-size: 12px;
    color: rgba(255,255,255,0.25);
    letter-spacing: 0.5px;
    line-height: 1.7;
    max-width: 540px;
}

    .bsc-proof-trust-left strong {
        color: rgba(255,255,255,0.5);
        font-weight: 600;
    }

.bsc-proof-trust-right {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.25);
}

    .bsc-proof-trust-right::before {
        content: '';
        display: block;
        width: 28px;
        height: 1px;
        background: rgba(193,18,31,0.5);
    }

/* Responsive */
@media (max-width: 1100px) {
    .bsc-proof-header {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .bsc-proof-sub {
        max-width: 100%;
    }
}

@media (max-width: 900px) {
    .bsc-proof-phones {
        grid-template-columns: 1fr 1fr;
        gap: 24px;
    }

    .bsc-phone-wrap:nth-child(3) {
        display: none;
    }
}

@media (max-width: 600px) {
    .bsc-proof-inner {
        padding: 72px 24px;
    }

    .bsc-proof-phones {
        grid-template-columns: 1fr;
    }

    .bsc-phone-wrap:nth-child(2) .bsc-phone--featured {
        transform: none;
    }

    .bsc-phone-wrap:nth-child(3) {
        display: flex;
    }

    .bsc-proof-stats {
        flex-direction: column;
    }

    .bsc-proof-stat {
        border-right: 1px solid rgba(255,255,255,0.06);
    }
}
