:root {
    --bc-orange: #ff6b1a;
    --bc-orange-dark: #db4f06;
    --bc-orange-soft: #fff0e6;
    --bc-ink: #101828;
    --bc-ink-2: #1d2939;
    --bc-muted: #667085;
    --bc-line: #e7e9ee;
    --bc-wash: #f7f8fa;
    --bc-white: #fff;
    --bc-shadow-sm: 0 12px 35px rgba(16, 24, 40, .07);
    --bc-shadow-lg: 0 30px 90px rgba(16, 24, 40, .15);
}

.home-page {
    color: var(--bc-ink);
    background: var(--bc-white);
}

.home-page main {
    overflow: hidden;
}

.home-shell {
    width: min(1180px, calc(100% - 40px));
    margin-inline: auto;
}

.home-header {
    position: fixed;
    z-index: 100;
    inset: 0 0 auto;
    border-bottom: 1px solid rgba(231, 233, 238, .76);
    background: rgba(255, 255, 255, .88);
    backdrop-filter: blur(20px);
}

.header-row {
    display: flex;
    min-height: 78px;
    align-items: center;
    gap: 36px;
}

.home-brand {
    display: inline-flex;
    flex: 0 0 auto;
    align-items: center;
    gap: 10px;
}

.brand-symbol {
    display: grid;
    width: 39px;
    height: 39px;
    place-items: center;
    border-radius: 12px;
    color: #fff;
    background: linear-gradient(145deg, #ff8c4a, var(--bc-orange));
    box-shadow: 0 10px 25px rgba(255, 107, 26, .25);
    font-size: 20px;
    font-weight: 900;
}

.brand-word {
    font-size: 22px;
    font-weight: 850;
    letter-spacing: -.045em;
}

.home-brand small {
    align-self: flex-end;
    margin: 0 0 9px -7px;
    color: var(--bc-orange);
    font-size: 10px;
    font-weight: 800;
}

.home-nav {
    display: flex;
    align-items: center;
    gap: 28px;
    margin-left: auto;
}

.home-nav a,
.login-link {
    color: #475467;
    font-size: 14px;
    font-weight: 650;
    transition: color .2s ease;
}

.home-nav a:hover,
.login-link:hover {
    color: var(--bc-orange);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 18px;
}

.header-cta {
    display: inline-flex;
    min-height: 42px;
    align-items: center;
    padding: 0 17px;
    border-radius: 11px;
    color: #fff;
    background: var(--bc-ink);
    font-size: 13px;
    font-weight: 750;
    transition: .2s ease;
}

.header-cta:hover {
    background: var(--bc-orange);
    transform: translateY(-1px);
}

.menu-button {
    display: none;
}

.home-hero {
    position: relative;
    padding: 156px 0 0;
    background: linear-gradient(180deg, #fff 0%, #fffaf6 64%, #fff 100%);
}

.hero-orb {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.hero-orb-one {
    width: 560px;
    height: 560px;
    top: -160px;
    right: -210px;
    background: radial-gradient(circle, rgba(255, 107, 26, .17), transparent 66%);
}

.hero-orb-two {
    width: 370px;
    height: 370px;
    top: 250px;
    left: -260px;
    background: radial-gradient(circle, rgba(255, 192, 153, .2), transparent 68%);
}

.hero-grid {
    position: relative;
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    min-height: 590px;
    align-items: center;
    gap: 60px;
}

.kicker {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 22px;
    color: #9a3412;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.kicker span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--bc-orange);
    box-shadow: 0 0 0 5px var(--bc-orange-soft);
}

.home-hero h1 {
    max-width: 650px;
    margin: 0;
    font-size: clamp(52px, 5.7vw, 78px);
    font-weight: 800;
    line-height: .99;
    letter-spacing: -.067em;
}

.home-hero h1 em {
    display: block;
    color: var(--bc-orange);
    font-style: normal;
}

.hero-copy > p {
    max-width: 650px;
    margin: 27px 0 0;
    color: var(--bc-muted);
    font-size: 18px;
    line-height: 1.75;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-top: 34px;
}

.primary-button {
    display: inline-flex;
    min-height: 52px;
    align-items: center;
    justify-content: center;
    gap: 22px;
    padding: 0 20px;
    border: 0;
    border-radius: 13px;
    color: #fff;
    background: var(--bc-orange);
    box-shadow: 0 16px 35px rgba(255, 107, 26, .25);
    font-weight: 800;
    cursor: pointer;
    transition: .2s ease;
}

.primary-button:hover {
    background: var(--bc-orange-dark);
    transform: translateY(-2px);
}

.text-button {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    font-size: 14px;
    font-weight: 750;
}

.text-button span {
    color: var(--bc-orange);
    font-size: 19px;
}

.hero-trust {
    display: flex;
    align-items: center;
    gap: 17px;
    margin-top: 40px;
}

.tech-stack {
    display: flex;
    padding-left: 8px;
}

.tech-stack span {
    display: grid;
    width: 34px;
    height: 34px;
    margin-left: -8px;
    place-items: center;
    border: 3px solid #fff;
    border-radius: 50%;
    color: #fff;
    background: var(--bc-ink);
    font-size: 8px;
    font-weight: 850;
}

.tech-stack span:nth-child(2) {
    background: var(--bc-orange);
}

.tech-stack span:nth-child(3) {
    color: var(--bc-ink);
    background: #fed7aa;
}

.hero-trust p {
    margin: 0;
    color: #98a2b3;
    font-size: 12px;
    line-height: 1.45;
}

.hero-trust strong {
    color: #344054;
    font-size: 13px;
}

.hero-stage {
    position: relative;
    display: grid;
    min-height: 540px;
    place-items: center;
}

.stage-glow {
    position: absolute;
    width: 480px;
    height: 430px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 107, 26, .18), transparent 70%);
}

.app-window {
    position: relative;
    z-index: 2;
    width: 620px;
    max-width: 100%;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .8);
    border-radius: 24px;
    background: #fff;
    box-shadow: 0 40px 100px rgba(16, 24, 40, .18), 0 0 0 8px rgba(255, 255, 255, .55);
    transform: perspective(1000px) rotateY(-4deg);
}

.window-bar {
    display: flex;
    height: 52px;
    align-items: center;
    gap: 18px;
    padding: 0 17px;
    border-bottom: 1px solid #eef0f3;
    background: #fbfbfc;
}

.window-dots {
    display: flex;
    gap: 6px;
}

.window-dots span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #d0d5dd;
}

.window-dots span:first-child {
    background: #ff8450;
}

.window-title {
    margin: 0 auto;
    color: #98a2b3;
    font-size: 10px;
    font-weight: 700;
}

.window-user {
    display: grid;
    width: 26px;
    height: 26px;
    place-items: center;
    border-radius: 9px;
    color: #fff;
    background: var(--bc-ink);
    font-size: 8px;
    font-weight: 800;
}

.window-body {
    display: grid;
    grid-template-columns: 60px 1fr;
    min-height: 390px;
}

.window-sidebar {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
    padding-top: 18px;
    background: var(--bc-ink);
}

.sidebar-logo {
    display: grid;
    width: 31px;
    height: 31px;
    margin-bottom: 10px;
    place-items: center;
    border-radius: 9px;
    color: #fff;
    background: var(--bc-orange);
    font-weight: 900;
}

.window-sidebar > span {
    width: 23px;
    height: 6px;
    border-radius: 4px;
    background: rgba(255, 255, 255, .15);
}

.window-sidebar > span.active {
    height: 23px;
    background: var(--bc-orange);
}

.window-content {
    padding: 27px;
    background: #f7f8fa;
}

.window-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.window-head div {
    display: grid;
    gap: 5px;
}

.window-head small {
    color: #98a2b3;
    font-size: 8px;
    font-weight: 800;
    letter-spacing: .13em;
}

.window-head strong {
    font-size: 18px;
    letter-spacing: -.03em;
}

.window-head > b {
    padding: 8px 11px;
    border-radius: 8px;
    color: #fff;
    background: var(--bc-orange);
    font-size: 8px;
}

.metric-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-top: 22px;
}

.metric-row > div {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: end;
    gap: 5px;
    padding: 13px;
    border: 1px solid #eaecf0;
    border-radius: 12px;
    background: #fff;
}

.metric-row span {
    grid-column: 1/-1;
    color: #98a2b3;
    font-size: 8px;
}

.metric-row strong {
    font-size: 20px;
    letter-spacing: -.05em;
}

.metric-row i {
    color: #12b76a;
    font-size: 7px;
    font-style: normal;
}

.activity-panel {
    margin-top: 13px;
    padding: 15px;
    border: 1px solid #eaecf0;
    border-radius: 13px;
    background: #fff;
}

.panel-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
}

.panel-title strong {
    font-size: 10px;
}

.panel-title span {
    color: #12b76a;
    font-size: 7px;
}

.activity-item {
    display: grid;
    grid-template-columns: 30px 1fr auto;
    align-items: center;
    gap: 10px;
    padding: 9px 0;
    border-top: 1px solid #f1f2f4;
}

.activity-icon {
    display: grid;
    width: 29px;
    height: 29px;
    place-items: center;
    border-radius: 9px;
    color: #fff;
    font-size: 9px;
    font-weight: 850;
}

.activity-icon.orange {
    background: var(--bc-orange);
}

.activity-icon.dark {
    background: var(--bc-ink);
}

.activity-item > div:nth-child(2) {
    display: grid;
    gap: 2px;
}

.activity-item strong {
    font-size: 8px;
}

.activity-item span {
    color: #98a2b3;
    font-size: 6px;
}

.activity-item > b {
    padding: 3px 6px;
    border-radius: 5px;
    color: #067647;
    background: #ecfdf3;
    font-size: 6px;
}

.chart-bars {
    display: flex;
    height: 35px;
    align-items: flex-end;
    gap: 5px;
    margin-top: 9px;
}

.chart-bars span {
    flex: 1;
    height: 30%;
    border-radius: 3px 3px 0 0;
    background: #ffe5d3;
}

.chart-bars span:nth-child(2) { height: 45%; }
.chart-bars span:nth-child(3) { height: 38%; }
.chart-bars span:nth-child(4) { height: 70%; }
.chart-bars span:nth-child(5) { height: 55%; }
.chart-bars span:nth-child(6) { height: 85%; }
.chart-bars span:nth-child(7) { height: 100%; background: var(--bc-orange); }

.floating-card {
    position: absolute;
    z-index: 4;
    display: flex;
    align-items: center;
    border: 1px solid rgba(234, 236, 240, .85);
    background: rgba(255, 255, 255, .94);
    backdrop-filter: blur(15px);
    box-shadow: var(--bc-shadow-lg);
}

.floating-status {
    bottom: 46px;
    left: -15px;
    gap: 10px;
    padding: 13px 16px;
    border-radius: 14px;
}

.floating-status .check {
    display: grid;
    width: 30px;
    height: 30px;
    place-items: center;
    border-radius: 9px;
    color: #067647;
    background: #d1fadf;
    font-weight: 900;
}

.floating-status div,
.floating-code {
    display: grid;
    gap: 2px;
}

.floating-status strong,
.floating-code strong {
    font-size: 9px;
}

.floating-status small {
    color: #98a2b3;
    font-size: 7px;
}

.floating-code {
    top: 51px;
    right: -18px;
    gap: 4px;
    padding: 14px 17px;
    border-radius: 13px;
}

.floating-code small {
    color: var(--bc-orange);
    font-size: 7px;
    font-weight: 850;
    letter-spacing: .1em;
}

.value-strip {
    position: relative;
    z-index: 5;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    margin-top: 42px;
    border-top: 1px solid var(--bc-line);
    border-bottom: 1px solid var(--bc-line);
}

.value-strip div {
    display: grid;
    gap: 4px;
    padding: 25px 22px;
    border-right: 1px solid var(--bc-line);
}

.value-strip div:last-child {
    border-right: 0;
}

.value-strip strong {
    font-size: 13px;
}

.value-strip span {
    color: #98a2b3;
    font-size: 11px;
}

.home-section {
    padding: 120px 0;
}

.section-tag {
    display: inline-block;
    margin-bottom: 18px;
    color: var(--bc-orange);
    font-size: 11px;
    font-weight: 850;
    letter-spacing: .15em;
}

.section-tag.light {
    color: #ff9c65;
}

.section-intro h2,
.bot-heading h2,
.custom-copy h2,
.offer-copy h2,
.project-copy h2 {
    margin: 0;
    font-size: clamp(40px, 5vw, 62px);
    font-weight: 780;
    line-height: 1.05;
    letter-spacing: -.06em;
}

h2 em {
    color: var(--bc-orange);
    font-style: normal;
}

.split-intro,
.bot-heading {
    display: grid;
    grid-template-columns: 1fr .6fr;
    align-items: end;
    gap: 80px;
    margin-bottom: 48px;
}

.split-intro > p,
.bot-heading > p {
    margin: 0 0 8px;
    color: var(--bc-muted);
    font-size: 16px;
    line-height: 1.75;
}

.product-list {
    display: grid;
    gap: 24px;
}

.product-card {
    display: grid;
    grid-template-columns: .92fr 1.08fr;
    min-height: 450px;
    overflow: hidden;
    border: 1px solid var(--bc-line);
    border-radius: 28px;
    background: #fff;
    box-shadow: var(--bc-shadow-sm);
    transition: .25s ease;
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 30px 80px rgba(16, 24, 40, .11);
}

.product-card:nth-child(even) .product-visual { order: 2; }
.product-card:nth-child(even) .product-content { order: 1; }

.product-visual {
    position: relative;
    min-height: 450px;
    overflow: hidden;
    padding: 30px;
}

.tone-orange .product-visual {
    color: #fff;
    background: linear-gradient(145deg, #ff7a2e, #ee4e00);
}

.tone-ink .product-visual {
    color: #fff;
    background: linear-gradient(145deg, #1d2939, #0b1018);
}

.tone-soft .product-visual {
    color: var(--bc-ink);
    background: linear-gradient(145deg, #fff5ec, #ffe3cf);
}

.visual-top {
    position: relative;
    z-index: 3;
    display: flex;
    justify-content: space-between;
    font-size: 10px;
    font-weight: 850;
    letter-spacing: .13em;
}

.visual-top i {
    opacity: .55;
    font-size: 13px;
    font-style: normal;
}

.product-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 52px 60px;
}

.product-status {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
    color: #98a2b3;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.product-status > span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #fdb022;
    box-shadow: 0 0 0 4px #fef0c7;
}

.product-status > span.live {
    background: #12b76a;
    box-shadow: 0 0 0 4px #d1fadf;
}

.product-content h3 {
    margin: 0;
    font-size: 36px;
    letter-spacing: -.045em;
}

.product-content > p {
    margin: 17px 0 24px;
    color: var(--bc-muted);
    font-size: 15px;
    line-height: 1.75;
}

.product-content ul {
    display: grid;
    gap: 10px;
    margin: 0;
    padding: 0;
    color: var(--bc-orange);
    font-size: 12px;
    font-weight: 900;
    list-style: none;
}

.product-content li span {
    margin-left: 8px;
    color: #475467;
    font-weight: 600;
}

.product-actions {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-top: 30px;
}

.card-button {
    display: inline-flex;
    min-height: 45px;
    align-items: center;
    gap: 22px;
    padding: 0 16px;
    border: 0;
    border-radius: 11px;
    color: #fff;
    background: var(--bc-ink);
    font-size: 12px;
    font-weight: 800;
    cursor: pointer;
    transition: .2s ease;
}

.card-button:hover {
    background: var(--bc-orange);
}

.product-actions > a {
    color: #667085;
    font-size: 12px;
    font-weight: 700;
}

.bonus-visual,
.fintech-visual,
.affiliate-visual {
    position: absolute;
    inset: 75px 30px 25px;
}

.bonus-ring {
    position: absolute;
    display: grid;
    width: 210px;
    height: 210px;
    top: 28px;
    left: 50%;
    place-items: center;
    border: 22px solid rgba(255, 255, 255, .16);
    border-right-color: #fff;
    border-radius: 50%;
    transform: translateX(-50%) rotate(-22deg);
}

.bonus-ring strong,
.bonus-ring span {
    transform: rotate(22deg);
}

.bonus-ring strong {
    margin-top: 42px;
    font-size: 48px;
    letter-spacing: -.07em;
}

.bonus-ring span {
    align-self: start;
    margin-top: -28px;
    font-size: 9px;
    opacity: .75;
}

.bonus-stats {
    position: absolute;
    inset: auto 0 8px;
    display: flex;
    height: 90px;
    align-items: flex-end;
    gap: 8px;
}

.bonus-stats span {
    flex: 1;
    height: 28%;
    border-radius: 6px 6px 0 0;
    background: rgba(255, 255, 255, .19);
}

.bonus-stats span:nth-child(2) { height: 48%; }
.bonus-stats span:nth-child(3) { height: 72%; background: rgba(255, 255, 255, .35); }
.bonus-stats span:nth-child(4) { height: 100%; background: #fff; }

.visual-chip,
.coming-label {
    position: absolute;
    top: 7px;
    right: 2px;
    padding: 8px 10px;
    border-radius: 9px;
    background: rgba(255, 255, 255, .18);
    font-size: 7px;
    font-weight: 850;
    letter-spacing: .08em;
}

.fintech-balance {
    display: grid;
    gap: 5px;
}

.fintech-balance small {
    color: #98a2b3;
    font-size: 9px;
}

.fintech-balance strong {
    font-size: 42px;
    letter-spacing: -.06em;
}

.fintech-balance span {
    width: max-content;
    padding: 5px 8px;
    border-radius: 7px;
    color: #6ce9a6;
    background: rgba(18, 183, 106, .13);
    font-size: 8px;
}

.fintech-bars {
    position: absolute;
    inset: 140px 0 58px;
    display: flex;
    align-items: flex-end;
    gap: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, .1);
}

.fintech-bars i {
    flex: 1;
    height: 25%;
    border-radius: 7px 7px 0 0;
    background: rgba(255, 255, 255, .09);
}

.fintech-bars i:nth-child(2) { height: 42%; }
.fintech-bars i:nth-child(3) { height: 35%; }
.fintech-bars i:nth-child(4) { height: 63%; }
.fintech-bars i:nth-child(5) { height: 52%; }
.fintech-bars i:nth-child(6) { height: 78%; background: rgba(255, 107, 26, .45); }
.fintech-bars i:nth-child(7) { height: 96%; background: var(--bc-orange); }

.fintech-feed {
    position: absolute;
    inset: auto 0 0;
    display: flex;
    gap: 8px;
}

.fintech-feed span {
    flex: 1;
    height: 30px;
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 8px;
}

.affiliate-node {
    position: absolute;
    display: grid;
    place-items: center;
    border: 1px solid rgba(16, 24, 40, .1);
    border-radius: 50%;
    color: var(--bc-orange-dark);
    background: #fff;
    box-shadow: 0 20px 45px rgba(136, 64, 20, .13);
    font-size: 10px;
    font-weight: 850;
}

.root-node {
    width: 130px;
    height: 130px;
    top: 62px;
    left: 50%;
    color: #fff;
    background: var(--bc-orange);
    font-size: 46px;
    transform: translateX(-50%);
}

.node-one,
.node-two {
    width: 76px;
    height: 76px;
    bottom: 15px;
}

.node-one { left: 42px; }
.node-two { right: 42px; }

.node-line {
    position: absolute;
    width: 2px;
    height: 110px;
    top: 173px;
    left: 50%;
    background: rgba(255, 107, 26, .25);
    transform-origin: top;
}

.node-line.line-one { transform: rotate(43deg); }
.node-line.line-two { transform: rotate(-43deg); }

.coming-label {
    color: var(--bc-orange-dark);
    background: rgba(255, 255, 255, .72);
}

.bots-section {
    color: #fff;
    background: var(--bc-ink);
}

.bot-heading > p {
    color: #98a2b3;
}

.bot-heading h2 em,
.offer-copy h2 em {
    color: #ff9c65;
}

.bot-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.bot-card {
    position: relative;
    min-height: 360px;
    padding: 28px;
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 22px;
    background: rgba(255, 255, 255, .035);
    transition: .25s ease;
}

.bot-card:hover {
    border-color: rgba(255, 107, 26, .5);
    background: rgba(255, 255, 255, .06);
    transform: translateY(-5px);
}

.bot-no {
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 12px;
    color: #ff9c65;
    font-size: 10px;
    font-weight: 850;
}

.bot-card h3 {
    margin: 38px 0 12px;
    font-size: 24px;
    letter-spacing: -.035em;
}

.bot-card p {
    margin: 0;
    color: #98a2b3;
    font-size: 13px;
    line-height: 1.75;
}

.tag-row {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin-top: 24px;
}

.tag-row span {
    padding: 6px 8px;
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 7px;
    color: #cfd4dc;
    font-size: 8px;
    font-weight: 750;
}

.bot-card > a {
    position: absolute;
    inset: auto 28px 26px;
    display: flex;
    justify-content: space-between;
    padding-top: 18px;
    border-top: 1px solid rgba(255, 255, 255, .1);
    font-size: 11px;
    font-weight: 750;
}

.bot-card > a span {
    color: var(--bc-orange);
}

.custom-section {
    background: #fffaf6;
}

.custom-grid,
.offer-grid,
.project-grid {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    align-items: center;
    gap: 90px;
}

.custom-copy > p,
.offer-copy > p,
.project-copy > p {
    margin: 24px 0 0;
    color: var(--bc-muted);
    line-height: 1.8;
}

.custom-points {
    display: grid;
    gap: 20px;
    margin-top: 35px;
}

.custom-points > div {
    display: grid;
    grid-template-columns: 35px 1fr;
    gap: 13px;
}

.custom-points strong {
    color: var(--bc-orange);
    font-size: 10px;
}

.custom-points span {
    display: grid;
    gap: 4px;
    color: var(--bc-muted);
    font-size: 12px;
}

.custom-points b {
    color: var(--bc-ink);
    font-size: 13px;
}

.architecture-card {
    overflow: hidden;
    border: 1px solid #eadfd7;
    border-radius: 26px;
    background: #fff;
    box-shadow: 0 30px 80px rgba(111, 66, 36, .1);
}

.architecture-head,
.architecture-foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 22px;
    border-bottom: 1px solid #f0e9e4;
}

.architecture-head span {
    color: #98a2b3;
    font-size: 8px;
    font-weight: 800;
    letter-spacing: .11em;
}

.architecture-head i {
    color: #12b76a;
    font-size: 8px;
    font-style: normal;
}

.architecture-body {
    position: relative;
    height: 410px;
    background: radial-gradient(circle, #fff0e7 1px, transparent 1px);
    background-size: 18px 18px;
}

.arch-center {
    position: absolute;
    z-index: 2;
    display: grid;
    width: 130px;
    height: 130px;
    top: 140px;
    left: 50%;
    place-items: center;
    border-radius: 28px;
    color: #fff;
    background: var(--bc-ink);
    box-shadow: 0 25px 60px rgba(16, 24, 40, .22);
    transform: translateX(-50%);
}

.arch-center span {
    display: grid;
    width: 38px;
    height: 38px;
    margin-top: 17px;
    place-items: center;
    border-radius: 11px;
    background: var(--bc-orange);
    font-size: 19px;
    font-weight: 900;
}

.arch-center strong {
    align-self: start;
    margin-top: -8px;
    font-size: 11px;
}

.arch-item {
    position: absolute;
    z-index: 2;
    display: grid;
    min-width: 120px;
    gap: 4px;
    padding: 13px;
    border: 1px solid #ece3dc;
    border-radius: 13px;
    background: #fff;
    box-shadow: var(--bc-shadow-sm);
}

.arch-item small { color: var(--bc-orange); font-size: 7px; font-weight: 850; }
.arch-item strong { font-size: 11px; }
.arch-item span { color: #98a2b3; font-size: 8px; }
.item-a { top: 45px; left: 45px; }
.item-b { top: 45px; right: 45px; }
.item-c { bottom: 42px; left: 45px; }
.item-d { right: 45px; bottom: 42px; }

.architecture-foot {
    justify-content: center;
    gap: 8px;
    border-top: 1px solid #f0e9e4;
    border-bottom: 0;
}

.architecture-foot span {
    padding: 6px 9px;
    border-radius: 7px;
    color: #667085;
    background: #f7f8fa;
    font-size: 8px;
}

.section-intro.centered {
    max-width: 760px;
    margin: 0 auto 52px;
    text-align: center;
}

.section-intro.centered > p {
    max-width: 620px;
    margin: 20px auto 0;
    color: var(--bc-muted);
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    overflow: hidden;
    border: 1px solid var(--bc-line);
    border-radius: 24px;
}

.process-card {
    position: relative;
    min-height: 300px;
    padding: 26px;
    border-right: 1px solid var(--bc-line);
    background: #fff;
}

.process-card:last-child {
    border: 0;
}

.process-card > span {
    color: #cbd0d9;
    font-size: 10px;
    font-weight: 850;
}

.process-icon {
    position: relative;
    display: grid;
    width: 65px;
    height: 65px;
    margin: 43px 0 27px;
    place-items: center;
    border-radius: 20px;
    background: var(--bc-orange-soft);
}

.process-icon i {
    width: 19px;
    height: 19px;
    border: 5px solid var(--bc-orange);
    border-radius: 50%;
}

.process-icon::after {
    position: absolute;
    width: 18px;
    height: 3px;
    right: -9px;
    border-radius: 2px;
    background: var(--bc-orange);
    content: "";
    transform: rotate(-45deg);
}

.process-card h3 {
    margin: 0 0 10px;
    font-size: 19px;
    letter-spacing: -.03em;
}

.process-card p {
    margin: 0;
    color: var(--bc-muted);
    font-size: 12px;
    line-height: 1.7;
}

.offer-section {
    color: #fff;
    background: var(--bc-orange);
}

.offer-grid {
    grid-template-columns: .8fr 1.2fr;
}

.offer-copy > p {
    color: rgba(255, 255, 255, .73);
}

.offer-options {
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .2);
    border-radius: 22px;
    background: rgba(255, 255, 255, .08);
}

.offer-options > div {
    display: grid;
    grid-template-columns: 36px 1fr;
    gap: 3px 13px;
    padding: 26px;
    border-bottom: 1px solid rgba(255, 255, 255, .16);
}

.offer-options > div:last-child {
    border: 0;
}

.offer-options span {
    grid-row: 1/3;
    color: rgba(255, 255, 255, .6);
    font-size: 10px;
}

.offer-options strong {
    font-size: 16px;
}

.offer-options p {
    margin: 3px 0 0;
    color: rgba(255, 255, 255, .67);
    font-size: 12px;
}

.project-section {
    padding: 120px 0;
    background: #f7f8fa;
}

.project-grid {
    grid-template-columns: .7fr 1.3fr;
    align-items: start;
    gap: 70px;
}

.privacy-note {
    display: flex;
    gap: 13px;
    margin-top: 30px;
    padding: 17px;
    border: 1px solid #e4e7ec;
    border-radius: 15px;
    background: #fff;
}

.privacy-note > span {
    display: grid;
    flex: 0 0 34px;
    height: 34px;
    place-items: center;
    border-radius: 10px;
    color: var(--bc-orange);
    background: var(--bc-orange-soft);
}

.privacy-note p {
    margin: 0;
    color: var(--bc-muted);
    font-size: 11px;
    line-height: 1.6;
}

.project-form {
    min-height: 500px;
    padding: 34px;
    border: 1px solid var(--bc-line);
    border-radius: 24px;
    background: #fff;
    box-shadow: var(--bc-shadow-sm);
}

.form-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 25px;
}

.form-top strong {
    font-size: 17px;
}

.form-top span {
    color: #98a2b3;
    font-size: 9px;
}

.field-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.field-row.triple {
    grid-template-columns: repeat(3, 1fr);
}

.request-form label {
    display: grid;
    gap: 7px;
    margin-bottom: 15px;
    color: #344054;
    font-size: 11px;
    font-weight: 750;
}

.request-form label span i {
    color: #98a2b3;
    font-size: 9px;
    font-style: normal;
    font-weight: 500;
}

.request-form input,
.request-form textarea,
.request-form select {
    width: 100%;
    border: 1px solid #dfe3e8;
    border-radius: 11px;
    outline: none;
    color: var(--bc-ink);
    background: #fbfcfd;
    transition: .2s ease;
}

.request-form input,
.request-form select {
    height: 47px;
    padding: 0 13px;
}

.request-form textarea {
    min-height: 110px;
    padding: 13px;
    resize: vertical;
}

.request-form input:focus,
.request-form textarea:focus,
.request-form select:focus {
    border-color: var(--bc-orange);
    background: #fff;
    box-shadow: 0 0 0 4px var(--bc-orange-soft);
}

.form-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin-top: 4px;
}

.form-bottom small {
    max-width: 260px;
    color: #98a2b3;
    font-size: 9px;
    line-height: 1.5;
}

.form-feedback {
    display: none;
    margin: 4px 0 14px;
    padding: 11px 13px;
    border-radius: 10px;
    color: #b42318;
    background: #fef3f2;
    font-size: 11px;
}

.form-feedback.is-visible {
    display: block;
}

.form-success {
    display: flex;
    min-height: 430px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.form-success[hidden],
.form-content[hidden] {
    display: none;
}

.form-success > span {
    display: grid;
    width: 70px;
    height: 70px;
    place-items: center;
    border-radius: 22px;
    color: #067647;
    background: #d1fadf;
    font-size: 28px;
    font-weight: 900;
}

.form-success h3 {
    margin: 23px 0 8px;
    font-size: 27px;
}

.form-success p {
    margin: 0;
    color: var(--bc-muted);
}

.request-number {
    margin-top: 13px;
    color: var(--bc-orange);
    font-size: 11px;
}

.honeypot {
    position: absolute !important;
    left: -9999px !important;
    width: 1px !important;
    height: 1px !important;
    opacity: 0 !important;
}

.home-footer {
    color: #fff;
    background: #0c121c;
}

.footer-main {
    display: grid;
    grid-template-columns: 1.4fr .7fr .7fr 1fr;
    gap: 55px;
    padding: 74px 0 55px;
}

.home-brand.inverse .brand-word {
    color: #fff;
}

.footer-brand > p {
    max-width: 280px;
    margin: 20px 0 0;
    color: #98a2b3;
    font-size: 12px;
    line-height: 1.7;
}

.footer-links {
    display: grid;
    align-content: start;
    gap: 13px;
}

.footer-links strong,
.footer-contact strong {
    margin-bottom: 8px;
    font-size: 11px;
}

.footer-links a {
    color: #98a2b3;
    font-size: 11px;
}

.footer-contact p {
    margin: 12px 0 16px;
    color: #98a2b3;
    font-size: 11px;
    line-height: 1.7;
}

.footer-contact a {
    display: flex;
    justify-content: space-between;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, .15);
    font-size: 11px;
    font-weight: 750;
}

.footer-contact a span {
    color: var(--bc-orange);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    padding: 22px 0;
    border-top: 1px solid rgba(255, 255, 255, .09);
    color: #667085;
    font-size: 9px;
}

.footer-bottom div {
    display: flex;
    gap: 18px;
}

.modal-backdrop {
    position: fixed;
    z-index: 500;
    inset: 0;
    display: grid;
    padding: 20px;
    place-items: center;
    background: rgba(10, 15, 24, .72);
    backdrop-filter: blur(10px);
}

.modal-backdrop[hidden] {
    display: none;
}

.demo-modal {
    position: relative;
    width: min(580px, 100%);
    max-height: calc(100vh - 40px);
    overflow-y: auto;
    padding: 36px;
    border-radius: 25px;
    background: #fff;
    box-shadow: 0 40px 120px rgba(0, 0, 0, .35);
}

.modal-close {
    position: absolute;
    top: 17px;
    right: 17px;
    display: grid;
    width: 36px;
    height: 36px;
    place-items: center;
    border: 0;
    border-radius: 10px;
    color: #667085;
    background: #f2f4f7;
    font-size: 23px;
    cursor: pointer;
}

.demo-modal h2 {
    max-width: 450px;
    margin: 0;
    font-size: 32px;
    letter-spacing: -.045em;
}

.demo-modal > .modal-form-content > p {
    margin: 10px 0 24px;
    color: var(--bc-muted);
}

.full-button {
    width: 100%;
}

.modal-success {
    min-height: 360px;
}

body.modal-open {
    overflow: hidden;
}

@media (max-width: 1080px) {
    .home-nav { gap: 17px; }
    .home-nav a { font-size: 12px; }
    .login-link { display: none; }
    .hero-grid { grid-template-columns: 1fr 1fr; gap: 25px; }
    .app-window { width: 560px; }
    .product-content { padding: 42px; }
    .custom-grid { gap: 45px; }
    .project-grid { grid-template-columns: .85fr 1.15fr; gap: 35px; }
}

@media (max-width: 860px) {
    .home-shell { width: min(100% - 30px, 1180px); }
    .header-row { min-height: 70px; }
    .header-actions { margin-left: auto; }
    .header-cta { display: none; }
    .menu-button {
        display: grid;
        width: 40px;
        height: 40px;
        place-items: center;
        border: 0;
        border-radius: 10px;
        background: #f2f4f7;
    }
    .menu-button span {
        grid-area: 1/1;
        width: 18px;
        height: 2px;
        background: var(--bc-ink);
        transform: translateY(-3px);
    }
    .menu-button span:last-child { transform: translateY(3px); }
    .home-nav {
        position: absolute;
        display: none;
        inset: 70px 15px auto;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 10px;
        border: 1px solid var(--bc-line);
        border-radius: 16px;
        background: #fff;
        box-shadow: var(--bc-shadow-lg);
    }
    .home-nav.is-open { display: flex; }
    .home-nav a {
        padding: 13px;
        border-bottom: 1px solid #f1f2f4;
        font-size: 13px;
    }
    .home-hero { padding-top: 120px; }
    .hero-grid,
    .split-intro,
    .bot-heading,
    .custom-grid,
    .offer-grid,
    .project-grid {
        grid-template-columns: 1fr;
    }
    .hero-grid { gap: 35px; }
    .hero-copy { text-align: center; }
    .hero-copy > p { margin-inline: auto; }
    .kicker,
    .hero-actions,
    .hero-trust { justify-content: center; }
    .hero-stage { min-height: 510px; }
    .app-window { width: min(620px, calc(100% - 22px)); transform: none; }
    .floating-status { left: 0; }
    .floating-code { right: 0; }
    .value-strip { grid-template-columns: 1fr 1fr; }
    .value-strip div:nth-child(2) { border-right: 0; }
    .value-strip div:nth-child(-n+2) { border-bottom: 1px solid var(--bc-line); }
    .home-section { padding: 90px 0; }
    .split-intro,
    .bot-heading { gap: 25px; }
    .product-card { grid-template-columns: 1fr; }
    .product-card:nth-child(even) .product-visual { order: 1; }
    .product-card:nth-child(even) .product-content { order: 2; }
    .product-visual { min-height: 400px; }
    .product-content { padding: 38px; }
    .bot-grid { grid-template-columns: 1fr; }
    .bot-card { min-height: 320px; }
    .architecture-card { width: 100%; max-width: 650px; margin: 0 auto; }
    .process-grid { grid-template-columns: 1fr 1fr; }
    .process-card:nth-child(2) { border-right: 0; }
    .process-card:nth-child(-n+2) { border-bottom: 1px solid var(--bc-line); }
    .project-grid { gap: 40px; }
    .footer-main { grid-template-columns: 1.3fr 1fr 1fr; }
    .footer-contact { grid-column: 1/-1; }
}

@media (max-width: 600px) {
    .home-shell { width: min(100% - 24px, 1180px); }
    .brand-word { font-size: 20px; }
    .home-hero { padding-top: 112px; }
    .home-hero h1 { font-size: 46px; }
    .hero-copy > p { font-size: 16px; }
    .hero-actions { flex-direction: column; gap: 16px; }
    .hero-actions .primary-button { width: 100%; }
    .hero-stage { min-height: 380px; margin-top: 15px; }
    .app-window { width: 620px; max-width: none; transform: scale(.78); transform-origin: center; }
    .floating-card { display: none; }
    .value-strip { margin-top: 0; }
    .value-strip div { padding: 19px 14px; }
    .value-strip strong { font-size: 11px; }
    .value-strip span { font-size: 9px; }
    .home-section { padding: 75px 0; }
    .section-intro h2,
    .bot-heading h2,
    .custom-copy h2,
    .offer-copy h2,
    .project-copy h2 { font-size: 39px; }
    .product-visual { min-height: 330px; }
    .product-content { padding: 28px 22px; }
    .product-content h3 { font-size: 29px; }
    .product-actions { align-items: flex-start; flex-direction: column; gap: 15px; }
    .bonus-visual,
    .fintech-visual,
    .affiliate-visual {
        inset: 55px 5px 5px;
        transform: scale(.8);
        transform-origin: center;
    }
    .architecture-body { height: 400px; }
    .arch-item { min-width: 98px; }
    .item-a,
    .item-c { left: 15px; }
    .item-b,
    .item-d { right: 15px; }
    .process-grid { grid-template-columns: 1fr; }
    .process-card {
        min-height: 260px;
        border-right: 0;
        border-bottom: 1px solid var(--bc-line);
    }
    .offer-options > div { padding: 21px; }
    .project-section { padding: 75px 0; }
    .project-form { padding: 22px 17px; }
    .field-row,
    .field-row.triple { grid-template-columns: 1fr; }
    .form-bottom { align-items: stretch; flex-direction: column; }
    .form-bottom .primary-button { width: 100%; }
    .footer-main { grid-template-columns: 1fr 1fr; gap: 38px 25px; padding-top: 55px; }
    .footer-brand,
    .footer-contact { grid-column: 1/-1; }
    .footer-bottom { align-items: center; flex-direction: column; gap: 13px; text-align: center; }
    .demo-modal { padding: 28px 20px; }
    .demo-modal h2 { font-size: 27px; }
}

@media (prefers-reduced-motion: no-preference) {
    .app-window {
        animation: float-window 6s ease-in-out infinite;
    }

    @keyframes float-window {
        0%, 100% { transform: perspective(1000px) rotateY(-4deg) translateY(0); }
        50% { transform: perspective(1000px) rotateY(-4deg) translateY(-9px); }
    }
}

