:root {
  --b-canvas: #f4f2eb;
  --b-paper: #fffdfa;
  --b-paper-soft: #ebe9e2;
  --b-ink: #17211f;
  --b-muted: #5b6561;
  --b-line: #d5d5cd;
  --b-line-strong: #aeb8b3;
  --b-teal: #087a70;
  --b-teal-dark: #075e57;
  --b-teal-soft: #c8ebe5;
  --b-teal-pale: #e7f4f1;
  --b-danger: #915043;
  --b-shadow: 0 28px 72px rgba(20, 77, 70, .14);
  --b-radius: 22px;
  --b-control-radius: 11px;
  color-scheme: light;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  overflow-x: hidden;
  background: var(--b-canvas);
  color: var(--b-ink);
  font: 16px/1.55 "Aptos", "Avenir Next", "Segoe UI Variable", "Segoe UI", system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
}
button, input, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
a { color: inherit; }
[hidden] { display: none !important; }
.b-icon-sprite { position: absolute; width: 0; height: 0; overflow: hidden; pointer-events: none; }
.b-label-icon, .b-heading-icon, .b-flow__meta svg, .b-method__icon, .b-case__icon svg, .b-case__result svg { fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }

.b-container { width: min(1220px, calc(100% - 48px)); margin-inline: auto; }
.b-skip {
  position: fixed;
  z-index: 30;
  top: 10px;
  left: 10px;
  padding: 10px 14px;
  border-radius: var(--b-control-radius);
  background: var(--b-ink);
  color: var(--b-paper);
  transform: translateY(-160%);
}
.b-skip:focus { transform: none; }

.b-nav {
  position: relative;
  z-index: 10;
  width: min(1320px, calc(100% - 48px));
  min-height: 72px;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  border-bottom: 1px solid var(--b-line);
}
.b-brand { display: inline-flex; align-items: center; gap: 11px; text-decoration: none; }
.b-brand img { display: block; border-radius: 10px; box-shadow: 0 8px 22px rgba(23, 33, 31, .15); }
.b-brand strong { font-size: 19px; letter-spacing: -.035em; }
.b-nav nav, .b-footer nav { display: flex; align-items: center; gap: 26px; }
.b-nav nav > a:not(.b-button), .b-footer nav a { color: var(--b-muted); font-size: 14px; font-weight: 680; text-decoration: none; }
.b-nav nav > a:not(.b-button):hover, .b-footer nav a:hover { color: var(--b-teal-dark); }

.b-button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 18px;
  border: 1px solid var(--b-teal);
  border-radius: var(--b-control-radius);
  background: var(--b-teal);
  color: var(--b-paper);
  font-weight: 780;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
  transition: transform .2s ease, background-color .2s ease, border-color .2s ease;
}
.b-button:hover { background: var(--b-teal-dark); border-color: var(--b-teal-dark); transform: translateY(-2px); }
.b-button:active { transform: translateY(1px); }
.b-button--small { min-height: 38px; padding: 7px 12px; font-size: 13px; }
.b-button--paper { background: var(--b-paper); border-color: var(--b-paper); color: var(--b-ink); }
.b-button--paper:hover { background: var(--b-teal-soft); border-color: var(--b-teal-soft); }
.b-button:disabled { opacity: .62; cursor: wait; transform: none; }
.b-button:focus-visible, .b-link:focus-visible, .b-scroll-cue:focus-visible, .b-nav a:focus-visible, .b-demo button:focus-visible, .b-mosaic button:focus-visible, input:focus-visible, textarea:focus-visible, .b-footer a:focus-visible {
  outline: 3px solid rgba(8, 122, 112, .28);
  outline-offset: 3px;
}

.b-hero {
  position: relative;
  isolation: isolate;
  min-height: calc(100dvh - 72px);
  display: grid;
  align-items: center;
  padding: 66px 0 76px;
  overflow: hidden;
}
.b-hero__stage { position: absolute; inset: 0; z-index: -1; pointer-events: none; }
.b-shape { position: absolute; transform: translate3d(var(--b-px, 0), var(--b-py, 0), 0); will-change: transform; }
.b-shape > i { display: block; width: 100%; height: 100%; }
.b-shape--slab { width: min(48vw, 650px); height: 330px; right: -7vw; top: 7%; }
.b-shape--slab > i { border-radius: 46% 24% 52% 32%; background: var(--b-teal-pale); transform: rotate(-8deg); }
.b-shape--ring { width: 170px; height: 170px; left: 44%; top: 7%; }
.b-shape--ring > i { border: 26px solid var(--b-teal-soft); border-radius: 50%; opacity: .72; }
.b-shape--arch { width: 230px; height: 120px; left: -60px; bottom: 5%; }
.b-shape--arch > i { border: 2px solid var(--b-teal); border-bottom: 0; border-radius: 120px 120px 0 0; opacity: .22; }
.b-shape--route { width: 320px; height: 120px; right: 22%; bottom: 2%; }
.b-shape--route > i { border-top: 2px dashed rgba(8, 122, 112, .32); border-radius: 50%; transform: rotate(7deg); }

.b-hero__grid { display: grid; grid-template-columns: minmax(0, .86fr) minmax(560px, 1.14fr); align-items: center; gap: 76px; }
.b-kicker {
  margin: 0 0 15px;
  color: var(--b-teal-dark);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.b-hero h1, .b-section-title h2, .b-cases h2, .b-providers h2, .b-price-copy h2, .b-contact-copy h2 {
  margin: 0;
  font-weight: 820;
  letter-spacing: -.052em;
  line-height: .98;
}
.b-hero h1 { max-width: 630px; font-size: clamp(48px, 6.1vw, 82px); }
.b-lead { max-width: 590px; margin: 24px 0 0; color: var(--b-muted); font-size: clamp(17px, 1.5vw, 20px); }
.b-actions { display: flex; align-items: center; gap: 23px; margin-top: 31px; }
.b-link { font-weight: 780; text-underline-offset: 5px; }
.b-link span { display: inline-block; margin-left: 5px; color: var(--b-teal); font-size: 24px; line-height: 0; transition: transform .2s ease; }
.b-link:hover span { transform: translateX(4px); }
.b-scroll-cue {
  position: absolute;
  z-index: 4;
  left: 50%;
  bottom: 16px;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border: 0;
  background: transparent;
  color: var(--b-teal-dark);
  text-decoration: none;
  transform: translateX(-50%);
}
.b-scroll-cue svg { width: 31px; height: 31px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; transition: color .2s ease, transform .2s ease; }
.b-scroll-cue:hover svg { color: var(--b-teal); transform: translateY(3px); }

.b-demo-wrap { position: relative; min-width: 0; max-width: 100%; transform: translate3d(var(--b-px, 0), var(--b-py, 0), 0); }
.b-demo {
  position: relative;
  z-index: 2;
  padding: 24px;
  border: 1px solid var(--b-line-strong);
  border-radius: var(--b-radius);
  background: rgba(255, 253, 250, .96);
  box-shadow: var(--b-shadow);
  transform: rotate(.55deg);
}
.b-demo::after { content: ""; position: absolute; inset: 9px; z-index: -1; border: 1px solid #eceae3; border-radius: 15px; pointer-events: none; }
.b-demo__header { display: flex; align-items: flex-start; justify-content: space-between; gap: 16px; padding: 3px 3px 19px; border-bottom: 1px solid var(--b-line); }
.b-demo__header div { display: grid; gap: 3px; }
.b-demo__header div > span, .b-demo__condition > span, .b-demo__decision > span { display: inline-flex; align-items: center; gap: 7px; color: var(--b-muted); font-size: 11px; font-weight: 800; letter-spacing: .09em; text-transform: uppercase; }
.b-label-icon { width: 16px; height: 16px; color: var(--b-teal); }
.b-demo__header strong { font-size: 19px; letter-spacing: -.02em; }
.b-demo__live { display: inline-flex; align-items: center; gap: 7px; padding: 6px 9px; border-radius: 999px; background: var(--b-teal-pale); color: var(--b-teal-dark); font-size: 11px; font-weight: 800; white-space: nowrap; }
.b-demo__live i { width: 7px; height: 7px; border-radius: 50%; background: var(--b-teal); box-shadow: 0 0 0 4px rgba(8, 122, 112, .11); }
.b-demo__presets { display: flex; gap: 7px; padding: 18px 2px 5px; overflow-x: auto; scrollbar-width: none; }
.b-demo__presets::-webkit-scrollbar { display: none; }
.b-demo__presets button { display: inline-flex; align-items: center; gap: 7px; padding: 8px 11px; border: 1px solid var(--b-line); border-radius: var(--b-control-radius); background: var(--b-paper); color: var(--b-muted); font-size: 12px; font-weight: 720; white-space: nowrap; cursor: pointer; transition: transform .18s ease, background-color .18s ease, border-color .18s ease, color .18s ease; }
.b-demo__presets button svg { width: 17px; height: 17px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.b-demo__presets button:hover { border-color: var(--b-teal); color: var(--b-teal-dark); transform: translateY(-1px); }
.b-demo__presets button.is-active { border-color: var(--b-ink); background: var(--b-ink); color: var(--b-paper); }
.b-demo__condition { margin: 13px 2px 0; padding: 15px 16px; border: 1px solid var(--b-line); border-radius: var(--b-control-radius); background: #f8f7f2; }
.b-demo__condition p { margin: 5px 0 0; color: var(--b-muted); font-size: 14px; }
.b-demo__condition strong { color: var(--b-ink); }
.b-demo__decision { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; padding: 17px 2px 3px; }
.b-demo__decision > span { grid-column: 1 / -1; }
.b-method { display: grid; grid-template-columns: 27px 1fr; align-items: center; column-gap: 10px; padding: 12px; border: 1px solid var(--b-line); border-radius: var(--b-control-radius); }
.b-method__icon { grid-row: 1 / 3; width: 25px; height: 25px; color: var(--b-teal); }
.b-method strong { font-size: 13px; }
.b-method small { color: var(--b-muted); font-size: 11px; }
.b-method.is-hidden { opacity: .48; }
.b-method.is-hidden .b-method__icon { color: var(--b-danger); }
.b-demo__status { margin: 12px 2px 0; color: var(--b-muted); font-size: 12px; }
.b-demo[data-loading="true"] .b-demo__condition, .b-demo[data-loading="true"] .b-demo__decision { opacity: .42; }
.b-demo-note { position: absolute; z-index: 3; padding: 10px 13px; border: 1px solid rgba(8, 122, 112, .24); border-radius: var(--b-control-radius); background: var(--b-teal-soft); color: var(--b-teal-dark); font-size: 12px; font-weight: 820; box-shadow: 0 13px 30px rgba(20, 77, 70, .11); }
.b-demo-note--top { top: -26px; right: 36px; transform: rotate(4deg); }
.b-demo-note--bottom { bottom: -24px; left: 32px; transform: rotate(-3deg); }

.b-flow, .b-capabilities, .b-cases, .b-providers, .b-price-section, .b-contact-section { padding: 112px 0; border-top: 1px solid var(--b-line); }
.b-flow { background: var(--b-teal-pale); }
.b-section-title { max-width: 790px; margin-bottom: 52px; }
.b-section-title h2, .b-cases h2, .b-providers h2, .b-contact-copy h2 { font-size: clamp(38px, 5.2vw, 64px); }
.b-section-title p, .b-cases header > p:last-child, .b-providers header > p:last-child, .b-price-copy > p, .b-contact-copy > p:last-child { max-width: 650px; margin: 20px 0 0; color: var(--b-muted); font-size: 18px; }
.b-flow__track { display: grid; grid-template-columns: 1.08fr 70px .86fr 70px 1.06fr; align-items: stretch; }
.b-flow__track article { min-height: 245px; display: flex; flex-direction: column; padding: 28px 26px; border: 1px solid var(--b-line); border-radius: var(--b-radius); background: var(--b-paper); }
.b-flow__track article:nth-of-type(2) { margin-top: 34px; }
.b-flow__meta { display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.b-flow__meta span { color: var(--b-teal-dark); font-size: 12px; font-weight: 820; letter-spacing: .09em; text-transform: uppercase; }
.b-flow__meta svg { width: 27px; height: 27px; color: var(--b-teal); }
.b-flow__track h3 { margin: auto 0 11px; padding-top: 52px; font-size: 23px; letter-spacing: -.03em; }
.b-flow__track p { margin: 0; color: var(--b-muted); }
.b-flow__arrow {
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  align-self: center;
  justify-self: center;
  color: var(--b-teal-dark);
  font-style: normal;
}
.b-flow__arrow svg { width: 48px; height: 48px; fill: none; stroke: currentColor; stroke-width: 1.55; stroke-linecap: round; stroke-linejoin: round; }

.b-capabilities { position: relative; }
.b-mosaic { display: grid; grid-template-columns: 1.25fr .75fr; grid-template-areas: "builder teal" "sim safety"; gap: 16px; }
.b-mosaic > article { min-height: 275px; border: 1px solid var(--b-line); border-radius: var(--b-radius); background: var(--b-paper); }
.b-mosaic h3 { display: flex; align-items: center; gap: 11px; margin: 0; font-size: 25px; letter-spacing: -.035em; }
.b-heading-icon { flex: 0 0 auto; width: 25px; height: 25px; color: var(--b-teal); }
.b-mosaic p { margin: 12px 0 0; color: var(--b-muted); }
.b-mosaic__builder { grid-area: builder; display: grid; grid-template-columns: .92fr 1.08fr; gap: 38px; align-items: center; padding: 34px; }
.b-token-cloud { display: flex; flex-wrap: wrap; align-content: center; gap: 9px; }
.b-token-cloud span { padding: 9px 11px; border: 1px solid var(--b-line); border-radius: var(--b-control-radius); background: var(--b-canvas); color: var(--b-muted); font-size: 12px; font-weight: 700; }
.b-token-cloud span:nth-child(2), .b-token-cloud span:nth-child(5) { border-color: rgba(8, 122, 112, .35); background: var(--b-teal-pale); color: var(--b-teal-dark); }
.b-mosaic__teal { grid-area: teal; padding: 30px; background: var(--b-teal) !important; border-color: var(--b-teal) !important; color: var(--b-paper); }
.b-mosaic__teal > span { display: block; font-size: 78px; font-weight: 850; line-height: .9; letter-spacing: -.07em; }
.b-mosaic__teal h3 { max-width: 300px; margin-top: 56px; }
.b-mosaic__teal p { color: var(--b-teal-pale); }
.b-mosaic__simulator { grid-area: sim; padding: 32px; }
.b-mosaic__simulator button { width: 100%; margin-top: 44px; display: flex; align-items: center; justify-content: space-between; padding: 14px 15px; border: 1px solid var(--b-ink); border-radius: var(--b-control-radius); background: var(--b-ink); color: var(--b-paper); font-weight: 760; cursor: pointer; transition: transform .18s ease, background-color .18s ease; }
.b-mosaic__simulator button:hover { background: var(--b-teal-dark); transform: translateY(-1px); }
.b-mosaic__simulator button:active { transform: translateY(1px); }
.b-mosaic__simulator button i { font-size: 23px; font-style: normal; line-height: 0; }
.b-mosaic__simulator small { min-height: 21px; display: block; margin-top: 12px; color: var(--b-teal-dark); font-weight: 730; }
.b-mosaic__safety { grid-area: safety; display: grid; grid-template-columns: 1fr 165px; column-gap: 30px; align-content: center; padding: 32px; overflow: hidden; }
.b-mosaic__safety h3, .b-mosaic__safety p { grid-column: 1; }
.b-mosaic__safety > div { grid-column: 2; grid-row: 1 / 3; display: grid; gap: 13px; align-self: center; }
.b-mosaic__safety > div span { height: 53px; border: 1px solid var(--b-line); border-radius: var(--b-control-radius); background: var(--b-canvas); }
.b-mosaic__safety > div span:nth-child(2) { border-color: var(--b-teal); background: var(--b-teal-pale); transform: translateX(-22px); }

.b-cases { background: var(--b-paper); }
.b-cases__grid { display: grid; grid-template-columns: .72fr 1.28fr; align-items: start; gap: 84px; }
.b-cases header { position: sticky; top: 32px; }
.b-cases__list { border-top: 1px solid var(--b-ink); }
.b-cases__list article { display: grid; grid-template-columns: 58px 1fr; gap: 22px; padding: 34px 4px; border-bottom: 1px solid var(--b-line); }
.b-case__icon { width: 58px; height: 58px; display: grid; place-items: center; border: 1px solid var(--b-teal-soft); border-radius: 18px; background: var(--b-teal-pale); color: var(--b-teal-dark); }
.b-case__icon svg { width: 29px; height: 29px; }
.b-case__copy > span { color: var(--b-teal-dark); font-size: 11px; font-weight: 820; letter-spacing: .09em; text-transform: uppercase; }
.b-case__copy h3 { margin: 7px 0 9px; font-size: 25px; line-height: 1.13; letter-spacing: -.035em; }
.b-case__copy > p { margin: 0; color: var(--b-muted); }
.b-case__rule { display: grid; gap: 4px; margin-top: 18px; padding: 14px 16px; border-left: 3px solid var(--b-teal); background: var(--b-canvas); }
.b-case__rule small { color: var(--b-muted); font-size: 10px; font-weight: 820; letter-spacing: .09em; text-transform: uppercase; }
.b-case__rule strong { font-size: 14px; line-height: 1.45; }
.b-case__result { display: flex; align-items: flex-start; gap: 8px; margin-top: 13px; color: var(--b-teal-dark); font-size: 13px; font-weight: 740; }
.b-case__result svg { flex: 0 0 auto; width: 18px; height: 18px; margin-top: 1px; }

.b-providers { background: var(--b-canvas); }
.b-providers__grid { display: grid; grid-template-columns: .78fr 1.22fr; align-items: center; gap: 90px; }
.b-provider-groups { display: grid; gap: 26px; }
.b-provider-group { display: grid; gap: 10px; }
.b-provider-group > span { color: var(--b-muted); font-size: 11px; font-weight: 820; letter-spacing: .1em; text-transform: uppercase; }
.b-provider-group > div { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 10px; }
.b-provider-group figure { min-width: 0; height: 82px; display: grid; place-items: center; margin: 0; padding: 16px 20px; border: 1px solid var(--b-line); border-radius: var(--b-control-radius); background: var(--b-paper); }
.b-provider-group img { display: block; max-width: 100%; width: auto; height: 38px; object-fit: contain; }
.b-provider-group img[alt="InPost"] { height: 55px; }
.b-provider-group img[alt="DPD"], .b-provider-group img[alt="Mastercard"] { height: 34px; }
.b-provider-groups > p { margin: 0; color: var(--b-muted); font-size: 11px; }

.b-price-section { overflow: hidden; }
.b-price-layout { position: relative; display: grid; grid-template-columns: 1fr 420px; align-items: center; gap: 100px; }
.b-price-layout::before { content: ""; position: absolute; z-index: -1; width: 360px; height: 360px; right: -170px; top: -110px; border: 52px solid var(--b-teal-soft); border-radius: 50%; opacity: .55; }
.b-price-copy h2 { max-width: 710px; font-size: clamp(40px, 5vw, 64px); }
.b-price-copy ul { display: grid; grid-template-columns: 1fr 1fr; gap: 11px 28px; margin: 35px 0 0; padding: 0; list-style: none; }
.b-price-copy li { position: relative; padding-left: 21px; color: var(--b-muted); }
.b-price-copy li::before { content: ""; position: absolute; width: 8px; height: 8px; left: 0; top: .52em; border-radius: 50%; background: var(--b-teal); }
.b-price-card { padding: 35px; border-radius: var(--b-radius); background: var(--b-teal); color: var(--b-paper); box-shadow: var(--b-shadow); }
.b-price-card > span { color: var(--b-teal-pale); font-size: 13px; font-weight: 800; }
.b-price-card > strong { display: block; margin-top: 44px; font-size: 49px; letter-spacing: -.055em; line-height: 1; }
.b-price-card > strong small { font-size: 14px; letter-spacing: 0; }
.b-price-card p { margin: 12px 0 30px; color: var(--b-teal-pale); }
.b-price-card .b-button { width: 100%; }

.b-contact-section { background: var(--b-paper); }
.b-contact-layout { display: grid; grid-template-columns: .82fr 1.18fr; gap: 90px; align-items: start; }
.b-contact-copy { position: sticky; top: 32px; }
.b-contact { padding: 31px; border: 1px solid var(--b-line-strong); border-radius: var(--b-radius); background: var(--b-canvas); box-shadow: 0 22px 50px rgba(20, 77, 70, .08); }
.b-contact label { display: grid; gap: 7px; margin-bottom: 15px; }
.b-contact label > span { color: var(--b-ink); font-size: 13px; font-weight: 760; }
.b-contact label small { color: var(--b-muted); font-weight: 520; }
.b-contact input, .b-contact textarea { width: 100%; border: 1px solid var(--b-line-strong); border-radius: var(--b-control-radius); background: var(--b-paper); color: var(--b-ink); padding: 12px 13px; }
.b-contact input::placeholder, .b-contact textarea::placeholder { color: #717a76; opacity: 1; }
.b-contact textarea { min-height: 132px; resize: vertical; }
.b-form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.b-honeypot { position: absolute !important; left: -9999px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }
.b-submit { display: flex; align-items: center; gap: 18px; margin-top: 20px; }
.b-submit [data-contact-status] { margin: 0; color: var(--b-muted); font-size: 13px; }
.b-submit [data-kind="success"] { color: var(--b-teal-dark); font-weight: 720; }
.b-submit [data-kind="error"] { color: var(--b-danger); font-weight: 720; }
.b-privacy { margin: 17px 0 0; color: var(--b-muted); font-size: 12px; }
.b-privacy a { color: var(--b-teal-dark); }

.b-footer { padding: 31px 0; border-top: 1px solid var(--b-line); }
.b-footer > div { display: flex; align-items: center; justify-content: space-between; gap: 24px; }

.motion-ready .b-reveal { opacity: 0; transform: translateY(24px); }
.motion-ready .b-reveal.is-visible { opacity: 1; transform: none; transition: opacity .68s cubic-bezier(.16, 1, .3, 1), transform .68s cubic-bezier(.16, 1, .3, 1); }

@media (prefers-reduced-motion: no-preference) {
  .b-shape--slab > i { animation: b-float-one 11s ease-in-out infinite alternate; }
  .b-shape--ring > i { animation: b-float-two 8s ease-in-out infinite alternate; }
  .b-shape--arch > i { animation: b-float-three 12s ease-in-out infinite alternate; }
  .b-demo-note--top { animation: b-note-one 6s ease-in-out infinite alternate; }
  .b-demo-note--bottom { animation: b-note-two 7s ease-in-out infinite alternate; }
  .b-demo__live i { animation: b-pulse 2.4s ease-in-out infinite; }
  .b-scroll-cue svg { animation: b-scroll-cue 1.8s cubic-bezier(.45, 0, .2, 1) infinite; }
}
@keyframes b-float-one { to { transform: translate3d(-24px, 16px, 0) rotate(-4deg); } }
@keyframes b-float-two { to { transform: translate3d(18px, -13px, 0) scale(.94); } }
@keyframes b-float-three { to { transform: translate3d(21px, -9px, 0) rotate(3deg); } }
@keyframes b-note-one { to { transform: translate3d(-4px, -8px, 0) rotate(2deg); } }
@keyframes b-note-two { to { transform: translate3d(6px, 7px, 0) rotate(-1deg); } }
@keyframes b-pulse { 50% { opacity: .45; transform: scale(.72); } }
@keyframes b-scroll-cue { 0%, 100% { transform: translateY(-2px); } 50% { transform: translateY(4px); } }

@media (max-width: 1040px) {
  .b-hero { min-height: auto; padding: 82px 0 100px; }
  .b-hero__grid { grid-template-columns: 1fr; gap: 76px; }
  .b-hero__copy { max-width: 740px; }
  .b-demo-wrap { width: min(690px, 100%); margin-left: auto; }
  .b-flow__track { grid-template-columns: 1.08fr 58px .86fr 58px 1.06fr; }
  .b-flow__arrow { width: 52px; height: 52px; }
  .b-flow__arrow svg { width: 40px; height: 40px; }
  .b-mosaic { grid-template-columns: 1fr 1fr; grid-template-areas: "builder builder" "teal sim" "safety safety"; }
  .b-price-layout { grid-template-columns: 1fr 390px; gap: 56px; }
  .b-contact-layout { gap: 55px; }
}

@media (max-width: 760px) {
  .b-container, .b-nav { width: min(100% - 30px, 1220px); }
  .b-nav { min-height: 66px; }
  .b-nav nav > a:not(.b-button) { display: none; }
  .b-nav nav { gap: 0; }
  .b-brand strong { font-size: 17px; }
  .b-brand img { width: 34px; height: 34px; }
  .b-hero { min-height: calc(100dvh - 66px); padding: 58px 0 82px; }
  .b-hero__grid { gap: 68px; }
  .b-demo-wrap { width: 100%; }
  .b-hero h1 { max-width: 520px; font-size: clamp(44px, 13.6vw, 62px); }
  .b-lead { font-size: 17px; }
  .b-actions { align-items: flex-start; flex-direction: column; }
  .b-demo { padding: 15px; border-radius: 18px; transform: none; }
  .b-demo__header { flex-direction: column; }
  .b-demo__presets { gap: 4px; }
  .b-demo__presets button { gap: 5px; padding: 7px 8px; font-size: 11px; }
  .b-demo__condition { padding: 13px; }
  .b-demo__decision { grid-template-columns: 1fr; }
  .b-demo__decision > span { grid-column: 1; }
  .b-demo-note { font-size: 11px; }
  .b-demo-note--top { right: 13px; }
  .b-demo-note--bottom { left: 15px; }
  .b-shape--ring { left: auto; right: -60px; top: 26%; }
  .b-shape--slab { width: 520px; right: -310px; top: 31%; }
  .b-flow, .b-capabilities, .b-cases, .b-providers, .b-price-section, .b-contact-section { padding: 78px 0; }
  .b-section-title { margin-bottom: 37px; }
  .b-flow__track { grid-template-columns: 1fr; gap: 12px; }
  .b-flow__track article, .b-flow__track article:nth-of-type(2) { min-height: 0; margin-top: 0; padding: 24px; }
  .b-flow__track h3 { margin-top: 0; padding-top: 31px; }
  .b-flow__arrow { width: 54px; height: 54px; margin-left: 14px; }
  .b-flow__arrow svg { width: 40px; height: 40px; transform: rotate(90deg); }
  .b-mosaic { grid-template-columns: 1fr; grid-template-areas: "builder" "teal" "sim" "safety"; }
  .b-mosaic__builder { grid-template-columns: 1fr; gap: 28px; padding: 25px; }
  .b-mosaic__teal { min-height: 310px !important; padding: 25px; }
  .b-mosaic__simulator, .b-mosaic__safety { padding: 25px; }
  .b-mosaic__safety { grid-template-columns: 1fr; }
  .b-mosaic__safety h3, .b-mosaic__safety p, .b-mosaic__safety > div { grid-column: 1; }
  .b-mosaic__safety > div { grid-row: auto; margin-top: 28px; }
  .b-mosaic__safety > div span:nth-child(2) { transform: translateX(13px); }
  .b-cases__grid { grid-template-columns: 1fr; gap: 44px; }
  .b-cases header { position: static; }
  .b-cases__list article { grid-template-columns: 48px 1fr; gap: 15px; padding: 29px 0; }
  .b-case__icon { width: 48px; height: 48px; border-radius: 15px; }
  .b-case__icon svg { width: 25px; height: 25px; }
  .b-case__copy h3 { font-size: 22px; }
  .b-case__rule, .b-case__result { margin-left: -63px; }
  .b-case__rule { margin-top: 18px; }
  .b-providers__grid { grid-template-columns: 1fr; gap: 43px; }
  .b-provider-group figure { height: 72px; padding: 13px; }
  .b-provider-group img { height: 31px; }
  .b-provider-group img[alt="InPost"] { height: 48px; }
  .b-price-layout, .b-contact-layout { grid-template-columns: 1fr; gap: 42px; }
  .b-price-copy ul { grid-template-columns: 1fr; }
  .b-price-card { padding: 27px; }
  .b-price-card > strong { font-size: 43px; }
  .b-contact-copy { position: static; }
  .b-contact { padding: 21px; }
  .b-form-grid { grid-template-columns: 1fr; gap: 0; }
  .b-submit { align-items: flex-start; flex-direction: column; }
  .b-footer > div { align-items: flex-start; flex-direction: column; }
  .b-footer nav { flex-wrap: wrap; gap: 12px 18px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition-duration: .01ms !important; }
  .motion-ready .b-reveal { opacity: 1; transform: none; }
  .b-shape, .b-demo-wrap { transform: none !important; }
}
