:root {
    --bc-ink: #172033;
    --bc-muted: #667085;
    --bc-purple: #6d5dfc;
    --bc-purple-dark: #5145cd;
    --bc-pink: #ec4899;
    --bc-surface: #ffffff;
    --bc-soft: #f7f7fc;
    --bc-border: #e7e8f2;
    --bc-success: #15926f;
}

body.marketing-mode {
    margin: 0;
    padding: 0;
    background: #fff;
    color: var(--bc-ink);
    overflow-x: hidden;
}

body.registration-open {
    overflow: hidden;
}

.bc-site,
.registration-gate {
    font-family: Arial, "Helvetica Neue", sans-serif;
}

.bc-site[hidden],
.registration-gate[hidden] {
    display: none !important;
}

.bc-site {
    min-height: 100vh;
    background:
        radial-gradient(circle at 8% 7%, rgba(109, 93, 252, 0.11), transparent 24rem),
        radial-gradient(circle at 93% 26%, rgba(236, 72, 153, 0.08), transparent 25rem),
        #fff;
}

.bc-header {
    position: sticky;
    z-index: 100;
    top: 0;
    display: flex;
    align-items: center;
    gap: 2rem;
    width: min(1180px, calc(100% - 2rem));
    margin: 0 auto;
    padding: 1rem 0;
    background: rgba(255, 255, 255, 0.9);
    border-bottom: 1px solid rgba(231, 232, 242, 0.85);
    backdrop-filter: blur(18px);
}

.bc-brand {
    display: inline-flex;
    align-items: center;
    gap: 0.72rem;
    color: var(--bc-ink);
    text-decoration: none;
}

.bc-brand-symbol {
    display: grid;
    place-items: center;
    width: 46px;
    height: 46px;
    flex: 0 0 auto;
    border-radius: 15px;
    color: #fff;
    background: linear-gradient(135deg, var(--bc-purple), var(--bc-pink));
    box-shadow: 0 10px 25px rgba(109, 93, 252, 0.25);
    font-size: 0.95rem;
    font-weight: 800;
    letter-spacing: -0.04em;
}

.bc-brand strong,
.bc-brand small {
    display: block;
}

.bc-brand strong {
    font-size: 1rem;
}

.bc-brand small {
    margin-top: 0.08rem;
    color: var(--bc-muted);
    font-size: 0.72rem;
}

.bc-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-inline: auto;
}

.bc-nav a,
.bc-site-footer a,
.bc-site-footer button,
.bc-link-button {
    border: 0;
    color: #4b5565;
    background: none;
    text-decoration: none;
    cursor: pointer;
    font-size: 0.86rem;
    font-weight: 700;
}

.bc-nav a:hover,
.bc-site-footer a:hover,
.bc-site-footer button:hover,
.bc-link-button:hover {
    color: var(--bc-purple-dark);
}

.bc-header-actions,
.bc-hero-actions {
    display: flex;
    align-items: center;
    gap: 0.7rem;
}

.bc-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0.76rem 1.2rem;
    border: 1px solid transparent;
    border-radius: 15px;
    text-decoration: none;
    cursor: pointer;
    font: inherit;
    font-size: 0.9rem;
    font-weight: 800;
    transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}

.bc-button:hover {
    transform: translateY(-2px);
}

.bc-button:focus-visible,
.bc-link-button:focus-visible,
.bc-site a:focus-visible,
.registration-gate input:focus-visible,
.registration-gate select:focus-visible,
.registration-close:focus-visible {
    outline: 3px solid rgba(109, 93, 252, 0.24);
    outline-offset: 3px;
}

.bc-button-primary {
    color: #fff;
    background: linear-gradient(135deg, var(--bc-purple), #7e61f0);
    box-shadow: 0 14px 30px rgba(81, 69, 205, 0.22);
}

.bc-button-primary:hover {
    box-shadow: 0 18px 34px rgba(81, 69, 205, 0.3);
}

.bc-button-secondary {
    color: var(--bc-ink);
    border-color: var(--bc-border);
    background: #fff;
}

.bc-button-secondary:hover {
    border-color: #c9c5ff;
    background: #faf9ff;
}

.bc-button-small {
    min-height: 42px;
    padding: 0.62rem 0.95rem;
    color: #fff;
    background: var(--bc-purple);
}

.bc-hero,
.bc-section,
.bc-final-cta,
.bc-site-footer {
    width: min(1180px, calc(100% - 2rem));
    margin-inline: auto;
}

.bc-hero {
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(500px, 1.08fr);
    align-items: center;
    gap: clamp(2rem, 5vw, 5.5rem);
    min-height: 690px;
    padding: 5.4rem 0 4.2rem;
}

.bc-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    color: var(--bc-purple-dark);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.01em;
}

.bc-hero h1 {
    max-width: 720px;
    margin: 1.1rem 0 1.3rem;
    color: #151c2d;
    font-size: clamp(1.9rem, 2.9vw, 2.6rem);
    line-height: 1.1;
    letter-spacing: -0.038em;
}

.bc-hero-copy > p {
    max-width: 650px;
    color: var(--bc-muted);
    font-size: 1.08rem;
    line-height: 1.8;
}

.bc-hero-actions {
    margin-top: 1.8rem;
}

.bc-trust-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem 1.2rem;
    margin: 1.45rem 0 0;
    padding: 0;
    list-style: none;
    color: #536074;
    font-size: 0.82rem;
    font-weight: 700;
}

.bc-trust-list i {
    margin-left: 0.25rem;
    color: var(--bc-success);
}

.bc-product-preview {
    position: relative;
    border: 1px solid rgba(109, 93, 252, 0.16);
    border-radius: 28px;
    background: #fff;
    box-shadow: 0 35px 80px rgba(35, 35, 72, 0.18);
    transform: perspective(1200px) rotateY(-2deg) rotateX(1deg);
}

.bc-preview-top {
    display: flex;
    align-items: center;
    gap: 0.38rem;
    height: 48px;
    padding: 0 1rem;
    border-bottom: 1px solid #ececf5;
}

.bc-preview-top span {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #d8d8e6;
}

.bc-preview-top span:nth-child(1) { background: #fb7185; }
.bc-preview-top span:nth-child(2) { background: #fbbf24; }
.bc-preview-top span:nth-child(3) { background: #34d399; }

.bc-preview-top strong {
    margin-inline-start: auto;
    font-size: 0.76rem;
}

.bc-preview-body {
    display: grid;
    grid-template-columns: 130px 1fr;
    min-height: 395px;
}

.bc-preview-body aside {
    display: flex;
    flex-direction: column;
    gap: 0.62rem;
    padding: 1.25rem 0.9rem;
    border-left: 1px solid #eeeeF6;
    background: #fafafe;
    color: #7a8092;
    font-size: 0.7rem;
}

.bc-preview-body aside strong {
    padding: 0.55rem 0.65rem;
    border-radius: 10px;
    color: var(--bc-purple-dark);
    background: #eeecff;
}

.bc-preview-body aside span {
    padding: 0.5rem 0.65rem;
}

.bc-preview-main {
    padding: 1.25rem;
    background: #f7f8fc;
}

.bc-preview-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.bc-preview-heading small {
    color: var(--bc-muted);
    font-size: 0.65rem;
}

.bc-preview-heading h2 {
    margin-top: 0.15rem;
    font-size: 1.25rem;
}

.bc-preview-heading b {
    padding: 0.56rem 0.75rem;
    border-radius: 10px;
    color: #fff;
    background: var(--bc-purple);
    font-size: 0.66rem;
}

.bc-preview-kpis {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.7rem;
    margin-top: 1.1rem;
}

.bc-preview-kpis article,
.bc-preview-card {
    border: 1px solid #ececf4;
    border-radius: 14px;
    background: #fff;
    box-shadow: 0 8px 20px rgba(20, 25, 50, 0.04);
}

.bc-preview-kpis article {
    padding: 0.8rem;
}

.bc-preview-kpis span {
    display: block;
    color: var(--bc-muted);
    font-size: 0.62rem;
}

.bc-preview-kpis strong {
    display: block;
    margin-top: 0.35rem;
    font-size: 1.25rem;
}

.bc-preview-card {
    margin-top: 0.8rem;
    padding: 0.45rem 0.8rem;
}

.bc-preview-card div {
    display: grid;
    grid-template-columns: 50px 1fr auto;
    gap: 0.55rem;
    align-items: center;
    padding: 0.78rem 0;
    border-bottom: 1px solid #f0f1f6;
    font-size: 0.7rem;
}

.bc-preview-card div:last-child {
    border-bottom: 0;
}

.bc-preview-card em {
    padding: 0.25rem 0.45rem;
    border-radius: 999px;
    color: #356a56;
    background: #e9f8f1;
    font-style: normal;
    font-size: 0.58rem;
}

.bc-floating-card {
    position: absolute;
    right: -24px;
    bottom: 34px;
    min-width: 190px;
    padding: 0.85rem 1rem;
    border: 1px solid rgba(236, 72, 153, 0.18);
    border-radius: 14px;
    background: #fff;
    box-shadow: 0 16px 40px rgba(38, 40, 70, 0.18);
}

.bc-floating-card small,
.bc-floating-card strong {
    display: block;
}

.bc-floating-card small {
    color: var(--bc-muted);
    font-size: 0.65rem;
}

.bc-floating-card strong {
    margin-top: 0.25rem;
    color: #b72f70;
    font-size: 0.78rem;
}

.bc-proof-strip {
    display: flex;
    justify-content: center;
    gap: clamp(1rem, 4vw, 3.5rem);
    overflow: hidden;
    padding: 1.25rem 1rem;
    border-block: 1px solid var(--bc-border);
    background: rgba(250, 250, 253, 0.92);
    color: #777f91;
    font-size: 0.78rem;
    font-weight: 800;
}

.bc-section {
    padding: 6rem 0;
}

.bc-section-heading {
    max-width: 760px;
    margin: 0 auto 2.5rem;
    text-align: center;
}

.bc-section-heading h2,
.bc-final-cta h2 {
    margin: 0.75rem 0 0.9rem;
    color: #151c2d;
    font-size: clamp(1.45rem, 2.2vw, 2.1rem);
    line-height: 1.18;
    letter-spacing: -0.032em;
}

.bc-section-heading p {
    color: var(--bc-muted);
    line-height: 1.75;
}

.bc-problem {
    padding-bottom: 3rem;
}

.bc-problem-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.bc-problem-grid article {
    position: relative;
    min-height: 210px;
    padding: 1.55rem;
    overflow: hidden;
    border: 1px solid var(--bc-border);
    border-radius: 20px;
    background: #fff;
    box-shadow: 0 12px 34px rgba(35, 37, 67, 0.05);
}

.bc-problem-grid article > span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 12px;
    color: #b72f70;
    background: #fff0f7;
    font-size: 0.72rem;
    font-weight: 900;
}

.bc-problem-grid h3 {
    margin: 1rem 0 0.55rem;
    font-size: 1.08rem;
}

.bc-problem-grid p,
.bc-comparison-copy p,
.bc-comparison-grid li {
    color: var(--bc-muted);
    font-size: 0.88rem;
    line-height: 1.72;
}

.bc-bridge-copy {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 1rem;
    padding: 1rem 1.25rem;
    border: 1px solid rgba(109, 93, 252, 0.2);
    border-radius: 16px;
    color: #4f4a79;
    background: #f7f5ff;
    font-size: 0.88rem;
}

.bc-bridge-copy span {
    font-weight: 800;
}

.bc-feature-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.bc-feature-grid article {
    min-height: 205px;
    padding: 1.45rem;
    border: 1px solid var(--bc-border);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 10px 30px rgba(35, 37, 67, 0.05);
}

.bc-feature-grid i {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border-radius: 13px;
    color: var(--bc-purple-dark);
    background: #efedff;
}

.bc-feature-grid h3 {
    margin: 1.05rem 0 0.55rem;
    font-size: 1.05rem;
}

.bc-feature-grid p,
.bc-steps p,
.bc-plan-card p,
.bc-faq p {
    color: var(--bc-muted);
    font-size: 0.88rem;
    line-height: 1.72;
}

.bc-comparison {
    display: grid;
    grid-template-columns: minmax(0, 0.82fr) minmax(520px, 1.18fr);
    align-items: center;
    gap: clamp(2rem, 6vw, 5rem);
    padding-top: 3.2rem;
}

.bc-comparison-copy h2 {
    margin: 0.75rem 0 0.9rem;
    color: #151c2d;
    font-size: clamp(1.45rem, 2.2vw, 2.05rem);
    line-height: 1.18;
    letter-spacing: -0.032em;
}

.bc-comparison-copy .bc-button {
    margin-top: 1rem;
}

.bc-comparison-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.bc-comparison-grid article {
    padding: 1.5rem;
    border: 1px solid var(--bc-border);
    border-radius: 21px;
    background: #fff;
    box-shadow: 0 18px 44px rgba(35, 37, 67, 0.07);
}

.bc-comparison-grid article.with {
    border-color: rgba(109, 93, 252, 0.36);
    background: linear-gradient(180deg, #fff, #f7f5ff);
}

.bc-comparison-grid article > span {
    display: inline-block;
    padding: 0.38rem 0.62rem;
    border-radius: 999px;
    color: #7c334e;
    background: #fff0f4;
    font-size: 0.72rem;
    font-weight: 900;
}

.bc-comparison-grid article.with > span {
    color: var(--bc-purple-dark);
    background: #ebe8ff;
}

.bc-comparison-grid ul {
    display: grid;
    gap: 0.8rem;
    margin: 1rem 0 0;
    padding: 0;
    list-style: none;
}

.bc-comparison-grid li {
    position: relative;
    padding-inline-start: 1.2rem;
}

.bc-comparison-grid li::before {
    position: absolute;
    inset-inline-start: 0;
    content: "–";
    color: #ca536f;
    font-weight: 900;
}

.bc-comparison-grid .with li::before {
    content: "✓";
    color: var(--bc-success);
}

.bc-workflow {
    width: 100%;
    max-width: none;
    padding-inline: max(1rem, calc((100% - 1180px) / 2));
    background: #f8f8fd;
}

.bc-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.9rem;
}

.bc-steps article {
    display: flex;
    gap: 0.85rem;
    padding: 1.25rem;
    border: 1px solid var(--bc-border);
    border-radius: 18px;
    background: #fff;
}

.bc-steps article > span {
    display: grid;
    place-items: center;
    width: 34px;
    height: 34px;
    flex: 0 0 auto;
    border-radius: 11px;
    color: #fff;
    background: var(--bc-purple);
    font-weight: 800;
}

.bc-steps h3 {
    margin: 0.2rem 0 0.35rem;
    font-size: 0.95rem;
}

.bc-plan-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 430px));
    justify-content: center;
    gap: 1.25rem;
}

.bc-plan-card {
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 2rem;
    border: 1px solid var(--bc-border);
    border-radius: 24px;
    background: #fff;
    box-shadow: 0 20px 55px rgba(36, 38, 70, 0.08);
}

.bc-plan-card.featured {
    border-color: rgba(109, 93, 252, 0.55);
    box-shadow: 0 26px 65px rgba(81, 69, 205, 0.17);
}

.bc-plan-badge {
    position: absolute;
    top: 0;
    left: 1.5rem;
    padding: 0.4rem 0.75rem;
    border-radius: 0 0 10px 10px;
    color: #fff;
    background: var(--bc-purple);
    font-size: 0.68rem;
    font-weight: 800;
}

.bc-plan-label {
    color: var(--bc-purple-dark);
    font-size: 0.72rem;
    font-weight: 800;
}

.bc-plan-card h3 {
    margin: 0.65rem 0;
    font-size: 1.25rem;
}

.bc-price {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 0.7rem;
}

.bc-price strong {
    font-size: 3.3rem;
    line-height: 1;
    letter-spacing: -0.06em;
}

.bc-price span {
    color: var(--bc-muted);
    font-size: 0.75rem;
    line-height: 1.35;
}

.bc-plan-card ul {
    display: grid;
    gap: 0.65rem;
    margin: 1.2rem 0 1.6rem;
    padding: 0;
    list-style: none;
    color: #4b5565;
    font-size: 0.86rem;
}

.bc-plan-card li::before {
    content: "✓";
    margin-left: 0.5rem;
    color: var(--bc-success);
    font-weight: 900;
}

.bc-plan-card .bc-button {
    margin-top: auto;
}

.bc-payment-note {
    max-width: 760px;
    margin: 1.3rem auto 0;
    color: var(--bc-muted);
    text-align: center;
    font-size: 0.78rem;
    line-height: 1.6;
}

.bc-payment-note i {
    margin-left: 0.3rem;
    color: var(--bc-success);
}

.bc-faq {
    max-width: 830px;
}

.bc-faq details {
    margin-bottom: 0.75rem;
    padding: 1rem 1.15rem;
    border: 1px solid var(--bc-border);
    border-radius: 15px;
    background: #fff;
}

.bc-faq summary {
    cursor: pointer;
    font-size: 0.94rem;
    font-weight: 800;
}

.bc-faq p {
    margin-top: 0.8rem;
}

.bc-final-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    margin-bottom: 4.5rem;
    padding: 2.2rem;
    border-radius: 26px;
    color: #fff;
    background: linear-gradient(125deg, #2a244f, #5d4cd6 62%, #b63d82);
    box-shadow: 0 25px 65px rgba(50, 42, 110, 0.23);
}

.bc-final-cta h2 {
    max-width: 760px;
    margin-bottom: 0;
    color: #fff;
    font-size: clamp(1.4rem, 2vw, 1.8rem);
}

.bc-final-cta .bc-eyebrow {
    color: #d9d4ff;
}

.bc-final-cta .bc-button {
    flex: 0 0 auto;
    color: var(--bc-purple-dark);
    background: #fff;
    box-shadow: none;
}

.bc-site-footer {
    display: grid;
    grid-template-columns: 1fr auto auto;
    align-items: center;
    gap: 1.5rem;
    padding: 1.6rem 0 2.2rem;
    border-top: 1px solid var(--bc-border);
}

.bc-site-footer > div:first-child strong,
.bc-site-footer > div:first-child span {
    display: block;
}

.bc-site-footer > div:first-child span {
    margin-top: 0.2rem;
    color: var(--bc-muted);
    font-size: 0.72rem;
}

.bc-site-footer > div:nth-child(2) {
    display: flex;
    gap: 1rem;
}

.bc-temporary-access {
    padding: 0.62rem 0.8rem;
    border: 1px dashed #c5c8d5 !important;
    border-radius: 11px;
    color: #697184 !important;
    background: #fafafe !important;
    font-size: 0.7rem !important;
}

.registration-gate {
    position: fixed;
    z-index: 3000;
    inset: 0;
    display: grid;
    place-items: center;
    overflow-y: auto;
    padding: 1rem;
    background: rgba(20, 24, 39, 0.64);
    backdrop-filter: blur(10px);
}

.registration-card {
    position: relative;
    width: min(760px, 100%);
    max-height: calc(100vh - 2rem);
    overflow-y: auto;
    padding: 1.75rem;
    border: 1px solid rgba(255, 255, 255, 0.78);
    border-radius: 24px;
    background: #fff;
    box-shadow: 0 30px 90px rgba(15, 19, 35, 0.32);
}

.registration-close {
    position: absolute;
    top: 1rem;
    left: 1rem;
    display: grid;
    place-items: center;
    width: 38px;
    height: 38px;
    border: 1px solid var(--bc-border);
    border-radius: 12px;
    color: #666f82;
    background: #fff;
    cursor: pointer;
}

.registration-header {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    padding-inline-end: 2.5rem;
}

.registration-header h2 {
    margin-top: 0.15rem;
    font-size: 1.45rem;
}

.registration-progress {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.55rem;
    margin: 1.4rem 0;
}

.registration-progress span {
    padding: 0.55rem;
    border-radius: 11px;
    color: #8a91a1;
    background: #f4f5f8;
    text-align: center;
    font-size: 0.72rem;
    font-weight: 800;
}

.registration-progress span.active {
    color: var(--bc-purple-dark);
    background: #efedff;
}

.registration-step h3 {
    margin-bottom: 0.35rem;
    font-size: 1.05rem;
}

.registration-step > p {
    margin-bottom: 1rem;
    color: var(--bc-muted);
    font-size: 0.79rem;
    line-height: 1.6;
}

.registration-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.8rem 0.9rem;
}

.registration-grid label,
.payment-fields label {
    display: grid;
    gap: 0.32rem;
    color: #3e4759;
    font-size: 0.73rem;
    font-weight: 800;
}

.registration-grid .wide,
.payment-fields .wide {
    grid-column: 1 / -1;
}

.registration-grid input,
.registration-grid select,
.payment-fields input {
    width: 100%;
    min-height: 46px;
    margin: 0;
    padding: 0.65rem 0.75rem;
    border: 1px solid #d7dae5;
    border-radius: 12px;
    background: #fff;
    color: var(--bc-ink);
}

.registration-grid input.invalid,
.registration-grid select.invalid {
    border-color: #e45a6f;
    box-shadow: 0 0 0 3px rgba(228, 90, 111, 0.1);
}

.registration-privacy-note {
    display: block;
    margin-top: 0.8rem;
    color: var(--bc-muted);
    font-size: 0.7rem;
}

.registration-plan-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.8rem;
}

.registration-plan {
    display: block;
    cursor: pointer;
}

.registration-plan input {
    position: absolute;
    opacity: 0;
}

.registration-plan span {
    display: grid;
    min-height: 116px;
    padding: 1rem;
    border: 2px solid var(--bc-border);
    border-radius: 15px;
    background: #fff;
    transition: border-color 0.18s, background 0.18s, box-shadow 0.18s;
}

.registration-plan input:checked + span {
    border-color: var(--bc-purple);
    background: #f7f5ff;
    box-shadow: 0 0 0 3px rgba(109, 93, 252, 0.1);
}

.registration-plan b {
    font-size: 0.85rem;
}

.registration-plan strong {
    margin-top: 0.45rem;
    color: var(--bc-purple-dark);
    font-size: 1.25rem;
}

.registration-plan small {
    color: var(--bc-muted);
    font-size: 0.68rem;
}

.payment-placeholder {
    margin-top: 1rem;
    padding: 1rem;
    border: 1px dashed #cfd2de;
    border-radius: 16px;
    background: #fafafe;
}

.payment-placeholder-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.75rem;
    color: #424b5d;
    font-size: 0.78rem;
    font-weight: 800;
}

.payment-placeholder-heading b {
    padding: 0.3rem 0.55rem;
    border-radius: 999px;
    color: #846200;
    background: #fff4c8;
    font-size: 0.62rem;
}

.payment-fields {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.65rem;
    opacity: 0.58;
}

.payment-fields input {
    min-height: 42px;
    background: #f3f4f7;
}

.payment-placeholder p {
    margin-top: 0.7rem;
    color: var(--bc-muted);
    font-size: 0.67rem;
    line-height: 1.55;
}

.trial-assurance {
    display: grid;
    grid-template-columns: 48px 1fr;
    gap: 0.9rem;
    align-items: start;
    margin-top: 1rem;
    padding: 1rem;
    border: 1px solid #bfdbfe;
    border-radius: 18px;
    background: #eff6ff;
    color: #1e3a8a;
}

.trial-assurance-icon {
    display: grid;
    place-items: center;
    width: 48px;
    height: 48px;
    border-radius: 15px;
    background: #dbeafe;
    color: #2563eb;
    font-size: 1.15rem;
}

.trial-assurance strong {
    display: block;
    margin-bottom: 0.25rem;
    color: #172033;
}

.trial-assurance p {
    margin: 0;
    color: #475569;
    font-size: 0.78rem;
    line-height: 1.65;
}

.registration-consent {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    margin-top: 0.85rem;
    color: #4f586b;
    font-size: 0.72rem;
    line-height: 1.55;
}

.registration-consent input {
    margin-top: 0.18rem;
}

.registration-consent a {
    color: var(--bc-purple-dark);
}

.registration-consent.optional {
    color: var(--bc-muted);
}

.registration-message {
    min-height: 1.3rem;
    margin-top: 0.8rem;
    font-size: 0.75rem;
    line-height: 1.55;
}

.registration-message.error {
    color: #c33149;
}

.registration-message.success {
    color: #157f63;
}

.registration-actions {
    display: flex;
    justify-content: space-between;
    gap: 0.7rem;
    margin-top: 0.35rem;
    padding-top: 1rem;
    border-top: 1px solid var(--bc-border);
}

.registration-actions .bc-button-primary {
    margin-inline-start: auto;
}

@media (max-width: 980px) {
    .bc-nav {
        display: none;
    }

    .bc-header {
        gap: 1rem;
    }

    .bc-header-actions {
        margin-inline-start: auto;
    }

    .bc-hero {
        grid-template-columns: 1fr;
        min-height: auto;
        padding-top: 4rem;
    }

    .bc-hero-copy {
        text-align: center;
    }

    .bc-hero-copy > p {
        margin-inline: auto;
    }

    .bc-hero-actions,
    .bc-trust-list {
        justify-content: center;
    }

    .bc-product-preview {
        max-width: 720px;
        margin-inline: auto;
        transform: none;
    }

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

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

    .bc-comparison {
        grid-template-columns: 1fr;
    }

    .bc-comparison-copy {
        max-width: 760px;
        margin-inline: auto;
        text-align: center;
    }

    .bc-steps {
        grid-template-columns: repeat(2, 1fr);
    }

    .bc-site-footer {
        grid-template-columns: 1fr auto;
    }

    .bc-temporary-access {
        grid-column: 1 / -1;
        justify-self: center;
    }
}

@media (max-width: 680px) {
    body.marketing-mode {
        padding-bottom: 0;
    }

    .bc-header {
        width: calc(100% - 1rem);
        padding: 0.7rem 0;
    }

    .bc-brand small,
    .bc-link-button {
        display: none;
    }

    .bc-brand-symbol {
        width: 40px;
        height: 40px;
        border-radius: 12px;
    }

    .bc-hero,
    .bc-section,
    .bc-final-cta,
    .bc-site-footer {
        width: min(100% - 1.2rem, 1180px);
    }

    .bc-hero {
        gap: 2.6rem;
        padding: 3.2rem 0 3rem;
    }

    .bc-hero h1 {
        font-size: clamp(1.65rem, 6vw, 2rem);
    }

    .bc-hero-copy > p {
        font-size: 0.98rem;
        line-height: 1.7;
    }

    .bc-hero-actions {
        display: grid;
        grid-template-columns: 1fr;
    }

    .bc-preview-body {
        grid-template-columns: 88px 1fr;
        min-height: 330px;
    }

    .bc-preview-body aside {
        padding: 0.85rem 0.45rem;
        font-size: 0.57rem;
    }

    .bc-preview-main {
        padding: 0.75rem;
    }

    .bc-preview-kpis {
        gap: 0.38rem;
    }

    .bc-preview-kpis article {
        padding: 0.55rem;
    }

    .bc-preview-kpis span,
    .bc-preview-card div {
        font-size: 0.54rem;
    }

    .bc-preview-card div {
        grid-template-columns: 38px 1fr;
    }

    .bc-preview-card em {
        display: none;
    }

    .bc-floating-card {
        right: 12px;
        bottom: -26px;
    }

    .bc-proof-strip {
        justify-content: flex-start;
        overflow-x: auto;
        padding-inline: 1rem;
    }

    .bc-section {
        padding: 4.5rem 0;
    }

    .bc-feature-grid,
    .bc-problem-grid,
    .bc-comparison-grid,
    .bc-steps,
    .bc-plan-grid,
    .registration-grid,
    .registration-plan-grid {
        grid-template-columns: 1fr;
    }

    .bc-feature-grid article {
        min-height: 0;
    }

    .bc-problem-grid article {
        min-height: 0;
    }

    .bc-bridge-copy {
        display: grid;
        text-align: center;
    }

    .bc-workflow {
        width: 100%;
        padding-inline: 0.6rem;
    }

    .bc-final-cta {
        display: grid;
        margin-bottom: 3rem;
        padding: 1.5rem;
        text-align: center;
    }

    .bc-final-cta .bc-button {
        width: 100%;
    }

    .bc-site-footer {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .bc-site-footer > div:nth-child(2) {
        flex-wrap: wrap;
        justify-content: center;
    }

    .registration-gate {
        align-items: start;
        padding: 0;
    }

    .registration-card {
        width: 100%;
        min-height: 100vh;
        max-height: none;
        border: 0;
        border-radius: 0;
        padding: 1.1rem;
    }

    .registration-header {
        padding-top: 0.3rem;
    }

    .registration-progress span {
        padding: 0.5rem 0.2rem;
        font-size: 0.62rem;
    }

    .registration-grid .wide,
    .payment-fields .wide {
        grid-column: auto;
    }

    .trial-assurance {
        grid-template-columns: 40px 1fr;
    }

    .trial-assurance-icon {
        width: 40px;
        height: 40px;
    }
}
