:root {
    --bc-bg: #f3f3ef;
    --bc-surface: rgba(255, 255, 255, 0.88);
    --bc-surface-strong: #ffffff;
    --bc-surface-muted: #ecece6;
    --bc-border: rgba(18, 24, 32, 0.09);
    --bc-text: #14171b;
    --bc-muted: #68707a;
    --bc-soft: #97a0ab;
    --bc-accent: #5c7a46;
    --bc-accent-dark: #435a33;
    --bc-shadow: 0 28px 80px rgba(15, 25, 35, 0.12);
    --bc-shadow-soft: 0 18px 40px rgba(15, 25, 35, 0.08);
    --bc-radius-xl: 36px;
    --bc-radius-lg: 24px;
    --bc-radius-md: 18px;
    --bc-max: 1240px;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "Plus Jakarta Sans", sans-serif;
    color: var(--bc-text);
    background:
        radial-gradient(circle at top left, rgba(92, 122, 70, 0.12), transparent 30%),
        radial-gradient(circle at top right, rgba(182, 184, 168, 0.35), transparent 28%),
        linear-gradient(180deg, #fafaf7 0%, #f1f1ec 44%, #f7f7f3 100%);
    overflow-x: hidden;
}

img {
    display: block;
    max-width: 100%;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
a {
    transition: transform 0.24s ease, box-shadow 0.24s ease, background-color 0.24s ease, border-color 0.24s ease, color 0.24s ease;
}

.bc-page::before {
    content: "";
    position: fixed;
    inset: 0;
    background-image:
        linear-gradient(rgba(20, 23, 27, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(20, 23, 27, 0.03) 1px, transparent 1px);
    background-size: 88px 88px;
    mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.18), transparent 85%);
    pointer-events: none;
    z-index: 0;
}

.bc-container {
    width: min(calc(100% - 32px), var(--bc-max));
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.bc-topbar {
    position: sticky;
    top: 0;
    z-index: 20;
    padding: 18px 0;
}

.bc-topbar-shell {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 14px 18px;
    border: 1px solid rgba(255, 255, 255, 0.55);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.72);
    backdrop-filter: blur(20px);
    box-shadow: 0 14px 30px rgba(17, 24, 39, 0.08);
}

.bc-brand {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    min-width: 0;
}

.bc-brand-mark {
    width: 62px;
    height: 62px;
    border-radius: 20px;
    display: grid;
    place-items: center;
    background: linear-gradient(145deg, #ffffff, #ecece6);
    border: 1px solid rgba(18, 24, 32, 0.08);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.bc-brand-mark img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.bc-brand-copy {
    min-width: 0;
}

.bc-brand-copy strong,
.bc-brand-copy span {
    display: block;
    line-height: 1.1;
}

.bc-brand-copy strong {
    font-size: 0.98rem;
    letter-spacing: -0.02em;
}

.bc-brand-copy span {
    color: var(--bc-muted);
    font-size: 0.82rem;
}

.bc-nav {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
}

.bc-nav a {
    padding: 10px 16px;
    border-radius: 999px;
    color: var(--bc-muted);
    font-size: 0.92rem;
}

.bc-nav a:hover,
.bc-nav a:focus-visible {
    color: var(--bc-text);
    background: rgba(255, 255, 255, 0.74);
}

.bc-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.bc-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 50px;
    padding: 0 20px;
    border-radius: 999px;
    border: 1px solid transparent;
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: -0.01em;
}

.bc-button-primary {
    color: #fff;
    background: linear-gradient(180deg, #68894f 0%, #4f6d3c 100%);
    box-shadow: 0 16px 30px rgba(92, 122, 70, 0.24);
}

.bc-button-primary:hover,
.bc-button-primary:focus-visible {
    transform: translateY(-1px);
    box-shadow: 0 18px 34px rgba(92, 122, 70, 0.3);
}

.bc-button-secondary {
    background: rgba(255, 255, 255, 0.64);
    border-color: rgba(18, 24, 32, 0.08);
    color: var(--bc-text);
}

.bc-button-secondary:hover,
.bc-button-secondary:focus-visible {
    background: rgba(255, 255, 255, 0.95);
    border-color: rgba(18, 24, 32, 0.14);
}

.bc-hero {
    padding: 42px 0 64px;
}

.bc-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.02fr) minmax(0, 1fr);
    gap: 36px;
    align-items: center;
}

.bc-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(18, 24, 32, 0.08);
    color: var(--bc-muted);
    font-size: 0.83rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.bc-hero-copy h1 {
    margin: 18px 0 18px;
    font-size: clamp(3rem, 7vw, 5.9rem);
    line-height: 0.96;
    letter-spacing: -0.06em;
    max-width: 11ch;
}

.bc-hero-copy p {
    margin: 0;
    max-width: 600px;
    color: var(--bc-muted);
    font-size: 1.1rem;
    line-height: 1.8;
}

.bc-hero-actions {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 32px;
}

.bc-doc-actions {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 16px;
}

.bc-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 28px;
}

.bc-badge {
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(18, 24, 32, 0.07);
    color: var(--bc-text);
    font-size: 0.9rem;
}

.bc-hero-card {
    position: relative;
    padding: 18px;
    border-radius: var(--bc-radius-xl);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(248, 248, 245, 0.86));
    border: 1px solid rgba(255, 255, 255, 0.7);
    box-shadow: var(--bc-shadow);
    overflow: hidden;
}

.bc-hero-card::before {
    content: "";
    position: absolute;
    inset: -1px;
    border-radius: inherit;
    padding: 1px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(18, 24, 32, 0.06));
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.bc-frame {
    position: relative;
    z-index: 1;
    overflow: hidden;
    border-radius: 28px;
    background: #fff;
    border: 1px solid rgba(18, 24, 32, 0.08);
    box-shadow: 0 20px 45px rgba(15, 25, 35, 0.12);
}

.bc-frame-top {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 16px;
    background: #f4f5f2;
    border-bottom: 1px solid rgba(18, 24, 32, 0.06);
}

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

.bc-frame img {
    width: 100%;
    height: auto;
}

.bc-floating {
    position: absolute;
    z-index: 2;
    display: grid;
    gap: 6px;
    min-width: 210px;
    padding: 18px 18px 16px;
    border-radius: 22px;
    background: rgba(20, 23, 27, 0.92);
    color: #f8faf8;
    box-shadow: 0 18px 30px rgba(20, 23, 27, 0.2);
}

.bc-floating small {
    color: rgba(255, 255, 255, 0.62);
    font-size: 0.76rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.bc-floating strong {
    font-size: 1.3rem;
    letter-spacing: -0.04em;
}

.bc-floating span {
    color: rgba(255, 255, 255, 0.74);
    font-size: 0.92rem;
    line-height: 1.4;
}

.bc-floating-top {
    top: -14px;
    right: -8px;
}

.bc-floating-bottom {
    left: -22px;
    bottom: 30px;
    background: rgba(255, 255, 255, 0.94);
    color: var(--bc-text);
}

.bc-floating-bottom small,
.bc-floating-bottom span {
    color: var(--bc-muted);
}

.bc-section {
    padding: 56px 0;
}

.bc-section-head {
    display: grid;
    gap: 12px;
    margin-bottom: 28px;
}

.bc-section-head p {
    max-width: 700px;
    margin: 0;
    color: var(--bc-muted);
    font-size: 1.04rem;
    line-height: 1.8;
}

.bc-kicker {
    color: var(--bc-accent);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.bc-title {
    margin: 0;
    font-size: clamp(2rem, 4vw, 3.55rem);
    line-height: 1.02;
    letter-spacing: -0.05em;
}

.bc-intro-grid,
.bc-modules-grid {
    display: grid;
    gap: 18px;
}

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

.bc-card {
    padding: 26px;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(18, 24, 32, 0.08);
    box-shadow: var(--bc-shadow-soft);
}

.bc-card-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    margin-bottom: 20px;
    border-radius: 14px;
    background: rgba(92, 122, 70, 0.12);
    color: var(--bc-accent-dark);
    font-weight: 700;
}

.bc-card h3,
.bc-module h3,
.bc-flow-step h3,
.bc-showcase-copy h3 {
    margin: 0 0 10px;
    font-size: 1.34rem;
    letter-spacing: -0.04em;
}

.bc-card p,
.bc-module p,
.bc-flow-step p,
.bc-showcase-copy p,
.bc-list li,
.bc-cta-card p,
.bc-footer p {
    margin: 0;
    color: var(--bc-muted);
    line-height: 1.75;
}

.bc-showcase {
    display: grid;
    gap: 22px;
}

.bc-showcase-row {
    display: grid;
    grid-template-columns: minmax(0, 0.98fr) minmax(0, 1.02fr);
    gap: 22px;
    align-items: center;
    padding: 18px;
    border-radius: 34px;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(18, 24, 32, 0.06);
    box-shadow: var(--bc-shadow-soft);
}

.bc-showcase-row:nth-child(even) {
    grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
}

.bc-showcase-row:nth-child(even) .bc-showcase-copy {
    order: 1;
}

.bc-showcase-row:nth-child(even) .bc-showcase-media {
    order: 2;
}

.bc-showcase-copy {
    padding: 18px;
}

.bc-showcase-copy p {
    margin-bottom: 20px;
}

.bc-list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 10px;
}

.bc-list li {
    position: relative;
    padding-left: 24px;
}

.bc-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 11px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: linear-gradient(180deg, #6e9153 0%, #4f6d3c 100%);
}

.bc-showcase-media {
    position: relative;
}

.bc-showcase-note {
    position: absolute;
    right: 18px;
    bottom: 18px;
    padding: 12px 14px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(18, 24, 32, 0.08);
    box-shadow: 0 14px 30px rgba(15, 25, 35, 0.12);
    color: var(--bc-text);
    font-size: 0.9rem;
    font-weight: 600;
}

.bc-flow {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 16px;
}

.bc-flow-step {
    position: relative;
    padding: 24px;
    border-radius: 26px;
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(18, 24, 32, 0.08);
    box-shadow: var(--bc-shadow-soft);
}

.bc-flow-step strong {
    display: inline-flex;
    margin-bottom: 16px;
    color: var(--bc-accent);
    font-size: 0.85rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

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

.bc-module {
    min-height: 220px;
}

.bc-module span {
    display: inline-flex;
    margin-bottom: 16px;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(92, 122, 70, 0.1);
    color: var(--bc-accent-dark);
    font-size: 0.84rem;
    font-weight: 700;
}

.bc-cta-card {
    position: relative;
    overflow: hidden;
    padding: 42px;
    border-radius: 36px;
    background:
        radial-gradient(circle at top right, rgba(142, 174, 111, 0.34), transparent 26%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(241, 242, 236, 0.92));
    border: 1px solid rgba(18, 24, 32, 0.08);
    box-shadow: var(--bc-shadow);
}

.bc-cta-card::after {
    content: "";
    position: absolute;
    width: 280px;
    height: 280px;
    right: -80px;
    bottom: -120px;
    border-radius: 50%;
    background: rgba(92, 122, 70, 0.12);
}

.bc-cta-content {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
}

.bc-cta-copy {
    max-width: 620px;
}

.bc-cta-copy .bc-title {
    margin-bottom: 14px;
}

.bc-footer {
    padding: 28px 0 46px;
}

.bc-footer-shell {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
    padding-top: 18px;
    border-top: 1px solid rgba(18, 24, 32, 0.08);
}

.bc-footer-links {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.bc-footer-links a {
    color: var(--bc-muted);
}

.bc-footer-links a:hover,
.bc-footer-links a:focus-visible {
    color: var(--bc-text);
}

@media (max-width: 1140px) {
    .bc-topbar-shell,
    .bc-cta-content {
        border-radius: 34px;
    }

    .bc-topbar-shell {
        display: grid;
        grid-template-columns: 1fr;
        justify-items: center;
    }

    .bc-hero-grid,
    .bc-showcase-row,
    .bc-showcase-row:nth-child(even) {
        grid-template-columns: 1fr;
    }

    .bc-showcase-row:nth-child(even) .bc-showcase-copy,
    .bc-showcase-row:nth-child(even) .bc-showcase-media {
        order: initial;
    }

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

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

@media (max-width: 760px) {
    .bc-container {
        width: min(calc(100% - 22px), var(--bc-max));
    }

    .bc-topbar {
        padding-top: 12px;
    }

    .bc-topbar-shell {
        padding: 16px;
        border-radius: 28px;
    }

    .bc-nav,
    .bc-actions,
    .bc-hero-actions,
    .bc-doc-actions {
        width: 100%;
    }

    .bc-nav a,
    .bc-button {
        width: 100%;
        justify-content: center;
    }

    .bc-hero {
        padding: 28px 0 42px;
    }

    .bc-hero-copy h1 {
        max-width: none;
    }

    .bc-floating {
        position: static;
        margin-top: 14px;
    }

    .bc-intro-grid,
    .bc-flow,
    .bc-modules-grid {
        grid-template-columns: 1fr;
    }

    .bc-card,
    .bc-showcase-row,
    .bc-flow-step,
    .bc-cta-card {
        border-radius: 24px;
    }

    .bc-showcase-row,
    .bc-hero-card,
    .bc-cta-card {
        padding: 14px;
    }

    .bc-showcase-copy,
    .bc-cta-card {
        padding: 18px;
    }

    .bc-cta-content {
        align-items: flex-start;
        flex-direction: column;
    }

    .bc-footer-shell {
        align-items: flex-start;
        flex-direction: column;
    }
}
